<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%
}

body {
  margin: 0
}

main {
  display: block
}

h1 {
  font-size: 2em;
  margin: .67em 0
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible
}

pre {
  font-family: monospace, monospace;
  font-size: 1em
}

a {
  background-color: transparent
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}

b,
strong {
  font-weight: bolder
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em
}

small {
  font-size: 80%
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline
}

sub {
  bottom: -.25em
}

sup {
  top: -.5em
}

img {
  border-style: none
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0
}

button,
input {
  overflow: visible
}

button,
select {
  text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText
}

fieldset {
  padding: .35em .75em .625em
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal
}

progress {
  vertical-align: baseline
}

textarea {
  overflow: auto
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

details {
  display: block
}

summary {
  display: list-item
}

[hidden],
template {
  display: none
}

.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}

.slick-list,
.slick-slider {
  position: relative;
  display: block
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0
}

.slick-list:focus {
  outline: none
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto;
  display: block
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: ""
}

.slick-track:after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px
}

[dir=rtl] .slick-slide {
  float: right
}

.slick-slide img {
  display: block
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

.slick-arrow.slick-hidden {
  display: none
}

:root {
  --file-upload-container-bg: #eee;
  --file-upload-bg: #f8f8f8;
  --file-upload-border-color: #606060;
  --file-upload-rounded: 15px;
  --file-upload-color: #2b2b2b;
  --file-upload-table-border-color: #dbdbdb;
  --file-upload-delete-button-bg: #f53636;
  --file-upload-delete-button-color: #fff;
  --file-upload-font-size: 0.875em;
  --file-upload-font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --file-upload-shadow: 0px 8px 15px -8px rgba(0, 0, 0, .5)
}

.file-container {
  width: 100%;
  font-family: var(--file-upload-font-family);

  .file-upload {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--file-upload-container-bg);
    border-radius: var(--file-upload-rounded);
    -webkit-transition: all .3s;
    transition: all .3s;

    &gt;div {
      width: 100%;
      background-color: var(--file-upload-bg);
      padding: 25px;
      margin: 10px;
      border-radius: 10px;
      border: 1px dashed var(--file-upload-border-color);
      text-align: center;
      cursor: pointer;

      &gt;i {
        font-size: 3.125em
      }

      &gt;i,
      &gt;p,
      div,
      span {
        color: var(--file-upload-color)
      }

      &gt;p,
      div,
      span {
        font-size: var(--file-upload-font-size);
        line-height: 30px
      }

      &gt;div {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        padding: 0 10px;
        margin: 0 auto;
        border: 1px solid var(--file-upload-border-color);
        border-radius: 8px
      }
    }
  }

  &gt;table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--file-upload-font-size);
    margin-top: 20px;

    &amp; th,
    td {
      border-bottom: 1px solid var(--file-upload-table-border-color);
      padding: 8px;
      text-align: left
    }

    &gt;tbody {
      &gt;tr {
        &gt;td {
          &amp;:first-child {
            font-weight: 700
          }

          &amp;:nth-child(2) {
            white-space: nowrap;
            text-overflow: ellipsis;
            overflow: hidden;
            max-width: 1px
          }

          &amp;:nth-child(3) {
            text-align: center
          }

          &gt;img {
            border-radius: 5px;
            -webkit-box-shadow: var(--file-upload-shadow);
            box-shadow: var(--file-upload-shadow)
          }

          &amp;.no-file {
            text-align: center;
            font-weight: 400
          }

          &gt;i {
            font-size: 1.125em
          }
        }
      }
    }

    &amp; button {
      background-color: var(--file-upload-delete-button-bg);
      width: 30px;
      height: 30px;
      border: none;
      border-radius: 50%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      cursor: pointer;

      &amp;:hover {
        -webkit-box-shadow: var(--file-upload-shadow);
        box-shadow: var(--file-upload-shadow)
      }

      &gt;i {
        color: var(--file-upload-delete-button-color);
        font-size: 1.125em
      }
    }
  }
}

@charset "UTF-8";

@font-face {
  font-family: gilroyextrabold;
  src: url(/fonts/gilroy-extrabold-webfont.woff2?4edbcb864a1d59f8fae33645bd65d41f) format("woff2"), url(/fonts/gilroy-extrabold-webfont.woff?280c2b0b79fd6cfd8f35cc145d0a5f97) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: gilroylight;
  src: url(/fonts/gilroy-light-webfont.woff2?cb050134f7d66842c9a6b14845fa40ec) format("woff2"), url(/fonts/gilroy-light-webfont.woff?85100cd84be3dead2db96d98345b707d) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap
}

/*! #######################################################################

  MeanMenu 2.0.7
  --------

  To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */
a.meanmenu-reveal {
  display: none
}

.mean-container .mean-bar {
  background: #fff;
  border-radius: 3px;
  min-height: 4px;
  max-height: 100vh;
  margin-left: 15px;
  padding: 0;
  top: 0;
  width: 43px;
  z-index: 999999
}

.mean-container a.meanmenu-reveal {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .25);
  box-shadow: 0 0 3px rgba(0, 0, 0, .25);
  cursor: pointer;
  color: #707275;
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  height: 22px;
  line-height: 22px;
  padding: 11px 10px 10px 11px;
  position: relative;
  right: 0;
  text-indent: -9999em;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  top: 0;
  width: 22px
}

.mean-container a.meanmenu-reveal:hover {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15)
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: #707275;
  height: 3px;
  margin-top: 3px
}

.mean-container .mean-nav {
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
  border: none;
  float: left;
  margin-top: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 56px;
  width: 100vw
}

@media (min-width:768px) {
  .mean-container .mean-nav {
    position: fixed;
    top: 135px
  }
}

.mean-container .mean-nav ul {
  border-radius: 0;
  border: none;
  left: auto;
  list-style-type: none;
  margin: 0;
  max-height: calc(100vh - 108px);
  opacity: 1;
  overflow-y: scroll;
  padding: 0;
  position: relative;
  -webkit-transform: none;
  transform: none;
  -webkit-transition: none;
  transition: none;
  width: 100%
}

@media (min-width:768px) {
  .mean-container .mean-nav ul {
    max-height: calc(100vh - 135px)
  }
}

.mean-container .mean-nav ul li {
  display: block;
  font-size: .875em;
  list-style: none;
  position: relative;
  float: left;
  margin: 0;
  width: 100%
}

.mean-container .mean-nav ul li:after {
  display: none
}

.mean-container .mean-nav ul li a {
  border-top: 1px solid #e3e3e3;
  color: #707275;
  display: block;
  float: left;
  font-family: lato, Roboto, Helvetica, Futura, Arial, sans-serif;
  font-weight: 400;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  text-decoration: none
}

.mean-container .mean-nav ul li a:after {
  display: none
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 12px 10% 8px;
  border-top: 1px solid #f1f1f1;
  border-top: 1px solid hsla(0, 0%, 100%, .25);
  opacity: .75;
  filter: alpha(opacity=75);
  visibility: visible
}

.mean-container .mean-nav ul li li a.mean-expand {
  height: 39px
}

.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%
}

.mean-container .mean-nav ul li a:hover {
  background: #252525;
  background: hsla(0, 0%, 100%, .1)
}

.mean-container .mean-nav ul li a.mean-expand {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: hsla(0, 0%, 100%, .1);
  border: none;
  border-left: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  height: 52px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 52px;
  z-index: 2
}

.mean-container .mean-nav ul li a.mean-expand:after {
  display: none
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: #0c92fa;
  color: #fff;
  opacity: 1
}

.mean-container .mean-push {
  float: left;
  padding: 0;
  margin: 0;
  clear: both
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0
}

.mean-container .mean-bar,
.mean-container .mean-bar * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

.mean-remove {
  display: none !important
}

.slick {
  background: url(/dist/images/spinner.gif) 50% no-repeat;
  padding: 0;
  text-align: center
}

.slick li {
  list-style: none
}

.slick li:before {
  display: none
}

.slick.slick-initialized {
  background: none
}

.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}

.slick-list,
.slick-slider {
  padding: 0;
  position: relative;
  display: block
}

.slick-list {
  height: 100%;
  overflow: hidden;
  margin: 0
}

.slick-list:focus {
  outline: none
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.slick-track {
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  display: block
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table
}

.slick-track:after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  float: left;
  min-height: 1px
}

.slick-slide:before {
  display: none
}

[dir=rtl] .slick-slide {
  float: right
}

.slick-slide img {
  display: block;
  margin: 0 auto
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

.slick-arrow.slick-hidden {
  display: none
}

.slick-arrow {
  border: none;
  height: 34px;
  margin: 0;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  text-indent: -9999px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: none;
  transition: none;
  width: 34px;
  z-index: 99
}

.slick-arrow:after {
  display: none
}

.slick-arrow.slick-prev {
  background: url(/dist/images/controls.png) no-repeat 0 -32px;
  left: 10px
}

.slick-arrow.slick-prev:hover {
  background-position: 0 0
}

.slick-arrow.slick-next {
  background: url(/dist/images/controls.png) no-repeat -43px -32px;
  right: 10px
}

.slick-arrow.slick-next:hover {
  background-position: -43px 0
}

.grid {
  margin: 40px auto 120px;
  max-width: 1000px;
  width: 90%
}

.grid a {
  float: left;
  max-width: 250px;
  width: 25%;
  color: #333
}

.grid a:nth-child(odd) {
  margin: 30px 0 -30px
}

.grid figure {
  position: relative;
  overflow: hidden;
  margin: 5px;
  background: #333
}

.grid figure img {
  position: relative;
  display: block;
  width: 100%;
  opacity: .7;
  -webkit-transition: opacity .3s;
  transition: opacity .3s
}

.grid figcaption {
  position: absolute;
  top: 0;
  z-index: 11;
  padding: 10px;
  width: 100%;
  height: 100%;
  text-align: center
}

.grid figcaption h2 {
  margin: 0 0 20px;
  color: #3498db;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 130%;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s
}

.grid figcaption p {
  padding: 0 20px;
  color: #aaa;
  font-weight: 300;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s
}

.grid figcaption h2,
.grid figcaption p {
  -webkit-transform: translateY(50px);
  transform: translateY(50px)
}

.grid figure button {
  position: absolute;
  padding: 4px 20px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s
}

.grid figcaption,
.grid figcaption h2,
.grid figcaption p,
.grid figure button {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.grid svg {
  position: absolute;
  top: -1px;
  z-index: 10;
  width: 100%;
  height: 100%
}

.grid svg path {
  fill: #fff
}

.grid a:hover figure img {
  opacity: 1
}

.grid a:hover figcaption h2,
.grid a:hover figcaption p {
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.grid a:hover figcaption p {
  opacity: 0
}

.demo-1 body {
  background: #3498db
}

.demo-1 .grid figure button,
.demo-3 .grid figure button {
  top: 50%;
  left: 50%;
  border: 3px solid #fff;
  background: transparent;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(.25);
  transform: translateY(-50%) translateX(-50%) scale(.25)
}

.demo-1 .grid a:hover figure button,
.demo-3 .grid a:hover figure button {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1)
}

.demo-2 body {
  background: #e74c3c
}

.demo-2 .grid figcaption h2 {
  color: #e74c3c
}

.demo-2 .grid figcaption p {
  -webkit-transition-delay: .05s;
  transition-delay: .05s
}

.demo-2 .grid figure button {
  bottom: 0;
  left: 0;
  padding: 15px;
  width: 100%;
  background: #fff;
  color: #333;
  font-weight: 300;
  -webkit-transform: translateY(100%);
  transform: translateY(100%)
}

.demo-2 .grid a:hover figure button {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.demo-2 .grid figcaption h2,
.demo-2 .grid figcaption p,
.demo-3 .grid figcaption h2,
.demo-3 .grid figcaption p {
  -webkit-transition-timing-function: cubic-bezier(.25, .25, .115, 1);
  -webkit-transition-timing-function: cubic-bezier(.25, .25, .115, 1.445);
  transition-timing-function: cubic-bezier(.25, .25, .115, 1.445)
}

.demo-2 .grid a:hover figcaption p,
.demo-3 .grid a:hover figcaption p {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.demo-3 body {
  background: #52be7f
}

.demo-3 .grid figcaption h2 {
  color: #52be7f
}

.demo-3 .grid a:hover figcaption h2 {
  -webkit-transform: translateY(5px);
  transform: translateY(5px)
}

@media screen and (max-width:58em) {
  .grid a {
    width: 33.333%
  }

  .grid a:nth-child(odd) {
    margin: 0
  }

  .grid a:nth-child(3n-1) {
    margin: 30px 0 -30px
  }
}

@media screen and (max-width:45em) {
  .grid {
    max-width: 500px
  }

  .grid a {
    width: 50%
  }

  .grid a:nth-child(3n-1) {
    margin: 0
  }

  .grid a:nth-child(2n) {
    margin: 30px 0 -30px
  }

  .grid figcaption h2 {
    margin-bottom: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px)
  }

  .grid figcaption p {
    margin: 0;
    padding: 0 10px
  }
}

@media screen and (max-width:27em) {
  .grid {
    max-width: 250px
  }

  .grid a {
    width: 100%
  }

  .grid a:nth-child(2n) {
    margin: 0
  }
}

@font-face {
  font-weight: 400;
  font-style: normal;
  font-family: icomoon;
  src: url(/fonts/icomoon.eot?ccc12ded86b68eb532f09137f2e09aba);
  src: url(/fonts/icomoon.eot?ccc12ded86b68eb532f09137f2e09aba?#iefix-9heso) format("embedded-opentype"), url(/fonts/icomoon.woff?349b4501fe888f2ee22be9b657dfe45a) format("woff"), url(/fonts/icomoon.ttf?601e0399c568cda6d4ffa321ca952df9) format("truetype"), url(/fonts/icomoon.svg?8be3cf69e829e64f22625ffb4d6d2a85#icomoon) format("svg")
}

@-webkit-keyframes moveUpFromDown {
  0% {
    -webkit-transform: translateY(100%)
  }

  to {
    -webkit-transform: translateY(0)
  }
}

@keyframes moveUpFromDown {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

.simform {
  position: relative;
  margin: 0 auto;
  padding: 15px 0;
  max-width: 860px;
  width: 100%;
  text-align: left
}

.simform .submit {
  display: none
}

.simform ol {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  -webkit-transition: height .4s;
  transition: height .4s
}

.simform ol:before {
  content: "";
  background-color: rgba(0, 0, 0, .1);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3.15em
}

.simform .questions li {
  list-style: none;
  z-index: 100;
  position: relative;
  visibility: hidden;
  height: 0;
  -webkit-transition: visibility 0s .4s, height 0s .4s;
  transition: visibility 0s .4s, height 0s .4s
}

.simform .questions li&gt;span {
  display: block;
  overflow: hidden
}

.simform .questions li&gt;span label {
  color: #fff;
  display: block;
  font-weight: 500;
  font-size: 1em;
  letter-spacing: 0;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%)
}

.simform .questions input {
  background: rgba(0, 0, 0, .2);
  border: 1px solid transparent;
  border-radius: 0;
  color: hsla(0, 0%, 100%, .8);
  display: block;
  font-size: 1em;
  line-height: 1;
  margin: 0;
  opacity: 0;
  padding: 15px;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  width: 100%
}

.simform .show-next .questions li.current&gt;span label {
  -webkit-animation: moveUpFromDown .4s both;
  animation: moveUpFromDown .4s both
}

.simform .questions input:focus,
.simform .simform button:focus {
  outline: none
}

.simform .progress {
  width: 0;
  height: .15em;
  background: rgba(0, 0, 0, .3);
  -webkit-transition: width .4s ease-in-out;
  transition: width .4s ease-in-out
}

.simform .progress:before {
  position: absolute;
  top: auto;
  width: 100%;
  height: inherit;
  background: rgba(0, 0, 0, .1);
  content: ""
}

.simform .number {
  font-weight: 700;
  font-size: .875em;
  margin: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 3em
}

.simform .number:after {
  position: absolute;
  left: 50%;
  content: "/";
  opacity: .4;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.simform .number span {
  color: #fff;
  float: right;
  width: 40%;
  text-align: center
}

.simform .number .number-current {
  float: left
}

.simform .number-next {
  position: absolute;
  left: 0
}

.simform.show-next .number-current {
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%)
}

.simform.show-next .number-next {
  -webkit-animation: moveUpFromDown .4s both;
  animation: moveUpFromDown .4s both
}

.no-js .questions li,
.questions li.current {
  visibility: visible;
  height: auto;
  -webkit-transition: none;
  transition: none
}

.no-js .questions li&gt;span label,
.questions li.current&gt;span label {
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translateY(0);
  transform: translateY(0)
}

.no-js .questions input,
.questions .current input {
  opacity: 1
}

.controls {
  position: relative
}

.next {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 100%;
  border: none;
  border-radius: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  display: block;
  height: 50px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  text-align: center;
  -webkit-transition: -webkit-transform .3s, opacity .3s, background .3s;
  -webkit-transition: opacity .3s, background .3s, -webkit-transform .3s;
  transition: opacity .3s, background .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s, background .3s;
  transition: transform .3s, opacity .3s, background .3s, -webkit-transform .3s;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 50px;
  z-index: 100
}

.next:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff
}

.next:after {
  top: 0;
  left: 0;
  content: "\E600";
  text-transform: none;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  font-family: icomoon;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.next.show,
.next.shown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  pointer-events: auto
}

.simform .error-message,
.simform .final-message {
  background: rgba(0, 0, 0, .2);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  padding: 15px;
  position: absolute;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  visibility: hidden;
  width: 100%
}

.simform .error-message {
  background: crimson;
  font-size: 1em
}

.final-message {
  top: 50%;
  left: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.error-message.shown,
.final-message.shown {
  visibility: visible;
  opacity: 1
}

.final-message.shown {
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

.simform-inner.hide {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s, visibility 0s .3s;
  transition: opacity .3s, visibility 0s .3s
}

.no-js .simform {
  font-size: 1.75em
}

.no-js .questions li {
  padding: 0 0 2em
}

.no-js .simform .submit {
  display: block;
  float: right;
  padding: 10px 20px;
  border: none;
  background: rgba(0, 0, 0, .3);
  color: rgba(0, 0, 0, .4)
}

.no-js .simform .controls {
  display: none
}

input[type=text]::-ms-clear {
  display: none
}

@media screen and (max-width:44.75em) {
  .simform {
    font-size: 1em
  }
}

@media screen and (max-width:33.5625em) {
  .simform {
    font-size: 1.2em
  }
}

.cs-select {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left;
  background: #fff;
  z-index: 100;
  width: 100%;
  max-width: 500px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.cs-select:focus {
  outline: none
}

.cs-select select {
  display: none
}

.cs-select span {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.cs-select&gt;span {
  padding-right: 3em
}

.cs-select&gt;span:after {
  content: "\25BE";
  right: 1em
}

.cs-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%
}

.cs-select ul span {
  padding: 10px 15px
}

.cs-select .cs-selected span:after {
  content: "\2713";
  margin-left: 1em
}

.cs-select .cs-selected span:after,
.cs-select&gt;span:after {
  speak: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.cs-select .cs-options {
  background: transparent;
  position: absolute;
  opacity: 1;
  overflow: visible;
  padding: 10px 0;
  pointer-events: none;
  visibility: visible;
  width: 100%
}

.cs-select.cs-active {
  z-index: 200
}

.cs-select.cs-active&gt;span:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg)
}

.cs-select.cs-active .cs-options {
  visibility: visible
}

.cs-select ul li.cs-focus span {
  background-color: #ddd
}

div.cs-skin-elastic {
  background: transparent;
  font-size: 1em;
  color: #707275
}

.cs-skin-elastic&gt;span {
  background: #fafafa;
  border: 1px solid #f1f3fa;
  z-index: 100
}

.cs-skin-elastic.cs-active .cs-options {
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .07);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .07);
  pointer-events: auto
}

.cs-skin-elastic .cs-options&gt;ul:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  background: #fff;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s
}

.cs-skin-elastic.cs-active .cs-options&gt;ul:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: none;
  transition: none;
  -webkit-animation: expand .6s ease-out;
  animation: expand .6s ease-out
}

.cs-skin-elastic .cs-options ul li {
  color: #0044e3;
  margin: 0;
  opacity: 0;
  -webkit-transform: translate3d(0, -25px, 0);
  transform: translate3d(0, -25px, 0);
  -webkit-transition: opacity .15s, -webkit-transform .15s;
  transition: opacity .15s, -webkit-transform .15s;
  transition: opacity .15s, transform .15s;
  transition: opacity .15s, transform .15s, -webkit-transform .15s
}

.cs-skin-elastic.cs-active .cs-options ul li {
  list-style: none;
  margin: 0;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: none;
  transition: none;
  -webkit-animation: bounce .6s forwards;
  animation: bounce .6s forwards
}

.cs-skin-elastic.cs-active .cs-options ul li:first-child {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

.cs-skin-elastic.cs-active .cs-options ul li:nth-child(2) {
  -webkit-animation-delay: .15s;
  animation-delay: .15s
}

.cs-skin-elastic.cs-active .cs-options ul li:nth-child(3) {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

.cs-skin-elastic.cs-active .cs-options ul li:nth-child(4) {
  -webkit-animation-delay: .25s;
  animation-delay: .25s
}

.cs-skin-elastic .cs-options .cs-selected span,
.cs-skin-elastic .cs-options li.cs-focus span,
.cs-skin-elastic .cs-options span:hover {
  color: #1e4c4a
}

.cs-skin-elastic .cs-options .cs-selected span:after {
  content: ""
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translate3d(0, -25px, 0);
    opacity: 0
  }

  25% {
    -webkit-transform: translate3d(0, 10px, 0)
  }

  50% {
    -webkit-transform: translate3d(0, -6px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, 2px, 0)
  }

  to {
    -webkit-transform: translateZ(0);
    opacity: 1
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: translate3d(0, -25px, 0);
    transform: translate3d(0, -25px, 0);
    opacity: 0
  }

  25% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

  50% {
    -webkit-transform: translate3d(0, -6px, 0);
    transform: translate3d(0, -6px, 0)
  }

  75% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0)
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }
}

body {
  background: #fff
}

