html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.icon-full {
  font-size: 24px;
}

.icon-inline {
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.main {
  flex-grow: 1;
}

.logo {
  max-width: 100%;
  display: inline-block;
  flex-shrink: 0;
  transition: all 0.3s;
}
.logo img {
  max-width: 100%;
  display: block;
}
.logo:hover {
  opacity: 0.9;
}

.header {
  position: relative;
  z-index: 2;
}

.intro {
  background: #f8fbfa;
}
.intro-container {
  height: 100vh;
  max-height: 658px;
  box-sizing: border-box;
  background: #f8fbfa url(../images/intro-bg.png) no-repeat right bottom;
  display: flex;
  align-items: center;
}
.intro-content {
  max-width: 500px;
}

.countdown {
  display: inline-grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.countdown-item {
  width: 62px;
  text-align: center;
}
.countdown-item-title {
  margin: 0 0 12px 0;
  font-size: 12px;
  text-transform: uppercase;
}
.countdown-item-number {
  position: relative;
  height: 62px;
  border-radius: 10px;
  background: linear-gradient(360deg, #5DAFEE 0%, #82C6FB 22.92%);
  font-family: "Roboto Mono", monospace;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 62px;
  z-index: 1;
  box-shadow: 0 15px 10px -10px rgba(105, 188, 252, 0.5);
}

.pretitle {
  position: relative;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: #fa88a9;
  text-transform: uppercase;
  text-align: center;
}
.pretitle span {
  position: relative;
  display: inline-block;
}
.pretitle span::before {
  position: absolute;
  left: -70px;
  top: 50%;
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  background: #fa88a9;
}
.pretitle span::after {
  position: absolute;
  right: -70px;
  top: 50%;
  content: "";
  width: 50px;
  height: 1px;
  display: block;
  background: #fa88a9;
}

.cart-sidebar {
  position: relative;
}
.cart-sidebar::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 11px;
  content: "";
  display: block;
  background: url(../images/cart-sidebar-bg.svg) repeat-x center;
}
.cart-sidebar::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 11px;
  content: "";
  display: block;
  background: url(../images/cart-sidebar-bg.svg) repeat-x center;
}
.cart-progress {
  position: relative;
  overflow: initial;
  height: 6px;
  border-radius: 3px;
}
.cart-progress-bar {
  position: relative;
  overflow: initial;
  border-radius: 3px;
}
.cart-progress-bar::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\e904";
  border-radius: 20px;
  background-color: #69bcfc;
  color: #fff;
  font-size: 24px;
  font-family: "icon";
}
.cart-table tbody td:not(.spacer) {
  background-color: #f9fafd;
  vertical-align: middle;
}
.cart-table tbody td:not(.spacer):first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.cart-table tbody td:not(.spacer):last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.cart-table-price {
  min-width: 110px;
}
.cart-table-qty {
  width: 68px;
}
.cart-table-qty input {
  padding-right: 26px;
  border: 0 !important;
}
.cart-table-qty-buttons {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 23px;
  display: flex;
  flex-direction: column;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cart-table-qty-buttons button {
  width: 22px;
  padding: 0;
  background-color: #fff;
  border: 0;
  flex-grow: 1;
  cursor: pointer;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
}
.cart-table-qty-buttons button:active {
  background-color: #f9fafd;
}
.cart-table-qty-up {
  border-top-right-radius: 5px;
}
.cart-table-qty-down {
  border-bottom-right-radius: 5px;
}
.cart-bar-amount {
  position: absolute;
  top: -2px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #fa88a9;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 16px;
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  background-color: #f9fafd;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 20px;
}
.faq-question .btn {
  box-shadow: none;
  border: 0;
}
.faq-question:not(.collapsed) {
  background: linear-gradient(0deg, #69BCFC 0%, #82C6FB 100%) !important;
}
.faq-question:not(.collapsed) .btn .icon-down {
  transform: rotate(180deg);
  color: #fff;
}
.faq-question:not(.collapsed) .faq-question-body {
  color: #fff !important;
}

.product-modal {
  position: relative;
  padding: 16px;
  display: flex;
  align-items: center;
  background-color: #f9fafd;
  border-radius: 10px;
}
.product-modal-image {
  width: 100px;
  height: 100px;
  margin-right: 20px;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 10px;
}
.product-modal-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.product-modal-content {
  flex-grow: 1;
}
.product-modal-remove {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #5c586b;
  text-decoration: none;
}
.product-intable {
  display: flex;
  align-items: center;
  color: #2e2f30;
  font-weight: 500;
  text-decoration: none;
}
.product-intable-image {
  width: 100px;
  height: 64px;
  margin-right: 20px;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 10px;
}
.product-intable-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.product-intable-title {
  min-width: 80px;
}
.product-picker {
  padding: 6px;
  background-color: #f9fafd;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.product-picker.selected {
  background-color: #69bcfc;
  color: #fff;
}
.product-picker.selected .product-picker-title {
  color: #fff;
}
.product-picker.selected .product-picker-description span {
  color: #fff;
}
.product-picker-image {
  width: 100px;
  height: 64px;
  margin-right: 20px;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 10px;
}
.product-picker-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}
.product-picker-content {
  flex-grow: 1;
  line-height: initial;
}
.product-picker-title {
  font-size: 24px;
  font-weight: 600;
  color: #2e2f30;
}
.product-picker-description span {
  color: #2e2f30;
  font-weight: 600;
}
.product-dosage {
  margin: 0 20px 20px 0;
  padding: 16px;
  background-color: #f9fafd;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #5c586b;
  text-decoration: none;
  line-height: initial;
}
.product-dosage.selected {
  background: linear-gradient(0deg, #F987A8 0%, #FABECF 100%);
  color: #fff !important;
}
.product-dosage:hover {
  color: #fa88a9;
}

.testimonial {
  padding: 30px 24px;
  background-color: #f9fafd;
  border-radius: 20px;
}
.testimonial-header {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  line-height: initial;
}
.testimonial-avatar {
  width: 50px;
  margin: 0 24px 0 0;
  border-radius: 25px;
  overflow: hidden;
}
.testimonial-order {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3px;
}
.testimonial-order-row {
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.testimonial-content {
  margin: 20px 0 0 0;
  padding: 0 0 0 46px;
  background: url(../images/quote.svg) no-repeat left top;
}
.testimonial-prev, .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #69bcfc;
  text-decoration: none;
  z-index: 2;
  cursor: pointer;
}
.testimonial-prev[aria-disabled=true], .testimonial-next[aria-disabled=true] {
  color: #ebeef9;
}
.testimonial-prev {
  left: -40px;
}
.testimonial-next {
  right: -40px;
}

.more {
  background-image: url(../images/more-bg.png);
  background-repeat: no-repeat;
  background-position: 110% center;
}
.more-title {
  max-width: 840px;
  font-size: 40px;
  line-height: initial;
}

.message {
  margin-top: 80px;
  margin-bottom: 80px;
  border-radius: 20px;
}

.payment-types {
  position: relative;
}
.payment-types::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 11px;
  content: "";
  display: block;
  background: url(../images/payment-types-bg.svg) repeat-x center;
}
.payment-types::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 11px;
  content: "";
  display: block;
  background: url(../images/payment-types-bg.svg) repeat-x center;
}