@media print {

  .print-container,
  body,
  html {
    background: #fff;
    margin: 0;
    padding: 0
  }

  .print-container {
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    height: 297mm;
    position: relative;
    width: 210mm
  }

  .print-container h1,
  .print-container h2,
  .print-container h3,
  .print-container h4,
  .print-container h5,
  .print-container h6 {
    color: #000;
    margin-bottom: 1pt
  }

  .print-container h1 {
    font-size: 14pt
  }

  .print-container h2 {
    font-size: 13pt
  }

  .print-container h3 {
    font-size: 12pt
  }

  .print-container h4 {
    font-size: 11pt
  }

  .print-container h5 {
    font-size: 10pt
  }

  .print-container h6 {
    font-size: 9pt
  }

  .print-container p {
    color: #000;
    font-size: 7.5pt;
    line-height: 1.1;
    margin-bottom: 3mm
  }

  .print-container .center {
    text-align: center
  }

  .print-container.labels .split {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .print-container.labels .pharmacy {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .print-container.labels .boxes,
  .print-container.labels .pharmacy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1mm
  }

  .print-container.labels .box {
    border: 1pt solid #000;
    height: 5mm;
    width: 5mm
  }

  .print-container.labels address {
    font-size: 5pt;
    padding: 0 2mm
  }

  .print-container.labels address p {
    margin: 0
  }

  .print-container.labels .block {
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    padding: 3mm
  }

  .print-container.labels .block.right {
    float: right;
    height: 49mm;
    position: absolute;
    right: 0;
    width: 89mm
  }

  .print-container.labels .block.right.r-1 {
    top: 40mm
  }

  .print-container.labels .block.right.r-2 {
    top: 95mm
  }

  .print-container.labels .block.right.r-3 {
    top: 151mm
  }

  .print-container.labels .block.right.r-4 {
    top: 207mm
  }

  .print-container.labels .block.right.r-5 {
    height: 44mm;
    top: 263mm
  }

  .print-container.labels .block.right p {
    margin: 0
  }

  .print-container.labels .block.right img {
    height: 10mm;
    width: 10mm
  }

  .print-container.labels .block.left-1 {
    height: 136mm;
    margin-bottom: 6mm;
    margin-right: 4mm;
    width: 110mm
  }

  .print-container.labels .block.left-1 h5 {
    margin-top: 3mm;
    margin-bottom: 1mm;
    font-size: 12pt
  }

  .print-container.labels .block.left-1 p {
    margin: 0;
    font-size: 9.5pt
  }

  .print-container.labels .block.left-1 img {
    height: 7mm;
    width: 15mm
  }

  .print-container.labels .block.left-1 .split {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .print-container.labels .block.left-2 {
    height: 163mm;
    width: 116mm
  }

  .print-container.labels .block.left-2 img.dpd_label {
    height: auto;
    width: 100%;
    position: relative;
    left: -3mm
  }

  .print-container.labels .block.left-2 img.royal_mail_label {
    height: 100%;
    width: auto;
    position: relative;
    left: -1mm
  }
}

/*!
 * Pikaday
 * Copyright Â© 2014 David Bushell | BSD &amp; MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.pika-single.is-hidden {
  display: none
}

.pika-single.is-bound {
  position: absolute;
  -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5);
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5)
}

.pika-single {
  *zoom: 1
}

.pika-single:after,
.pika-single:before {
  content: " ";
  display: table
}

.pika-single:after {
  clear: both
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px
}

.pika-title {
  position: relative;
  text-align: center
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0
}

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #333;
  background-color: #fff
}

.pika-next,
.pika-prev {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
  *position: absolute;
  *top: 0
}

.pika-next:hover,
.pika-prev:hover {
  opacity: 1
}

.pika-next.is-disabled,
.pika-prev.is-disabled {
  cursor: default;
  opacity: .2
}

.is-rtl .pika-next,
.pika-prev {
  border-radius: 0;
  float: left;
  *left: 0;
  margin: 0
}

.is-rtl .pika-next,
.is-rtl .pika-next:hover,
.pika-prev,
.pika-prev:hover {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==")
}

.is-rtl .pika-next:hover,
.pika-prev:hover {
  background-color: transparent;
  background-position: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  -webkit-transform: none;
  transform: none
}

.is-rtl .pika-prev,
.pika-next {
  border-radius: 0;
  float: right;
  *right: 0;
  margin: 0
}

.is-rtl .pika-prev,
.is-rtl .pika-prev:hover,
.pika-next,
.pika-next:hover {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=")
}

.is-rtl .pika-prev:hover,
.pika-next:hover {
  background-color: transparent;
  background-position: 50%;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: crimson;
  -webkit-transform: none;
  transform: none
}

.pika-select {
  display: inline-block;
  *display: inline
}

.pika-table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0
}

.pika-table td,
.pika-table th {
  width: 14.285714285714286%;
  padding: 0
}

.pika-table th {
  color: #fff;
  font-size: 12px;
  line-height: 25px;
  font-weight: 700;
  text-align: center
}

.pika-table abbr {
  border-bottom: none;
  cursor: help
}

.pika-button {
  border-radius: 0;
  cursor: pointer;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5
}

.is-today .pika-button {
  color: #3598d4;
  font-weight: 700
}

.is-selected .pika-button {
  color: #fff;
  font-weight: 700;
  background: #3cc7b1;
  -webkit-box-shadow: inset 0 1px 3px #2ea28f;
  box-shadow: inset 0 1px 3px #2ea28f;
  border-radius: 0
}

.is-disabled .pika-button,
.is-outside-current-month .pika-button {
  color: #fff;
  opacity: .3
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default
}

.pika-button:hover {
  color: #fff;
  background: #3cc7b1;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  -webkit-transform: none;
  transform: none
}

.pika-button .is-selection-disabled {
  pointer-events: none;
  cursor: default
}

.pika-week {
  font-size: 11px;
  color: #999
}

.is-inrange .pika-button {
  background: #d5e9f7
}

.is-startrange .pika-button {
  background: #6cb31d
}

.is-endrange .pika-button,
.is-startrange .pika-button {
  color: #fff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0
}

.is-endrange .pika-button {
  background: #3af
}

@use "sass:math";

.selectize-control.plugin-drag_drop.multi&gt;.selectize-input&gt;div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, .06) !important;
  border: 0 none !important;
  -webkit-box-shadow: inset 0 0 12px 4px #fff;
  box-shadow: inset 0 0 12px 4px #fff
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder:after {
  content: "!";
  visibility: hidden
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2)
}

.selectize-control .dropdown-header {
  position: relative;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid #bcc3c3;
  background: #f5f6f6;
  border-radius: 0 0 0 0
}

.selectize-control .dropdown-header-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  color: #303030;
  opacity: .4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important
}

.selectize-control .dropdown-header-close:hover {
  color: #000
}

.selectize-dropdown.plugin-optgroup_columns .selectize-dropdown-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  min-width: 0
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none
}

.selectize-control.plugin-remove_button .item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 0 !important
}

.selectize-control.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 2px 6px;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 6px
}

.selectize-control.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, .05)
}

.selectize-control.plugin-remove_button .item.active .remove {
  border-left-color: #cacaca
}

.selectize-control.plugin-remove_button .disabled .item .remove:hover {
  background: none
}

.selectize-control.plugin-remove_button .disabled .item .remove {
  border-left-color: #fff
}

.selectize-control.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px
}

.selectize-control {
  width: 100%;
  position: relative
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
  color: #303030;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-smoothing: inherit
}

.selectize-control.single .selectize-input.input-active,
.selectize-input {
  background: #fff;
  cursor: text;
  display: block
}

.selectize-input {
  border-bottom: .125rem solid #bcc3c3;
  padding: .75rem 1.625rem .75rem 0;
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0
}

.selectize-control.multi .selectize-input.has-items {
  padding: calc(.75rem - 2px - 0) 1rem calc(.75rem - 2px - 3px - 0)
}

.selectize-input.full {
  background-color: #fff
}

.selectize-input.disabled,
.selectize-input.disabled * {
  cursor: default !important
}

.selectize-input.focus {
  border-bottom-color: #0044e3
}

.selectize-input.dropdown-active {
  border-radius: 0 0 0 0
}

.selectize-input&gt;* {
  vertical-align: baseline;
  display: inline-block;
  zoom: 1
}

.selectize-control.multi .selectize-input&gt;div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0 solid #d0d0d0
}

.selectize-control.multi .selectize-input&gt;div.active {
  background: #57b4fc;
  color: #303030;
  border: 0 solid #cacaca
}

.selectize-control.multi .selectize-input.disabled&gt;div,
.selectize-control.multi .selectize-input.disabled&gt;div.active {
  color: #7d7c7c;
  background: #fff;
  border: 0 solid #fff
}

.selectize-input&gt;input {
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important
}

.selectize-input&gt;input::-ms-clear {
  display: none
}

.selectize-input&gt;input:focus {
  outline: none !important
}

.selectize-input&gt;input[placeholder] {
  -webkit-box-sizing: initial;
  box-sizing: initial
}

.selectize-input.has-items&gt;input {
  margin: 0 !important
}

.selectize-input:after {
  content: " ";
  display: block;
  clear: left
}

.selectize-input.dropdown-active:before {
  content: " ";
  display: block;
  position: absolute;
  background: #f0f0f0;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0
}

.selectize-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: none;
  background: #fff;
  margin: -1px 0 0;
  border-top: 0 none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  border-radius: 0 0 0 0
}

.selectize-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden
}

.selectize-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, .2);
  border-radius: 1px
}

.selectize-dropdown .create,
.selectize-dropdown .no-results,
.selectize-dropdown .optgroup-header,
.selectize-dropdown .option {
  padding: .75rem 1rem
}

.selectize-dropdown .option,
.selectize-dropdown [data-disabled],
.selectize-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: .5
}

.selectize-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none
}

.selectize-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default
}

.selectize-dropdown .active {
  background-color: #f5fafd;
  color: #495c68
}

.selectize-dropdown .active.create {
  color: #495c68
}

.selectize-dropdown .create {
  color: rgba(48, 48, 48, .5)
}

.selectize-control.single .selectize-dropdown {
  top: 0 !important;
  border-radius: .25rem
}

.selectize-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  overflow-scrolling: touch
}

.selectize-dropdown-emptyoptionlabel {
  text-align: center
}

.selectize-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: .75rem 1rem
}

.selectize-dropdown .spinner:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #bcc3c3;
  border-color: #bcc3c3 transparent;
  -webkit-animation: lds-dual-ring 1.2s linear infinite;
  animation: lds-dual-ring 1.2s linear infinite
}

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
  cursor: pointer
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.input-active input {
  cursor: text
}

.selectize-control.single .selectize-input:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: .125rem;
  margin-top: -2.5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0;
  border-color: gray transparent transparent
}

.selectize-control.single .selectize-input.dropdown-active:after {
  margin-top: -4px;
  border-width: 0 5px 5px;
  border-color: transparent transparent gray
}

.selectize-control.rtl {
  text-align: right
}

.selectize-control.rtl.single .selectize-input:after {
  left: .125rem;
  right: auto
}

.selectize-control.rtl .selectize-input&gt;input {
  margin: 0 4px 0 -2px !important
}

.selectize-control .selectize-input.disabled {
  opacity: .5;
  background-color: #fafafa
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

body,
html {
  font-family: lato, Roboto, Helvetica, Futura, Arial, sans-serif;
  font-size: 16px;
  -webkit-text-size-adjust: none;
  color: #707275;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #121f30;
  font-family: gilroyextrabold, Avenir, Montserrat, Roboto, sans-serif;
  font-weight: 700
}

h1 {
  font-size: 4em;
  line-height: 1.2;
  margin-bottom: 2.5rem
}

h2 {
  font-size: 2.75em;
  margin: 2em 0
}

h2:first-of-type {
  margin-top: 0
}

h3 {
  font-size: 2.5em;
  line-height: 1;
  margin-bottom: 1.25em;
  margin-top: 1.25em
}

h3:first-of-type {
  margin-top: 0
}

h4,
h5 {
  font-size: 1.125em;
  line-height: 1
}

h5 {
  color: #00257d
}

h5,
h6 {
  font-weight: 500
}

h6 {
  color: #0044e3;
  font-size: 1em;
  line-height: 1
}

a {
  text-decoration: none
}

svg {
  display: block;
  margin: 0
}

.btn:focus,
:focus,
a:focus,
button:focus {
  border: none;
  outline: none;
  text-decoration: none
}

.focus--no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none
}

.focus--shadow {
  -webkit-box-shadow: 0 0 0 .125rem rgba(12, 146, 250, .8);
  box-shadow: 0 0 0 .125rem rgba(12, 146, 250, .8)
}

.btn,
button {
  line-height: 1.25rem;
  font-weight: 24;
  font-weight: 500
}

.btn .icon,
button .icon {
  margin-right: .5rem
}

.btn .icon svg,
button .icon svg {
  width: 1.25rem;
  height: 1.25rem
}

@media screen and (min-width:36.0625rem) {

  .btn .icon svg,
  button .icon svg {
    width: 1.5rem;
    height: 1.5rem
  }
}

.btn .text+.icon,
button .text+.icon {
  margin-right: 0;
  margin-left: .5rem
}

.btn:not(:disabled),
button:not(:disabled) {
  cursor: pointer
}

.btn:not(.not-responsive),
button:not(.not-responsive) {
  font-size: .75rem;
  text-transform: uppercase
}

@media screen and (min-width:25.0625rem) {

  .btn:not(.not-responsive),
  button:not(.not-responsive) {
    font-size: .875rem;
    text-transform: none
  }
}

@media screen and (min-width:36.0625rem) {

  .btn:not(.not-responsive),
  button:not(.not-responsive) {
    font-size: 1rem
  }
}

@media screen and (min-width:36.0625rem) {

  .btn,
  button {
    line-height: 1.5rem
  }
}

.btn.disabled,
.btn:disabled,
.btn[disabled],
button.disabled,
button:disabled,
button[disabled] {
  color: #fff;
  background-color: #9ca3af
}

.btn.disabled:focus,
.btn.disabled:hover,
.btn:disabled:focus,
.btn:disabled:hover,
.btn[disabled]:focus,
.btn[disabled]:hover,
button.disabled:focus,
button.disabled:hover,
button:disabled:focus,
button:disabled:hover,
button[disabled]:focus,
button[disabled]:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background-color: #9ca3af
}

a svg,
button svg {
  pointer-events: none
}

a.btn:not(.min-width-auto),
button.btn:not(.min-width-auto) {
  min-width: auto;
  min-width: 12rem
}

a.btn-rounded,
button.btn-rounded {
  border-radius: .5rem
}

.btn-sm {
  padding: .5rem 1rem
}

@media screen and (min-width:25.0625rem) {
  .btn-sm {
    padding: .75rem 1rem
  }
}

.btn-md {
  padding: .75rem 1rem
}

@media screen and (min-width:25.0625rem) {
  .btn-md {
    padding: 1rem 1.25rem
  }
}

.btn-lg {
  padding: 1rem 1.25rem
}

@media screen and (min-width:25.0625rem) {
  .btn-lg {
    padding-right: 1.5rem;
    padding-bottom: 1.5rem
  }
}

.btn-green,
.btn-primary,
.btn-red,
.btn-secondary {
  color: #fff
}

.btn-yellow {
  color: #121f30;
  background-color: #f2b807
}

.btn-yellow:hover {
  background-color: #dea906
}

.btn-yellow:focus {
  background-color: #ca9a06
}

.btn-primary {
  background-color: #0044e3
}

.btn-primary:hover {
  background-color: #003ecf
}

.btn-primary:focus {
  background-color: #0038ba
}

.btn-secondary {
  background-color: #0c92fa
}

.btn-secondary:hover {
  background-color: #0587ed
}

.btn-secondary:focus {
  background-color: #047cd9
}

.btn-green {
  background-color: #10b981
}

.btn-green:hover {
  background-color: #0ea674
}

.btn-green:focus {
  background-color: #0d9367
}

.btn-red {
  background-color: #ef4444
}

.btn-red:hover {
  background-color: #ed3131
}

.btn-red:focus {
  background-color: #ec1e1e
}

.btn-white {
  color: #121f30;
  background-color: #fff
}

.btn-white:hover {
  background-color: #f1f1f1
}

.btn-white:focus {
  background-color: #eee
}

.btn-gray {
  color: #121f30;
  background-color: #f1f1f1
}

.btn-gray:hover {
  background-color: #e1e1e1
}

.btn-gray:focus {
  background-color: #d1d1d1
}

.container {
  display: block;
  width: 100%;
  max-width: 85.5rem;
  padding: 0 1.5rem;
  margin-right: auto;
  margin-left: auto
}

@media screen and (max-width:20rem) {
  .container {
    padding-right: 1rem;
    padding-left: 1rem
  }
}

@media screen and (min-width:22.5625rem) {
  .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem
  }
}

@media screen and (min-width:23.5rem) {
  .container {
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }
}

@media screen and (min-width:30.0625rem) {
  .container {
    padding-right: 2rem;
    padding-left: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  .container {
    padding-right: 2.5rem;
    padding-left: 2.5rem
  }
}

@media screen and (min-width:48.0625rem) {
  .container {
    padding-right: 3rem;
    padding-left: 3rem
  }
}

@media screen and (min-width:64.0625rem) {
  .container {
    padding-right: 3.5rem;
    padding-left: 3.5rem
  }
}

@media screen and (min-width:75.0625rem) {
  .container {
    padding-right: 4rem;
    padding-left: 4rem
  }
}

@media screen and (min-width:90.0625rem) {
  .container {
    padding-right: 5rem;
    padding-left: 5rem
  }
}

.text-right {
  text-align: right
}

.text-center {
  text-align: center
}

.text-left {
  text-align: left
}

.text-justify {
  text-align: justify
}

.text-italic {
  font-style: italic
}

.text-dark {
  color: #121f30
}

.text-light {
  color: #707275
}

.text-black {
  color: #000
}

.text-white {
  color: #fff
}

.text-yellow {
  color: #f2b807
}

.text-primary {
  color: #0044e3
}

.text-secondary {
  color: #0c92fa
}

.text-opacity-0 {
  opacity: 0
}

.text-opacity-25 {
  opacity: .25
}

.text-opacity-50 {
  opacity: .5
}

.text-opacity-75 {
  opacity: .75
}

.text-opacity-100 {
  opacity: 1
}

.underline {
  text-decoration: underline
}

.line-through {
  text-decoration: line-through
}

.no-underline {
  text-decoration: none
}

.no-pointer {
  pointer-events: none
}

.message-details {
  border-top: 2px solid #0044e3;
  margin-top: 122px
}

.mobile-width-fix {
  max-width: 100vw
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn)
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(.8)
  }

  to {
    -webkit-transform: scale(1.2)
  }
}

@-webkit-keyframes cloud {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(15%);
    transform: translateX(15%)
  }
}

@keyframes cloud {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  to {
    -webkit-transform: translateX(15%);
    transform: translateX(15%)
  }
}

li,
p,
ul {
  font-size: 1em
}

li,
p {
  line-height: 1.75
}

button {
  background: none;
  border: none
}

.page-wrap {
  display: block;
  width: 100%;
  height: auto
}

.hr-line {
  display: block;
  height: 1.5rem;
  max-width: 100%;
  margin: 1rem 0;
  padding: 0;
  text-align: center;
  line-height: 1rem;
  position: relative;
  background-color: #fafafa
}

.hr-line:before {
  content: "";
  display: block;
  height: .0625rem;
  width: auto;
  position: absolute;
  top: .75rem;
  left: 0;
  right: 0;
  background-color: #ccc;
  position: relative;
  z-index: 10
}

.hr-line:after {
  content: "OR";
  display: inline-block;
  line-height: 1.125rem;
  width: auto;
  border-radius: .1875rem;
  padding: .1875rem .5rem;
  background-color: #fafafa;
  position: relative;
  z-index: 12
}

.register-sidebar {
  padding-top: 58px
}

@media (max-width:991px) {
  .register-sidebar {
    padding-top: 0;
    margin-bottom: 45px
  }
}

.register-sidebar .register-sidebar__content {
  background-color: #fafafa;
  padding: 15px;
  border-radius: 3px
}

.register-sidebar .register-sidebar__content h5 {
  padding: 12px 0
}

.register-sidebar .register-sidebar__content h5 .hide-text {
  display: inline
}

@media (max-width:991px) {
  .register-sidebar .register-sidebar__content h5 .hide-text {
    display: none
  }
}

.register-sidebar .register-sidebar__content a {
  margin-bottom: 0;
  padding-right: 15px;
  padding-left: 15px
}

@media (max-width:991px) {
  .register-sidebar .register-sidebar__content a {
    margin-bottom: 30px
  }
}

.register-sidebar .register-sidebar__content .hr-line {
  display: none
}

@media (max-width:991px) {
  .register-sidebar .register-sidebar__content .hr-line {
    display: block
  }
}

@media (max-width:991px) {
  .register-sidebar .register-sidebar__content {
    padding: 30px 30px 14px
  }
}

.has-underline,
.section-heading {
  font-weight: 700;
  position: relative
}

.has-underline:after,
.section-heading:after {
  content: "";
  display: block;
  margin: 0;
  width: 4rem;
  height: .25rem;
  margin-top: .75rem;
  background-color: #0044e3
}

.has-underline.text-center:after,
.section-heading.text-center:after {
  margin-left: auto;
  margin-right: auto
}

.has-underline.text-right:after,
.section-heading.text-right:after {
  margin-left: auto;
  margin-right: 0
}

.has-underline.text-white,
.section-heading.text-white {
  color: #fff
}

.has-underline.text-white:after,
.section-heading.text-white:after {
  background-color: #fff
}

div.shift-up,
section.shift-up {
  position: relative;
  margin-top: -8rem !important
}

@media screen and (min-width:36.0625rem) {

  div.shift-up,
  section.shift-up {
    margin-top: -12rem !important
  }
}

.section-heading {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 2.5rem
}

@media screen and (min-width:30.0625rem) {
  .section-heading {
    font-size: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  .section-heading {
    font-size: 2.5rem
  }
}

@media screen and (min-width:48.0625rem) {
  .section-heading {
    font-size: 3rem
  }
}

.section-subheading {
  max-width: 32rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0;
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem)
}

.w-0 {
  width: 0
}

.w-4 {
  width: .25rem
}

.w-8 {
  width: .5rem
}

.w-12 {
  width: .75rem
}

.w-16 {
  width: 1rem
}

.w-20 {
  width: 1.25rem
}

.w-24 {
  width: 1.5rem
}

.w-32 {
  width: 2rem
}

.w-36 {
  width: 2.25rem
}

.w-40 {
  width: 2.5rem
}

.w-48 {
  width: 3rem
}

.w-64 {
  width: 4rem
}

.w-80 {
  width: 5rem
}

.w-96 {
  width: 6rem
}

.w-128 {
  width: 8rem
}

.w-160 {
  width: 10rem
}

.w-192 {
  width: 12rem
}

.w-224 {
  width: 14rem
}

.w-256 {
  width: 16rem
}

.w-auto {
  width: auto
}

.w-px {
  width: 1px
}

.w-1\/2 {
  width: 50%
}

.w-1\/3 {
  width: 33.333333%
}

.w-2\/3 {
  width: 66.666667%
}

.w-1\/4 {
  width: 25%
}

.w-2\/4 {
  width: 50%
}

.w-3\/4 {
  width: 75%
}

.w-1\/5 {
  width: 20%
}

.w-2\/5 {
  width: 40%
}

.w-3\/5 {
  width: 60%
}

.w-4\/5 {
  width: 80%
}

.w-1\/6 {
  width: 16.666667%
}

.w-2\/6 {
  width: 33.333333%
}

.w-3\/6 {
  width: 50%
}

.w-4\/6 {
  width: 66.666667%
}

.w-5\/6 {
  width: 83.333333%
}

.w-1\/12 {
  width: 8.333333%
}

.w-2\/12 {
  width: 16.666667%
}

.w-3\/12 {
  width: 25%
}

.w-4\/12 {
  width: 33.333333%
}

.w-5\/12 {
  width: 41.666667%
}

.w-6\/12 {
  width: 50%
}

.w-7\/12 {
  width: 58.333333%
}

.w-8\/12 {
  width: 66.666667%
}

.w-9\/12 {
  width: 75%
}

.w-10\/12 {
  width: 83.333333%
}

.w-11\/12 {
  width: 91.666667%
}

.w-full {
  width: 100%
}

.w-screen {
  width: 100vw
}

.h-0 {
  height: 0
}

.h-4 {
  height: .25rem
}

.h-8 {
  height: .5rem
}

.h-12 {
  height: .75rem
}

.h-16 {
  height: 1rem
}

.h-20 {
  height: 1.25rem
}

.h-24 {
  height: 1.5rem
}

.h-32 {
  height: 2rem
}

.h-36 {
  height: 2.25rem
}

.h-40 {
  height: 2.5rem
}

.h-48 {
  height: 3rem
}

.h-64 {
  height: 4rem
}

.h-80 {
  height: 5rem
}

.h-96 {
  height: 6rem
}

.h-128 {
  height: 8rem
}

.h-160 {
  height: 10rem
}

.h-192 {
  height: 12rem
}

.h-224 {
  height: 14rem
}

.h-256 {
  height: 16rem
}

.h-auto {
  height: auto
}

.min-w-full {
  min-width: 100%
}

.min-w-screen {
  min-width: 100vw
}

.max-w-none {
  max-width: none
}

.max-w-xs {
  max-width: 20rem
}

.max-w-sm {
  max-width: 24rem
}

.max-w-md {
  max-width: 28rem
}

.max-w-lg {
  max-width: 32rem
}

.max-w-xl {
  max-width: 36rem
}

.max-w-2xl {
  max-width: 42rem
}

.max-w-3xl {
  max-width: 48rem
}

.max-w-4xl {
  max-width: 56rem
}

.max-w-5xl {
  max-width: 64rem
}

.max-w-6xl {
  max-width: 72rem
}

.max-w-full {
  max-width: 100%
}

.max-w-screen-sm {
  max-width: 640px
}

.max-w-screen-md {
  max-width: 768px
}

.max-w-screen-lg {
  max-width: 1024px
}

.max-w-screen-xl {
  max-width: 1280px
}

.min-h-full {
  min-height: 100%
}

.min-h-screen {
  min-height: 100vh
}

.max-h-full {
  max-height: 100%
}

.max-h-screen {
  max-height: 100vh
}

.text-xs {
  font-size: .75rem
}

.text-sm {
  font-size: .875rem
}

.text-base {
  font-size: 1rem
}

.text-lg {
  font-size: 1.125rem
}

.text-xl {
  font-size: 1.25rem
}

.text-2xl {
  font-size: 1.5rem
}

.text-3xl {
  font-size: 1.875rem
}

.text-4xl {
  font-size: 2.25rem
}

.text-5xl {
  font-size: 3rem
}

.text-6xl {
  font-size: 4rem
}

.heading,
h1 {
  font-size: 2.5em;
  margin-top: 0;
  margin-bottom: 0;
  text-align: start
}

@media screen and (min-width:30.0625rem) {

  .heading,
  h1 {
    font-size: 3rem
  }
}

@media screen and (min-width:36.0625rem) {

  .heading,
  h1 {
    font-size: 3.4rem
  }
}

@media screen and (min-width:64.0625rem) {

  .heading,
  h1 {
    font-size: 3.4rem
  }
}

@media screen and (min-width:75.0625rem) {
  .heading {
    font-size: 3.75rem
  }
}

@media screen and (min-width:90.0625rem) {
  .heading {
    font-size: 5rem
  }
}

.italic {
  font-style: italic
}

.not-italic {
  font-style: normal
}

.font-light {
  font-weight: 300
}

.font-normal {
  font-weight: 400
}

.font-medium {
  font-weight: 500
}

.font-semibold {
  font-weight: 600
}

.font-bold {
  font-weight: 700
}

.font-extrabold {
  font-weight: 800
}

.font-black {
  font-weight: 900
}

.tracking-tighter {
  letter-spacing: -.05em
}

.tracking-tight {
  letter-spacing: -.025em
}

.tracking-normal {
  letter-spacing: 0
}

.tracking-wide {
  letter-spacing: .025em
}

.tracking-wider {
  letter-spacing: .05em
}

.tracking-widest {
  letter-spacing: .1em
}

.leading-3 {
  line-height: .75rem
}

.leading-4 {
  line-height: 1rem
}

.leading-5 {
  line-height: 1.25rem
}

.leading-6 {
  line-height: 1.5rem
}

.leading-7 {
  line-height: 1.75rem
}

.leading-8 {
  line-height: 2rem
}

.leading-9 {
  line-height: 2.25rem
}

.leading-10 {
  line-height: 2.5rem
}

.leading-none {
  line-height: 1
}

.leading-tight {
  line-height: 1.25
}

.leading-snug {
  line-height: 1.375
}

.leading-normal {
  line-height: 1.5
}

.leading-relaxed {
  line-height: 1.625
}

.leading-loose {
  line-height: 2
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.capitalize {
  text-transform: capitalize
}

.normal-case {
  text-transform: none
}

.align-baseline {
  vertical-align: baseline
}

.align-top {
  vertical-align: top
}

.align-middle {
  vertical-align: middle
}

.align-bottom {
  vertical-align: bottom
}

.align-text-top {
  vertical-align: text-top
}

.align-text-bottom {
  vertical-align: text-bottom
}

.whitespace-normal {
  white-space: normal
}

.whitespace-no-wrap {
  white-space: nowrap
}

.whitespace-pre {
  white-space: pre
}

.whitespace-pre-line {
  white-space: pre-line
}

.whitespace-pre-wrap {
  white-space: pre-wrap
}

.border-radius-2 {
  border-radius: .125rem !important
}

.border-radius-4 {
  border-radius: .25rem !important
}

.border-radius-8 {
  border-radius: .5rem !important
}

.border-radius-12 {
  border-radius: .75rem !important
}

.border-radius-16 {
  border-radius: 1rem !important
}

.border-radius-24 {
  border-radius: 1.5rem !important
}

.border-radius-32 {
  border-radius: 2rem !important
}

.border-radius-40 {
  border-radius: 2.5rem !important
}

.border-radius-48 {
  border-radius: 3rem !important
}

.border-radius-rounded,
.rounded-circle {
  border-radius: 999px !important
}

.break-normal {
  overflow-wrap: normal;
  word-break: normal
}

.break-words {
  overflow-wrap: break-word
}

.break-all {
  word-break: break-all
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.list-none,
ul.list-none,
ul.list-none li {
  list-style-type: none
}

ul.list-none {
  padding-left: 0
}

.list-disc {
  list-style-type: disc
}

.list-decimal {
  list-style-type: decimal
}

.p-0 {
  padding: 0
}

.p-4 {
  padding: .25rem
}

.p-8 {
  padding: .5rem
}

.p-12 {
  padding: .75rem
}

.p-16 {
  padding: 1rem
}

.p-20 {
  padding: 1.25rem
}

.p-24 {
  padding: 1.5rem
}

.p-32 {
  padding: 2rem
}

.p-36 {
  padding: 2.25rem
}

.p-40 {
  padding: 2.5rem
}

.p-48 {
  padding: 3rem
}

.p-64 {
  padding: 4rem
}

.p-80 {
  padding: 5rem
}

.p-96 {
  padding: 6rem
}

.p-128 {
  padding: 8rem
}

.p-160 {
  padding: 10rem
}

.p-192 {
  padding: 12rem
}

.p-224 {
  padding: 14rem
}

.p-256 {
  padding: 16rem
}

.p-px {
  padding: 1px
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0
}

.px-0 {
  padding-left: 0;
  padding-right: 0
}

.py-4 {
  padding-top: .25rem;
  padding-bottom: .25rem
}

.px-4 {
  padding-left: .25rem;
  padding-right: .25rem
}

.py-8 {
  padding-top: .5rem;
  padding-bottom: .5rem
}

.px-8 {
  padding-left: .5rem;
  padding-right: .5rem
}

.py-12 {
  padding-top: .75rem;
  padding-bottom: .75rem
}

.px-12 {
  padding-left: .75rem;
  padding-right: .75rem
}

.py-16 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.px-16 {
  padding-left: 1rem;
  padding-right: 1rem
}

.py-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem
}

.px-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

.py-24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem
}

.px-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem
}

.py-32 {
  padding-top: 2rem;
  padding-bottom: 2rem
}

.px-32 {
  padding-left: 2rem;
  padding-right: 2rem
}

.py-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem
}

.px-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem
}

.py-48 {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.px-48 {
  padding-left: 3rem;
  padding-right: 3rem
}

.py-64 {
  padding-top: 4rem;
  padding-bottom: 4rem
}

.px-64 {
  padding-left: 4rem;
  padding-right: 4rem
}

.py-80 {
  padding-top: 5rem;
  padding-bottom: 5rem
}

.px-80 {
  padding-left: 5rem;
  padding-right: 5rem
}

.py-96 {
  padding-top: 6rem;
  padding-bottom: 6rem
}

.px-96 {
  padding-left: 6rem;
  padding-right: 6rem
}

.py-128 {
  padding-top: 8rem;
  padding-bottom: 8rem
}

.px-128 {
  padding-left: 8rem;
  padding-right: 8rem
}

.py-160 {
  padding-top: 10rem;
  padding-bottom: 10rem
}

.px-160 {
  padding-left: 10rem;
  padding-right: 10rem
}

.py-192 {
  padding-top: 12rem;
  padding-bottom: 12rem
}

.px-192 {
  padding-left: 12rem;
  padding-right: 12rem
}

.py-224 {
  padding-top: 14rem;
  padding-bottom: 14rem
}

.px-224 {
  padding-left: 14rem;
  padding-right: 14rem
}

.py-256 {
  padding-top: 16rem;
  padding-bottom: 16rem
}

.px-256 {
  padding-left: 16rem;
  padding-right: 16rem
}

.py-px {
  padding-top: 1px;
  padding-bottom: 1px
}

.px-px {
  padding-left: 1px;
  padding-right: 1px
}

.pt-0 {
  padding-top: 0
}

.pr-0 {
  padding-right: 0
}

.pb-0 {
  padding-bottom: 0
}

.pl-0 {
  padding-left: 0
}

.pt-4 {
  padding-top: .25rem
}

.pr-4 {
  padding-right: .25rem
}

.pb-4 {
  padding-bottom: .25rem
}

.pl-4 {
  padding-left: .25rem
}

.pt-8 {
  padding-top: .5rem
}

.pr-8 {
  padding-right: .5rem
}

.pb-8 {
  padding-bottom: .5rem
}

.pl-8 {
  padding-left: .5rem
}

.pt-12 {
  padding-top: .75rem
}

.pr-12 {
  padding-right: .75rem
}

.pb-12 {
  padding-bottom: .75rem
}

.pl-12 {
  padding-left: .75rem
}

.pt-16 {
  padding-top: 1rem
}

.pr-16 {
  padding-right: 1rem
}

.pb-16 {
  padding-bottom: 1rem
}

.pl-16 {
  padding-left: 1rem
}

.pt-20 {
  padding-top: 1.25rem
}

.pr-20 {
  padding-right: 1.25rem
}

.pb-20 {
  padding-bottom: 1.25rem
}

.pl-20 {
  padding-left: 1.25rem
}

.pt-24 {
  padding-top: 1.5rem
}

.pr-24 {
  padding-right: 1.5rem
}

.pb-24 {
  padding-bottom: 1.5rem
}

.pl-24 {
  padding-left: 1.5rem
}

.pt-32 {
  padding-top: 2rem
}

.pr-32 {
  padding-right: 2rem
}

.pb-32 {
  padding-bottom: 2rem
}

.pl-32 {
  padding-left: 2rem
}

.pt-40 {
  padding-top: 2.5rem
}

.pr-40 {
  padding-right: 2.5rem
}

.pb-40 {
  padding-bottom: 2.5rem
}

.pl-40 {
  padding-left: 2.5rem
}

.pt-48 {
  padding-top: 3rem
}

.pr-48 {
  padding-right: 3rem
}

.pb-48 {
  padding-bottom: 3rem
}

.pl-48 {
  padding-left: 3rem
}

.pt-64 {
  padding-top: 4rem
}

.pr-64 {
  padding-right: 4rem
}

.pb-64 {
  padding-bottom: 4rem
}

.pl-64 {
  padding-left: 4rem
}

.pt-80 {
  padding-top: 5rem
}

.pr-80 {
  padding-right: 5rem
}

.pb-80 {
  padding-bottom: 5rem
}

.pl-80 {
  padding-left: 5rem
}

.pt-96 {
  padding-top: 6rem
}

.pr-96 {
  padding-right: 6rem
}

.pb-96 {
  padding-bottom: 6rem
}

.pl-96 {
  padding-left: 6rem
}

.pt-128 {
  padding-top: 8rem
}

.pr-128 {
  padding-right: 8rem
}

.pb-128 {
  padding-bottom: 8rem
}

.pl-128 {
  padding-left: 8rem
}

.pt-160 {
  padding-top: 10rem
}

.pr-160 {
  padding-right: 10rem
}

.pb-160 {
  padding-bottom: 10rem
}

.pl-160 {
  padding-left: 10rem
}

.pt-192 {
  padding-top: 12rem
}

.pr-192 {
  padding-right: 12rem
}

.pb-192 {
  padding-bottom: 12rem
}

.pl-192 {
  padding-left: 12rem
}

.pt-224 {
  padding-top: 14rem
}

.pr-224 {
  padding-right: 14rem
}

.pb-224 {
  padding-bottom: 14rem
}

.pl-224 {
  padding-left: 14rem
}

.pt-256 {
  padding-top: 16rem
}

.pr-256 {
  padding-right: 16rem
}

.pb-256 {
  padding-bottom: 16rem
}

.pl-256 {
  padding-left: 16rem
}

.pt-px {
  padding-top: 1px
}

.pr-px {
  padding-right: 1px
}

.pb-px {
  padding-bottom: 1px
}

.pl-px {
  padding-left: 1px
}

.m-0 {
  margin: 0
}

.m-4 {
  margin: .25rem
}

.m-8 {
  margin: .5rem
}

.m-12 {
  margin: .75rem
}

.m-16 {
  margin: 1rem
}

.m-20 {
  margin: 1.25rem
}

.m-24 {
  margin: 1.5rem
}

.m-32 {
  margin: 2rem
}

.m-40 {
  margin: 2.5rem
}

.m-48 {
  margin: 3rem
}

.m-64 {
  margin: 4rem
}

.m-80 {
  margin: 5rem
}

.m-96 {
  margin: 6rem
}

.m-128 {
  margin: 8rem
}

.m-160 {
  margin: 10rem
}

.m-192 {
  margin: 12rem
}

.m-224 {
  margin: 14rem
}

.m-256 {
  margin: 16rem
}

.m-auto {
  margin: auto
}

.m-px {
  margin: 1px
}

.-m-4 {
  margin: -.25rem
}

.-m-8 {
  margin: -.5rem
}

.-m-12 {
  margin: -.75rem
}

.-m-16 {
  margin: -1rem
}

.-m-20 {
  margin: -1.25rem
}

.-m-24 {
  margin: -1.5rem
}

.-m-32 {
  margin: -2rem
}

.-m-40 {
  margin: -2.5rem
}

.-m-48 {
  margin: -3rem
}

.-m-64 {
  margin: -4rem
}

.-m-80 {
  margin: -5rem
}

.-m-96 {
  margin: -6rem
}

.-m-128 {
  margin: -8rem
}

.-m-160 {
  margin: -10rem
}

.-m-192 {
  margin: -12rem
}

.-m-224 {
  margin: -14rem
}

.-m-256 {
  margin: -16rem
}

.-m-px {
  margin: -1px
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0
}

.mx-0 {
  margin-left: 0;
  margin-right: 0
}

.my-4 {
  margin-top: .25rem;
  margin-bottom: .25rem
}

.mx-4 {
  margin-left: .25rem;
  margin-right: .25rem
}

.my-8 {
  margin-top: .5rem;
  margin-bottom: .5rem
}

.mx-8 {
  margin-left: .5rem;
  margin-right: .5rem
}

.my-12 {
  margin-top: .75rem;
  margin-bottom: .75rem
}

.mx-12 {
  margin-left: .75rem;
  margin-right: .75rem
}

.my-16 {
  margin-top: 1rem;
  margin-bottom: 1rem
}

.mx-16 {
  margin-left: 1rem;
  margin-right: 1rem
}

.my-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem
}

.mx-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem
}

.my-24 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem
}

.mx-24 {
  margin-left: 1.5rem;
  margin-right: 1.5rem
}

.my-32 {
  margin-top: 2rem;
  margin-bottom: 2rem
}

.mx-32 {
  margin-left: 2rem;
  margin-right: 2rem
}

.my-40 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem
}

.mx-40 {
  margin-left: 2.5rem;
  margin-right: 2.5rem
}

.my-48 {
  margin-top: 3rem;
  margin-bottom: 3rem
}

.mx-48 {
  margin-left: 3rem;
  margin-right: 3rem
}

.my-64 {
  margin-top: 4rem;
  margin-bottom: 4rem
}

.mx-64 {
  margin-left: 4rem;
  margin-right: 4rem
}

.my-80 {
  margin-top: 5rem;
  margin-bottom: 5rem
}

.mx-80 {
  margin-left: 5rem;
  margin-right: 5rem
}

.my-96 {
  margin-top: 6rem;
  margin-bottom: 6rem
}

.mx-96 {
  margin-left: 6rem;
  margin-right: 6rem
}

.my-128 {
  margin-top: 8rem;
  margin-bottom: 8rem
}

.mx-128 {
  margin-left: 8rem;
  margin-right: 8rem
}

.my-160 {
  margin-top: 10rem;
  margin-bottom: 10rem
}

.mx-160 {
  margin-left: 10rem;
  margin-right: 10rem
}

.my-192 {
  margin-top: 12rem;
  margin-bottom: 12rem
}

.mx-192 {
  margin-left: 12rem;
  margin-right: 12rem
}

.my-224 {
  margin-top: 14rem;
  margin-bottom: 14rem
}

.mx-224 {
  margin-left: 14rem;
  margin-right: 14rem
}

.my-256 {
  margin-top: 16rem;
  margin-bottom: 16rem
}

.mx-256 {
  margin-left: 16rem;
  margin-right: 16rem
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.my-px {
  margin-top: 1px;
  margin-bottom: 1px
}

.mx-px {
  margin-left: 1px;
  margin-right: 1px
}

.-my-4 {
  margin-top: -.25rem;
  margin-bottom: -.25rem
}

.-mx-4 {
  margin-left: -.25rem;
  margin-right: -.25rem
}

.-my-8 {
  margin-top: -.5rem;
  margin-bottom: -.5rem
}

.-mx-8 {
  margin-left: -.5rem;
  margin-right: -.5rem
}

.-my-12 {
  margin-top: -.75rem;
  margin-bottom: -.75rem
}

.-mx-12 {
  margin-left: -.75rem;
  margin-right: -.75rem
}

.-my-16 {
  margin-top: -1rem;
  margin-bottom: -1rem
}

.-mx-16 {
  margin-left: -1rem;
  margin-right: -1rem
}

.-my-20 {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem
}

.-mx-20 {
  margin-left: -1.25rem;
  margin-right: -1.25rem
}

.-my-24 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem
}

.-mx-24 {
  margin-left: -1.5rem;
  margin-right: -1.5rem
}

.-my-32 {
  margin-top: -2rem;
  margin-bottom: -2rem
}

.-mx-32 {
  margin-left: -2rem;
  margin-right: -2rem
}

.-my-40 {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem
}

.-mx-40 {
  margin-left: -2.5rem;
  margin-right: -2.5rem
}

.-my-48 {
  margin-top: -3rem;
  margin-bottom: -3rem
}

.-mx-48 {
  margin-left: -3rem;
  margin-right: -3rem
}

.-my-64 {
  margin-top: -4rem;
  margin-bottom: -4rem
}

.-mx-64 {
  margin-left: -4rem;
  margin-right: -4rem
}

.-my-80 {
  margin-top: -5rem;
  margin-bottom: -5rem
}

.-mx-80 {
  margin-left: -5rem;
  margin-right: -5rem
}

.-my-96 {
  margin-top: -6rem;
  margin-bottom: -6rem
}

.-mx-96 {
  margin-left: -6rem;
  margin-right: -6rem
}

.-my-128 {
  margin-top: -8rem;
  margin-bottom: -8rem
}

.-mx-128 {
  margin-left: -8rem;
  margin-right: -8rem
}

.-my-160 {
  margin-top: -10rem;
  margin-bottom: -10rem
}

.-mx-160 {
  margin-left: -10rem;
  margin-right: -10rem
}

.-my-192 {
  margin-top: -12rem;
  margin-bottom: -12rem
}

.-mx-192 {
  margin-left: -12rem;
  margin-right: -12rem
}

.-my-224 {
  margin-top: -14rem;
  margin-bottom: -14rem
}

.-mx-224 {
  margin-left: -14rem;
  margin-right: -14rem
}

.-my-256 {
  margin-top: -16rem;
  margin-bottom: -16rem
}

.-mx-256 {
  margin-left: -16rem;
  margin-right: -16rem
}

.-my-px {
  margin-top: -1px;
  margin-bottom: -1px
}

.-mx-px {
  margin-left: -1px;
  margin-right: -1px
}

.mt-0 {
  margin-top: 0
}

.mr-0 {
  margin-right: 0
}

.mb-0 {
  margin-bottom: 0
}

.ml-0 {
  margin-left: 0
}

.mt-4 {
  margin-top: .25rem
}

.mr-4 {
  margin-right: .25rem
}

.mb-4 {
  margin-bottom: .25rem
}

.ml-4 {
  margin-left: .25rem
}

.mt-8 {
  margin-top: .5rem
}

.mr-8 {
  margin-right: .5rem
}

.mb-8 {
  margin-bottom: .5rem
}

.ml-8 {
  margin-left: .5rem
}

.mt-12 {
  margin-top: .75rem
}

.mr-12 {
  margin-right: .75rem
}

.mb-12 {
  margin-bottom: .75rem
}

.ml-12 {
  margin-left: .75rem
}

.mt-16 {
  margin-top: 1rem
}

.mr-16 {
  margin-right: 1rem
}

.mb-16 {
  margin-bottom: 1rem
}

.ml-16 {
  margin-left: 1rem
}

.mt-20 {
  margin-top: 1.25rem
}

.mr-20 {
  margin-right: 1.25rem
}

.mb-20 {
  margin-bottom: 1.25rem
}

.ml-20 {
  margin-left: 1.25rem
}

.mt-24 {
  margin-top: 1.5rem
}

.mr-24 {
  margin-right: 1.5rem
}

.mb-24 {
  margin-bottom: 1.5rem
}

.ml-24 {
  margin-left: 1.5rem
}

.mt-32 {
  margin-top: 2rem
}

.mr-32 {
  margin-right: 2rem
}

.mb-32 {
  margin-bottom: 2rem
}

.ml-32 {
  margin-left: 2rem
}

.mt-40 {
  margin-top: 2.5rem
}

.mr-40 {
  margin-right: 2.5rem
}

.mb-40 {
  margin-bottom: 2.5rem
}

.ml-40 {
  margin-left: 2.5rem
}

.mt-48 {
  margin-top: 3rem
}

.mr-48 {
  margin-right: 3rem
}

.mb-48 {
  margin-bottom: 3rem
}

.ml-48 {
  margin-left: 3rem
}

.mt-64 {
  margin-top: 4rem
}

.mr-64 {
  margin-right: 4rem
}

.mb-64 {
  margin-bottom: 4rem
}

.ml-64 {
  margin-left: 4rem
}

.mt-80 {
  margin-top: 5rem
}

.mr-80 {
  margin-right: 5rem
}

.mb-80 {
  margin-bottom: 5rem
}

.ml-80 {
  margin-left: 5rem
}

.mt-96 {
  margin-top: 6rem
}

.mr-96 {
  margin-right: 6rem
}

.mb-96 {
  margin-bottom: 6rem
}

.ml-96 {
  margin-left: 6rem
}

.mt-128 {
  margin-top: 8rem
}

.mr-128 {
  margin-right: 8rem
}

.mb-128 {
  margin-bottom: 8rem
}

.ml-128 {
  margin-left: 8rem
}

.mt-160 {
  margin-top: 10rem
}

.mr-160 {
  margin-right: 10rem
}

.mb-160 {
  margin-bottom: 10rem
}

.ml-160 {
  margin-left: 10rem
}

.mt-192 {
  margin-top: 12rem
}

.mr-192 {
  margin-right: 12rem
}

.mb-192 {
  margin-bottom: 12rem
}

.ml-192 {
  margin-left: 12rem
}

.mt-224 {
  margin-top: 14rem
}

.mr-224 {
  margin-right: 14rem
}

.mb-224 {
  margin-bottom: 14rem
}

.ml-224 {
  margin-left: 14rem
}

.mt-256 {
  margin-top: 16rem
}

.mr-256 {
  margin-right: 16rem
}

.mb-256 {
  margin-bottom: 16rem
}

.ml-256 {
  margin-left: 16rem
}

.mt-auto {
  margin-top: auto
}

.mr-auto {
  margin-right: auto
}

.mb-auto {
  margin-bottom: auto
}

.ml-auto {
  margin-left: auto
}

.mt-px {
  margin-top: 1px
}

.mr-px {
  margin-right: 1px
}

.mb-px {
  margin-bottom: 1px
}

.ml-px {
  margin-left: 1px
}

.-mt-4 {
  margin-top: -.25rem
}

.-mr-4 {
  margin-right: -.25rem
}

.-mb-4 {
  margin-bottom: -.25rem
}

.-ml-4 {
  margin-left: -.25rem
}

.-mt-8 {
  margin-top: -.5rem
}

.-mr-8 {
  margin-right: -.5rem
}

.-mb-8 {
  margin-bottom: -.5rem
}

.-ml-8 {
  margin-left: -.5rem
}

.-mt-12 {
  margin-top: -.75rem
}

.-mr-12 {
  margin-right: -.75rem
}

.-mb-12 {
  margin-bottom: -.75rem
}

.-ml-12 {
  margin-left: -.75rem
}

.-mt-16 {
  margin-top: -1rem
}

.-mr-16 {
  margin-right: -1rem
}

.-mb-16 {
  margin-bottom: -1rem
}

.-ml-16 {
  margin-left: -1rem
}

.-mt-20 {
  margin-top: -1.25rem
}

.-mr-20 {
  margin-right: -1.25rem
}

.-mb-20 {
  margin-bottom: -1.25rem
}

.-ml-20 {
  margin-left: -1.25rem
}

.-mt-24 {
  margin-top: -1.5rem
}

.-mr-24 {
  margin-right: -1.5rem
}

.-mb-24 {
  margin-bottom: -1.5rem
}

.-ml-24 {
  margin-left: -1.5rem
}

.-mt-32 {
  margin-top: -2rem
}

.-mr-32 {
  margin-right: -2rem
}

.-mb-32 {
  margin-bottom: -2rem
}

.-ml-32 {
  margin-left: -2rem
}

.-mt-40 {
  margin-top: -2.5rem
}

.-mr-40 {
  margin-right: -2.5rem
}

.-mb-40 {
  margin-bottom: -2.5rem
}

.-ml-40 {
  margin-left: -2.5rem
}

.-mt-48 {
  margin-top: -3rem
}

.-mr-48 {
  margin-right: -3rem
}

.-mb-48 {
  margin-bottom: -3rem
}

.-ml-48 {
  margin-left: -3rem
}

.-mt-64 {
  margin-top: -4rem
}

.-mr-64 {
  margin-right: -4rem
}

.-mb-64 {
  margin-bottom: -4rem
}

.-ml-64 {
  margin-left: -4rem
}

.-mt-80 {
  margin-top: -5rem
}

.-mr-80 {
  margin-right: -5rem
}

.-mb-80 {
  margin-bottom: -5rem
}

.-ml-80 {
  margin-left: -5rem
}

.-mt-96 {
  margin-top: -6rem
}

.-mr-96 {
  margin-right: -6rem
}

.-mb-96 {
  margin-bottom: -6rem
}

.-ml-96 {
  margin-left: -6rem
}

.-mt-128 {
  margin-top: -8rem
}

.-mr-128 {
  margin-right: -8rem
}

.-mb-128 {
  margin-bottom: -8rem
}

.-ml-128 {
  margin-left: -8rem
}

.-mt-160 {
  margin-top: -10rem
}

.-mr-160 {
  margin-right: -10rem
}

.-mb-160 {
  margin-bottom: -10rem
}

.-ml-160 {
  margin-left: -10rem
}

.-mt-192 {
  margin-top: -12rem
}

.-mr-192 {
  margin-right: -12rem
}

.-mb-192 {
  margin-bottom: -12rem
}

.-ml-192 {
  margin-left: -12rem
}

.-mt-224 {
  margin-top: -14rem
}

.-mr-224 {
  margin-right: -14rem
}

.-mb-224 {
  margin-bottom: -14rem
}

.-ml-224 {
  margin-left: -14rem
}

.-mt-256 {
  margin-top: -16rem
}

.-mr-256 {
  margin-right: -16rem
}

.-mb-256 {
  margin-bottom: -16rem
}

.-ml-256 {
  margin-left: -16rem
}

.-mt-px {
  margin-top: -1px
}

.-mr-px {
  margin-right: -1px
}

.-mb-px {
  margin-bottom: -1px
}

.-ml-px {
  margin-left: -1px
}

.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly
}

.justify-items-auto {
  justify-items: auto
}

.justify-items-start {
  justify-items: start
}

.justify-items-end {
  justify-items: end
}

.justify-items-center {
  justify-items: center
}

.justify-items-stretch {
  justify-items: stretch
}

.justify-self-auto {
  justify-self: auto
}

.justify-self-start {
  justify-self: start
}

.justify-self-end {
  justify-self: end
}

.justify-self-center {
  justify-self: center
}

.justify-self-stretch {
  justify-self: stretch
}

.content-center {
  -ms-flex-line-pack: center;
  align-content: center
}

.content-start {
  -ms-flex-line-pack: start;
  align-content: flex-start
}

.content-end {
  -ms-flex-line-pack: end;
  align-content: flex-end
}

.content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between
}

.content-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around
}

.content-evenly {
  -ms-flex-line-pack: space-evenly;
  align-content: space-evenly
}

.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline
}

.items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.self-auto {
  -ms-flex-item-align: auto;
  align-self: auto
}

.self-start {
  -ms-flex-item-align: start;
  align-self: flex-start
}

.self-end {
  -ms-flex-item-align: end;
  align-self: flex-end
}

.self-center {
  -ms-flex-item-align: center;
  align-self: center
}

.self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch
}

.place-content-center {
  place-content: center
}

.place-content-start {
  place-content: start
}

.place-content-end {
  place-content: end
}

.place-content-between {
  place-content: space-between
}

.place-content-around {
  place-content: space-around
}

.place-content-evenly {
  place-content: space-evenly
}

.place-content-stretch {
  place-content: stretch
}

.place-items-auto {
  place-items: auto
}

.place-items-start {
  place-items: start
}

.place-items-end {
  place-items: end
}

.place-items-center {
  place-items: center
}

.place-items-stretch {
  place-items: stretch
}

.place-self-auto {
  place-self: auto
}

.place-self-start {
  place-self: start
}

.place-self-end {
  place-self: end
}

.place-self-center {
  place-self: center
}

.place-self-stretch {
  place-self: stretch
}

.space-y-0&gt;*+* {
  margin-top: 0
}

.space-x-0&gt;*+* {
  margin-left: 0
}

.space-y-4&gt;*+* {
  margin-top: .25rem
}

.space-x-4&gt;*+* {
  margin-left: .25rem
}

.space-y-8&gt;*+* {
  margin-top: .5rem
}

.space-x-8&gt;*+* {
  margin-left: .5rem
}

.space-y-12&gt;*+* {
  margin-top: .75rem
}

.space-x-12&gt;*+* {
  margin-left: .75rem
}

.space-y-16&gt;*+* {
  margin-top: 1rem
}

.space-x-16&gt;*+* {
  margin-left: 1rem
}

.space-y-20&gt;*+* {
  margin-top: 1.25rem
}

.space-x-20&gt;*+* {
  margin-left: 1.25rem
}

.space-y-24&gt;*+* {
  margin-top: 1.5rem
}

.space-x-24&gt;*+* {
  margin-left: 1.5rem
}

.space-y-32&gt;*+* {
  margin-top: 2rem
}

.space-x-32&gt;*+* {
  margin-left: 2rem
}

.space-y-40&gt;*+* {
  margin-top: 2.5rem
}

.space-x-40&gt;*+* {
  margin-left: 2.5rem
}

.space-y-48&gt;*+* {
  margin-top: 3rem
}

.space-x-48&gt;*+* {
  margin-left: 3rem
}

.space-y-64&gt;*+* {
  margin-top: 4rem
}

.space-x-64&gt;*+* {
  margin-left: 4rem
}

.space-y-80&gt;*+* {
  margin-top: 5rem
}

.space-x-80&gt;*+* {
  margin-left: 5rem
}

.space-y-96&gt;*+* {
  margin-top: 6rem
}

.space-x-96&gt;*+* {
  margin-left: 6rem
}

.space-y-128&gt;*+* {
  margin-top: 8rem
}

.space-x-128&gt;*+* {
  margin-left: 8rem
}

.space-y-160&gt;*+* {
  margin-top: 10rem
}

.space-x-160&gt;*+* {
  margin-left: 10rem
}

.space-y-192&gt;*+* {
  margin-top: 12rem
}

.space-x-192&gt;*+* {
  margin-left: 12rem
}

.space-y-224&gt;*+* {
  margin-top: 14rem
}

.space-x-224&gt;*+* {
  margin-left: 14rem
}

.space-y-256&gt;*+* {
  margin-top: 16rem
}

.space-x-256&gt;*+* {
  margin-left: 16rem
}

.space-y-px&gt;*+* {
  margin-top: 1px
}

.space-x-px&gt;*+* {
  margin-left: 1px
}

.-space-y-4&gt;*+* {
  margin-top: -.25rem
}

.-space-x-4&gt;*+* {
  margin-left: -.25rem
}

.-space-y-8&gt;*+* {
  margin-top: -.5rem
}

.-space-x-8&gt;*+* {
  margin-left: -.5rem
}

.-space-y-12&gt;*+* {
  margin-top: -.75rem
}

.-space-x-12&gt;*+* {
  margin-left: -.75rem
}

.-space-y-16&gt;*+* {
  margin-top: -1rem
}

.-space-x-16&gt;*+* {
  margin-left: -1rem
}

.-space-y-20&gt;*+* {
  margin-top: -1.25rem
}

.-space-x-20&gt;*+* {
  margin-left: -1.25rem
}

.-space-y-24&gt;*+* {
  margin-top: -1.5rem
}

.-space-x-24&gt;*+* {
  margin-left: -1.5rem
}

.-space-y-32&gt;*+* {
  margin-top: -2rem
}

.-space-x-32&gt;*+* {
  margin-left: -2rem
}

.-space-y-40&gt;*+* {
  margin-top: -2.5rem
}

.-space-x-40&gt;*+* {
  margin-left: -2.5rem
}

.-space-y-48&gt;*+* {
  margin-top: -3rem
}

.-space-x-48&gt;*+* {
  margin-left: -3rem
}

.-space-y-64&gt;*+* {
  margin-top: -4rem
}

.-space-x-64&gt;*+* {
  margin-left: -4rem
}

.-space-y-80&gt;*+* {
  margin-top: -5rem
}

.-space-x-80&gt;*+* {
  margin-left: -5rem
}

.-space-y-96&gt;*+* {
  margin-top: -6rem
}

.-space-x-96&gt;*+* {
  margin-left: -6rem
}

.-space-y-128&gt;*+* {
  margin-top: -8rem
}

.-space-x-128&gt;*+* {
  margin-left: -8rem
}

.-space-y-160&gt;*+* {
  margin-top: -10rem
}

.-space-x-160&gt;*+* {
  margin-left: -10rem
}

.-space-y-192&gt;*+* {
  margin-top: -12rem
}

.-space-x-192&gt;*+* {
  margin-left: -12rem
}

.-space-y-224&gt;*+* {
  margin-top: -14rem
}

.-space-x-224&gt;*+* {
  margin-left: -14rem
}

.-space-y-256&gt;*+* {
  margin-top: -16rem
}

.-space-x-256&gt;*+* {
  margin-left: -16rem
}

.-space-y-px&gt;*+* {
  margin-top: -1px
}

.-space-x-px&gt;*+* {
  margin-left: -1px
}

.bg-transparent {
  background: transparent !important
}

.bgc-transparent {
  background-color: transparent !important
}

.bg-current {
  background: currentColor !important
}

.bgc-current {
  background-color: currentColor !important
}

.bg-black {
  background: #000 !important
}

.bgc-black {
  background-color: #000 !important
}

.bg-white {
  background: #fff !important
}

.bgc-white {
  background-color: #fff !important
}

.bg-primary {
  background: #0044e3 !important
}

.bgc-primary {
  background-color: #0044e3 !important
}

.bg-secondary {
  background: #0c92fa !important
}

.bgc-secondary {
  background-color: #0c92fa !important
}

.bg-yellow {
  background: #f2b807 !important
}

.bgc-yellow {
  background-color: #f2b807 !important
}

.bg-orange {
  background: #f27d16 !important
}

.bgc-orange {
  background-color: #f27d16 !important
}

.bg-bottom {
  background-position: bottom
}

.bg-center {
  background-position: 50%
}

.bg-left {
  background-position: 0
}

.bg-left-bottom {
  background-position: 0 100%
}

.bg-left-top {
  background-position: 0 0
}

.bg-right {
  background-position: 100%
}

.bg-right-bottom {
  background-position: 100% 100%
}

.bg-right-top {
  background-position: 100% 0
}

.bg-top {
  background-position: top
}

.bg-repeat {
  background-repeat: repeat
}

.bg-no-repeat {
  background-repeat: no-repeat
}

.bg-repeat-x {
  background-repeat: repeat-x
}

.bg-repeat-y {
  background-repeat: repeat-y
}

.bg-repeat-round {
  background-repeat: round
}

.bg-repeat-space {
  background-repeat: space
}

.bg-auto {
  background-size: auto
}

.bg-cover {
  background-size: cover
}

.bg-contain {
  background-size: contain
}

.bg-none {
  background-image: none
}

.bg-primary-gradient-to-t {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(0deg, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-tr {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(to top right, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-r {
  background-image: -webkit-gradient(linear, left top, right top, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(90deg, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-br {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(to bottom right, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-b {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(180deg, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-bl {
  background-image: -webkit-gradient(linear, right top, left bottom, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(to bottom left, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-l {
  background-image: -webkit-gradient(linear, right top, left top, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(270deg, #0044e3, #0c92fa)
}

.bg-primary-gradient-to-tl {
  background-image: -webkit-gradient(linear, right bottom, left top, from(#0044e3), to(#0c92fa));
  background-image: linear-gradient(to top left, #0044e3, #0c92fa)
}

.bg-secondary-gradient-to-t {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(0deg, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-tr {
  background-image: -webkit-gradient(linear, left bottom, right top, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(to top right, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-r {
  background-image: -webkit-gradient(linear, left top, right top, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(90deg, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-br {
  background-image: -webkit-gradient(linear, left top, right bottom, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(to bottom right, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-b {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(180deg, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-bl {
  background-image: -webkit-gradient(linear, right top, left bottom, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(to bottom left, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-l {
  background-image: -webkit-gradient(linear, right top, left top, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(270deg, #f27d16, #f2b807)
}

.bg-secondary-gradient-to-tl {
  background-image: -webkit-gradient(linear, right bottom, left top, from(#f27d16), to(#f2b807));
  background-image: linear-gradient(to top left, #f27d16, #f2b807)
}

.transition-none {
  -webkit-transition-property: none;
  transition-property: none
}

.transition-all {
  -webkit-transition-property: all;
  transition-property: all
}

.transition {
  -webkit-transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, -webkit-box-shadow, -webkit-transform
}

.transition-colors {
  -webkit-transition-property: background-color, border-color, color, fill, stroke;
  transition-property: background-color, border-color, color, fill, stroke
}

.transition-opacity {
  -webkit-transition-property: opacity;
  transition-property: opacity
}

.transition-shadow {
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow
}

.transition-transform {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform
}

.duration-75 {
  -webkit-transition-duration: 75ms;
  transition-duration: 75ms
}

.duration-100 {
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.duration-150 {
  -webkit-transition-duration: .15s;
  transition-duration: .15s
}

.duration-200 {
  -webkit-transition-duration: .2s;
  transition-duration: .2s
}

.duration-300 {
  -webkit-transition-duration: .3s;
  transition-duration: .3s
}

.duration-500 {
  -webkit-transition-duration: .5s;
  transition-duration: .5s
}

.duration-700 {
  -webkit-transition-duration: .7s;
  transition-duration: .7s
}

.duration-1000 {
  -webkit-transition-duration: 1s;
  transition-duration: 1s
}

.ease-linear {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear
}

.ease {
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease
}

.ease-in {
  -webkit-transition-timing-function: cubic-bezier(.4, 0, 1, 1);
  transition-timing-function: cubic-bezier(.4, 0, 1, 1)
}

.ease-out {
  -webkit-transition-timing-function: cubic-bezier(0, 0, .2, 1);
  transition-timing-function: cubic-bezier(0, 0, .2, 1)
}

.ease-in-out {
  -webkit-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.delay-75 {
  -webkit-transition-delay: 75ms;
  transition-delay: 75ms
}

.delay-100 {
  -webkit-transition-delay: .1s;
  transition-delay: .1s
}

.delay-150 {
  -webkit-transition-delay: .15s;
  transition-delay: .15s
}

.delay-200 {
  -webkit-transition-delay: .2s;
  transition-delay: .2s
}

.delay-300 {
  -webkit-transition-delay: .3s;
  transition-delay: .3s
}

.delay-500 {
  -webkit-transition-delay: .5s;
  transition-delay: .5s
}

.delay-700 {
  -webkit-transition-delay: .7s;
  transition-delay: .7s
}

.delay-1000 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s
}

.animate-none {
  -webkit-animation: none;
  animation: none
}

.animate-pulse {
  -webkit-animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes pulse {

  0%,
  to {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.animate-spin {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.cursor-auto {
  cursor: auto
}

.cursor-default {
  cursor: default
}

.cursor-pointer {
  cursor: pointer
}

.cursor-wait {
  cursor: wait
}

.cursor-text {
  cursor: text
}

.cursor-move {
  cursor: move
}

.cursor-not-allowed {
  cursor: not-allowed
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px
}

.outline-white {
  outline: 2px dotted #fff;
  outline-offset: 2px
}

.outline-black {
  outline: 2px dotted #000;
  outline-offset: 2px
}

.pointer-events-none {
  pointer-events: none
}

.pointer-events-auto {
  pointer-events: auto
}

.resize-none {
  resize: none
}

.resize-y {
  resize: vertical
}

.resize-x {
  resize: horizontal
}

.resize {
  resize: both
}

.select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.select-text {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text
}

.select-all {
  -webkit-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: all
}

.select-auto {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto
}

.flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important
}

.inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important
}

.block {
  display: block !important
}

.inline-block {
  display: inline-block !important
}

.inline {
  display: inline !important
}

.table {
  display: table !important
}

.table-caption {
  display: table-caption !important
}

.table-cell {
  display: table-cell !important
}

.table-column {
  display: table-column !important
}

.table-column-group {
  display: table-column-group !important
}

.table-footer-group {
  display: table-footer-group !important
}

.table-header-group {
  display: table-header-group !important
}

.table-row-group {
  display: table-row-group !important
}

.table-row {
  display: table-row !important
}

.flow-root {
  display: flow-root !important
}

.grid {
  display: grid !important
}

.inline-grid {
  display: inline-grid !important
}

.contents {
  display: contents !important
}

.hidden,
[hidden] {
  display: none !important
}

.float-right {
  float: right
}

.float-left {
  float: left
}

.float-none {
  float: none
}

.clearfix:after {
  content: "";
  display: table;
  clear: both
}

.clear-left {
  clear: left
}

.clear-right {
  clear: right
}

.clear-both {
  clear: both
}

.clear-none {
  clear: none
}

.object-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.object-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.object-fill {
  -o-object-fit: fill;
  object-fit: fill
}

.object-none {
  -o-object-fit: none;
  object-fit: none
}

.object-scale-down {
  -o-object-fit: scale-down;
  object-fit: scale-down
}

.object-bottom {
  -o-object-position: bottom;
  object-position: bottom
}

.object-center {
  -o-object-position: center;
  object-position: center
}

.object-left {
  -o-object-position: left;
  object-position: left
}

.object-left-bottom {
  -o-object-position: left bottom;
  object-position: left bottom
}

.object-left-top {
  -o-object-position: left top;
  object-position: left top
}

.object-right {
  -o-object-position: right;
  object-position: right
}

.object-right-bottom {
  -o-object-position: right bottom;
  object-position: right bottom
}

.object-right-top {
  -o-object-position: right top;
  object-position: right top
}

.object-top {
  -o-object-position: top;
  object-position: top
}

.overflow-auto {
  overflow: auto
}

.overflow-hidden {
  overflow: hidden
}

.overflow-visible {
  overflow: visible
}

.overflow-scroll {
  overflow: scroll
}

.overflow-x-auto {
  overflow-x: auto
}

.overflow-y-auto {
  overflow-y: auto
}

.overflow-x-hidden {
  overflow-x: hidden
}

.overflow-y-hidden {
  overflow-y: hidden
}

.overflow-x-visible {
  overflow-x: visible
}

.overflow-y-visible {
  overflow-y: visible
}

.overflow-x-scroll {
  overflow-x: scroll
}

.overflow-y-scroll {
  overflow-y: scroll
}

.scrolling-touch {
  -webkit-overflow-scrolling: touch
}

.scrolling-auto {
  -webkit-overflow-scrolling: auto
}

.overscroll-auto {
  overscroll-behavior: auto
}

.overscroll-contain {
  overscroll-behavior: contain
}

.overscroll-none {
  overscroll-behavior: none
}

.overscroll-y-auto {
  overscroll-behavior-y: auto
}

.overscroll-y-contain {
  overscroll-behavior-y: contain
}

.overscroll-y-none {
  overscroll-behavior-y: none
}

.overscroll-x-auto {
  overscroll-behavior-x: auto
}

.overscroll-x-contain {
  overscroll-behavior-x: contain
}

.overscroll-x-none {
  overscroll-behavior-x: none
}

.flex-row {
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row
}

.flex-row,
.flex-row-reverse {
  -webkit-box-orient: horizontal
}

.flex-row-reverse {
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse
}

.flex-no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%
}

.flex-grow-0 {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0
}

.flex-grow {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.flex-shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.flex-shrink {
  -ms-flex-negative: 1;
  flex-shrink: 1
}

.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: auto;
  flex-basis: auto
}

.flex-auto,
.flex-initial {
  -ms-flex-negative: 1;
  flex-shrink: 1
}

.flex-initial {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto
}

.flex-none {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12
}

.order-first {
  -webkit-box-ordinal-group: -9998;
  -ms-flex-order: -9999;
  order: -9999
}

.order-last {
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  order: 9999
}

.order-none {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0
}

.static {
  position: static
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.sticky {
  position: sticky
}

.box-border {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.box-content {
  -webkit-box-sizing: content-box;
  box-sizing: content-box
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.inset-auto {
  top: auto;
  right: auto;
  bottom: auto;
  left: auto
}

.inset-y-0 {
  top: 0;
  bottom: 0
}

.inset-x-0 {
  right: 0;
  left: 0
}

.inset-y-auto {
  top: auto;
  bottom: auto
}

.inset-x-auto {
  right: auto;
  left: auto
}

.top-0 {
  top: 0
}

.right-0 {
  right: 0
}

.bottom-0 {
  bottom: 0
}

.left-0 {
  left: 0
}

.top-auto {
  top: auto
}

.right-auto {
  right: auto
}

.bottom-auto {
  bottom: auto
}

.left-auto {
  left: auto
}

.visible {
  visibility: visible
}

.invisible {
  visibility: hidden
}

.z-0 {
  z-index: 0
}

.z-10 {
  z-index: 10
}

.z-20 {
  z-index: 20
}

.z-30 {
  z-index: 30
}

.z-40 {
  z-index: 40
}

.z-50 {
  z-index: 50
}

.z-auto {
  z-index: auto
}

input[type=date],
input[type=datetime],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=text] {
  border: none;
  border-bottom: 2px solid #707275
}

input[type=date]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=text]:focus {
  border-color: #0044e3
}

input[type=date],
input[type=datetime],
input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=text] {
  font-size: .875rem
}

@media screen and (min-width:30.0625rem) {

  input[type=date],
  input[type=datetime],
  input[type=email],
  input[type=number],
  input[type=password],
  input[type=search],
  input[type=text] {
    font-size: 1rem
  }
}

@media screen and (min-width:48.0625rem) {

  input[type=date],
  input[type=datetime],
  input[type=email],
  input[type=number],
  input[type=password],
  input[type=search],
  input[type=text] {
    font-size: 1.125rem
  }
}

label.input-block {
  display: block;
  width: 100%;
  height: auto;
  position: relative
}

label.input-block .input-label {
  position: absolute;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis
}

label.input-block .input-label,
label.input-block input {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  padding: .75rem 0;
  border-radius: 0;
  font-size: 1.125rem;
  line-height: 1.5rem;
  -webkit-transition-property: color, border-color, background-color, font-size, -webkit-transform;
  transition-property: color, border-color, background-color, font-size, -webkit-transform;
  transition-property: color, border-color, background-color, transform, font-size;
  transition-property: color, border-color, background-color, transform, font-size, -webkit-transform;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .2s;
  transition-duration: .2s
}

label.input-block .input-label:-moz-read-only+.input-label,
label.input-block .input-label:focus+.input-label,
label.input-block .input-label[placeholder]+.input-label,
label.input-block .input-label[read-only]+.input-label,
label.input-block input:-moz-read-only+.input-label,
label.input-block input:focus+.input-label,
label.input-block input[placeholder]+.input-label,
label.input-block input[read-only]+.input-label {
  font-size: .75rem;
  transform-origin: left center;
  transform: translateY(-50%);
  z-index: 2
}

label.input-block .input-label:focus+.input-label,
label.input-block .input-label:read-only+.input-label,
label.input-block .input-label[placeholder]+.input-label,
label.input-block .input-label[read-only]+.input-label,
label.input-block input:focus+.input-label,
label.input-block input:read-only+.input-label,
label.input-block input[placeholder]+.input-label,
label.input-block input[read-only]+.input-label {
  font-size: .75rem;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2
}

label.input-block .input-label:not([read-only]):not([placeholder]):not(:-moz-read-only):focus+.input-label,
label.input-block input:not([read-only]):not([placeholder]):not(:-moz-read-only):focus+.input-label {
  color: #0044e3
}

label.input-block .input-label:not([read-only]):not([placeholder]):not(:read-only):focus+.input-label,
label.input-block input:not([read-only]):not([placeholder]):not(:read-only):focus+.input-label {
  color: #0044e3
}

label.input-block input {
  position: relative;
  z-index: 1;
  background-color: transparent;
  border-bottom: .125rem solid #9ca3a3
}

label.input-block.input-filled .input-label {
  font-size: .75rem;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2
}

.input-radio {
  height: auto;
  position: relative
}

.input-radio input[type=radio] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  margin: 0
}

.input-radio input[type=radio]:focus+label.input-label .circle,
.input-radio input[type=radio]:hover+label.input-label .circle {
  border-color: #0044e3;
  -webkit-box-shadow: 0 0 0 .125rem #0044e3;
  box-shadow: 0 0 0 .125rem #0044e3
}

.input-radio input[type=radio]:checked+label.input-label .circle {
  border-color: #0044e3
}

.input-radio input[type=radio]:checked+label.input-label .circle:after {
  background-color: #0044e3;
  -webkit-transform: scale(1);
  transform: scale(1)
}

.input-radio input[type=radio]:checked:focus+label.input-label .circle,
.input-radio input[type=radio]:checked:hover+label.input-label .circle {
  -webkit-box-shadow: 0 0 0 .125rem #0044e3;
  box-shadow: 0 0 0 .125rem #0044e3
}

.input-radio input[type=radio]:checked:disabled {
  cursor: default
}

.input-radio input[type=radio]:checked:disabled+label.input-label {
  background-color: #f1f1f1;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #707275;
  border-color: #9ca3a3;
  cursor: default
}

.input-radio input[type=radio]:checked:disabled+label.input-label .circle {
  border-color: #9ca3a3;
  color: #707275
}

.input-radio input[type=radio]:checked:disabled+label.input-label .circle:after {
  background-color: #707275;
  color: #707275
}

.input-radio input[type=radio]:disabled {
  cursor: default
}

.input-radio input[type=radio]:disabled+label.input-label {
  background-color: #f1f1f1;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #707275;
  border-color: #9ca3a3;
  cursor: default
}

.input-radio input[type=radio]:disabled+label.input-label .circle {
  border-color: #9ca3a3;
  color: #707275
}

.input-radio input[type=radio]:disabled+label.input-label .circle:after {
  background-color: #9ca3a3;
  color: #707275
}

.input-radio label.input-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5rem;
  position: relative;
  color: #707275;
  padding: 12px 0;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  -webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease
}

.input-radio label.input-label .circle {
  display: block;
  width: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  height: 1.5rem;
  min-height: 1.5rem;
  max-height: 1.5rem;
  float: left;
  position: relative;
  margin: 0 1rem 0 0;
  border-radius: 1.5rem;
  line-height: 1.5rem;
  border: .125rem solid #9ca3a3;
  -webkit-transition: border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: border-color .2s ease, box-shadow .2s ease;
  transition: border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease
}

.input-radio label.input-label .circle:after {
  content: "";
  display: block;
  width: .75rem;
  min-width: .75rem;
  max-width: .75rem;
  height: .75rem;
  min-height: .75rem;
  max-height: .75rem;
  margin: auto;
  position: absolute;
  top: .25rem;
  left: .25rem;
  text-align: center;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: 1rem;
  will-change: transform;
  -webkit-transform-origin: center;
  transform-origin: center;
  background-color: #0044e3;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease
}

.input-radio label.input-label .input-label-text {
  display: block;
  width: calc(100% - 2rem);
  height: auto;
  float: left;
  line-height: 1.5rem;
  font-size: 1rem
}

.input-radio label.input-label:after {
  content: "";
  display: table;
  clear: both
}

.input-radio:last-child,
.input-radio:last-of-type {
  margin-bottom: 0 !important
}

.input-radio.input-border label.input-label {
  border: .0625rem solid #ccd3e3;
  padding: .75rem 1rem
}

.input-radio.input-border input[type=radio]:focus+label.input-label,
.input-radio.input-border input[type=radio]:hover+label.input-label {
  color: #0044e3;
  border-color: #0044e3;
  -webkit-box-shadow: 0 0 0 .125rem #0044e3;
  box-shadow: 0 0 0 .125rem #0044e3
}

.input-radio.input-border input[type=radio]:focus+label.input-label .circle,
.input-radio.input-border input[type=radio]:hover+label.input-label .circle {
  border-color: #0044e3;
  -webkit-box-shadow: none;
  box-shadow: none
}

.input-radio.input-border input[type=radio]:checked+label.input-label {
  color: #0044e3;
  border-color: #0044e3;
  -webkit-box-shadow: 0 0 0 .0625rem #0044e3;
  box-shadow: 0 0 0 .0625rem #0044e3
}

.input-radio.input-border input[type=radio]:checked+label.input-label .circle {
  border-color: #0044e3
}

.input-radio.input-border input[type=radio]:checked+label.input-label .circle:after {
  background-color: #0044e3;
  -webkit-transform: scale(1);
  transform: scale(1)
}

.input-radio.input-border input[type=radio]:checked:focus+label.input-label,
.input-radio.input-border input[type=radio]:checked:hover+label.input-label {
  -webkit-box-shadow: 0 0 0 .125rem #0044e3;
  box-shadow: 0 0 0 .125rem #0044e3
}

.input-radio.input-border input[type=radio]:checked:disabled {
  cursor: default
}

.input-radio.input-border input[type=radio]:checked:disabled+label.input-label {
  background-color: #f1f1f1;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #aaa;
  border-color: #aaa;
  cursor: default
}

.input-radio.input-border input[type=radio]:checked:disabled+label.input-label .circle {
  border-color: #aaa;
  color: #aaa
}

.input-radio.input-border input[type=radio]:checked:disabled+label.input-label .circle:after {
  background-color: #aaa;
  color: #aaa
}

.input-checkbox {
  display: block;
  width: 100%;
  height: auto;
  position: relative
}

.input-checkbox.input-flex {
  float: none
}

.input-checkbox input[type=checkbox] {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  margin: 0
}

.input-checkbox input[type=checkbox]:focus+label.input-label .check-box,
.input-checkbox input[type=checkbox]:hover+label.input-label .check-box {
  border-color: #0044e3;
  -webkit-box-shadow: 0 0 0 .125rem #316eff;
  box-shadow: 0 0 0 .125rem #316eff
}

.input-checkbox input[type=checkbox]:indeterminate+label.input-label .check-box {
  background-image: url(/images/minus-accent.svg);
  background-size: 80%;
  border-color: #0044e3
}

.input-checkbox input[type=checkbox]:indeterminate+label.input-label .check-box:after {
  display: none;
  background-size: contain;
  background-origin: content-box
}

.input-checkbox input[type=checkbox]:disabled {
  cursor: default
}

.input-checkbox input[type=checkbox]:disabled+label.input-label {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #707275;
  cursor: default
}

.input-checkbox input[type=checkbox]:disabled+label.input-label .input-label-text {
  color: #707275
}

.input-checkbox input[type=checkbox]:disabled+label.input-label .check-box {
  border-color: #9ca3a3;
  color: #707275
}

.input-checkbox input[type=checkbox]:disabled+label.input-label .check-box:after {
  color: #707275
}

.input-checkbox input[type=checkbox]:disabled:focus+label.input-label,
.input-checkbox input[type=checkbox]:disabled:hover+label.input-label {
  color: #707275;
  border-color: #9ca3a3;
  -webkit-box-shadow: none;
  box-shadow: none
}

.input-checkbox input[type=checkbox]:disabled:focus+label.input-label .check-box,
.input-checkbox input[type=checkbox]:disabled:hover+label.input-label .check-box {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #9ca3a3
}

.input-checkbox input[type=checkbox]:checked+label.input-label .check-box {
  border-color: #0044e3;
  background-color: #0044e3
}

.input-checkbox input[type=checkbox]:checked+label.input-label .check-box:after {
  -webkit-transform: scale(1);
  transform: scale(1)
}

.input-checkbox input[type=checkbox]:checked:focus+label.input-label .check-box,
.input-checkbox input[type=checkbox]:checked:hover+label.input-label .check-box {
  -webkit-box-shadow: 0 0 0 .125rem #316eff;
  box-shadow: 0 0 0 .125rem #316eff
}

.input-checkbox input[type=checkbox]:checked:disabled+label.input-label .check-box {
  background-color: #707275;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #4b4c4e
}

.input-checkbox label.input-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  color: #707275;
  line-height: 1.5rem;
  padding: .5rem 0;
  border: none;
  border-radius: 8px;
  -webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease
}

.input-checkbox label.input-label .check-box {
  display: block;
  width: 1.25rem;
  min-width: 1.25rem;
  max-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  max-height: 1.25rem;
  float: left;
  background-repeat: no-repeat;
  background-position: 50%;
  position: relative;
  margin: .125rem 1rem .125rem 0;
  border-radius: .1875rem;
  line-height: 1.5rem;
  border: .125rem solid #9ca3a3;
  -webkit-transition: border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: border-color .2s ease, box-shadow .2s ease;
  transition: border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease
}

.input-checkbox label.input-label .check-box:after {
  content: "";
  display: block;
  width: .875rem;
  min-width: .875rem;
  max-width: .875rem;
  height: .875rem;
  min-height: .875rem;
  max-height: .875rem;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  -webkit-transform: scale(0);
  transform: scale(0);
  border-radius: .1875rem;
  will-change: transform;
  -webkit-transform-origin: center;
  transform-origin: center;
  background-image: url(/images/tick-white.svg);
  background-position: 50%;
  background-size: contain;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  z-index: 3
}

.input-checkbox label.input-label .input-label-text {
  display: block;
  width: calc(100% - 2rem);
  height: auto;
  float: left;
  font-size: 1rem;
  line-height: 1.5rem
}

.input-checkbox label.input-label:hover {
  color: #121f30;
  border-color: #0044e3
}

.input-checkbox label.input-label:hover .circle {
  border-color: #0044e3
}

.input-checkbox label.input-label:after {
  content: "";
  display: table;
  clear: both
}

.input-checkbox:last-child,
.input-checkbox:last-of-type {
  margin-bottom: 0 !important
}

.input-checkbox.input-border label.input-label {
  padding: .75rem 1rem;
  border: .0625rem solid #717171
}

.input-checkbox.input-border input[type=checkbox]:focus+label.input-label,
.input-checkbox.input-border input[type=checkbox]:hover+label.input-label {
  color: #0044e3;
  border-color: #0044e3;
  -webkit-box-shadow: 0 0 0 .125rem #0044e3;
  box-shadow: 0 0 0 .125rem #0044e3
}

.input-checkbox.input-border input[type=checkbox]:focus+label.input-label .check-box,
.input-checkbox.input-border input[type=checkbox]:hover+label.input-label .check-box {
  border-color: #0044e3;
  -webkit-box-shadow: none;
  box-shadow: none
}

.input-checkbox.input-border input[type=checkbox]:disabled {
  cursor: default
}

.input-checkbox.input-border input[type=checkbox]:disabled+label.input-label {
  background-color: #eee;
  border-color: #aaa;
  cursor: default
}

.input-checkbox.input-border input[type=checkbox]:disabled+label.input-label .check-box {
  border-color: #aaa;
  color: #aaa
}

.input-checkbox.input-border input[type=checkbox]:disabled+label.input-label .check-box:after {
  color: #aaa
}

.input-checkbox.input-border input[type=checkbox]:disabled:focus+label.input-label,
.input-checkbox.input-border input[type=checkbox]:disabled:hover+label.input-label {
  color: #aaa;
  border-color: #aaa;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #eee
}

.input-checkbox.input-border input[type=checkbox]:disabled:focus+label.input-label .check-box,
.input-checkbox.input-border input[type=checkbox]:disabled:hover+label.input-label .check-box {
  border-color: #aaa;
  -webkit-box-shadow: none;
  box-shadow: none
}

.input-checkbox.input-border input[type=checkbox]:checked:disabled+label.input-label {
  background-color: #eee;
  border-color: #aaa;
  cursor: default
}

.input-checkbox.input-border input[type=checkbox]:checked:disabled+label.input-label .check-box {
  border-color: #aaa;
  color: #aaa;
  -webkit-box-shadow: none;
  box-shadow: none
}

.input-checkbox.input-border input[type=checkbox]:checked:disabled+label.input-label .check-box:after {
  color: #aaa
}

.input-checkbox.input-border input[type=checkbox]:checked:disabled:focus+label.input-label,
.input-checkbox.input-border input[type=checkbox]:checked:disabled:hover+label.input-label {
  color: #aaa;
  border-color: #aaa;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #eee
}

.input-checkbox.input-border input[type=checkbox]:checked:disabled:focus+label.input-label .check-box,
.input-checkbox.input-border input[type=checkbox]:checked:disabled:hover+label.input-label .check-box {
  border-color: #aaa;
  -webkit-box-shadow: none;
  box-shadow: none
}

.input-checkbox.input-border input[type=checkbox]:checked+label.input-label {
  color: #0044e3;
  border-color: #0044e3
}

.input-checkbox.input-border input[type=checkbox]:checked:focus+label.input-label,
.input-checkbox.input-border input[type=checkbox]:checked:hover+label.input-label {
  -webkit-box-shadow: 0 0 0 .125rem #0044e3;
  box-shadow: 0 0 0 .125rem #0044e3
}

.input-checkbox.input-border input[type=checkbox]:checked:focus+label.input-label .check-box,
.input-checkbox.input-border input[type=checkbox]:checked:hover+label.input-label .check-box {
  -webkit-box-shadow: none;
  box-shadow: none
}

.form-textarea {
  display: block;
  width: 100%;
  height: auto;
  position: relative
}

.form-textarea .input-label,
.form-textarea label {
  display: block;
  width: auto;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff
}

.form-textarea textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 22.5rem;
  min-height: 3rem;
  height: auto;
  position: relative;
  cursor: text;
  padding: 0;
  border-radius: 0;
  color: #121f30;
  font-weight: 500;
  border: none;
  font-size: 1.125rem;
  border-bottom: .125rem solid #9ca3a3;
  line-height: 1.25rem;
  background: none;
  background-color: transparent;
  z-index: 3;
  -webkit-box-shadow: none;
  box-shadow: none;
  resize: vertical;
  -webkit-transition: color .2s ease, background-color .2s ease, border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, -webkit-box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease
}

.form-textarea textarea:focus,
.form-textarea textarea:hover {
  outline: none;
  border-bottom-color: #0044e3
}

.form-textarea textarea:focus+label,
.form-textarea textarea:focus+label.input-label,
.form-textarea textarea:hover+label,
.form-textarea textarea:hover+label.input-label {
  color: #97b6ff
}

.form-textarea textarea.input-focused {
  border-bottom-color: #0044e3
}

.form-textarea textarea:disabled,
.form-textarea textarea:disabled:focus,
.form-textarea textarea:disabled:hover {
  background-color: #97989b;
  border-bottom-color: #707275
}

.form-textarea.fixed-label {
  padding-top: 10px
}

.form-textarea.fixed-label .input-label,
.form-textarea.fixed-label label {
  text-rendering: geometricPrecision;
  -webkit-box-direction: normal;
  height: auto;
  position: absolute;
  top: .625rem;
  left: .75rem;
  padding: .25rem;
  background-color: #fff;
  z-index: 3;
  display: block;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  opacity: 1;
  line-height: 1;
  -webkit-line-clamp: 1;
  color: #0044e3;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  will-change: opacity;
  background: #fff;
  font-size: .8125rem
}

.form-textarea.fixed-label textarea:focus+label,
.form-textarea.fixed-label textarea:focus+label.input-label,
.form-textarea.fixed-label textarea:hover+label,
.form-textarea.fixed-label textarea:hover+label.input-label {
  color: #0044e3
}

.bg-circle {
  display: block;
  width: 200vmax;
  height: 200vmax;
  border-radius: 200vmax;
  position: fixed;
  background-color: #0c92fa
}

.bg-circle__blue {
  bottom: 25%;
  left: 25%;
  background-color: #0c92fa
}

.bg-circle__yellow {
  top: 50%;
  right: 25%;
  background-color: #f2b807
}

.alert {
  border-radius: .75rem;
  padding: .5rem;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.5;
  font-size: .875rem
}

.alert * {
  font-size: inherit;
  line-height: inherit;
  color: inherit
}

.alert .alert-action a,
.alert .alert-content {
  padding: .5rem
}

.alert .alert-action a {
  display: block;
  border-radius: 99px;
  -webkit-transition-property: background, background-color, color;
  transition-property: background, background-color, color;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .2s;
  transition-duration: .2s
}

.alert .alert-action a:hover {
  background: hsla(0, 0%, 100%, .16)
}

.alert .alert-action a:active {
  background: hsla(0, 0%, 100%, .4)
}

.alert .alert-action a:focus {
  background: hsla(0, 0%, 100%, .28);
  -webkit-box-shadow: 0 0 0 .125rem hsla(0, 0%, 100%, .32);
  box-shadow: 0 0 0 .125rem hsla(0, 0%, 100%, .32)
}

@media screen and (min-width:30.0625rem) {
  .alert {
    margin-bottom: 2rem;
    font-size: .9375rem
  }
}

.alert-warning {
  color: #000;
  background: #f59e0b
}

.alert-success {
  background: #10b981
}

.alert-danger {
  background: #ef4444
}

.content-wrapper,
main .page-content {
  margin: 3rem 0
}

@media screen and (max-width:20rem) {

  .content-wrapper,
  main .page-content {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {

  .content-wrapper,
  main .page-content {
    margin-top: 5rem;
    margin-bottom: 5rem
  }
}

.empty-cart__page,
.four-o-four__page {
  padding-top: 3.5rem
}

@media screen and (max-width:30rem) {

  .empty-cart__page,
  .four-o-four__page {
    padding-top: 3.5rem
  }
}

@media screen and (min-width:30.0625rem) {

  .empty-cart__page,
  .four-o-four__page {
    padding-top: 4.5rem
  }
}

@media screen and (min-width:36.0625rem) {

  .empty-cart__page,
  .four-o-four__page {
    padding-top: 7.5rem
  }
}

.empty-icon {
  background-color: #fef6ef
}

.empty-icon.text-primary {
  color: #f27d16;
  background-color: #fdf0e3
}

.empty-title,
.result-card .card__title {
  font-size: 1.5rem
}

@media screen and (min-width:30.0625rem) {

  .empty-title,
  .result-card .card__title {
    font-size: 1.75rem
  }
}

@media screen and (min-width:36.0625rem) {

  .empty-title,
  .result-card .card__title {
    font-size: 2rem
  }
}

@media screen and (min-width:64.0625rem) {
  .empty-title {
    font-size: 2.5rem
  }
}

.invalid-feedback {
  display: block;
  font-size: .75rem;
  color: #ef4444;
  padding-top: .5rem
}

.inputs-list {
  width: calc(100% + 1rem);
  margin-right: -.5rem;
  margin-left: -.5rem
}

.inputs-list .input-wrap {
  padding-right: .5rem;
  padding-left: .5rem
}

header.header .header-verification-bar {
  display: block
}

header.header .header-verification-bar .verification-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  padding: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  padding: 8px 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

header.header .header-verification-bar .verification-row p {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  width: auto
}

@media screen and (min-width:577px) {
  header.header .header-verification-bar .verification-row {
    padding: 12px 0
  }
}

@media screen and (max-width:480px) {
  header.header .header-verification-bar .verification-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

header.header .header-verification-bar form.header-vertification-form {
  display: block;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  margin: 0 0 0 15px;
  background-color: transparent
}

header.header .header-verification-bar form.header-vertification-form button[type=submit] {
  padding: 12px 16px
}

@media screen and (max-width:576px) {
  header.header .header-verification-bar form.header-vertification-form button[type=submit] {
    font-size: 14px
  }
}

@media screen and (max-width:360px) {
  header.header .header-verification-bar form.header-vertification-form button[type=submit] {
    padding: 8px 12px;
    font-size: 13px
  }
}

@media screen and (min-width:577px) {
  header.header .header-verification-bar form.header-vertification-form {
    margin-left: 30px
  }
}

@media screen and (max-width:480px) {
  header.header .header-verification-bar form.header-vertification-form {
    margin-top: 16px
  }
}

header.header .header-verification-bar p.verification-msg {
  display: block;
  padding: 8px 0;
  margin: 0 auto;
  text-align: center
}

header.header {
  display: block;
  width: 100%;
  position: fixed;
  background-color: #fff;
  top: 0;
  z-index: 96;
  border-bottom: 1px solid #ccd3e3;
  -webkit-transition: all .12s;
  transition: all .12s
}

header.header .masthead {
  display: none;
  background: #0044e3;
  font-size: .875em;
  line-height: 1.5rem;
  padding: 0
}

header.header .masthead .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

header.header .masthead .left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transform: translate(-.5rem);
  transform: translate(-.5rem)
}

header.header .masthead .left,
header.header .masthead .left a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

header.header .masthead .left a {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

header.header .masthead .left a span {
  height: auto
}

header.header .masthead .left a svg {
  display: block;
  width: 1.125rem;
  height: 1.125rem
}

header.header .masthead p {
  margin: 0
}

header.header .masthead a,
header.header .masthead p {
  color: #fff;
  font-weight: 500
}

header.header .masthead a {
  display: inline-block;
  padding: .5rem 0;
  font: inherit;
  line-height: 1.5rem;
  white-space: nowrap
}

header.header .masthead a span {
  font: inherit
}

header.header .masthead a:hover {
  color: #f2b807
}

header.header .masthead .right {
  color: #fff;
  font-weight: 500;
  position: relative;
  text-align: right
}

header.header .masthead .right button {
  background: none;
  font-size: 1em;
  margin: 0;
  padding: 0
}

header.header .masthead .right button:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0044e3;
  -webkit-transform: none;
  transform: none
}

header.header .masthead .right .pharmacy-number {
  display: none
}

header.header .masthead .right .pharmacy-number:after {
  content: "|";
  margin-left: .5rem
}

@media screen and (min-width:52rem) {
  header.header .masthead .right .pharmacy-number {
    display: inline-block
  }
}

@media screen and (min-width:36.0625rem) {
  header.header .masthead {
    display: block
  }
}

header.header .main .header-row,
header.header .mobile-search__block {
  width: 100%;
  background-color: #fff
}

@media screen and (max-width:30rem) {
  header.header .container {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
  }
}

header.header .main {
  display: block;
  -webkit-transition-property: padding;
  transition-property: padding;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  padding: 0
}

header.header .main .logo {
  display: block;
  max-width: 100%;
  width: auto
}

header.header .main .logo a {
  display: block;
  width: auto;
  height: auto;
  padding-top: .25rem;
  padding-bottom: .25rem
}

header.header .main .logo img {
  display: block;
  width: 6.375rem;
  height: 2rem
}

@media screen and (min-width:36.0625rem) {
  header.header .main .logo img {
    width: 8rem;
    height: 2.5rem
  }
}

header.header .main .nav-buttons,
header.header .main .nav-buttons a,
header.header .main .nav-links,
header.header .main .nav-links a {
  white-space: nowrap;
  text-align: center
}

header.header .main .nav-buttons,
header.header .main .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  line-height: 1.5rem;
  list-style: none;
  font-size: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

header.header .main .nav-buttons a,
header.header .main .nav-buttons li,
header.header .main .nav-links a,
header.header .main .nav-links li {
  font: inherit
}

header.header .main .nav-buttons li,
header.header .main .nav-links li {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 0
}

@media screen and (min-width:30.0625rem) {

  header.header .main .nav-buttons li,
  header.header .main .nav-links li {
    padding-left: 1rem
  }
}

header.header .main .nav-buttons a,
header.header .main .nav-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #121f30;
  padding: 1.125rem .875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 700
}

header.header .main .nav-buttons a svg,
header.header .main .nav-links a svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem
}

@media screen and (min-width:30.0625rem) {

  header.header .main .nav-buttons a svg,
  header.header .main .nav-links a svg {
    width: 1.5rem;
    height: 1.5rem
  }
}

header.header .main .nav-buttons a:focus,
header.header .main .nav-buttons a:hover,
header.header .main .nav-links a:focus,
header.header .main .nav-links a:hover {
  color: #0044e3
}

@media screen and (min-width:30.0625rem) {

  header.header .main .nav-buttons a:focus,
  header.header .main .nav-links a:focus {
    -webkit-box-shadow: 0 0 0 .125rem rgba(0, 68, 227, .75);
    box-shadow: 0 0 0 .125rem rgba(0, 68, 227, .75)
  }
}

header.header .main .nav-buttons a:active,
header.header .main .nav-links a:active {
  color: #0044e3;
  background-color: rgba(0, 68, 227, .24)
}

@media screen and (min-width:30.0625rem) {

  header.header .main .nav-buttons a,
  header.header .main .nav-links a {
    padding: .5rem;
    border-radius: .5rem
  }
}

@media screen and (min-width:36.0625rem) {

  header.header .main .nav-buttons a,
  header.header .main .nav-links a {
    padding: .75rem
  }
}

@media screen and (min-width:30.0625rem) {

  header.header .main .nav-buttons li.icon-btn a:focus,
  header.header .main .nav-buttons li.icon-btn a:hover,
  header.header .main .nav-links li.icon-btn a:focus,
  header.header .main .nav-links li.icon-btn a:hover {
    background-color: rgba(0, 68, 227, .12)
  }
}

header.header .main .nav-buttons li:not(.icon-btn),
header.header .main .nav-links li:not(.icon-btn) {
  padding-left: .5rem
}

header.header .main .nav-buttons li:not(.icon-btn) a,
header.header .main .nav-links li:not(.icon-btn) a {
  padding-right: 1rem;
  padding-left: 1rem
}

header.header .main .nav-buttons li.menu-toggle,
header.header .main .nav-buttons li.search-toggle,
header.header .main .nav-links li.menu-toggle,
header.header .main .nav-links li.search-toggle {
  display: block
}

@media screen and (min-width:60.0625rem) {

  header.header .main .nav-buttons li.menu-toggle,
  header.header .main .nav-links li.menu-toggle {
    display: none
  }
}

header.header .main .nav-buttons li.search-toggle,
header.header .main .nav-links li.search-toggle {
  position: relative
}

header.header .main .nav-buttons li.search-toggle svg,
header.header .main .nav-links li.search-toggle svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease
}

header.header .main .nav-buttons li.search-toggle svg.feather-search,
header.header .main .nav-links li.search-toggle svg.feather-search {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1
}

header.header .main .nav-buttons li.search-toggle svg.feather-x,
header.header .main .nav-links li.search-toggle svg.feather-x {
  margin-left: -1.5rem;
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0
}

header.header .main .nav-buttons li.search-toggle .search-open svg.feather-x,
header.header .main .nav-links li.search-toggle .search-open svg.feather-x {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1
}

header.header .main .nav-buttons li.search-toggle .search-open svg.feather-search,
header.header .main .nav-links li.search-toggle .search-open svg.feather-search {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0
}

@media screen and (min-width:68.8125rem) {

  header.header .main .nav-buttons li.search-toggle,
  header.header .main .nav-links li.search-toggle {
    display: none
  }
}

header.header .main .nav-buttons li.other-links,
header.header .main .nav-links li.other-links {
  display: none
}

@media screen and (min-width:60.0625rem) {

  header.header .main .nav-buttons li.other-links,
  header.header .main .nav-links li.other-links {
    display: block
  }
}

header.header .main nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

header.header .main .nav-links-wrapper {
  display: inline
}

header.header .main .header-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

header.header .main .header-row+.header-row {
  padding-top: 0 !important
}

header.header .main .header-row.sub-navigation {
  display: none
}

@media screen and (min-width:30.0625rem) and (max-width:68.75rem) {
  header.header .main .header-row.sub-navigation {
    display: block
  }
}

@media screen and (min-width:30.0625rem) {
  header.header .main .header-row {
    padding: 1rem 0
  }
}

header.header .main .col-left {
  margin-left: -.5rem
}

header.header .main .col-left .col-left__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

header.header .main .col-left.search-focused+.col-right nav .nav-links li {
  -webkit-transition: all .2s ease;
  transition: all .2s ease
}

header.header .main .col-left.search-focused+.col-right nav .nav-links li:not(.icon-btn) {
  overflow: hidden;
  width: 0;
  -webkit-transform: translate(100%);
  transform: translate(100%)
}

@media screen and (min-width:30.0625rem) {
  header.header .main .col-left {
    margin-left: 0
  }
}

header.header .main .col-right {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-right: 0;
  margin-right: -1.375rem
}

@media screen and (min-width:30.0625rem) {
  header.header .main .col-right {
    margin-right: 0
  }
}

header.header .main .header-search,
header.header .main form.search-form {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
  background: none;
  background-color: #fff;
  border: none
}

header.header .main .header-search {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-left: 2rem
}

header.header .main .header-search.desktop-search {
  display: none
}

@media screen and (min-width:68.8125rem) {
  header.header .main .header-search.desktop-search {
    display: block
  }
}

header.header .main .header-search.tablet-search {
  display: none
}

header.header .main button:not(:disabled) {
  cursor: pointer
}

header.header .main .header-search__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative
}

header.header .main .header-search__row input[type=search],
header.header .main .header-search__row input[type=text] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #ccd3e3;
  height: 2.75rem;
  line-height: 1.125rem;
  font-size: 1rem;
  padding: .6875rem 2.5rem .6875rem 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .5rem;
  background-color: #fff
}

header.header .main .header-search__row input[type=search]:focus,
header.header .main .header-search__row input[type=text]:focus {
  border-color: #0044e3;
  -webkit-box-shadow: 0 0 0 1px #0044e3;
  box-shadow: 0 0 0 1px #0044e3
}

@media screen and (min-width:30.0625rem) {

  header.header .main .header-search__row input[type=search],
  header.header .main .header-search__row input[type=text] {
    padding: .5rem 3rem .5rem 1rem;
    height: 3rem
  }
}

header.header .main .header-search__row button.header-search-btn:not([disabled]) {
  cursor: pointer
}

header.header .main .header-close-search,
header.header .main .header-search-btn {
  display: inline-block;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: .5rem;
  color: #121f30;
  -webkit-transition-property: background-color, color, border-color;
  transition-property: background-color, color, border-color;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease
}

header.header .main .header-close-search svg,
header.header .main .header-search-btn svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  -webkit-transition-property: stroke;
  transition-property: stroke;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 200;
  transition-duration: 200
}

@media screen and (min-width:30.0625rem) {

  header.header .main .header-close-search svg,
  header.header .main .header-search-btn svg {
    width: 1.5rem;
    height: 1.5rem
  }
}

header.header .main .header-search-btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: .5rem;
  position: absolute;
  top: .125rem;
  right: .125rem
}

@media screen and (min-width:30.0625rem) {
  header.header .main .header-search-btn {
    top: .25rem;
    right: .25rem
  }
}

header.header .main button.header-search-btn:focus,
header.header .main button.header-search-btn:hover {
  color: #fff;
  background-color: #0044e3
}

header.header .main .header-close-search {
  width: 2.75rem;
  height: 2.75rem;
  padding: .6875rem;
  color: #ef4444;
  background-color: #fff;
  border: .0625rem solid #ef4444
}

@media screen and (min-width:30.0625rem) {
  header.header .main .header-close-search {
    width: 3rem;
    height: 3rem
  }
}

header.header .main button.header-close-search {
  margin-left: .5rem
}

header.header .main button.header-close-search:focus,
header.header .main button.header-close-search:hover {
  background-color: #fee2e2
}

header.header .main .mobile-search__block {
  display: none;
  width: calc(100% + 1rem);
  position: absolute;
  top: 0;
  right: -.5rem;
  left: -.5rem;
  padding: .5rem 0
}

@media screen and (max-width:48rem) {
  header.header .main .mobile-search__block .logo {
    display: none
  }
}

@media screen and (min-width:30.0625rem) {
  header.header .main .mobile-search__block {
    width: 100%;
    padding-top: .75rem;
    padding-bottom: .75rem;
    right: 0;
    left: 0
  }
}

@media screen and (min-width:36.0625rem) {
  header.header .main .mobile-search__block {
    padding-top: 1rem;
    padding-bottom: 1rem
  }
}

header.header.sticky {
  border-bottom: none;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23)
}

header.header.sticky .mobile-search__block {
  padding-top: .5rem;
  padding-bottom: .5rem
}

@media screen and (min-width:36.0625rem) {
  header.header.sticky .mobile-search__block {
    padding-top: .75rem;
    padding-bottom: .75rem
  }
}

@media screen and (min-width:30.0625rem) {
  header.header.sticky .main .header-row {
    padding-top: .75rem;
    padding-bottom: .75rem
  }
}

@media screen and (min-width:36.0625rem) {
  header.header.sticky {
    -webkit-transform: translateY(-2.5rem);
    transform: translateY(-2.5rem)
  }
}

.mobile-nav__bg {
  display: block;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, .32);
  z-index: 990
}

.mobile-nav,
.mobile-nav__bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0
}

.mobile-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20rem;
  max-width: calc(100vw - 3.5rem);
  height: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  background-color: #fff;
  z-index: 999;
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, .3), 0 20px 16px rgba(0, 0, 0, .22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .3), 0 20px 16px rgba(0, 0, 0, .22)
}

.mobile-nav .mobile-nav__header {
  display: block;
  padding: 1.5rem
}

.mobile-nav .user-profile__circle {
  display: block;
  width: 4rem;
  height: 4rem
}

.mobile-nav .user-profile__name {
  font-size: 1.25rem
}

.mobile-nav .user-profile__email {
  font-size: .875rem
}

.mobile-nav a.mobile-nav__link {
  color: #000;
  background-color: #fff
}

.mobile-nav a.mobile-nav__link.color-red {
  color: #ef4444
}

.mobile-nav a.mobile-nav__link:hover {
  background-color: #f1f2f5
}

.mobile-nav a.mobile-nav__link:focus {
  background-color: #e5e7ed
}

.mobile-nav a.mobile-nav__link:active {
  background-color: #d9dce4
}

#lnkWhatIsThis {
  display: block;
  font-size: .75rem;
  text-align: center;
  margin-top: -.375rem
}

footer.footer {
  padding-top: 3rem;
  background-color: #0c92fa;
  color: #fff
}

footer.footer,
footer.footer section {
  display: block;
  width: 100%;
  height: auto
}

footer.footer section {
  padding: 0
}

footer.footer .logo {
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 2.5rem
}

footer.footer .logo img {
  display: block;
  height: 3rem;
  width: auto;
  margin-right: auto;
  margin-left: auto
}

@media screen and (min-width:30.0625rem) {
  footer.footer .logo img {
    height: 4rem;
    margin-right: 0;
    margin-left: 0
  }
}

footer.footer .footer-contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 1rem);
  padding: 0;
  margin: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: -.5rem;
  margin-left: -.5rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

footer.footer .footer-contact__list li {
  padding: 0 .5rem
}

@media screen and (max-width:30rem) {
  footer.footer .footer-contact__list li {
    width: auto;
    min-width: 50%;
    -ms-flex-preferred-size: auto;
    flex-basis: auto
  }
}

@media screen and (min-width:30.0625rem) {
  footer.footer .footer-contact__list {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

footer.footer .footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 2rem);
  height: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

footer.footer .footer-row .footer-col {
  display: block;
  width: 25%;
  padding-right: 1rem;
  padding-left: 1rem
}

footer.footer .footer-col {
  width: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%
}

footer.footer .footer-col h5 {
  font-size: 1.25rem;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1.25rem;
  border-bottom: .125rem solid #fff;
  padding-bottom: .75rem
}

footer.footer .footer-col li,
footer.footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0
}

footer.footer .footer-col ul.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

footer.footer .footer-col ul.footer-links a,
footer.footer .footer-col ul.footer-links li {
  display: block;
  width: 100%;
  height: auto;
  color: #fff
}

footer.footer .footer-col ul.footer-links li {
  margin: 0 0 1.25rem
}

footer.footer .footer-col ul.footer-links li a {
  font-weight: 700
}

footer.footer .footer-col ul.footer-links li a:hover {
  color: #f2b807
}

@media screen and (min-width:30.0625rem) {
  footer.footer .footer-col {
    width: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
  }
}

@media screen and (min-width:64.0625rem) {
  footer.footer .footer-col {
    width: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%
  }
}

footer.footer .footer-contact,
footer.footer .footer-contact address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  font-family: lato, Roboto, Helvetica, Futura, Arial, sans-serif;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

footer.footer .footer-contact .icon,
footer.footer .footer-contact address .icon {
  color: #f2b807;
  padding-right: 1rem;
  text-align: center
}

footer.footer .footer-contact .icon svg,
footer.footer .footer-contact address .icon svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto
}

footer.footer .footer-contact .label,
footer.footer .footer-contact address .label {
  font: inherit;
  font-weight: 700;
  font-style: normal
}

footer.footer .footer-contact .contact-address,
footer.footer .footer-contact address {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

footer.footer .footer-contact {
  margin-bottom: 1.25rem
}

footer.footer a.footer-contact {
  -webkit-transition: color .12s ease;
  transition: color .12s ease
}

footer.footer a.footer-contact:focus,
footer.footer a.footer-contact:hover {
  color: #f2b807
}

footer.footer .trust {
  margin: 2.5rem auto
}

footer.footer .trust li,
footer.footer .trust ul {
  list-style: none;
  padding: 0;
  margin: 0
}

footer.footer .trust-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: .75rem;
  padding: 1rem
}

footer.footer .trust-row img {
  height: 2.5rem
}

footer.footer .trust-row div {
  display: contents
}

footer.footer .trust-row div span {
  padding: .25rem
}

@media screen and (min-width:30.0625rem) {
  footer.footer .trust-row div span {
    padding: 0
  }
}

footer.footer .trust-row div.credits span {
  margin-right: .5rem
}

footer.footer .trust-row div.cards {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

footer.footer .trust-row div.cards span {
  margin-left: .5rem
}

@media screen and (min-width:30.0625rem) {
  footer.footer .trust-row div.cards {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }
}

@media screen and (min-width:30.0625rem) {
  footer.footer .trust-row div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

footer.footer .trust-row img {
  display: block;
  height: auto;
  max-height: 1.5rem;
  width: auto;
  margin: 0
}

@media screen and (min-width:23.5rem) {
  footer.footer .trust-row img {
    max-height: 2rem
  }
}

@media screen and (min-width:30.0625rem) {
  footer.footer .trust-row img {
    max-height: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  footer.footer .trust-row img {
    max-height: 3rem
  }
}

@media screen and (min-width:30.0625rem) {
  footer.footer .trust-row {
    padding: 1.25rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

footer.footer .sub-footer {
  padding: .5rem 0;
  background-color: #0044e3
}

footer.footer .sub-footer__row {
  display: block;
  width: 100%;
  color: #fff;
  font-size: .875rem
}

footer.footer .sub-footer__row a,
footer.footer .sub-footer__row p {
  margin: 0;
  color: inherit;
  font: inherit
}

footer.footer .sub-footer__row&gt;p {
  padding: .5rem 0
}

@media screen and (max-width:48rem) {
  footer.footer .sub-footer__row&gt;p {
    text-align: center
  }
}

@media screen and (min-width:48.0625rem) {
  footer.footer .sub-footer__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

@media screen and (max-width:20rem) {
  footer.footer {
    padding-top: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  footer.footer {
    padding-top: 5rem
  }
}

.alert.alert-banner {
  background-color: #00257d;
  color: #f2f6ff;
  margin: 0;
  border-radius: 0
}

.alert.alert-banner p {
  margin: 0;
  font-weight: 600;
  font-size: 1.4rem
}

.banner {
  background: #015AE9;
  /* background: linear-gradient(135deg, #0044e3, #0c92fa); */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1244E3", endColorstr="#0C92FA", GradientType=1);
  padding-top: 3.5rem;
  position: relative
}

.banner,
.banner .banner-content {
  display: block;
  width: 100%;
  height: auto
}

.banner .banner-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.banner .banner-row .grid {
  background-color: lightblue;
  padding: 20px;
  text-align: center;
}

.custom-btn {
  background: #002F9A;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  width: 260px;
  height: 60px;
  border-width: 2px;
}

.banner .highlight {
  font-weight: 700;
  position: relative;
}

.banner .highlight::after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  /* Adjust as needed */
  background-image: url('/images/Decore.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-btn::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  background-image: url('/images/button-decor.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.banner .banner-content {
  max-width: 50rem;
  margin: 0 auto;
  padding: 3rem 0
}

.banner .img-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Shape */
.banner .background-shape {
  position: absolute;
  max-width: 500px;
  top: -72px;
  right: -50px;
  z-index: 0;
  /* Adjust for proper layering */
  overflow: hidden;
}

@media (min-width: 1400px) {
  .banner .background-shape {
    max-width: 600px;
    top: -73px;
    right: -54px;
  }
}

/* Foreground Image */
.banner .foreground-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
}

@media screen and (max-width:20rem) {
  .banner .banner-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  .banner .banner-content {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

.banner .banner-content&gt;:last-child {
  margin-bottom: 0
}

.banner .heading,
.banner h1 {
  margin-top: 0;
  margin-bottom: 0;
}

.banner .banner-subheading,
.banner h1+p {
  font-size: 1rem;
  margin: 1rem auto 1.5rem
}


.banner .banner-subheading.text-center,
.banner h1+p.text-center {
  text-align: center
}

@media screen and (min-width:30.0625rem) {

  .banner .banner-subheading,
  .banner h1+p {
    font-size: 1.125rem;
    margin-bottom: 2rem
  }
}

@media screen and (min-width:48.0625rem) {

  .banner .banner-subheading,
  .banner h1+p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem
  }
}

.banner .banner-actions {
  margin-top: 2rem
}

.banner .search-block,
.banner form,
.banner input[type=search],
.banner input[type=text] {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  background: none
}

.banner .search-block {
  margin: 0 auto;
  position: relative
}

.banner .search-block #search-bar-results {
  width: 100%;
  height: auto;
  position: absolute;
  top: 100%;
  border-radius: 8px;
  max-height: 240px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  z-index: 12
}

.banner .search-wrapper {
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 8px
}

.banner .search-wrapper.focused {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23)
}

.banner #search-bar-results .result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  font-size: 1rem;
  text-decoration: none;
  color: #707275;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: .75rem 1.25rem
}

.banner #search-bar-results .result img {
  display: block;
  width: 192px;
  height: auto;
  border-radius: 8px;
  -ms-flex-preferred-size: 192px;
  flex-basis: 192px
}

.banner #search-bar-results .result .search-result-content {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-left: 1.25rem
}

.banner #search-bar-results .result:first-child {
  margin-top: .625rem
}

.banner #search-bar-results .result:last-child {
  margin-bottom: .625rem
}

.banner #search-bar-results p {
  color: inherit;
  font-size: .8125em
}

.banner #search-bar-results .result-title {
  color: #121f30;
  font-size: 1em;
  margin-top: 0
}

.banner #search-bar-results .result-price {
  margin-bottom: 0
}

.banner #search-bar-results a.result:hover {
  background-color: #f1f2f5
}

.banner form.search-form {
  display: block;
  width: 100%;
  height: auto;
  margin-right: auto;
  margin-left: auto
}

.banner input[type=search],
.banner input[type=text] {
  display: block;
  width: 100%;
  height: auto;
  padding: .875rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .5rem;
  background-color: #fff;
  color: #121f30
}

@media screen and (min-width:36.0625rem) {

  .banner input[type=search],
  .banner input[type=text] {
    font-size: 1.25rem;
    padding: 1rem 1.25rem
  }
}