.payment-methods {
  max-width: 100%;
  min-width: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-methods > div {
  margin-right: 10px;
  flex-shrink: 1;
}
.payment-methods > div:last-child {
  margin-right: 0;
}
.payment-methods > div img {
  width: 100%;
  max-width: 40px;
  display: block;
}

.socials i {
  margin-top: -4px;
  font-size: 20px;
}

.footer-links a {
  color: #5c586b;
  text-decoration: none;
}
.footer-links a:hover {
  color: #69bcfc;
}
.footer-nav {
  margin: 0;
  padding: 0;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.footer-nav li {
  margin: 0 0 0.5rem 0;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 1199px) {
  .intro-container {
    max-height: 500px;
    background-size: auto 100%;
  }
  .more {
    background-position: 130% center;
  }
  .more-title {
    max-width: 700px;
    font-size: 32px;
  }
  .testimonial-prev {
    left: -10px;
  }
  .testimonial-next {
    right: -10px;
  }
}
@media screen and (max-width: 991px) {
  .intro-container {
    height: initial;
    max-height: initial;
    background-size: auto 80%;
  }
  .intro-content {
    max-width: 60%;
  }
  .more {
    background-position: right center;
    background-size: 200px;
  }
  .more-title {
    max-width: 500px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .header-back {
    padding: 0;
    border: 0;
    background-color: transparent;
  }
  .header-back:active, .header-back:focus {
    background-color: transparent;
  }
  .header .logo {
    max-width: 170px;
  }
  .intro-container {
    padding-bottom: 330px !important;
    background-position: center bottom;
    background-size: auto 280px;
  }
  .intro-content {
    margin: 0 auto;
    width: initial;
    max-width: initial;
    text-align: center;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-question-body {
    padding-top: 2px;
  }
  .more {
    background-position: 130% center;
    background-size: 200px;
  }
  .more-title {
    max-width: 80%;
    font-size: 18px;
  }
  .more img {
    max-width: 50%;
    display: block;
  }
  .product-picker-title {
    font-size: 20px;
  }
  .product-dosage {
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .cart-table th {
    font-size: 12px;
    white-space: nowrap;
  }
  .cart-table-price {
    min-width: 90px;
  }
  .product-intable {
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
  }
  .product-intable-image {
    width: 80px;
    height: 50px;
  }
}