.banner .search-btn {
  position: absolute;
  top: 50%;
  right: .25rem;
  padding: 1rem;
  color: #121f30;
  border-radius: .5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff
}

.banner .search-btn svg {
  color: inherit
}

.banner .search-btn:not(:disabled):hover {
  color: #0044e3;
  background-color: #d4ecfe
}

.banner.banner-primary {
  background: #0044e3;
  background: linear-gradient(135deg, #0044e3, #0c92fa)
}

.banner.has-overlay {
  padding-bottom: 8rem
}

@media screen and (min-width:36.0625rem) {
  .banner.has-overlay {
    padding-bottom: 12rem
  }
}

.banner.banner-secondary .banner-content,
.banner.banner-treatment .banner-content {
  max-width: none;
  padding-bottom: 1.5rem
}

@media screen and (max-width:20rem) {

  .banner.banner-secondary .banner-content,
  .banner.banner-treatment .banner-content {
    padding-bottom: 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {

  .banner.banner-secondary .banner-content,
  .banner.banner-treatment .banner-content {
    padding-bottom: 2.5rem
  }
}

.banner.banner-treatment .banner-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 0
}

.banner.banner-treatment .banner-row .col-img {
  top: 0;
  left: 0
}

.banner.banner-treatment .banner-row .col-heading {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

@media screen and (min-width:64.0625rem) {
  .banner.banner-treatment .banner-row {
    padding-left: 31.5rem
  }
}

.banner.banner-treatment .img-wrap img {
  display: block;
  width: 28.5rem;
  height: auto
}

.banner.banner-treatment .banner-actions {
  display: block;
  width: 100%
}

@media screen and (min-width:30.0625rem) and (max-width:64rem) {
  .banner.banner-treatment .banner-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch
  }

  .banner.banner-treatment .banner-actions&gt;.btn {
    margin-right: .5rem
  }

  .banner.banner-treatment .banner-actions&gt;.btn:last-child {
    margin-right: 0
  }
}

@media screen and (min-width:64.0625rem) {
  .banner.banner-treatment .banner-actions {
    max-width: 24rem
  }
}

@media screen and (max-width:30rem) {
  .banner {
    padding-top: 3.5rem
  }
}

@media screen and (min-width:30.0625rem) {
  .banner {
    padding-top: 4.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  .banner {
    padding-top: 7.5rem
  }
}

.modal-bg {
  height: auto;
  background-color: rgba(0, 0, 0, .32);
  z-index: 112
}

.modal,
.modal-bg {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0
}

.modal {
  max-height: 100vh;
  z-index: 124;
  overflow-y: auto
}

.modal.modal-how-it-works .modal-card {
  width: 90vw;
  width: calc(100vw - 3rem);
  max-width: none;
  height: 50.625vw;
  height: calc((100vw - 3rem) * 9/16)
}

.modal.modal-how-it-works .modal-card iframe {
  width: 100%;
  height: 100%;
  margin: 0
}

@media screen and (min-width:30.0625rem) {
  .modal.modal-how-it-works .modal-card {
    width: calc(100vw - 5rem);
    height: calc((100vw - 5rem) * 9/16)
  }
}

@media (min-aspect-ratio:16/9) {
  .modal.modal-how-it-works .modal-card {
    width: 142.22222vh;
    max-width: none;
    height: 80vh
  }
}

.modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100vh;
  max-height: none;
  padding: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media screen and (min-width:30.0625rem) {
  .modal-content {
    padding: 2.5rem
  }
}

.modal-card {
  display: block;
  width: 100%;
  max-width: 50rem;
  height: auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 1rem
}

.search-letters {
  display: none;
  width: 100%;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  list-style: none;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  margin: 1.5rem auto 0
}

@media (min-width:36.0625rem) {
  .search-letters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}

.search-letters .search-letter {
  list-style: none;
  padding: 0;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1rem;
  font-size: 1rem;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  margin: 0 .0625rem
}

.search-letters .search-letter .search-letter-item {
  display: block;
  width: auto;
  min-width: 2.25rem;
  border-radius: 2.5rem;
  text-align: center;
  padding: .625rem .5rem;
  color: #fff;
  text-decoration: none
}

@media (max-width:991px) {
  .search-letters .search-letter .search-letter-item {
    padding: 1px 0
  }
}

.search-letters .search-letter .search-letter-item:not(.disabled):hover {
  background-color: #fff;
  color: #0044e3
}

.search-letters .search-letter .search-letter-item.disabled {
  cursor: default;
  color: #ddd
}

.video-block,
.video-wrapper {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #f1f2f5
}

.video-block .video-container,
.video-wrapper .video-container {
  display: block;
  width: 100%;
  height: auto;
  max-width: 50rem;
  margin: 0 auto;
  position: relative
}

.video-block .video-wrapper,
.video-wrapper .video-wrapper {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 56.25%;
  position: relative;
  border-radius: .5rem;
  margin: 0 auto
}

.video-block .video-wrapper iframe,
.video-wrapper .video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .5rem
}

.video-block .video-wrapper {
  margin-top: -25%
}

section {
  padding: 0
}

section .card {
  display: block;
  margin: 0 auto;
  border-radius: 1rem;
  background-color: #fff
}

section .article-list__wrapper,
section .product-list__wrapper,
section .swiper-container {
  display: block;
  width: 100%;
  height: auto
}

section .product-list__wrapper,
section .product-list__wrapper.swiper-container {
  overflow: visible !important
}

section button.slider-nav {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: .75rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  border-radius: 99rem;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: #f2b807;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .19), 0 6px 6px rgba(0, 0, 0, .23)
}

section button.slider-nav svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem
}

section button.slider-nav.nav-left {
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

section button.slider-nav.nav-right {
  right: 0;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%)
}

section button.slider-nav:not(:disabled) {
  cursor: pointer
}

section button.slider-nav:hover {
  background-color: #e6af07;
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22)
}

section button.slider-nav.swiper-button-disabled {
  display: none
}

section button.slider-nav:active {
  background-color: #f8c21a
}

@media screen and (min-width:36.0625rem) {
  section button.slider-nav {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }
}

section.benefits {
  padding: 3rem 0;
  background-color: #f1f2f5
}

section.benefits .card {
  padding: 0 1.5rem
}

@media screen and (min-width:30.0625rem) {
  section.benefits .card {
    padding: 2rem 2rem .5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.benefits .card {
    padding: 3rem 3rem 2rem
  }
}

section.benefits .benefit,
section.benefits .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0
}

section.benefits .benefits-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 2rem);
  height: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

section.benefits .benefit {
  display: block;
  width: 100%;
  height: auto;
  padding: 1rem
}

section.benefits .benefit .benefit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

section.benefits .benefit .content-text p {
  margin-bottom: 0
}

section.benefits .benefit .content-icon {
  padding-right: 1.25rem
}

section.benefits .benefit .icon-circle {
  display: block;
  padding: 1rem;
  color: #121f30;
  border: 2px solid #0044e3;
  background-color: #ccd8f5;
  border-radius: 99px
}

section.benefits .benefit .icon-circle svg {
  display: block;
  width: 2rem;
  height: 2rem
}

@media screen and (min-width:36.0625rem) {
  section.benefits .benefit .icon-circle svg {
    width: 2.5rem;
    height: 2.5rem
  }
}

@media screen and (min-width:48.0625rem) {
  section.benefits .benefit .icon-circle svg {
    width: 3rem;
    height: 3rem
  }
}

@media screen and (min-width:30.0625rem) {
  section.benefits .benefit .icon-circle {
    padding: 1.25rem;
    border: 4px solid #0044e3
  }
}

@media screen and (min-width:48.0625rem) {
  section.benefits .benefit .icon-circle {
    padding: 1.5rem
  }
}

@media screen and (min-width:64.0625rem) {
  section.benefits .benefit .icon-circle {
    padding: 2rem
  }
}

section.benefits .benefit .benefit-title,
section.benefits .benefit h3 {
  display: block;
  text-align: left;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.25
}

@media screen and (min-width:36.0625rem) {

  section.benefits .benefit .benefit-title,
  section.benefits .benefit h3 {
    font-size: 1.75rem
  }
}

@media screen and (min-width:60.0625rem) {
  section.benefits .benefit {
    width: 50%
  }
}

@media screen and (max-width:30rem) {
  section.benefits {
    background-color: #fff
  }

  section.benefits .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (max-width:20rem) {
  section.benefits {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.benefits {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

section.featured-treatments {
  display: block;
  width: 100%;
  height: auto;
  padding: 0
}

section.featured-treatments .card {
  color: #fff;
  padding: 2rem 1.5rem;
  background-color: #0044e3;
  background-image: linear-gradient(135deg, #34c5e6, #4f60de);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1244E3", endColorstr="#0C92FA", GradientType=1)
}

@media screen and (min-width:30.0625rem) {
  section.featured-treatments .card {
    padding: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.featured-treatments .card {
    padding: 3rem
  }
}

section.featured-treatments .treatments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + .5rem);
  height: auto;
  margin-right: -.25rem;
  margin-left: -.25rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

@media screen and (min-width:36.0625rem) {
  section.featured-treatments .treatments-list {
    width: calc(100% + 1rem);
    margin-right: -.5rem;
    margin-left: -.5rem
  }
}

@media screen and (min-width:75.0625rem) {
  section.featured-treatments .treatments-list {
    width: calc(100% + 1.25rem);
    margin-right: -.625rem;
    margin-left: -.625rem
  }
}

section.featured-treatments .treatment-card {
  display: block;
  padding: .25rem;
  width: 50%;
  height: auto
}

section.featured-treatments .treatment-card a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  font-size: .875rem;
  line-height: 1.5;
  font-weight: 700;
  color: #121f30;
  background-color: #fff;
  border-radius: .75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

section.featured-treatments .treatment-card a:hover {
  background-color: #f2b807;
  color: #121f30
}

@media screen and (min-width:30.0625rem) {
  section.featured-treatments .treatment-card a {
    padding: 1rem 1.25rem;
    font-size: 1rem
  }
}

@media screen and (min-width:48.0625rem) {
  section.featured-treatments .treatment-card a {
    padding: 1.25rem;
    font-size: 1.125rem
  }
}

@media screen and (min-width:90.0625rem) {
  section.featured-treatments .treatment-card a {
    padding: 1.5rem 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.featured-treatments .treatment-card {
    padding: .5rem
  }
}

@media screen and (min-width:48.0625rem) {
  section.featured-treatments .treatment-card {
    width: 33.33333%
  }
}

@media screen and (min-width:64.0625rem) {
  section.featured-treatments .treatment-card {
    width: 25%
  }
}

@media screen and (min-width:75.0625rem) {
  section.featured-treatments .treatment-card {
    padding: .625rem
  }
}

section.featured-treatments .cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1rem
}

section.featured-treatments a.section-cta {
  display: block;
  width: 100%;
  max-width: 12rem;
  height: auto;
  margin: 0;
  border-radius: .5rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
  color: #121f30;
  background-color: #f2b807
}

@media screen and (max-width:30rem) {
  section.featured-treatments .card {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 0 !important
  }

  section.featured-treatments .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (max-width:20rem) {
  section.featured-treatments .card {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.featured-treatments {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

section.featured-products,
section.recommended-products {
  padding: 3rem 0;
  overflow: hidden
}

section.featured-products li,
section.featured-products ul,
section.recommended-products li,
section.recommended-products ul {
  list-style: none;
  padding: 0;
  margin: 0
}

section.featured-products .product-list,
section.recommended-products .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 1.25rem);
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-right: -.625rem;
  margin-left: -.625rem
}

section.featured-products .product-list:after,
section.recommended-products .product-list:after {
  content: "";
  display: table;
  clear: both
}

section.featured-products .product-card,
section.recommended-products .product-card {
  display: block
}

section.featured-products .product-card a,
section.recommended-products .product-card a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: .5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

section.featured-products .product-card a .img-wrap,
section.recommended-products .product-card a .img-wrap {
  display: block;
  width: 100%;
  height: auto;
  padding-bottom: 67%;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%
}

section.featured-products .product-card a .img-wrap img,
section.recommended-products .product-card a .img-wrap img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  /* -o-object-fit: cover;
  object-fit: cover; */
  -o-object-position: center;
  object-position: center;
  top: 0;
  left: 0
}

section.featured-products .product-card a .desc,
section.recommended-products .product-card a .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

section.featured-products .product-card a .product-title,
section.recommended-products .product-card a .product-title {
  display: block;
  margin-top: 0;
  color: #121f30;
  line-height: 1.5;
  margin-bottom: 1.25rem
}

section.featured-products .product-card a .product-footer,
section.recommended-products .product-card a .product-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: end
}

section.featured-products .product-card a .price-block,
section.recommended-products .product-card a .price-block {
  line-height: 1.5
}

section.featured-products .product-card a .price-block .label,
section.recommended-products .product-card a .price-block .label {
  color: #707275
}

section.featured-products .product-card a .price,
section.recommended-products .product-card a .price {
  color: #F27D16
}

section.featured-products .product-card a .cta,
section.recommended-products .product-card a .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  margin-left: 1.25rem
}

section.featured-products .product-card a .cta .icon,
section.recommended-products .product-card a .cta .icon {
  display: block;
  border-radius: 99px;
  background-color: #0044e3;
  color: #fff;
  padding: .5rem
}

section.featured-products .product-card a .cta .icon svg,
section.recommended-products .product-card a .cta .icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem
}

section.featured-products .product-card a .cta .text,
section.recommended-products .product-card a .cta .text {
  font-size: .8125rem;
  padding-left: .5rem;
  text-align: right;
  font-weight: 600;
}

section.featured-products .product-card a:hover,
section.recommended-products .product-card a:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22)
}

section.recommended-products {
  padding: 0 0 3rem
}

section.recommended-products .product-list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: -1.25rem
}

section.recommended-products .product-list .product-card {
  width: 100%;
  height: auto;
  padding: 0 .625rem;
  margin-top: 1.25rem
}

@media screen and (min-width:36.0625rem) {
  section.recommended-products .product-list .product-card {
    width: 50%
  }
}

@media screen and (min-width:48.0625rem) {
  section.recommended-products .product-list .product-card {
    width: 33.33333%
  }
}

@media screen and (min-width:75.0625rem) {
  section.recommended-products .product-list .product-card {
    width: 25%
  }
}

@media screen and (max-width:20rem) {
  section.recommended-products {
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.recommended-products {
    padding-bottom: 5rem
  }
}

section.featured-products {
  padding: 3rem 0;
  background-color: #fff
}

section.featured-products .product-list {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

section.featured-products .product-list .product-card {
  width: 15rem;
  height: auto;
  padding: 0 .625rem
}

@media screen and (min-width:36.0625rem) {
  section.featured-products .product-list .product-card {
    width: 50%
  }
}

@media screen and (min-width:40.0625rem) {
  section.featured-products .product-list .product-card {
    width: 33.33333%
  }
}

@media screen and (min-width:48.0625rem) {
  section.featured-products .product-list .product-card {
    width: 25%
  }
}

section.featured-products .product-list.swiper-wrapper {
  width: 100%;
  margin-right: 0;
  margin-left: 0
}

section.featured-products .product-list.swiper-wrapper .swiper-slide {
  padding-right: 0;
  padding-left: 0
}

@media screen and (max-width:20rem) {
  section.featured-products {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.featured-products {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

section.how-it-works {
  margin: 0
}

section.how-it-works .text-white {
  color: #fff
}

section.how-it-works .card {
  padding: 3rem 1.5rem;
  background-color: #f27d16;
  background: linear-gradient(135deg, #f27d16, #f2b807);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1244E3", endColorstr="#0C92FA", GradientType=1)
}

@media screen and (min-width:30.0625rem) {
  section.how-it-works .card {
    padding: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.how-it-works .card {
    padding: 3rem
  }
}

section.how-it-works .step-block,
section.how-it-works .step-content,
section.how-it-works .steps-list {
  display: block;
  width: 100%;
  height: auto
}

section.how-it-works .step-block {
  margin-bottom: 2.5rem
}

section.how-it-works .step-block:last-child {
  margin-bottom: 0
}

section.how-it-works .step-header {
  margin-bottom: 1rem;
  color: #121f30;
  font-weight: 700;
  text-transform: uppercase
}

section.how-it-works .step-body {
  display: block;
  width: 100%
}

@media screen and (min-width:48.0625rem) {
  section.how-it-works .step-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }
}

section.how-it-works .step-desc,
section.how-it-works .step-title {
  color: #fff
}

section.how-it-works .step-title {
  margin-top: 0;
  width: 100%;
  margin-bottom: 1.25rem;
  font-size: 2rem;
  line-height: 1.25;
  -ms-flex-preferred-size: 15rem;
  flex-basis: 15rem
}

@media screen and (min-width:48.0625rem) {
  section.how-it-works .step-title {
    width: 15rem;
    -ms-flex-preferred-size: 15rem;
    flex-basis: 15rem
  }
}

@media screen and (min-width:75.0625rem) {
  section.how-it-works .step-title {
    width: 18rem;
    -ms-flex-preferred-size: 18rem;
    flex-basis: 18rem;
    font-size: 2.5rem
  }
}

@media screen and (min-width:90.0625rem) {
  section.how-it-works .step-title {
    width: 22.5rem;
    -ms-flex-preferred-size: 22.5rem;
    flex-basis: 22.5rem;
    font-size: 3rem
  }
}

section.how-it-works .step-desc {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-weight: 700;
  font-size: 1.25rem;
  padding-left: 1.5rem;
  margin-top: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

@media screen and (min-width:30.0625rem) {
  section.how-it-works .step-desc {
    padding-left: 2rem
  }
}

@media screen and (max-width:30rem) {
  section.how-it-works .card {
    border-radius: 0
  }

  section.how-it-works .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (max-width:20rem) {
  section.how-it-works {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.how-it-works {
    margin-top: 5rem;
    margin-bottom: 5rem
  }
}

section.blog {
  margin: 3rem 0 0;
  padding: 0 0 3rem;
  overflow: hidden;
  background-color: #F0F3FC;
}

@media screen and (max-width:20rem) {
  section.blog {
    margin-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.blog {
    margin-top: 5rem;
    padding-bottom: 5rem
  }
}

.articles-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.articles-list .blog-article {
  width: 16rem;
  height: auto
}

@media screen and (min-width:40.0625rem) {
  .articles-list .blog-article {
    width: 50%
  }
}

@media screen and (min-width:60.0625rem) {
  .articles-list .blog-article {
    width: 33.33333%
  }
}

.blog-article {
  display: block
}

.blog-article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: .5rem;
  overflow: hidden;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

.blog-article a .img-wrap {
  display: block;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden
}

.blog-article a .img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0
}

.blog-article a .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

.blog-article a:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22)
}

.blog-article a:active {
  background-color: #f9f9f9
}

.blog-article .article-title {
  display: block;
  margin-top: 0;
  margin-bottom: 1.25rem;
  line-height: 1.5;
  font-size: 1.125rem
}

@media screen and (min-width:20rem) {
  .blog-article .article-title {
    font-size: 1rem
  }
}

@media screen and (min-width:36.0625rem) {
  .blog-article .article-title {
    font-size: 1.25rem
  }
}

.blog-article .article-footer,
.blog-article .cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.blog-article .article-date,
.blog-article .cta-btn {
  font-size: .75rem,
}

@media screen and (min-width:36.0625rem) {

  .blog-article .article-date,
  .blog-article .cta-btn {
    font-size: .875rem
  }
}

.blog-article .cta-btn .icon {
  display: block;
  border-radius: 99px;
  background-color: #0044e3;
  color: #fff;
  padding: .25rem
}

.blog-article .cta-btn .icon svg {
  display: block;
  width: 1rem;
  height: 1rem
}

@media screen and (min-width:36.0625rem) {
  .blog-article .cta-btn .icon svg {
    width: 1.25rem;
    height: 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  .blog-article .cta-btn .icon {
    padding: .5rem
  }
}

.blog-article .cta-btn .text {
  padding-left: .75rem
}

.blog-article .article-footer {
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.blog-article .article-date {
  color:#F27D16
  
}

.banner .watch-video-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.banner .watch-video-cta a.watch-video-btn,
.banner .watch-video-cta button.watch-video-btn {
  margin-top: 0
}

@media screen and (min-width:30.0625rem) {
  .banner .watch-video-cta {
    margin-top: 2rem
  }
}

a.watch-video-btn,
button.watch-video-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  background-color: #f2b807;
  color: #121f30;
  border-radius: .5rem;
  -webkit-transition: background-color .2s ease, -webkit-box-shadow .2s ease;
  transition: background-color .2s ease, -webkit-box-shadow .2s ease;
  transition: background-color .2s ease, box-shadow .2s ease;
  transition: background-color .2s ease, box-shadow .2s ease, -webkit-box-shadow .2s ease
}

a.watch-video-btn svg,
button.watch-video-btn svg {
  display: block
}

a.watch-video-btn span,
button.watch-video-btn span {
  display: inline-block;
  color: inherit
}

a.watch-video-btn .icon,
button.watch-video-btn .icon {
  padding-right: .5rem
}

a.watch-video-btn:hover,
button.watch-video-btn:hover {
  background-color: #dea906
}

a.watch-video-btn:focus,
button.watch-video-btn:focus {
  -webkit-box-shadow: 0 0 0 .25rem #facf4c;
  box-shadow: 0 0 0 .25rem #facf4c
}

@media screen and (max-width:30rem) {

  section.faq-accordion .card,
  section.treatments-block .card {
    border-radius: 0 !important
  }

  section.faq-accordion .container,
  section.treatments-block .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

section.treatments-block {
  margin-bottom: 3rem
}

section.treatments-block .card {
  padding: 2rem 1.5rem 1.5rem
}

@media screen and (min-width:30.0625rem) {
  section.treatments-block .card {
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    padding: 2rem 2rem 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.treatments-block .card {
    padding: 3rem 3rem 2.5rem
  }
}

@media screen and (min-width:75.0625rem) {
  section.treatments-block .card {
    padding-bottom: 1.375rem
  }
}

section.treatments-block .filter-block {
  max-width: 25rem;
  margin: 0 auto 2.5rem
}

section.treatments-block .treatment-list {
  width: calc(100% + .5rem);
  margin-right: -.25rem;
  margin-left: -.25rem
}

@media screen and (min-width:36.0625rem) {
  section.treatments-block .treatment-list {
    width: calc(100% + 1rem);
    margin-right: -.5rem;
    margin-left: -.5rem
  }
}

@media screen and (min-width:75.0625rem) {
  section.treatments-block .treatment-list {
    width: calc(100% + 1.25rem);
    margin-right: -.625rem;
    margin-left: -.625rem
  }
}

section.treatments-block .treatment-card__wrap {
  width: 50%;
  height: auto;
  padding: 0 .25rem;
  margin-bottom: .5rem
}

section.treatments-block .treatment-card__wrap a {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  padding-bottom: 100%;
  border-radius: .75rem;
  background-color: #fff;
  position: relative;
  overflow: hidden
}

@media screen and (min-width:36.0625rem) {
  section.treatments-block .treatment-card__wrap a {
    padding-bottom: 56.25%
  }
}

@media screen and (min-width:36.0625rem) {
  section.treatments-block .treatment-card__wrap {
    padding-right: .5rem;
    padding-left: .5rem;
    margin-bottom: 1rem
  }
}

@media screen and (min-width:48.0625rem) {
  section.treatments-block .treatment-card__wrap {
    width: 33.33333%
  }
}

@media screen and (min-width:75.0625rem) {
  section.treatments-block .treatment-card__wrap {
    width: 25%;
    padding-right: .625rem;
    padding-left: .625rem;
    margin-bottom: 1.25rem
  }
}

section.treatments-block .treatment-card__wrap.hide {
  display: none
}

section.treatments-block .treatment-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 1rem;
  line-height: 1.25;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(18, 31, 48, .75)), to(rgba(18, 31, 48, 0)));
  background-image: linear-gradient(0deg, rgba(18, 31, 48, .75) 0, rgba(18, 31, 48, 0))
}

@media screen and (min-width:30.0625rem) {
  section.treatments-block .treatment-title {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    padding-bottom: 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.treatments-block .treatment-title {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-bottom: 1.5rem
  }
}

@media screen and (max-width:20rem) {
  section.treatments-block {
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.treatments-block {
    margin-bottom: 5rem
  }
}

section.treatment-details {
  margin: 1.5rem 0 3rem
}

@media screen and (max-width:20rem) {
  section.treatment-details {
    margin-top: 1.25rem;
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.treatment-details {
    margin-top: 2.5rem;
    margin-bottom: 5rem
  }
}

.details-row .featured-img,
.details-row .mobile-featured-img,
.treatment-details .featured-img,
.treatment-details .mobile-featured-img {
  margin-bottom: 2rem;
  -webkit-transition: margin-top .12s ease;
  transition: margin-top .12s ease
}

.details-row .featured-img img,
.details-row .mobile-featured-img img,
.treatment-details .featured-img img,
.treatment-details .mobile-featured-img img {
  display: block;
  width: 100%;
  border-radius: .75rem
}

@media screen and (min-width:64.0625rem) {

  .details-row .featured-img,
  .details-row .mobile-featured-img,
  .treatment-details .featured-img,
  .treatment-details .mobile-featured-img {
    margin-top: -19rem
  }
}

.details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

.details-row .col-treatments {
  width: 100%
}

.details-row .col-treatments .featured-img {
  margin-top: 0;
  margin-bottom: 2rem
}

@media screen and (min-width:64.0625rem) {
  .details-row .col-treatments .featured-img {
    margin-top: -19rem
  }
}

@media screen and (min-width:64.0625rem) {
  .details-row .col-treatments {
    width: 28.5rem;
    -ms-flex-preferred-size: 28.5rem;
    flex-basis: 28.5rem
  }
}

.details-row .col-info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding-top: 1.5rem
}

@media screen and (max-width:20rem) {
  .details-row .col-info {
    padding-top: 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  .details-row .col-info {
    padding-top: 2.5rem
  }
}

@media screen and (min-width:75.0625rem) {
  .details-row .col-info {
    padding-left: 3rem
  }
}

@media screen and (min-width:64.0625rem) {
  .details-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

.treatment-accordion .treatment-info__heading,
.treatment-info__heading {
  font-size: 1.5rem;
  margin: 2rem 0 1rem
}

@media screen and (min-width:30.0625rem) {

  .treatment-accordion .treatment-info__heading,
  .treatment-info__heading {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem
  }
}

@media screen and (min-width:48.0625rem) {

  .treatment-accordion .treatment-info__heading,
  .treatment-info__heading {
    font-size: 2rem
  }
}

.treatments-wrapper {
  display: block;
  width: 100%;
  height: auto;
  padding: 0
}

.treatments-wrapper .treatment-wrapper__card {
  display: block;
  width: 100%;
  height: auto;
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: .75rem;
  background-color: #4f60de;
  background-image: linear-gradient(135deg, #34c5e6, #4f60de);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#34c5e6", endColorstr="#4f60de", GradientType=1)
}

.treatments-wrapper .treatment-wrapper__card:last-child {
  margin-bottom: 0
}

.treatments-wrapper .treatment-wrapper__card .card-heading {
  padding: 0 2rem;
  font-size: 1.5rem
}

@media screen and (min-width:48.0625rem) {
  .treatments-wrapper .treatment-wrapper__card .card-heading {
    font-size: 2rem
  }
}

.treatments-wrapper .treatment-wrapper__card .product-card {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 1.25rem;
  margin-bottom: 1rem
}

.treatments-wrapper .treatment-wrapper__card .product-card:last-child {
  margin-bottom: 0
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: .5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .img-wrap {
  display: block;
  width: 40%;
  height: auto;
  padding: .5rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .img-wrap .product-img {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 100%
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .img-wrap img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  top: 0;
  left: 0
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .product-title {
  display: block;
  margin-top: 0;
  color: #121f30;
  line-height: 1.5;
  margin-bottom: 1rem
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .product-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .price-block {
  line-height: 1.5
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .price-block .label {
  color: #707275
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .price {
  color: #121f30
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  margin-left: 1.25rem
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .cta .icon {
  display: block;
  border-radius: 99px;
  background-color: #0044e3;
  color: #fff;
  padding: .5rem
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .cta .icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem
}

.treatments-wrapper .treatment-wrapper__card .product-card .product-inner .cta .text {
  font-size: .875rem;
  padding-right: .75rem
}

.treatments-wrapper .treatment-wrapper__card .product-card a.product-inner:hover {
  -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .22)
}

.treatments-wrapper .treatment-wrapper__card:after {
  content: "";
  display: table;
  clear: both
}

.blog-article__list {
  width: calc(100% + .5rem);
  margin-right: -.25rem;
  margin-left: -.25rem
}

.blog-article__list .blog-article {
  width: 100%;
  padding: 0 .25rem;
  margin-bottom: .75rem
}

@media screen and (min-width:30.0625rem) {
  .blog-article__list .blog-article {
    width: 50%;
    margin-bottom: .5rem
  }
}

@media screen and (min-width:36.0625rem) {
  .blog-article__list .blog-article {
    padding-right: .5rem;
    padding-left: .5rem;
    margin-bottom: 1rem
  }
}

@media screen and (min-width:56.0625rem) {
  .blog-article__list .blog-article {
    width: 33.33333%
  }
}

@media screen and (min-width:75.0625rem) {
  .blog-article__list .blog-article {
    width: 25%;
    padding-right: .625rem;
    padding-left: .625rem;
    margin-bottom: 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  .blog-article__list {
    width: calc(100% + 1rem);
    margin-right: -.5rem;
    margin-left: -.5rem
  }
}

@media screen and (min-width:75.0625rem) {
  .blog-article__list {
    width: calc(100% + 1.25rem);
    margin-right: -.625rem;
    margin-left: -.625rem
  }
}

section.articles {
  margin-bottom: 3rem
}

@media screen and (max-width:20rem) {
  section.articles {
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.articles {
    margin-bottom: 5rem
  }
}

section.article-content {
  margin-bottom: 3rem
}

section.article-content .block-image {
  max-width: 64rem;
  max-height: 32rem;
  border-radius: 1rem;
  margin-bottom: 2.5rem
}

@media screen and (max-width:20rem) {
  section.article-content {
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.article-content {
    margin-bottom: 5rem
  }
}

.pagination,
.pagination li {
  list-style: none;
  padding: 0;
  margin: 0
}

.pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow-x: auto
}

.pagination-inner {
  display: block;
  padding: .25rem 0
}

.pagination,
.pagination-inner {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1.5rem
}

.pagination .page-item {
  display: block;
  float: left;
  width: auto;
  min-width: 2rem;
  -ms-flex-preferred-size: 2rem;
  flex-basis: 2rem;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  font-size: 1rem;
  padding: .5rem;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  -ms-touch-action: pan-x;
  touch-action: pan-x
}

.pagination:after {
  content: "";
  display: table;
  clear: both
}

section.faq-accordion .card {
  padding: 2rem 1.5rem
}

@media screen and (min-width:30.0625rem) {
  section.faq-accordion .card {
    padding: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.faq-accordion .card {
    padding: 3rem
  }
}

.accordion {
  margin-bottom: 12
}

.accordion:last-child {
  margin-bottom: 0
}

.accordion .accordion-header {
  border-bottom: 4px solid #0044e3;
  font-size: 1.5em;
  padding: 1rem 0;
  position: relative;
  -webkit-transition: all .3s;
  transition: all .3s
}

.accordion .accordion-header.ui-state-active {
  margin: 0
}

.accordion .accordion-header.ui-state-active:after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg)
}

.accordion .accordion-header:hover {
  border-bottom-color: #0c92fa;
  color: #0c92fa
}

.accordion .accordion-header:hover:after,
.accordion .accordion-header:hover:before {
  background: #0c92fa
}

.accordion .accordion-header svg {
  display: none;
  width: 1.5rem;
  height: 1.5rem
}

@media screen and (min-width:30.0625rem) {
  .accordion .accordion-header svg {
    width: 2rem;
    height: 2rem
  }
}

@media screen and (min-width:30.0625rem) {
  .accordion .accordion-header {
    font-size: 2rem
  }
}

.accordion .accordion-title {
  font-size: 1em
}

.accordion .accordion-body li {
  margin: 1rem 0
}

.contact-content {
  margin: 3rem 0
}

@media screen and (max-width:20rem) {
  .contact-content {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  .contact-content {
    margin-top: 5rem;
    margin-bottom: 5rem
  }
}

.contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 3rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: -1.5rem;
  margin-left: -1.5rem
}

.contact-row .contact-col {
  padding-right: 1.5rem;
  padding-left: 1.5rem
}

.contact-row .contact-form {
  margin-bottom: 2.5rem
}

@media screen and (min-width:48.0625rem) {
  .contact-row .contact-form {
    margin-bottom: 0
  }
}

@media screen and (min-width:48.0625rem) {
  .contact-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

.contact-details p {
  font-weight: 500
}

.disclaimer {
  margin: 1.5rem 0
}

.disclaimer p {
  color: #121f30;
  font-size: .875em;
  font-style: italic;
  line-height: 1.5
}

div#ui-datepicker-div.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
  z-index: 9999 !important
}

div.ui-datepicker-header.ui-widget-header.ui-helper-clearfix.ui-corner-all {
  background: #0c92fa !important;
  color: #fff !important
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  background: none;
  border: none
}

.benefits-box {
  background: #0c92fa;
  border-radius: 3px;
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 15px
}

.benefits-box i {
  color: #fff;
  font-size: 2em;
  margin-right: 15px
}

.benefits-box p {
  color: #fff;
  font-weight: 500;
  margin: 0
}

.benefits-box .item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
  text-align: left;
  width: 100%
}

.benefits-box .item.active i,
.benefits-box .item.active p {
  opacity: 1
}

@media (min-width:768px) {
  .benefits-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 20px
  }

  .benefits-box .item {
    padding: 0 15px;
    width: 33.333%
  }
}

.current-order-block {
  background: -webkit-gradient(linear, left bottom, left top, from(#003cca), to(#0044e3));
  background: linear-gradient(0deg, #003cca, #0044e3);
  border-radius: 3px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 30px
}

.current-order-block .btn {
  margin-bottom: 0
}

.current-order-block .img-wrap {
  border: 1px solid #f1f3fa;
  width: 30%
}

.current-order-block .desc {
  padding: 0 0 0 30px;
  width: 70%
}

@media (max-width: 768px) {
  .current-order-block .desc {
    padding: 0;
  }
}


.current-order-block .desc h6,
.current-order-block .desc p {
  color: #fff
}

.current-order-block .desc h6 {
  font-size: 1.125em
}

.current-order-block .desc p {
  font-size: .875em
}

.current-order-block .desc .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.current-order-block .desc .flex-wrap p {
  margin-right: 10px
}

.current-order-block .desc .btn {
  background: #00257d;
  border-radius: 3px;
  color: #fff
}

.current-order-block .desc .btn:hover {
  background: #00164a;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: none;
  transform: none
}

.order-progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  width: 100%
}

.order-progress-bar .bar-container {
  background: #e1e3ed;
  border: #f1f1f1;
  border-radius: 30px;
  height: 15px;
  width: 100%
}

.order-progress-bar .bar {
  background: #0c92fa;
  display: block
}

.order-progress-bar .item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: hsla(0, 0%, 100%, .2);
  border-radius: 3px;
  -webkit-box-shadow: 0 0 5px hsla(0, 0%, 100%, .3) inset;
  box-shadow: inset 0 0 5px hsla(0, 0%, 100%, .3);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 5px;
  padding: 15px;
  position: relative;
  width: 100%
}

.order-progress-bar .item h6 {
  color: #fff;
  font-size: 1em;
  margin: 0
}

.order-progress-bar .item aside {
  background: #fff;
  border: 1px solid #f1f1f1;
  -webkit-box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  box-shadow: 0 3px 15px rgba(0, 0, 0, .1);
  border-radius: 3px;
  left: 0;
  opacity: 0;
  padding: 10px;
  position: absolute;
  pointer-events: none;
  top: 100%;
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
  z-index: 999
}

.order-progress-bar .item aside p {
  color: #707275;
  margin: 0
}

.order-progress-bar .item.last {
  margin-right: 0
}

.order-progress-bar #cancelled-message,
.order-progress-bar #declined-message,
.order-progress-bar #payment-failed-message {
  display: none
}

.order-progress-bar.placed .item.first {
  background: #fff;
  color: #0044e3
}

.order-progress-bar.placed .item.first h6 {
  color: #0044e3
}

.order-progress-bar.placed .item.first:hover aside {
  opacity: 1
}

.order-progress-bar.approved .item.first,
.order-progress-bar.approved .item.second {
  background: #fff;
  color: #0044e3
}

.order-progress-bar.approved .item.first h6,
.order-progress-bar.approved .item.second h6 {
  color: #0044e3
}

.order-progress-bar.approved .item.first:hover aside,
.order-progress-bar.approved .item.second:hover aside {
  opacity: 1
}

.order-progress-bar.shipped .item.first,
.order-progress-bar.shipped .item.last,
.order-progress-bar.shipped .item.second {
  background: #fff;
  color: #0044e3
}

.order-progress-bar.shipped .item.first h6,
.order-progress-bar.shipped .item.last h6,
.order-progress-bar.shipped .item.second h6 {
  color: #0044e3
}

.order-progress-bar.shipped .item.first:hover aside,
.order-progress-bar.shipped .item.last:hover aside,
.order-progress-bar.shipped .item.second:hover aside {
  opacity: 1
}

.order-progress-bar.payment-failed #placed {
  display: none
}

.order-progress-bar.payment-failed .item.first {
  background: crimson
}

.order-progress-bar.payment-failed .item.first h6 {
  color: #fff
}

.order-progress-bar.payment-failed .item.first:hover aside {
  opacity: 1
}

.order-progress-bar.payment-failed #payment-failed-message {
  display: block
}

.order-progress-bar.canceled .item.first,
.order-progress-bar.declined .item.first {
  background: #fff
}

.order-progress-bar.canceled .item.first h6,
.order-progress-bar.declined .item.first h6 {
  color: #0044e3
}

.order-progress-bar.canceled .item.first:hover aside,
.order-progress-bar.declined .item.first:hover aside {
  opacity: 1
}

.order-progress-bar.canceled .item.second,
.order-progress-bar.declined .item.second {
  background: crimson
}

.order-progress-bar.canceled .item.second h6,
.order-progress-bar.declined .item.second h6 {
  color: #fff
}

.order-progress-bar.canceled .item.second:hover aside,
.order-progress-bar.declined .item.second:hover aside {
  opacity: 1
}

.order-progress-bar.canceled #approved,
.order-progress-bar.declined #approved {
  display: none
}

.order-progress-bar.canceled #cancelled-message,
.order-progress-bar.declined #declined-message {
  display: block
}

.user-settings-modal i {
  margin-top: 60px
}

.modal-backdrop {
  display: none
}

#payment-redirect {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: calc(100vh - 600px)
}

#payment-redirect .inner {
  margin: 15vh auto;
  max-width: 100%;
  text-align: center;
  width: 800px
}

#payment-redirect form {
  background: none;
  border: none;
  margin-bottom: 0;
  padding: 0
}

#payment-redirect h2.empty-cart {
  padding: 0 15px;
  text-align: center;
  width: 100%
}

#delivery-address-form {
  -webkit-transition: opacity .25s;
  transition: opacity .25s
}

#delivery-address-form.disabled {
  opacity: .4;
  pointer-events: none
}

.ac-edit-wrap .checkbox-wrap {
  margin: 20px 0 20px 5px
}

.user-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0
}

.user-page .card {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  border: none;
  min-height: 100vh;
  border-radius: .75rem;
  padding: 3rem 1.5rem
}

.user-page .card .card-logo {
  height: 2.5rem
}

.user-page .card .card-title,
.user-page .card h1 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem
}

.user-page .card .card-title.has-margin-bottom,
.user-page .card h1.has-margin-bottom {
  margin-bottom: 2rem
}

@media screen and (min-width:36.0625rem) {

  .user-page .card .card-title,
  .user-page .card h1 {
    font-size: 2.25rem
  }
}

@media screen and (min-width:64.0625rem) {

  .user-page .card .card-title,
  .user-page .card h1 {
    font-size: 2.5rem
  }

  .user-page .card .card-title.has-margin-bottom,
  .user-page .card h1.has-margin-bottom {
    margin-bottom: 3rem
  }
}

.user-page .card h3 {
  font-size: 1.25rem
}

@media screen and (min-width:36.0625rem) {
  .user-page .card h3 {
    font-size: 1.5rem
  }
}

@media screen and (min-width:30.0625rem) {
  .user-page .card {
    padding: 2rem;
    min-height: auto
  }
}

@media screen and (min-width:36.0625rem) {
  .user-page .card {
    padding: 3rem
  }
}

@media screen and (max-width:30rem) {
  .user-page .card {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
  }

  .user-page .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (min-width:36.0625rem) {
  .user-page {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

.facebook-btn {
  color: #fff;
  background-color: #3c5a99;
  position: relative;
  z-index: 20
}

.facebook-btn:hover {
  background-color: #354f87
}

.facebook-btn:hover svg #f {
  fill: #354f87
}

.my-account {
  margin-bottom: 3rem
}

.my-account .card {
  border-radius: 1rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

.my-account .tabs-header {
  border-bottom: .0625rem solid #ccd3e3
}

.my-account .tabs-list {
  width: calc(100% + 1rem);
  margin-right: -.5rem;
  margin-left: -.5rem
}

.my-account .tabs-list .tab-wrap {
  display: inline-block;
  padding: 0 .25rem
}

.my-account .tabs-list .tab-wrap:last-child {
  padding-right: 24px
}

@media screen and (min-width:30.0625rem) {
  .my-account .tabs-list .tab-wrap {
    padding: 0 .5rem
  }

  .my-account .tabs-list .tab-wrap:last-child {
    padding-right: 0
  }
}

.my-account .tabs-list__wrap {
  padding: 0 1.5rem
}

@media screen and (min-width:30.0625rem) {
  .my-account .tabs-list__wrap {
    padding: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  .my-account .tabs-list__wrap {
    padding: 3rem
  }
}

.my-account .tabs-body {
  padding: 0 1.5rem
}

@media screen and (min-width:30.0625rem) {
  .my-account .tabs-body {
    padding-right: 2rem;
    padding-left: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  .my-account .tabs-body {
    padding-right: 3rem;
    padding-left: 3rem
  }
}

.my-account .tab-content form {
  padding: 1.5rem 0;
  border-bottom: .0625rem solid #ccd3e3
}

.my-account .tab-content form:last-child {
  border-bottom: none
}

@media screen and (min-width:30.0625rem) {
  .my-account .tab-content form {
    padding-top: 2rem;
    padding-bottom: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  .my-account .tab-content form {
    padding-top: 3rem;
    padding-bottom: 3rem
  }
}

@media screen and (max-width:30rem) {
  .my-account .card {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
  }

  .my-account .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (max-width:20rem) {
  .my-account {
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  .my-account {
    margin-bottom: 5rem
  }
}

a.tab {
  display: block;
  color: #0044e3;
  padding: 1.25rem 1.25rem 1rem;
  white-space: nowrap;
  border-bottom: .25rem solid transparent
}

a.tab:not(.tab-active):hover {
  border-bottom-color: #b0c8ff
}

a.tab.tab-active {
  border-bottom-color: #0044e3
}

@media screen and (min-width:30.0625rem) {
  a.tab {
    background-color: #edf3ff;
    padding-bottom: 1.25rem;
    border-radius: .75rem;
    border-bottom-color: transparent;
    border-bottom: none
  }

  a.tab:not(.tab-active):hover {
    background-color: #d9e4ff
  }

  a.tab.tab-active {
    color: #fff;
    background-color: #0044e3
  }
}

.tab-content {
  display: none;
  padding: 0
}

.tab-content.tab-content-active {
  display: block
}

.current-orders .current-order-block {
  color: #0b2e13;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 12px
}

.current-orders .current-order-block .img-wrap,
.current-orders .current-order-block .img-wrap img {
  width: 100%
}

section.questionnaire {
  background: #f1f2f5;
  counter-reset: question-number;
  padding: 3rem 0
}

section.questionnaire .questionnaire-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

@media screen and (min-width:64.0625rem) {
  section.questionnaire .questionnaire-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

section.questionnaire .questionnaire-questions {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

@media screen and (min-width:64.0625rem) {
  section.questionnaire .questionnaire-questions {
    padding-right: 2.5rem
  }
}

section.questionnaire .question.text .word-count {
  margin-top: 4px;
  margin-left: 37px;
  color: crimson
}

section.questionnaire .question.text .word-count.correct {
  color: #3cc7b1
}

section.questionnaire form {
  background: none;
  border: none;
  margin: 0;
  padding: 0
}

section.questionnaire .question {
  display: block;
  counter-increment: question-number;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  border-radius: 0;
  position: relative;
  background-color: #fff;
  margin-bottom: .5rem
}

section.questionnaire .question:before {
  content: counter(question-number);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: #f2b807;
  border-radius: 100%;
  color: #121f30;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  padding: .25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

section.questionnaire .question .question-question,
section.questionnaire .question .question-question p,
section.questionnaire .question h3 {
  width: 100%;
  font-size: 1rem;
  font-family: lato, Roboto, Helvetica, Futura, Arial, sans-serif;
  line-height: 1.5;
  color: #121f30;
  font-weight: 400
}

@media screen and (min-width:64.0625rem) {

  section.questionnaire .question .question-question,
  section.questionnaire .question .question-question p,
  section.questionnaire .question h3 {
    font-size: 1.125rem
  }
}

section.questionnaire .question .question-question {
  margin-bottom: 1.25rem
}

section.questionnaire .question .question-question p:first-child {
  margin-top: 0
}

section.questionnaire .question .question-question:last-of-type {
  margin-bottom: 0
}

section.questionnaire .question input {
  cursor: pointer
}

section.questionnaire .question label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  letter-spacing: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  padding-left: .5rem
}

section.questionnaire .question textarea {
  width: 100%;
  border: 1px solid #ccd3e3;
  border-radius: .75rem;
  margin-top: 1rem;
  padding: 1.25rem
}

section.questionnaire .question textarea:focus {
  border: .0625rem solid #0044e3;
  -webkit-box-shadow: 0 0 0 .0625rem #0044e3;
  box-shadow: 0 0 0 .0625rem #0044e3
}

section.questionnaire .question .words-count-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 400;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

section.questionnaire .question .words-count-wrapper .minimum-words,
section.questionnaire .question .words-count-wrapper .word-count {
  display: block;
  margin: 0 0 .75rem
}

section.questionnaire .question .words-count-wrapper .word-count {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0
}

section.questionnaire .question .words-count-wrapper .minimum-words {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left;
  padding-right: 1rem;
  color: #63686a
}

section.questionnaire .question .alert-danger {
  display: none;
  border-radius: .5rem;
  color: #fff;
  font-size: .875em;
  font-weight: 500;
  margin: 15px 0 0;
  padding: .5rem .75rem
}

section.questionnaire .question .alert-danger.active {
  display: block
}

section.questionnaire .question .input {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0;
  width: auto
}

section.questionnaire .question .input.radio {
  padding: 0
}

section.questionnaire .question .input.radio label {
  min-width: 6rem;
  max-width: calc(50% - .75rem);
  background: #fff;
  border-radius: .5rem;
  color: #0044e3;
  text-align: center;
  cursor: pointer;
  padding: .5rem 1rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  border: .0625rem solid #0044e3
}

section.questionnaire .question .input.radio label:hover {
  background: #97b6ff
}

section.questionnaire .question .input.radio input {
  height: 0;
  left: 33px;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 10px;
  z-index: -1
}

section.questionnaire .question .input.radio input:checked+label {
  background: #0044e3;
  color: #fff;
  border-color: #0044e3
}

section.questionnaire .question .input.radio input:disabled+label,
section.questionnaire .question .input.radio input:disabled+label:hover {
  background: #a4a5a7;
  border-color: #a4a5a7;
  color: #121f30;
  cursor: not-allowed
}

section.questionnaire .question .input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

section.questionnaire .question .input-wrap .input.radio {
  margin-right: .75rem
}

section.questionnaire .question .input-wrap .input.radio:last-child {
  margin-right: 0
}

section.questionnaire .question.text&gt;label {
  margin-bottom: 1.25rem;
  padding: 0
}

section.questionnaire .question.text&gt;label h3 {
  line-height: 1.4;
  margin-bottom: 0
}

section.questionnaire .question.error .alert-danger {
  display: block
}

section.questionnaire .question.required.yn label:after {
  display: none
}

section.questionnaire .question.required.yn h3:after {
  content: " *";
  color: crimson;
  display: inline-block;
  margin-left: 3px
}

@media screen and (max-width:30rem) {
  section.questionnaire .question .container {
    padding-right: 0;
    padding-left: 0
  }

  section.questionnaire .question .question {
    border-radius: 0;
    margin-bottom: .5rem
  }
}

@media screen and (min-width:23.5rem) {
  section.questionnaire .question {
    margin-bottom: .75rem
  }
}

@media screen and (min-width:30.0625rem) {
  section.questionnaire .question {
    border-radius: .75rem;
    margin-bottom: 1.25rem
  }
}

section.questionnaire .main-error .alert-danger,
section.questionnaire .main-error .alert-success {
  display: none
}

section.questionnaire .main-error .alert-danger.active,
section.questionnaire .main-error .alert-success.active {
  display: block
}

@media screen and (max-width:30rem) {
  section.questionnaire .container {
    padding-right: 0;
    padding-left: 0
  }
}

@media screen and (max-width:20rem) {
  section.questionnaire {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.questionnaire {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

.progress-block {
  display: none;
  -webkit-transform: translateY(50%);
  transform: translateY(50%)
}

@media screen and (min-width:null) {
  .progress-block {
    display: block
  }
}

.progress-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background: #0c92fa;
  border-radius: .5rem;
  padding: 1.5rem
}

.progress-box p {
  color: #fff;
  font-weight: 700;
  margin: 0;
  opacity: .3
}

.progress-box .step {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 5px 0;
  width: 100%
}

.progress-box .step.active i,
.progress-box .step.active p {
  opacity: 1
}

.sidebar {
  display: none;
  width: 20rem;
  position: sticky;
  top: 6rem;
  border-radius: .75rem;
  background-color: #fff
}

.sidebar img.doctor-img {
  width: 8rem;
  height: 8rem;
  border-radius: 99rem
}

.sidebar h5 {
  margin-top: 1rem;
  margin-bottom: 1rem
}

.sidebar .product-list,
.sidebar .select-treatments-heading {
  padding: 0 1.5rem
}

.sidebar .select-treatments-heading {
  display: block
}

.sidebar .product-list {
  padding-bottom: 1.5rem
}

.sidebar .product-list a {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #0c92fa;
  width: 100%
}

.sidebar .product-card {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin-bottom: 1rem
}

.sidebar .product-card:last-child {
  margin-bottom: 0
}

.sidebar .product-card .product-inner {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: .5rem;
  overflow: hidden
}

.sidebar .product-card .product-inner .img-wrap {
  display: block;
  width: 40%;
  height: auto;
  padding: .5rem;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%
}

.sidebar .product-card .product-inner .img-wrap .product-img {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 100%
}

.sidebar .product-card .product-inner .img-wrap img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  top: 0;
  left: 0
}

.sidebar .product-card .product-inner .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.25rem;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.sidebar .product-card .product-inner .product-title {
  display: block;
  margin-top: 0;
  color: #121f30;
  line-height: 1.5;
  margin-bottom: 1rem
}

.sidebar .product-card .product-inner .product-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.sidebar .product-card .product-inner .price-block {
  line-height: 1.5
}

.sidebar .product-card .product-inner .price-block .label {
  color: #707275
}

.sidebar .product-card .product-inner .price {
  color: #121f30
}

.sidebar .product-card .product-inner .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  margin-left: 1.25rem
}

.sidebar .product-card .product-inner .cta .icon {
  display: block;
  border-radius: 99px;
  background-color: #0044e3;
  color: #fff;
  padding: .5rem
}

.sidebar .product-card .product-inner .cta .icon svg {
  display: block;
  width: 1.25rem;
  height: 1.25rem
}

.sidebar .product-card .product-inner .cta .text {
  font-size: .875rem;
  padding-right: .75rem
}

.sidebar .product-card a.product-inner:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

@media screen and (min-width:64.0625rem) {
  .sidebar {
    display: block
  }
}

a.switch_unit {
  width: 350px;
  font-weight: 700;
  color: #1a43db
}

a.switch_unit:hover {
  color: #e38336
}

section.product {
  padding-top: 3.5rem
}

section.product .product-wrapper {
  padding: 0
}

@media screen and (min-width:30.0625rem) {
  section.product .product-wrapper {
    padding-top: 3rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.product .product-wrapper {
    padding-top: 4rem
  }
}

section.product .product-heading,
section.product h1 {
  font-size: 2rem
}

@media screen and (min-width:30.0625rem) {

  section.product .product-heading,
  section.product h1 {
    font-size: 2.5rem
  }
}

@media screen and (min-width:48.0625rem) {

  section.product .product-heading,
  section.product h1 {
    font-size: 3rem
  }
}

section.product .product-section {
  margin: 2rem 0
}

section.product .product-section:last-child {
  margin-bottom: 0 !important
}

@media screen and (min-width:30.0625rem) {
  section.product .product-section {
    margin: 2.5rem 0
  }
}

section.product .product-detail__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch
}

@media screen and (min-width:56.0625rem) {
  section.product .product-detail__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

section.product .product-detail__col {
  width: 100%
}

section.product .detail-col__img {
  margin-bottom: 2.5rem;
  border: 2px solid #e4e2ec
}

section.product .detail-col__img img {
  display: block;
  width: 100%;
  height: auto;
  background-color: #eee
}

@media screen and (min-width:30.0625rem) {

  section.product .detail-col__img,
  section.product .detail-col__img img {
    border-radius: 1rem
  }
}

@media screen and (min-width:56.0625rem) {
  section.product .detail-col__img {
    width: 40%;
    margin-bottom: 0;
    position: sticky;
    top: 5.5rem
  }
}

section.product .detail-col__text {
  padding: 0 1.5rem
}

@media screen and (max-width:20rem) {
  section.product .detail-col__text {
    padding-right: 1rem;
    padding-left: 1rem
  }
}

@media screen and (min-width:22.5625rem) {
  section.product .detail-col__text {
    padding-right: 1.25rem;
    padding-left: 1.25rem
  }
}

@media screen and (min-width:23.5rem) {
  section.product .detail-col__text {
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }
}

@media screen and (min-width:30.0625rem) {
  section.product .detail-col__text {
    padding-right: 0;
    padding-left: 0
  }
}

@media screen and (min-width:56.0625rem) {
  section.product .detail-col__text {
    width: 60%;
    padding-left: 4rem;
    padding-right: 0
  }
}

section.product .product-options__wrapper {
  width: calc(100% + 3rem);
  margin-right: -1.5rem;
  margin-left: -1.5rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem
}

@media screen and (max-width:56rem) {
  section.product .product-options__wrapper {
    overflow-x: auto;
    padding-bottom: .5rem
  }
}

@media screen and (max-width:20rem) {
  section.product .product-options__wrapper {
    width: calc(100% + 2rem);
    margin-right: -1rem;
    margin-left: -1rem;
    padding-right: 1rem;
    padding-left: 1rem
  }
}

@media screen and (min-width:22.5625rem) {
  section.product .product-options__wrapper {
    width: calc(100% + 2.5rem);
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    padding-right: 1.25rem;
    padding-left: 1.25rem
  }
}

@media screen and (min-width:23.5rem) {
  section.product .product-options__wrapper {
    width: calc(100% + 3rem);
    margin-right: -1.5rem;
    margin-left: -1.5rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem
  }
}

@media screen and (min-width:30.0625rem) {
  section.product .product-options__wrapper {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0
  }
}

section.product .product-options {
  width: calc(100% + .5rem);
  margin-right: -.25rem;
  margin-left: -.25rem;
  overflow: visible
}

section.product .product-option__card {
  min-width: 6rem;
  border-radius: .5rem;
  background-color: #fff;
  color: #121f30;
  border: .0625rem solid #0044e3
}

section.product .product-option__card:hover {
  background-color: #bbe0fe
}

@media screen and (min-width:30.0625rem) {
  section.product .product-option__card {
    min-width: 6.5rem
  }
}

section.product .product-option {
  display: block;
  font-size: 1rem;
  padding: 0 .25rem;
  position: relative
}

section.product .product-option .tablet-number,
section.product .product-option .tablet-price,
section.product .product-option .tablet-text {
  width: 100%;
  margin: 0;
  text-align: center;
  color: inherit
}

section.product .product-option .tablet-number {
  font-size: 1.5em;
  padding: 1rem 1rem .5rem
}

@media screen and (min-width:30.0625rem) {
  section.product .product-option .tablet-number {
    padding: 1.25rem 1.25rem .25rem;
    font-size: 2em
  }
}

section.product .product-option .tablet-text {
  font-size: .8125em;
  padding: 0 1rem 1rem
}

@media screen and (min-width:30.0625rem) {
  section.product .product-option .tablet-text {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    padding-bottom: 1.25rem;
    font-size: .875em
  }
}

section.product .product-option .tablet-price {
  font-size: .8125em;
  padding: .5rem 1rem;
  border-top: .0625rem solid #0044e3
}

@media screen and (min-width:30.0625rem) {
  section.product .product-option .tablet-price {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    font-size: 1em
  }
}

section.product .product-option input[type=radio] {
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0
}

section.product .product-option input[type=radio]+.product-option__card {
  cursor: pointer
}

section.product .product-option input[type=radio]:checked+.product-option__card {
  background-color: #0044e3;
  color: #fff
}

section.product .product-option input[type=radio]:checked+.product-option__card .tablet-price {
  border-top-color: #0c92fa
}

section.product .product-option input[type=radio]:disabled+.product-option__card {
  color: #707275;
  cursor: not-allowed;
  background-color: #eee
}

section.product .product-option input[type=radio]:disabled+.product-option__card .tablet-price {
  border-top-color: #0c92fa
}

@media screen and (max-width:30rem) {
  section.product {
    padding-top: 3.5rem
  }

  section.product .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (min-width:30.0625rem) {
  section.product {
    padding-top: 4.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.product {
    padding-top: 7.5rem
  }
}

section.product-desc {
  padding: 3rem 0
}

section.product-desc h3 {
  font-size: 1.5rem
}

@media screen and (min-width:30.0625rem) {
  section.product-desc h3 {
    font-size: 1.75rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.product-desc h3 {
    font-size: 2rem
  }
}

section.product-desc .description-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 4rem);
  margin-right: -2rem;
  margin-left: -2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch
}

@media screen and (min-width:56.0625rem) {
  section.product-desc .description-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

section.product-desc .description-col {
  padding: 0 2rem;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

section.product-desc .product-patient__info {
  margin-bottom: 2rem
}

@media screen and (min-width:30.0625rem) {
  section.product-desc .product-patient__info {
    margin-bottom: 2.5rem
  }
}

@media screen and (min-width:56.0625rem) {
  section.product-desc .product-patient__info {
    margin-bottom: 0
  }
}

section.product-desc .product-description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}

@media screen and (min-width:48.0625rem) {
  section.product-desc .product-description h3 {
    font-size: 2.5rem
  }
}

section.product-desc .patient-info__card {
  border-radius: .75rem;
  background-color: #f2b807;
  padding: 1.5rem
}

@media screen and (min-width:30.0625rem) {
  section.product-desc .patient-info__card {
    padding: 2rem
  }
}

section.product-desc .patient-card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

@media screen and (min-width:30.0625rem) {
  section.product-desc .patient-card__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

@media screen and (min-width:56.0625rem) {
  section.product-desc .patient-card__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media screen and (min-width:30.0625rem) and (max-width:56rem) {
  section.product-desc .patient-col__heading {
    padding-right: 1.25rem
  }
}

@media screen and (max-width:20rem) {
  section.product-desc {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.product-desc {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

.countdown-timer {
  border-radius: .5rem;
  padding: 1rem;
  line-height: 1.5;
  background-color: #f2b807
}

.countdown-timer .counter-icon {
  padding-right: 1rem
}

.accordion-button {
  background-color: #f2b807;
  color: #000;
  font-weight: 500;
  font-size: 18px
}

.accordion-button,
.accordion-item {
  border: 1px solid #f2b807;
  border-radius: 8px
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
  border: none
}

.accordion-button:focus,
.accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
  box-shadow: none
}

.accordion-button:not(.collapsed):after {
  background-image: url(/images/acc_minus.svg);
  color: #000;
  background-position: 50%;
  background-color: #fff
}

.accordion-button.collapsed:after {
  background-image: url(/images/acc_plus.svg);
  color: #000;
  background-color: #f2b807
}

.accordion .accordion-header {
  padding: 0;
  border-bottom: 0
}

.accordion .accordion-header,
.accordion .accordion-header:hover {
  border-bottom: 1px solid #f2b807
}

.accordion-body {
  background-color: #fff;
  color: #363636;
  border-radius: 10px
}

.book-visit:hover {
  background-color: #f2b807
}

.accordion-button .collapsed {
  border-radius: 12px !important;
  border: 2px solid #f2b807
}

.confirmation-wrap {
  margin: 300px 0 20vh;
  text-align: center
}

.confirmation-wrap i {
  font-size: 150px;
  color: #90ee90;
  margin: 0
}

.confirmation-wrap p {
  margin: 0 0 25px;
  line-height: 26px;
  padding: 0 10vw
}

.confirmation-wrap p a {
  display: block
}

.confirmation-wrap p a:first-of-type {
  margin: 20px 0 0
}

.confirmation-wrap ul {
  margin: 0 auto 35px;
  width: 20vw
}

.confirmation-wrap ul li {
  margin: 0 auto 5px;
  text-align: center;
  list-style-type: none
}

.confirmation-wrap .buttons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 45vw;
  margin: 20px auto
}

.confirmation-wrap .buttons-wrap .btn {
  width: 12vw;
  margin: 0 10px
}

@media (max-width:1260px) {
  .confirmation-wrap .buttons-wrap .btn {
    width: 100%
  }
}

section.search-results {
  padding: 3rem 0;
  background-color: #f1f2f5
}

section.search-results .results-list {
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto
}

@media screen and (max-width:30rem) {
  section.search-results .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (max-width:20rem) {
  section.search-results {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.search-results {
    padding-top: 5rem;
    padding-bottom: 5rem
  }
}

.result-card {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: .5rem
}

.result-card .card__img-wrap {
  display: block;
  width: 6rem
}

.result-card .card__img-wrap.default img {
  border-radius: 1rem
}

.result-card .card__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover
}

.result-card .card__img-wrap.bg-contain {
  -o-object-fit: contain;
  object-fit: contain
}

@media screen and (min-width:22.5625rem) {
  .result-card .card__img-wrap {
    width: 7rem
  }
}

@media screen and (min-width:23.5rem) {
  .result-card .card__img-wrap {
    width: 8rem
  }
}

@media screen and (min-width:30.0625rem) {
  .result-card .card__img-wrap {
    width: 12rem
  }
}

.result-card .card__desc {
  display: block;
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  padding: 1.5rem
}

.result-card .card__desc .result__type,
.result-card .card__desc&gt;p {
  font-size: .875rem
}

@media screen and (min-width:30.0625rem) {

  .result-card .card__desc .result__type,
  .result-card .card__desc&gt;p {
    font-size: 1rem
  }
}

.result-card .result__type {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #121f30
}

.result-card .card__title {
  margin-bottom: 1rem;
  color: #000
}

.result-card .product-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.result-card .price-block {
  line-height: 1.5
}

.result-card .price-block .label {
  color: #707275
}

.result-card .price {
  color: #121f30
}

.result-card&gt;a {
  width: 100%;
  height: auto;
  background-color: #fff;
  overflow: hidden
}

.result-card&gt;a:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

.result-card&gt;a:hover .card__title {
  color: #0044e3
}

@media screen and (min-width:30.0625rem) {
  .result-card&gt;a {
    border-radius: 1rem
  }
}

@media screen and (min-width:30.0625rem) {
  .result-card {
    margin-bottom: .75rem
  }
}

@media screen and (min-width:48.0625rem) {
  .result-card {
    margin-bottom: 1.25rem
  }
}

.cart-wrap {
  background: #fff;
  border: 1px solid #f1f3fa;
  padding: 30px
}

.cart-wrap .product-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 15px
}

.cart-wrap button {
  width: 100%
}

@media (min-width:768px) {
  .cart-wrap {
    margin-top: 0
  }
}

.cart-wrap .cart-warning {
  color: crimson
}

@media (max-width:767px) {
  .cart-wrap .product-wrap {
    margin-top: 0
  }

  .cart-wrap .product-wrap .cart-group {
    margin-bottom: 40px
  }

  .cart-wrap .product-wrap_content .product-content {
    width: 100%
  }

  .cart-wrap .product-wrap_content .product-content .cart-group {
    margin-bottom: 40px
  }
}

@media (max-width:767px) {
  .cart-wrap .cart-group {
    display: block;
    border: 1px solid #70bffc;
    margin-bottom: 40px
  }

  .cart-wrap .cart-group .cart-group_content,
  .cart-wrap .cart-group .product-content {
    padding: 15px
  }

  .cart-wrap .cart-group.product-wrap_content .product-content {
    margin-right: 15px;
    margin-left: 15px;
    width: calc(100% - 30px);
    max-width: calc(100% - 30px)
  }

  .cart-wrap .cart-group .cart_total-price {
    padding: 0 15px
  }

  .cart-wrap .cart-group h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 62px;
    max-width: 100%;
    padding: 8px 16px;
    background-color: #0c92fa
  }

  .cart-wrap .cart-group h2,
  .cart-wrap .cart-group h2 a {
    color: #fff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .cart-wrap .cart-group h2 a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 45px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 8px 0
  }

  .cart-wrap .cart-group h2 a:hover {
    color: #89cafd
  }
}

@media (max-width:480px) {
  .cart-wrap .cart-group h2 {
    font-size: 1.75rem;
    height: 48px
  }
}

@media (max-width:480px) {
  .cart-wrap .product-wrap .cart_total-price {
    border-top: 1px solid #f1f1f1;
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px
  }
}

@media (max-width:480px) {
  .cart-wrap {
    padding: 15px
  }
}

section.cart-step__delivery {
  padding: 0 0 3rem
}

section.cart-step__delivery .step-delivery__row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

@media screen and (min-width:64.0625rem) {
  section.cart-step__delivery .step-delivery__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
  }
}

section.cart-step__delivery .delivery-col__actions {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

section.cart-step__delivery .delivery-col__summary {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  width: 100%;
  margin-top: 1.5rem
}

@media screen and (min-width:64.0625rem) {
  section.cart-step__delivery .delivery-col__summary {
    width: 28rem;
    margin-top: 0;
    margin-left: 2rem
  }
}

section.cart-step__delivery .addresses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 1rem);
  height: auto;
  min-height: 240px;
  margin: 0 -.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch
}

section.cart-step__delivery .address-card__wrap {
  display: block;
  height: auto;
  margin-top: 1rem;
  padding: 0 .5rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 255px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-preferred-size: 255px;
  flex-basis: 255px
}

section.cart-step__delivery label.address-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: auto;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  cursor: pointer;
  margin: 0;
  color: #121f30;
  padding: 0;
  border-radius: 6px;
  line-height: 1.75;
  background-color: #fcfeff;
  position: relative;
  border: 1px solid #ccd3e3
}

section.cart-step__delivery label.address-card:hover {
  background-color: #d4ecfe
}

section.cart-step__delivery label.address-card .address-label__header {
  margin-bottom: 8px
}

section.cart-step__delivery label.address-card .address-card__content {
  min-height: 140px;
  font-weight: 400;
  font-size: 16px;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  padding: 1.5rem 1.5rem 1rem;
  line-height: 1.75
}

section.cart-step__delivery label.address-card .address-card__content&gt;input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0
}

section.cart-step__delivery label.address-card hr {
  margin-bottom: 8px
}

section.cart-step__delivery label.address-card&gt;.cta-wrap {
  width: 100%;
  color: inherit;
  border-top: 1px solid #aaa;
  padding: .5rem
}

section.cart-step__delivery label.address-card&gt;.cta-wrap .cta-btn {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  text-align: center;
  width: 100%;
  border-radius: 6px;
  padding: 8px 12px;
  margin: 0;
  line-height: 24px;
  font-size: .875rem;
  text-transform: uppercase;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0c92fa;
  background-color: transparent;
  -webkit-transition: all .12s ease-out;
  transition: all .12s ease-out
}

section.cart-step__delivery label.address-card&gt;.cta-wrap .cta-btn svg {
  margin-right: 8px;
  margin-bottom: 2px;
  color: #fff
}

section.cart-step__delivery label.address-card&gt;.cta-wrap .cta-btn svg :not([fill=none]) {
  fill: currentColor
}

section.cart-step__delivery label.address-card&gt;.cta-wrap .cta-btn:hover {
  -webkit-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: #d2dfff
}

section.cart-step__delivery label.address-card.checked {
  background-color: #0044e3;
  cursor: default;
  color: #fff
}

section.cart-step__delivery label.address-card.checked&gt;.cta-wrap {
  border-top-color: #aaa
}

section.cart-step__delivery label.address-card.checked&gt;.cta-wrap .cta-btn {
  cursor: default;
  color: inherit
}

section.cart-step__delivery label.address-card.checked&gt;.cta-wrap .cta-btn:hover {
  background-color: transparent
}

section.cart-step__delivery .card {
  padding: 1.5rem;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23)
}

@media screen and (min-width:30.0625rem) {
  section.cart-step__delivery .card {
    padding: 2rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.cart-step__delivery .card {
    padding: 2.5rem
  }
}

section.cart-step__delivery .cart-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: .75rem;
  padding: .5rem;
  border: .0625rem solid #ccd3e3
}

section.cart-step__delivery .cart-product .product-img {
  min-width: 4rem;
  height: 4rem
}

section.cart-step__delivery .cart-product .product-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  border-radius: .75rem
}

section.cart-step__delivery .cart-product .product-desc {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

section.cart-step__delivery .cart-product .product-desc .product-title {
  font-size: 1rem;
  color: #121f30;
  margin-top: 0;
  margin-bottom: .5rem
}

@media screen and (min-width:30.0625rem) {
  section.cart-step__delivery .cart-product .product-desc .product-title {
    font-size: 1.25rem
  }
}

section.cart-step__delivery .cart-product .product-desc .product-var {
  font-size: .8125rem;
  margin-top: .5rem;
  margin-bottom: .5rem
}

@media screen and (min-width:30.0625rem) {
  section.cart-step__delivery .cart-product .product-desc .product-var {
    font-size: .875rem
  }
}

@media screen and (min-width:48.0625rem) {
  section.cart-step__delivery .cart-product .product-desc .product-var {
    font-size: 1rem
  }
}

section.cart-step__delivery .cart-selected__option {
  border: .0625rem solid #ccd3e3;
  border-radius: .75rem;
  font-size: 1rem;
  line-height: 1.5
}

section.cart-step__delivery .cart-total__price {
  font-size: 1.5rem
}

@media screen and (min-width:30.0625rem) {
  section.cart-step__delivery .cart-total__price {
    font-size: 1.75rem
  }
}

@media screen and (min-width:48.0625rem) {
  section.cart-step__delivery .cart-total__price {
    font-size: 2rem
  }
}

@media screen and (max-width:30rem) {
  section.cart-step__delivery .card {
    border-radius: 0
  }

  section.cart-step__delivery .container {
    padding-right: 0 !important;
    padding-left: 0 !important
  }
}

@media screen and (max-width:20rem) {
  section.cart-step__delivery {
    padding-bottom: 2.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  section.cart-step__delivery {
    padding-bottom: 5rem
  }
}

.cart-section__heading {
  font-size: 1.25rem
}

@media screen and (min-width:30.0625rem) {
  .cart-section__heading {
    font-size: 1.5rem
  }
}

@media screen and (min-width:36.0625rem) {
  .cart-section__heading {
    font-size: 1.75rem
  }
}

@media screen and (min-width:48.0625rem) {
  .cart-section__heading {
    font-size: 2rem
  }
}

.cart-section__icon svg {
  display: block;
  width: 1.5rem;
  height: 1.5rem
}

.summary-heading {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: 1rem
}

@media screen and (min-width:30.0625rem) {
  .summary-heading {
    font-size: 1.25rem
  }
}

@media screen and (min-width:36.0625rem) {
  .summary-heading {
    font-size: 1.3125rem
  }
}

.delivery-choice {
  border: none;
  color: #000;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0
}

.delivery-choice span {
  display: block;
  font-weight: 500
}

.delivery-choice small {
  font-size: .75em;
  color: #707275
}

@media screen and (min-width:30.0625rem) {
  .delivery-choice small {
    font-size: .875em
  }
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  .icon {
    top: -55px
  }

  .icon i {
    position: relative;
    top: 26px
  }

  .latest .icon {
    margin-top: -35px
  }

  .latest .icon i {
    position: relative;
    top: 18px
  }
}

@media (-ms-high-contrast:none) and (min-width:1200px),
screen and (-ms-high-contrast:active) and (min-width:1200px) {
  footer .btt {
    right: 25px
  }
}

@media (-ms-high-contrast:none),
screen and (-ms-high-contrast:active) {
  select::-ms-expand {
    display: none
  }

  .team-list .filter .input-field,
  .team-list .filter .input-label {
    height: 100%
  }
}

.user-note.ie10 {
  background: #22222a;
  bottom: 0;
  display: none;
  padding: 30px;
  position: fixed;
  width: 100%;
  z-index: 9999999
}

.user-note.ie10 h1,
.user-note.ie10 h2,
.user-note.ie10 h3,
.user-note.ie10 h4,
.user-note.ie10 h5,
.user-note.ie10 h6,
.user-note.ie10 p {
  color: #fff;
  max-width: 800px
}

.user-note.ie10 a {
  color: #0044e3
}

.user-note.ie10 a:hover {
  color: #0c92fa
}

.user-note.ie10 .btn {
  background: #0044e3;
  font-size: .875em;
  margin: 0;
  padding: 10px 15px
}

.user-note.ie10 .btn:hover {
  background: #0c92fa
}

html[data-useragent*="MSIE 10.0"] .user-note.ie10 {
  display: block
}

/* Step Section */
/* Step Section */
.step .row {
  gap: 20px;
}

/* Card Styling */
.step .card {
  border: none;
  border-radius: 25px;
  padding: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover Effect */
.step .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

/* Header Text */
.step .steps {
  color: #F27D16;
  /* Change this color as needed */
}

/* Stack Items Horizontally */
.step .hstack {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Icon Styling */
.step img {
  width: 80px;
  height: auto;
}

.step .col-md-4:first-child,
.step .col-md-4:nth-child(2),
.step .col-md-4:nth-child(3) {
  position: relative;
  top: -40px;
}

/* Text Alignment */
.step .text-start {
  text-align: left;
}

/* Ensure All Cards Have the Same Height */
.step .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Responsive Fix */
@media (max-width: 768px) {

  .step .col-md-4:first-child,
  .step .col-md-4:nth-child(2),
  .step .col-md-4:nth-child(3) {
    top: 0;
    /* Reset positioning for mobile */
  }
}

.home-treatment .card {
  border: none;
  border-radius: 25px;
  padding: 20px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.10);

}

/* Hover Effect */
.home-treatment .card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.benefits-card-section {
  background-color: #F0F3FC;
}

.benefits-card-section h2 {
  font-size: xx-large;
}

.faq .card {
  border: none;
  border-radius: 25px;
  padding: 15px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.10);
  cursor: pointer;
}

.help .box {
  background-color: #F2B705;
  border-radius: 129px 20px 20px 20px;
  color: #fff;
}
@media (max-width: 768px) {
  .help .box {
    border-radius: 20px 20px 20px 20px;
    padding: 10px;
  }
}
.stories {
  background-color: #F9F9F9;
  width: 100%;
  overflow: hidden;
}

</pre></body></html>