<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
body.modal-open {
  overflow: hidden;
}

.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: white;
  padding: 10px 20px;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 10px 20px;
  border-radius: 3px;
  font-family: Poppins, sans-serif;
  font-weight: bold;
  width: 475px;
  height: 56px;
  box-sizing: border-box;
  background-color: #06D1A1 !important;
  border: none;
  cursor: pointer;
  margin: 0 auto; /* Add this line to ensure centering */
}

.btn-green-disabled {
  background-color: #11DDAC;
  opacity: 32%;
}

.empty-cart-top-container {
  height: 392px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0D2C54;
}

.empty-cart-icon {
  background-image: url("/img_v4/icons/empty-cart.svg");
  width: 200px;
  height: 179px;
  display: block;
  margin-bottom: 20px;
  margin-top: -20px;
}

.empty-cart-top-container .otc-empty-cart-text {
  width: 328px;
  margin-bottom: 15px;
}

#cart-empty {
  background-color: #F7F7F7;
}

.cart-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart {
  position: relative;
}

.bottom-cart-icon {
  background-image: url("/img_v4/icons/cart-white.svg");
  position: relative;
  width: 30px;
  height: 30px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: yellow;
  color: black;
  font-size: 13px;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  font-style: normal;
  justify-content: center;
  font-family: Poppins;
  font-weight: 500;
  line-height: 20.706px;
}

.cart-price {
  font-size: 16px;
}

/* Modal Background */
.cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s ease-in-out;
  z-index: 10000;
  pointer-events: none; /* Prevent clicks when hidden */
  overflow-y: auto;
  max-height: 100vh;
}

.cart-modal.show {
  background: rgba(0, 0, 0, 0.7);
  pointer-events: all; /* Allow clicking on overlay to close */
}

.cart-modal.show .cart-modal-content {
  right: 0; /* Slide into view */
}

/* Modal Content */
.cart-modal-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 504px;
  height: 100%;
  padding-top: 30px;
  padding-left: 45px;
  padding-right: 40px;
  background: white;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  opacity: 0;
  transform: translateX(40px);
  visibility: hidden;
  overflow-y: auto;
  max-height: 100vh;
}

.cart-modal-content::-webkit-scrollbar {
  width: 4px; /* Width of scrollbar */
}

.cart-modal-content::-webkit-scrollbar-track {
  background: rgba(17, 221, 172, 0.2); /* Track color */
  opacity: 20%;
  border-radius: 5px;
}

.cart-modal-content::-webkit-scrollbar-thumb {
  background: #11DDAC; /* Scrollbar color */
  border-radius: 5px;
}

.cart-modal-content::-webkit-scrollbar-thumb:hover {
  background: #04b188; /* Scrollbar color on hover */
}

.cart-modal-content.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.cart-modal-title {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  color: #0D2C54;
  font-weight: 600;
}

.cart-modal-secondary-title {
  padding-top: 15px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  color: #656D79;
  font-weight: 600;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: black;
}

.close-btn:hover {
  color: red;
}

.cart-items-container {
  margin-top: 10px;
  max-height: 370px;
  overflow-y: auto;
  padding-right: 5px;
}

.cart-item {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr 1fr;
  border-bottom: 1px solid #DBE1EB;
  padding-bottom: 7px;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  display: block;
  margin-right: 0px;
  align-self: center;
}

.cart-item-top-text {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #0D2C54;
  margin-bottom: 1px;
}

.cart-item-subtext {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #656D79;
  margin-bottom: 3px;
}

.counter-container {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 3px;
  width: fit-content;
}

.cart-item-bottom-container {
  display: flex;
  align-items: center;
  padding: 5px;
  margin-left: -5px;
  width: fit-content;
}

.counter-btn {
  background-color: #DDF8F1;
  font-family: poppins, sans-serif;
  font-weight: 300;
  color: #0A9281;
  border: none;
  font-size: 23px;
  cursor: pointer;
  border-radius: 5px;
  width: 1.13em;
  height: 1.13em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.counter-btn:hover {
  background-color: #b2ebe6;
}

.counter-value {
  font-family: poppins, sans-serif;
  margin: 0 15px;
  font-size: 16px;
  font-weight: 400;
  color: #15324a;
  min-width: 20px;
  text-align: center;
}

.trash-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #E4E4E4;
  background-color: white; /* Keeps it visible */
  cursor: pointer; /* Makes it clickable */
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-left: 10px;
}

.trash-btn:hover {
  background-color: #f5f5f5;
}

.trash-btn:active {
  transform: scale(0.95);
}

.trash-icon {
  background-image: url("/img_v4/icons/trash.svg");
  display: block;
  width: 14.82px;
  height: 14.82px;
}

.vertical-cart-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: -8px 12px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 237px;
  height: 408px;
  flex: 0 0 auto;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-bottom: 15px;
  margin-left: 15px;
}

.vertical-cart-item-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 120px;
  width: 120px;
}

.vertical-cart-item-title {
  font-size: 14px;
  color: #0D2C54;
  margin: 0 0 5px;
  font-weight: 700;
  height: 42px;
}

.vertical-cart-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vertical-cart-item-subtitle {
  font-size: 13px;
  color: #656D79;
  font-family: Roboto, sans-serif;
  margin: 0 0 10px;
  font-weight: 400;
}

.vertical-cart-item-price {
  font-size: 18px;
  font-weight: 500;
  color: #0D2C54;
  margin-bottom: 15px;
}

.vertical-cart-item-dosages {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Hide vertical scrollbar */
  scroll-behavior: smooth; /* Smooth scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  padding-bottom: 5px; /* Add padding to accommodate scrollbar */
  /* Hide scrollbar for Chrome, Safari and Opera */
  /* Track */
  /* Handle */
  /* Handle on hover */
  /* For Firefox */
  scrollbar-width: thin;
  scrollbar-color: #11DDAC #f1f1f1;
}
.vertical-cart-item-dosages::-webkit-scrollbar {
  height: 4px;
}
.vertical-cart-item-dosages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.vertical-cart-item-dosages::-webkit-scrollbar-thumb {
  background: #11DDAC;
  border-radius: 4px;
}
.vertical-cart-item-dosages::-webkit-scrollbar-thumb:hover {
  background: #0fc9b9;
}

.vertical-cart-item-dosage-btn {
  flex: 0 0 auto; /* Don't shrink, don't grow, use auto size */
  min-width: 80px; /* Minimum width to ensure buttons don't get too small */
  margin: 0 3px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  transition: background 0.3s, color 0.3s, border 0.3s;
  white-space: nowrap;
  text-align: center;
}

.vertical-cart-item-dosage-btn--active {
  border: 2px solid #11DDAC;
}

.vertical-cart-item-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0fc9b9;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.vertical-cart-item-quantity {
  background-color: white;
  color: #11DDAC;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  width: 23.38px;
  height: 23.38px;
  position: absolute;
  left: 12px; /* adjust as needed */
  top: 50%;
  transform: translateY(-50%);
  line-height: 1.75;
}

.vertical-cart-item-btn {
  display: flex;
  position: relative;
  width: 100%;
}

.vertuical-suggestions-container {
  display: flex;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: auto;
}

.vertuical-suggestions-container.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.vertuical-suggestions-container {
  cursor: grab;
  cursor: -webkit-grab;
  user-select: none;
}

.bottom-scroller-continer {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bottom-scroller {
  background-color: #E7FCF7;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #11DDAC;
  font-size: 25.56px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.bottom-scroller:hover {
  background-color: #ccf6ee;
  transform: scale(1.1);
}

.cart-item-price-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 5px;
}

.cart-item-price-main {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-item-price-final {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0D2C54;
}

.cart-item-price-details {
  font-family: Roboto, sans-serif;
  margin-top: -10px;
  font-weight: 400;
  font-size: 13px;
  color: #616161;
}

.cart-item-price-previous {
  font-family: Poppins, sans-serif;
  text-decoration: line-through;
  color: darkred;
  font-weight: 400;
  font-size: 13px;
}

.modal-bottom-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.modal-bottom-text .total-price-text-otc {
  font-family: Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #656D79;
}

.modal-bottom-text .total-price-otc {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0D2C54;
  margin-left: auto;
}

.cart-modal-content .btn-cart-green {
  width: 100%;
  background-color: #06D1A1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between badge and text */
  position: relative;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  opacity: 0;
  transform: translateY(10px);
}

.btn-cart-green:hover {
  background-color: #06bb91;
  transform: scale(1.1);
}

.cart-modal-content.show .btn-cart-green {
  opacity: 1;
  transform: translateY(0);
}

.btn-cart-green .cart-badge {
  position: static; /* remove absolute positioning */
  width: 30px;
  height: 30px;
  font-size: 18.46px;
  font-weight: 500;
  background-color: white;
  color: #06D1A1;
  border-radius: 50%;
}

.cart-items-container::-webkit-scrollbar {
  width: 4px; /* Width of scrollbar */
}

.cart-items-container::-webkit-scrollbar-track {
  background: white; /* Track color */
  border-radius: 5px;
}

.cart-items-container::-webkit-scrollbar-thumb {
  background: #11DDAC; /* Scrollbar color */
  border-radius: 5px;
}

.cart-items-container::-webkit-scrollbar-thumb:hover {
  background: #04b188; /* Scrollbar color on hover */
}

.continue-shopping {
  padding-top: 10px;
  cursor: pointer;
}

.modal-bottom-container {
  margin-bottom: 25px;
}

.modal-bottom-container u {
  display: flex;
  justify-content: center;
  color: #06D1A0 !important;
  font-weight: 500;
  margin-top: 10px;
}

.cart-suggestions-title {
  font-size: 18px;
  color: #0D2C54;
  font-weight: 600;
}

@media only screen and (max-width: 768px) {
  .sticky-bottom-bar {
    height: 76px;
    padding: 10px;
  }
  .cart-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1px 12px;
    align-items: center;
  }
  .cart-suggestions.hide-mobile {
    display: none;
  }
  .cart-modal-content {
    padding-top: 15px;
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    border-radius: 0px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .cart-item-price-details {
    display: none;
  }
  .cart-modal-title {
    font-size: 20px;
  }
  .cart-modal-secondary-title {
    padding-top: 8px;
    color: #656D79;
    margin-bottom: 3px;
  }
  .cart-item-price-container {
    align-items: flex-start;
  }
  .cart-item-details-container,
  .cart-item-price-container {
    grid-column: 2;
  }
  .cart-item-price-final {
    margin-bottom: 0px;
  }
  .cart-item-price-previous {
    margin-bottom: 0px;
  }
  .cart-items-container {
    margin-top: 5px;
    max-height: 60vh;
  }
  .modal-bottom-text {
    margin-bottom: 10px;
  }
  .modal-bottom-container u {
    margin-top: 10px;
  }
  .modal-bottom-container {
    margin-bottom: 10px;
  }
  .btn-cart-green span {
    font-size: 14px;
  }
  .btn-cart-green .cart-badge {
    font-size: 15px;
    font-weight: 600;
  }
  .continue-shopping {
    height: 56px;
    display: inline-block;
    background-color: white;
    border: 1px solid #06D1A0;
    color: #06D1A0;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-family: Poppins, sans-serif;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* subtle shadow for separation */
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 7px;
  }
  .cart-btn {
    width: 100%; /* Make button full width on mobile */
    max-width: 475px; /* But don't exceed desktop width */
  }
}
#coupon-applied-pop-up {
  display: none;
  gap: 15px;
  flex-direction: column;
  height: 335px;
  width: 444px;
  background: white;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1102;
  border-radius: 30px 6px 30px 6px;
  padding: 35px;
}

#coupon-applied-pop-up p {
  color: #566B87;
  font-size: 18px;
  font-weight: 500;
}

#coupon-applied-pop-up button {
  background: var(--primary-lightgreen);
  height: 56px;
  border-radius: 6px;
  color: white;
  font-family: Poppins;
  font-size: 20px;
  font-weight: 600;
  padding: 11px 0px 11px 0px;
}

#coupon-applied-pop-up .popup-title {
  color: var(--primary-blue);
  font-size: 32px;
  font-weight: 700;
}

#coupon-applied-strip {
  display: none;
  padding: 5px 20px;
  width: 100%;
  background-color: var(--primary-lightgreen);
  text-align: center;
}

#coupon-applied-strip-text {
  color: white;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
}

.header-container {
  padding: 25px 30px;
}

@media only screen and (max-width: 768px) {
  #coupon-applied-pop-up {
    width: 350px;
  }
}
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  height: 26px;
  margin-right: 20px;
  padding-right: 0;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px;
}

.select2-container--default .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: 700;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0 0 0 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #000;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results &gt; .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: #fff;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(180deg, #fff 50%, #eee);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEEEEEE",GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: 700;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(180deg, #eee 50%, #ccc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFCCCCCC",GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888;
  border-width: 0 4px 5px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(180deg, #fff 0, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEEEEEE",GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(180deg, #eee 50%, #fff);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFFFFFFF",GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: 700;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results &gt; .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  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 {
  transform: translateZ(0);
}

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

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

.slick-track:after {
  clear: both;
}

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

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

[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;
}

* {
  font-family: Poppins, sans-serif;
  line-height: 150%;
}

:focus {
  outline: none !important;
}

body {
  overflow-x: hidden;
}

main {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.heading-style, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  word-break: break-word;
  color: #0d2c54;
  line-height: 150%;
}

h1 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
}

.heading-style, h2 {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
}

h3.title-small, h4 {
  font-size: 18px;
  font-size: 1.125rem;
}

h4.title-small, h5 {
  font-size: 16px;
  font-size: 1rem;
}

h6 {
  font-size: 14px;
  font-size: 0.875rem;
}

p {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 150%;
  color: #656d79;
  margin-top: 0;
}

p.fz-15 {
  font-size: 15px;
  font-size: 0.9375rem;
}

p.fz-14 {
  font-size: 14px;
  font-size: 0.875rem;
}

p.fz-12 {
  font-size: 12px;
  font-size: 0.75rem;
}

p strong {
  font-family: Roboto, sans-serif;
}

.body-l, .body-m, .body-s, .body-xl, .body-xs {
  color: #0d2c54;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  line-height: 150%;
}

.body-l.bold, .body-m.bold, .body-s.bold, .body-xl.bold, .body-xs.bold {
  font-weight: 700;
}

.body-xl {
  font-size: 18px;
  font-size: 1.125rem;
}

.body-l {
  font-size: 16px;
  font-size: 1rem;
}

.body-m {
  font-size: 15px;
  font-size: 0.9375rem;
}

.body-s {
  font-size: 14px;
  font-size: 0.875rem;
}

.body-xs {
  font-size: 12px;
  font-size: 0.75rem;
}

a, a:hover {
  color: var(--primary-darkgreen);
}

a[href^=tel] {
  color: inherit;
}

.text-green {
  color: #11ddac;
}

.o-h, .oh {
  overflow: hidden;
}

.hidden, .is-print {
  display: none;
}

.hide {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.width-100 {
  width: 100%;
}

.p-0 {
  padding: 0 !important;
}

.card {
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #eef1f6;
}

.card-order {
  padding: 0;
  margin-bottom: 30px;
}

.card.border-none {
  border: 0;
}

.card.w-shadow {
  box-shadow: 0 60px 90px rgba(0, 0, 0, 0.06);
}

.check-bullets {
  padding: 0;
  list-style-type: none;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 30px;
}

.check-bullets li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 5px;
}

.check-bullets li span {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: Roboto, sans-serif;
  color: #0d2c54;
  display: block;
}

.check-bullets li .circle {
  width: 20px;
  height: 20px;
  background-color: #c6f4e9;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-bullets li .circle .icon {
  font-size: 8px;
  position: relative;
  top: 1px;
}

.check-bullets.green li .circle {
  background-color: #11ddac;
}

.check-bullets.green li .circle .icon {
  color: #fff;
  font-size: 13px;
}

.check-bullets.small li, .cookieAcceptBar .check-bullets.btn-accept-cookies li, .cookieAcceptBar .manage-preferences span.check-bullets li {
  margin-bottom: 0;
}

.check-bullets.small li .circle, .cookieAcceptBar .check-bullets.btn-accept-cookies li .circle, .cookieAcceptBar .manage-preferences span.check-bullets li .circle {
  top: 3px;
  transform: none;
}

.check-bullets.small li span, .cookieAcceptBar .check-bullets.btn-accept-cookies li span, .cookieAcceptBar .manage-preferences span.check-bullets li span {
  font-size: 14px;
  font-size: 0.875rem;
}

.check-bullets.lg-bullets {
  flex-direction: column;
  align-items: flex-start;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 30px;
}

.check-bullets.lg-bullets li {
  position: relative;
  line-height: 150%;
  margin: 0 0 14px;
  padding-left: 40px;
  text-align: left;
}

.check-bullets.lg-bullets li:last-of-type {
  margin-bottom: 0;
}

.check-bullets.lg-bullets li:before {
  font-family: icomoon;
  content: "\e986";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #11ddac;
  box-shadow: 0 10px 15px rgba(17, 221, 172, 0.3);
}

.discount-label {
  display: inline-block;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 100%;
  color: #fff;
  font-family: Roboto, sans-serif;
  background: #ef4747;
  border-radius: 3px;
  padding: 4px;
  margin: 0 3px;
}

@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .check-bullets.lg-bullets {
    max-width: 275px;
  }
}
.trustpilot-widget__preloader {
  display: block;
  height: 25px;
  width: 100%;
  z-index: 20;
  max-width: 540px;
  margin: auto;
}

@-webkit-keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  to {
    opacity: 0.4;
    transform: scale(1);
  }
}
@keyframes dot-keyframes {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  to {
    opacity: 0.4;
    transform: scale(1);
  }
}
.trustpilot-widget__preloader .loading-dots {
  width: 100%;
  text-align: center;
}

.trustpilot-widget__preloader .loading-dots--dot {
  -webkit-animation: dot-keyframes 1.5s ease-in-out infinite;
  animation: dot-keyframes 1.5s ease-in-out infinite;
  background-color: #00b67a;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  width: 6px;
  margin: 0 3px;
}

.trustpilot-widget__preloader .loading-dots--dot:nth-child(2) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.trustpilot-widget__preloader .loading-dots--dot:nth-child(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.sprite-main-legitscript {
  position: relative;
}

.sprite-main-legitscript .date {
  height: 10px;
  background-color: #fff;
  width: 35px;
  color: #000;
  position: absolute;
  left: 33px;
  top: 42px;
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  border-radius: 6px;
  font-family: Arial, sans-serif;
}

.covid-strip, .holiday-delivery-strip {
  padding: 10px;
  background-color: #0d2c54;
}

.covid-strip p, .holiday-delivery-strip p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
}

.holiday-delivery-strip a, .holiday-delivery-strip p {
  font-family: Arial, sans-serif;
}

.holiday-delivery-strip a {
  text-decoration: underline;
}

.backlink {
  justify-content: center;
}

.backlink, .backlink a {
  display: flex;
  align-items: center;
}

.backlink a {
  text-decoration: none;
}

.backlink .icon {
  color: #11ddac;
  font-size: 24px;
  margin-right: 7px;
  position: relative;
  left: -5px;
}

.backlink span {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: Roboto, sans-serif;
  color: #656d79;
  position: relative;
  left: -5px;
}

.g-recaptcha {
  position: relative;
  z-index: 25;
}

.coming-soon {
  font-size: 14px;
  font-size: 0.875rem;
}

.coming-soon, .coming-soon-badge {
  color: #656d79;
  vertical-align: middle;
}

.coming-soon-badge {
  font-size: 10px;
  font-size: 0.625rem;
}

.msg-badge {
  font-size: 12px;
  font-size: 0.75rem;
  background: #ef4747;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.badge-new, .msg-badge {
  font-family: Roboto, sans-serif;
  color: #fff;
  font-weight: 700;
}

.badge-new {
  padding: 2px 12px 0;
  min-height: 19px;
  background-color: #ef4747;
  border-radius: 20px;
  font-size: 11px;
  font-size: 0.6875rem;
  margin-left: 10px;
}

.right {
  display: flex;
  justify-content: flex-end;
}

.doc-carousel {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  max-height: 476px;
}

.doc-carousel.slick-initialized {
  visibility: visible;
  opacity: 1;
  overflow: inherit;
}

.doc-carousel-nav {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  height: 65px;
}

.doc-carousel-nav.slick-initialized {
  visibility: visible;
  opacity: 1;
  overflow: inherit;
}

.doc-carousel-nav.short-nav .slick-track {
  transform: translateZ(0) !important;
}

ol {
  margin-bottom: 30px;
  padding: 0;
  list-style-type: none;
}

ol li {
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 150%;
  margin-bottom: 10px;
  padding-left: 25px;
}

ol li, ol li b, ol li strong {
  color: #656d79;
  font-family: Roboto, sans-serif;
}

ol li:before {
  content: counter(list-item) ". ";
  counter-increment: item;
  color: #11ddac;
  margin-right: 5px;
  font-weight: 700;
  position: absolute;
  left: 0;
}

ol li:last-of-type {
  margin-bottom: 0;
}

table:not(.frame-table) tbody tr td ul, ul.default-list {
  margin-bottom: 30px;
}

table:not(.frame-table) tbody tr td ul li, ul.default-list li {
  padding-left: 15px;
  position: relative;
  color: #656d79;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: Roboto, sans-serif;
}

table:not(.frame-table) tbody tr td ul li b, table:not(.frame-table) tbody tr td ul li strong, ul.default-list li b, ul.default-list li strong {
  color: #656d79;
  font-family: Roboto, sans-serif;
}

table:not(.frame-table) tbody tr td ul li a, ul.default-list li a {
  cursor: pointer;
  font-family: Roboto, sans-serif;
}

table:not(.frame-table) tbody tr td ul li:before, ul.default-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #11ddac;
  position: absolute;
  left: 0;
  top: 8px;
}

ul.blue-text-list {
  margin-bottom: 30px;
}

ul.blue-text-list li {
  padding-left: 15px;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
}

ul.blue-text-list li, ul.blue-text-list li b, ul.blue-text-list li strong {
  color: #0d2c54;
  font-family: Roboto, sans-serif;
}

ul.blue-text-list li a {
  cursor: pointer;
}

ul.blue-text-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #0d2c54;
  position: absolute;
  left: 0;
  top: 8px;
}

ul.long-rows-list {
  margin-bottom: 30px;
}

ul.long-rows-list li {
  padding-left: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
}

ul.long-rows-list li, ul.long-rows-list li b, ul.long-rows-list li strong {
  color: #656d79;
  font-family: Roboto, sans-serif;
}

ul.long-rows-list li a {
  cursor: pointer;
}

ul.long-rows-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #11ddac;
  position: absolute;
  left: 0;
  top: 8px;
}

ul.long-rows-list li:last-of-type {
  margin-bottom: 0;
}

.table_of_contents {
  margin: 60px 0;
}

.table_of_contents .title {
  position: relative;
  display: flex;
  font-weight: 700;
  color: #11ddac;
  margin: 0 0 15px;
  padding-left: 34px;
}

.table_of_contents .title:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "\e96e";
  height: 22px;
  font-family: icomoon;
  line-height: 1;
  font-weight: 500;
  transform: rotate(180deg);
  color: #11ddac;
  font-size: 22px;
  font-size: 1.375rem;
}

.table_of_contents ul li {
  margin-bottom: 18px;
}

.table_of_contents ul li:last-of-type {
  margin-bottom: 0;
}

.table_of_contents ul li a {
  font-family: Roboto, sans-serif;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #0d2c54;
  text-decoration: underline;
}

.table_of_contents ul li a:hover {
  text-decoration: none;
}

.buyer-journey {
  margin: 60px 0;
  background-color: #0d2c54;
  display: flex;
  align-items: center;
  padding: 60px 30px;
  border-radius: 12px;
  -moz-border-top-left-radius: 60px;
  border-top-left-radius: 60px;
  -moz-border-bottom-right-radius: 60px;
  border-bottom-right-radius: 60px;
  flex-direction: column;
}

.buyer-journey .main-title {
  margin-bottom: 45px;
  color: #11ddac;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  flex: 1;
}

.buyer-journey .journey-list {
  flex: 1;
  width: 100%;
}

.buyer-journey .journey-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.12);
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease-in-out;
}

.buyer-journey .journey-list li a span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}

.buyer-journey .journey-list li a .icon.icon-arrow {
  position: relative;
  font-size: 14px;
  color: rgba(17, 221, 172, 0.3);
  transition: all 0.25s ease-in-out;
}

.buyer-journey .journey-list li a .icon.icon-arrow:before {
  content: "\e989";
}

.buyer-journey .journey-list li a:hover, .buyer-journey .journey-list li a:hover .icon-arrow:before {
  color: #11ddac;
}

.buyer-journey .journey-list li:last-of-type a {
  border-bottom: 0;
}

.next-article {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 60px 0;
  justify-content: space-between;
  padding: 30px;
  background-color: #fff;
  border: 1px solid #eef1f6;
  border-radius: 12px;
}

.next-article .title {
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #ef4747;
  display: block;
  font-family: Roboto, sans-serif;
}

.next-article .info .heading {
  font-size: 16px;
  font-size: 1rem;
  color: #0d2c54;
  display: block;
  font-weight: 500;
  margin-bottom: 15px;
}

.next-article .info p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #656d79;
  margin-bottom: 0;
}

.next-article .button-wrapper {
  flex-shrink: 0;
}

.next-article .button-wrapper .read-more {
  margin-top: 15px;
  padding-left: 40px;
  padding-right: 40px;
  height: 49px;
  font-size: 14px;
  font-size: 0.875rem;
}

.delivery-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.delivery-info__description {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #0d2c54;
  text-align: center;
}

.delivery-info__description span {
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.danger-block, .info-block, .warning-block {
  padding: 60px 30px;
  margin: 60px 0;
  border: 10px solid;
}

.danger-block .title, .info-block .title, .warning-block .title {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2c54;
  margin-bottom: 30px;
}

.danger-block p, .info-block p, .warning-block p {
  color: #0d2c54;
}

.danger-block p:last-of-type, .info-block p:last-of-type, .warning-block p:last-of-type {
  margin-bottom: 0;
}

.info-block {
  border-color: #eef1f6;
}

.warning-block {
  border-color: #fff3e6;
}

.danger-block {
  border-color: #ffebeb;
}

blockquote {
  border-radius: 6px;
  -moz-border-bottom-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #eef1f6;
  padding: 60px 35px;
  margin: 60px 0;
  position: relative;
}

blockquote:before {
  content: "\e9a5";
  font-family: icomoon;
  color: #dbe1eb;
  position: absolute;
  left: 30px;
  top: -20px;
  font-size: 82px;
  width: 82px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
}

blockquote strong {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  color: #0d2c54;
  margin-bottom: 15px;
}

blockquote p {
  color: #0d2c54;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

blockquote p strong, blockquote span strong {
  display: inline;
  font-size: 16px;
  font-size: 1rem;
}

.stand-out-block {
  background-color: #fff;
  padding: 60px 20px;
  margin: 60px 0;
}

.stand-out-block strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #656d79;
  margin-bottom: 20px;
}

.stand-out-block p {
  margin-bottom: 25px;
}

.stand-out-block p:last-of-type {
  margin-bottom: 0;
}

.stand-out-block .info {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #656d79;
  display: block;
  font-family: Roboto, sans-serif;
  margin-bottom: 30px;
}

.product-carousel, .product-carousel-preview, .related-products__carousel {
  opacity: 0;
  visibility: hidden;
}

.product-carousel-preview img, .product-carousel img, .related-products__carousel img {
  margin: 0 auto;
}

.product-carousel-preview img.slick-loading, .product-carousel img.slick-loading, .related-products__carousel img.slick-loading {
  opacity: 0;
}

.product-carousel-preview.slick-initialized, .product-carousel.slick-initialized, .related-products__carousel.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.product-loader {
  height: 24px;
  width: 47px;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 12px);
  margin: auto;
  z-index: 1;
  background: url(/img_v4/loader.gif) no-repeat 50%;
}

.inform-wrapper {
  padding: 60px 20px;
  background: #0d2c54;
  border-radius: 60px 12px;
}

.inform-wrapper .inform-title {
  color: #11ddac;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
}

.inform-wrapper .inform-content, .inform-wrapper .links-list {
  margin-bottom: 30px;
}

.inform-wrapper .links-list:last-child {
  margin-bottom: 0;
}

.inform-wrapper .links-list li {
  margin-bottom: 10px;
}

.inform-wrapper .links-list li:last-child {
  margin-bottom: 0;
}

.inform-wrapper .links-list li a {
  font-family: Roboto, sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 42px;
    font-size: 2.625rem;
  }
  .heading-style, h1.title-small, h2 {
    font-size: 32px;
    font-size: 2rem;
  }
  .heading-style.title-small, h2.title-small, h3 {
    font-size: 28px;
    font-size: 1.75rem;
  }
  h3.title-small {
    font-size: 22px;
    font-size: 1.375rem;
  }
  h4 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  h4.title-small {
    font-size: 18px;
    font-size: 1.125rem;
  }
  h5 {
    font-size: 20px;
    font-size: 1.25rem;
  }
  h6 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .on-mobile-show {
    display: none;
  }
  .check-bullets {
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .check-bullets li:last-of-type {
    margin-bottom: 0;
  }
  .doc-carousel {
    height: 400px;
  }
  .certificates {
    justify-content: flex-start;
    padding: 0;
  }
  .certificates li {
    margin-right: 40px;
  }
  .certificates li:last-of-type {
    margin-right: 0;
    width: auto;
    text-align: center;
    margin-top: 0;
  }
  .covid-strip {
    padding: 10px;
  }
  .covid-strip p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .holiday-delivery-strip {
    padding: 11px;
  }
  .holiday-delivery-strip p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .danger-block, .info-block, .warning-block {
    padding: 60px 90px;
  }
  blockquote {
    padding: 60px 94px;
  }
  blockquote strong {
    margin-bottom: 30px;
  }
  .inform-wrapper {
    padding: 60px;
  }
  .inform-wrapper .links-list li a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .pl-7-5 {
    padding-left: 7.5px;
  }
  .pr-7-5 {
    padding-right: 7.5px;
  }
  .card {
    padding: 30px;
  }
  .card-order {
    padding: 0;
  }
  .check-bullets {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 0 30px;
  }
  .check-bullets li {
    margin: 0 20px 5px 0;
  }
  .check-bullets li:last-of-type {
    margin: 0;
  }
  #toast-container .toast-error {
    padding: 30px 60px;
  }
  #toast-container .toast-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .buyer-journey {
    padding: 70px 60px;
    flex-direction: row;
  }
  .buyer-journey .main-title {
    font-size: 24px;
    font-size: 1.5rem;
    margin-right: 226px;
    margin-bottom: 0;
  }
  .inform-wrapper {
    padding: 60px 95px;
  }
  .inform-wrapper .links-list {
    margin-bottom: 30px;
  }
  .inform-wrapper .links-list:last-child {
    margin-bottom: 0;
  }
  .next-article .info {
    width: 65%;
  }
  .next-article .info .heading {
    margin-bottom: 5px;
  }
  .next-article .button-wrapper .read-more {
    margin-top: 0;
    margin-left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (-ms-high-contrast: active), only screen and (min-width: 1200px) and (-ms-high-contrast: none) {
  .trustpilot__section .trustpilot__wrapper {
    padding-left: 47px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .inform-wrapper {
    padding: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .inform-wrapper .inform-title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  main {
    min-height: auto;
  }
}
table:not(.frame-table) {
  box-shadow: inset 0 0 0 1px #eef1f6;
  border-radius: 6px;
  display: table;
  table-layout: fixed;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}

table:not(.frame-table) thead {
  background-color: #11ddac;
}

table:not(.frame-table) td, table:not(.frame-table) th {
  border: 1px solid #eef1f6;
  border-top: 0;
  border-bottom: 0;
  text-align: center;
  font-family: Roboto, sans-serif;
}

table:not(.frame-table) th {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px;
  font-family: Poppins, sans-serif;
}

table:not(.frame-table) tbody tr:nth-child(2n) {
  background-color: #e7fcf7;
}

table:not(.frame-table) tbody tr td {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  height: 50px;
  padding: 15px 20px;
  color: #656d79;
  vertical-align: top;
}

table:not(.frame-table) tbody tr td b, table:not(.frame-table) tbody tr td strong {
  font-family: Roboto, sans-serif;
}

table:not(.frame-table) tbody tr td small {
  font-size: 12px;
  font-size: 0.75rem;
}

table:not(.frame-table) tbody tr td ul {
  margin: 0;
}

table:not(.frame-table) tbody tr td ul li {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  word-break: break-word;
}

table:not(.frame-table) tbody tr td ul li:before {
  background-color: #656d79;
  width: 4px;
  height: 4px;
  top: 8px;
}

table:not(.frame-table) p {
  font-size: 14px;
  font-size: 0.875rem;
}

table:not(.frame-table).small-table {
  display: table;
  width: 100%;
}

table:not(.frame-table).keynotes-table {
  table-layout: auto;
}

table:not(.frame-table).keynotes-table tbody tr td {
  text-align: left;
}

table:not(.frame-table).keynotes-table tbody tr td:first-of-type {
  min-width: 265px;
}

table:not(.frame-table).keynotes-table b, table:not(.frame-table).keynotes-table strong {
  color: #20262d;
}

.scrollable .slide-button {
  display: none;
}

.scrollable table thead {
  background-color: #e7fcf7;
}

.scrollable table th, .scrollable table th strong {
  color: #11ddac;
}

.scrollable table tbody tr:nth-child(2n) {
  background-color: #f7f7f7;
}

.scrollable {
  padding-bottom: 15px;
  overflow-x: auto;
  margin: 0 -20px 50px 0;
}

.scrollable table {
  display: table;
  margin-bottom: 0;
  overflow-x: scroll;
}

.scrollable::-webkit-scrollbar {
  height: 4px;
  background-color: transparent;
  width: 6px;
}

.scrollable::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #b1b5b9;
}

@media only screen and (max-width: 767px) {
  table:not(.frame-table) {
    table-layout: auto;
    display: block;
    margin-bottom: 50px;
    overflow-x: scroll;
  }
  table:not(.frame-table) th {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 13px;
  }
  table:not(.frame-table) tbody tr td {
    min-width: 160px;
  }
  table:not(.frame-table).small-table {
    table-layout: fixed;
  }
  table:not(.frame-table).keynotes-table {
    display: block;
    width: 100%;
  }
  table:not(.frame-table).keynotes-table td, table:not(.frame-table).keynotes-table th, table:not(.frame-table).keynotes-table tr {
    display: block;
  }
  table:not(.frame-table).keynotes-table tbody tr td {
    position: relative;
    border: 0;
    height: auto;
    padding: 20px;
  }
  table:not(.frame-table).keynotes-table tbody tr td:first-of-type {
    padding: 20px 20px 0;
    min-width: inherit;
  }
}
.alert {
  border-radius: 6px;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: Roboto, sans-serif;
  padding: 15px 15px 15px 40px !important;
  margin: 0 0 30px;
  position: relative;
}

.alert:before {
  font-family: icomoon;
  width: 18px;
  height: 18px;
  font-size: 18px;
  position: absolute;
  left: 15px;
  top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert.warning {
  background-color: #fff3e6;
  color: #fe9f2f;
}

.alert.warning:before {
  content: "\e997";
}

.alert.danger {
  background-color: #ffebeb;
  color: #ef4747;
}

.alert.danger:before {
  content: "\e96e";
}

.alert.success {
  background-color: #e8fbec;
  color: #19d845;
}

.alert.success:before {
  content: "\e986";
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  font-size: 15px;
  font-weight: 700;
}

@media screen and (min-width: 1200px) {
  .alert {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.popup-wrapper {
  max-width: 460px;
  position: fixed;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  right: 20px;
  margin: auto;
}

.popup-backdrop {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  background-color: #0d2c54;
  filter: alpha(opacity=96);
  opacity: 0.96;
  cursor: pointer;
}

.popup-title {
  margin-bottom: 5px;
  color: #0d2c54;
  font-size: 18px;
  font-size: 1.125rem;
}

.popup-title--small {
  font-size: 16px;
  font-size: 1rem;
}

.popup-description {
  margin-bottom: 15px;
  color: #656d79;
  font-size: 15px;
  font-size: 0.9375rem;
}

.popup-container {
  text-align: center;
  position: relative;
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 6px;
  -moz-border-top-left-radius: 30px;
  border-top-left-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.popup-container h3, .popup-container h4 {
  margin-bottom: 5px;
}

.popup-container h4.text-left {
  padding-left: 8px;
}

.popup-container p:not(.popup-description) {
  color: #656d79;
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 0 0 30px;
}

.popup-container .form-group {
  text-align: left;
}

.popup-container .form-group:last-of-type {
  margin-bottom: 1px;
}

.cookieAcceptBar .manage-preferences .popup-container span, .cookieAcceptBar .popup-container .btn-accept-cookies, .next-article .button-wrapper .popup-container .read-more, .popup-container .btn, .popup-container .cookieAcceptBar .btn-accept-cookies, .popup-container .cookieAcceptBar .manage-preferences span, .popup-container .next-article .button-wrapper .read-more {
  width: 100%;
  margin-top: 15px;
}

.popup-image {
  margin: 0 auto 40px;
}

.popup-image.sprite-main-sended {
  margin-bottom: 15px;
}

.popup-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.popup-navigation .dot-green {
  display: block;
  width: 12px;
  height: 12px;
  margin-right: 16px;
  border-radius: 50%;
  background-color: #11ddac;
  opacity: 0.25;
  cursor: pointer;
}

.popup-navigation .dot-green:last-child {
  margin-right: 0;
}

.popup-navigation .dot-green.active {
  opacity: 1;
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  height: 14px;
}

.popup-close .line {
  transition: all 0.25s ease-in-out;
  background-color: #656d79;
  width: 14px;
  height: 2px;
  display: block;
  border-radius: 3px;
}

.popup-close .line:first-child {
  transform: translateY(6px) rotate(45deg);
}

.popup-close .line:nth-child(2) {
  transform: translateY(4px) rotate(-45deg);
}

.popup-close:hover .line {
  background-color: #dbe1eb;
}

.popup-info, .popup-info p {
  text-align: left;
}

.popup-info .name, .popup-info .reg {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #656d79;
}

.popup-info .address {
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
  color: #656d79;
}

.popup-info .title {
  display: inline-block;
  margin-bottom: 5px;
  color: #0d2c54;
  font-size: 15px;
  font-size: 0.9375rem;
}

.popup-close-button {
  cursor: pointer;
  color: #98a0af;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 22px;
}

#modal-doctors .popup-container {
  padding: 30px 30px 0;
  overflow: hidden;
}

#modal-doctors .popup-wrapper .content {
  margin-top: 30px;
  max-height: 325px;
  overflow-y: auto;
  margin-right: -20px;
  padding-right: 10px;
}

#modal-doctors .popup-wrapper .close {
  padding: 30px 0;
  margin: 0 -30px;
  background-color: #e7fcf7;
}

#modal-doctors .popup-image {
  min-height: 61px;
  margin-bottom: 10px;
}

#modal-doctors .popup-info {
  margin-bottom: 30px;
}

#modal-doctors .popup-info p {
  margin-bottom: 0;
}

#are-you-sure .close {
  margin-top: 15px;
}

#modal-limitations .popup-container, #privacy-modal .popup-container, #terms-modal .popup-container {
  padding: 30px 30px 0;
  overflow: hidden;
}

#modal-limitations .popup-wrapper, #privacy-modal .popup-wrapper, #terms-modal .popup-wrapper {
  max-width: 708px;
}

#modal-limitations .popup-wrapper .content, #privacy-modal .popup-wrapper .content, #terms-modal .popup-wrapper .content {
  margin-top: 30px;
  max-height: 415px;
  overflow-y: auto;
  margin-right: -20px;
  padding-right: 10px;
}

#modal-limitations .popup-wrapper .close, #privacy-modal .popup-wrapper .close, #terms-modal .popup-wrapper .close {
  padding: 30px 0;
  margin: 0 -30px;
  background-color: #e7fcf7;
}

#modal-limitations .popup-image, #privacy-modal .popup-image, #terms-modal .popup-image {
  margin-bottom: 10px;
}

#modal-limitations .popup-info p, #privacy-modal .popup-info p, #terms-modal .popup-info p {
  font-size: 12px;
  font-size: 0.75rem;
}

#modal-limitations .popup-info .default-list, #modal-limitations .popup-info table:not(.frame-table) tbody tr td ul, #privacy-modal .popup-info .default-list, #privacy-modal .popup-info table:not(.frame-table) tbody tr td ul, #terms-modal .popup-info .default-list, #terms-modal .popup-info table:not(.frame-table) tbody tr td ul, table:not(.frame-table) tbody tr td #modal-limitations .popup-info ul, table:not(.frame-table) tbody tr td #privacy-modal .popup-info ul, table:not(.frame-table) tbody tr td #terms-modal .popup-info ul {
  margin-top: -20px;
}

#modal-limitations .popup-info .default-list li, #modal-limitations .popup-info table:not(.frame-table) tbody tr td ul li, #privacy-modal .popup-info .default-list li, #privacy-modal .popup-info table:not(.frame-table) tbody tr td ul li, #terms-modal .popup-info .default-list li, #terms-modal .popup-info table:not(.frame-table) tbody tr td ul li, table:not(.frame-table) tbody tr td #modal-limitations .popup-info ul li, table:not(.frame-table) tbody tr td #privacy-modal .popup-info ul li, table:not(.frame-table) tbody tr td #terms-modal .popup-info ul li {
  font-size: 12px;
  font-size: 0.75rem;
}

#modal-limitations .popup-info .default-list li:before, #modal-limitations .popup-info table:not(.frame-table) tbody tr td ul li:before, #privacy-modal .popup-info .default-list li:before, #privacy-modal .popup-info table:not(.frame-table) tbody tr td ul li:before, #terms-modal .popup-info .default-list li:before, #terms-modal .popup-info table:not(.frame-table) tbody tr td ul li:before, table:not(.frame-table) tbody tr td #modal-limitations .popup-info ul li:before, table:not(.frame-table) tbody tr td #privacy-modal .popup-info ul li:before, table:not(.frame-table) tbody tr td #terms-modal .popup-info ul li:before {
  top: 7px;
}

#privacy-modal .popup-container ol &gt; li, #privacy-modal .popup-container p, #privacy-modal .popup-container ul &gt; li, #terms-modal .popup-container ol &gt; li, #terms-modal .popup-container p, #terms-modal .popup-container ul &gt; li {
  text-align: left;
}

#modal-reset-password .btn.btn-green, #modal-reset-password .btn.btn-select-dosage.btn-gray, #modal-reset-password .cookieAcceptBar .btn-accept-cookies, #modal-reset-password .cookieAcceptBar .manage-preferences span.btn-green, #modal-reset-password .cookieAcceptBar .manage-preferences span.btn-select-dosage.btn-gray, #modal-reset-password .next-article .button-wrapper .read-more, .cookieAcceptBar #modal-reset-password .btn-accept-cookies, .cookieAcceptBar .manage-preferences #modal-reset-password span.btn-green, .cookieAcceptBar .manage-preferences #modal-reset-password span.btn-select-dosage.btn-gray, .next-article .button-wrapper #modal-reset-password .read-more {
  width: 100%;
  margin-bottom: 15px;
}

#modal-login .popup-container .title, #modal-login .popup-image {
  margin-bottom: 30px;
}

#modal-login .popup-container .btn.btn-green, #modal-login .popup-container .btn.btn-select-dosage.btn-gray, #modal-login .popup-container .cookieAcceptBar .btn-accept-cookies, #modal-login .popup-container .cookieAcceptBar .manage-preferences span.btn-green, #modal-login .popup-container .cookieAcceptBar .manage-preferences span.btn-select-dosage.btn-gray, #modal-login .popup-container .next-article .button-wrapper .read-more, .cookieAcceptBar #modal-login .popup-container .btn-accept-cookies, .cookieAcceptBar .manage-preferences #modal-login .popup-container span.btn-green, .cookieAcceptBar .manage-preferences #modal-login .popup-container span.btn-select-dosage.btn-gray, .next-article .button-wrapper #modal-login .popup-container .read-more {
  width: 100%;
}

#modal-login .help-block {
  margin: 15px 0 0;
}

#modal-login .help-block a {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
}

#modal-subscription .popup-image {
  margin: 0 0 20px;
}

#modal-subscription .popup-container p {
  text-align: left;
}

#modal-subscription .popup-container .steps {
  margin: 15px 0 23px;
}

#modal-subscription .popup-container .steps .circle {
  margin: 0 8px 8px 0;
}

#modal-subscription .popup-container .steps .number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e7fcf7;
  color: #11ddac;
  font-size: 12px;
  font-size: 0.75rem;
}

#modal-subscription .popup-container .steps p {
  margin-bottom: 0;
  font-size: 14px;
  font-size: 0.875rem;
}

#modal-subscription .popup-container .info {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
}

#modal-subscription .popup-container .good-to-know li {
  display: flex;
  font-size: 12px;
  font-size: 0.75rem;
  color: #656d79;
}

#modal-subscription .popup-container .good-to-know li .icon.icon-check {
  margin-right: 8px;
  margin-top: 3px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #11ddac;
  font-weight: 500;
}

#modal-pharmacies .popup-container {
  padding: 30px 30px 0;
  overflow: hidden;
}

#modal-pharmacies .popup-wrapper .content {
  margin-top: 30px;
  max-height: 325px;
  overflow-y: auto;
  margin-right: -20px;
  padding-right: 10px;
}

#modal-pharmacies .popup-wrapper .close {
  padding-bottom: 60px;
}

#modal-pharmacies .popup-image {
  margin-bottom: 10px;
  min-height: 61px;
}

#modal-pharmacies .popup-info {
  margin-bottom: 30px;
}

#modal-pharmacies .popup-info p {
  margin-bottom: 0;
}

#modal-cancel-subscription .popup-wrapper {
  max-width: 560px;
}

#modal-cancel-subscription .popup-wrapper .reasons-list .reason-title {
  color: #0d2c54;
  font-size: 12px;
  font-size: 0.75rem;
}

#modal-cancel-subscription .popup-wrapper .closed {
  display: none;
}

#modal-cancel-subscription .popup-wrapper .comment-content textarea {
  padding: 10px;
  min-height: 92px;
  resize: none;
}

#modal-cancel-subscription .popup-wrapper .close {
  margin-top: 30px;
}

#modal-cancel-subscription .popup-wrapper .close .popup-close-button {
  color: #98a0af;
}

#modal-cancel-subscription .popup-wrapper .close .popup-close-button:after {
  background-color: #98a0af;
}

#modal-holiday-delivery .popup-backdrop, #modal-holiday-delivery ~ .modal-backdrop {
  display: none !important;
}

#modal-holiday-delivery .popup-container {
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.15);
  padding: 30px 20px;
}

#modal-holiday-delivery .popup-container h4 {
  text-align: left;
  padding: 0 25px 0 0;
}

#modal-holiday-delivery .popup-container .subtitle {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 15px;
}

#modal-holiday-delivery .popup-container table {
  margin-bottom: 30px;
}

#modal-holiday-delivery .popup-container table th {
  padding: 10px 15px 10px 20px;
  text-align: left;
}

#modal-holiday-delivery .popup-container table th strong {
  font-family: Roboto, sans-serif;
}

#modal-holiday-delivery .popup-container table tr td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: middle;
}

#modal-holiday-delivery .popup-close .line {
  background-color: #98a0af;
}

#modal-holiday-delivery .popup-close-button {
  line-height: 21px;
  font-weight: 500;
}

#modal-about-subscription .popup-backdrop {
  background-color: rgba(13, 44, 84, 0.36);
  opacity: 1;
  cursor: default;
}

#modal-about-subscription .popup-close {
  top: 13px;
}

#modal-about-subscription .popup-close .line {
  background-color: #98a0af;
}

#modal-about-subscription .popup-wrapper {
  max-width: 920px;
}

#modal-about-subscription .popup-container {
  padding: 30px 20px;
}

#modal-about-subscription .popup-container .content .heading {
  margin: 0 0 5px;
}

#modal-about-subscription .popup-container .content .subtitle {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #0d2c54;
  margin-bottom: 30px;
}

#modal-about-subscription .popup-container .content .bullets-list {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto 30px;
}

#modal-about-subscription .popup-container .content .bullets-list li {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: Roboto, sans-serif;
  color: #0d2c54;
  text-align: left;
  padding: 0 0 0 40px;
  margin: 0 0 10px;
}

#modal-about-subscription .popup-container .content .bullets-list li:last-of-type {
  margin-bottom: 0;
}

#modal-about-subscription .popup-container .content .bullets-list li:before {
  font-family: icomoon;
  content: "\e986";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #11ddac;
  box-shadow: 0 10px 15px rgba(17, 221, 172, 0.3);
}

#modal-about-subscription .popup-container .btn, #modal-about-subscription .popup-container .cookieAcceptBar .btn-accept-cookies, #modal-about-subscription .popup-container .cookieAcceptBar .manage-preferences span, #modal-about-subscription .popup-container .next-article .button-wrapper .read-more, .cookieAcceptBar #modal-about-subscription .popup-container .btn-accept-cookies, .cookieAcceptBar .manage-preferences #modal-about-subscription .popup-container span, .next-article .button-wrapper #modal-about-subscription .popup-container .read-more {
  margin: 0 0 10px;
}

#modal-about-subscription .popup-container .under-btn {
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  color: #656d79;
}

#modal-about-subscription .green-scroll::-webkit-scrollbar-track, #modal-cancel-subscription .green-scroll::-webkit-scrollbar-track {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .popup-container {
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .popup-close-btn {
    bottom: 30px;
    left: auto;
    right: 30px;
  }
  #modal-pharmacies .popup-container .close {
    padding-bottom: 30px;
  }
  #modal-doctors .popup-container, #modal-limitations .popup-container, #modal-pharmacies .popup-container {
    display: flex;
    flex-direction: column;
  }
}
#wisepops-root .wisepops-container {
  z-index: 10000 !important;
}

[title*="live chat button"] &gt; div {
  z-index: 1200 !important;
}

.i-embedded-chat.hidden, [title*="live chat button"].hidden {
  z-index: 1000 !important;
}

[id*=trustbadge-container] {
  z-index: 1001 !important;
}

@media screen and (max-width: 1366px) and (orientation: landscape) {
  .popup-container {
    padding: 30px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .popup-close-btn {
    bottom: 30px;
    left: auto;
    right: 30px;
  }
  #modal-pharmacies .popup-container .close {
    padding-bottom: 30px;
  }
  #modal-doctors .popup-container .close, #modal-limitations .popup-container .close {
    padding: 10px 0 !important;
  }
  #modal-doctors .popup-wrapper .content, #modal-limitations .popup-wrapper .content, #modal-pharmacies .popup-wrapper .content {
    max-height: 40vh;
  }
  #modal-doctors .popup-container, #modal-limitations .popup-container, #modal-pharmacies .popup-container {
    display: flex;
    flex-direction: column;
  }
  #modal-cancel-subscription .popup-wrapper .content, #modal-limitations .popup-wrapper .content {
    max-height: 40vh;
  }
}
@media screen and (min-width: 768px) {
  .popup-wrapper {
    width: 100%;
  }
  .popup-container {
    padding: 60px;
  }
  #modal-doctors .popup-container {
    padding: 60px 60px 0;
  }
  #modal-doctors .popup-wrapper .content {
    margin-top: 30px;
    margin-right: -50px;
    padding-right: 40px;
  }
  #modal-doctors .popup-wrapper .close {
    padding: 30px 0;
    margin: 0 -60px;
  }
  #modal-pharmacies .popup-container {
    padding: 60px 60px 0;
  }
  #modal-holiday-delivery .popup-wrapper {
    max-width: 708px;
  }
  #modal-holiday-delivery .popup-container {
    padding: 60px 84px 30px;
  }
  #modal-holiday-delivery .popup-container h4 {
    padding: 0;
  }
  #modal-holiday-delivery .popup-container .subtitle {
    margin-bottom: 30px;
  }
  #modal-holiday-delivery .popup-container table th, #modal-holiday-delivery .popup-container table tr td {
    padding-left: 50px;
  }
  #modal-about-subscription .popup-wrapper {
    width: auto;
  }
  #modal-about-subscription .popup-close {
    top: 25px;
  }
  #modal-about-subscription .popup-container {
    padding: 90px;
  }
  #modal-about-subscription .popup-container .content .subtitle {
    font-size: 16px;
    font-size: 1rem;
  }
  #modal-about-subscription .popup-container .btn, #modal-about-subscription .popup-container .cookieAcceptBar .btn-accept-cookies, #modal-about-subscription .popup-container .cookieAcceptBar .manage-preferences span, #modal-about-subscription .popup-container .next-article .button-wrapper .read-more, .cookieAcceptBar #modal-about-subscription .popup-container .btn-accept-cookies, .cookieAcceptBar .manage-preferences #modal-about-subscription .popup-container span, .next-article .button-wrapper #modal-about-subscription .popup-container .read-more {
    margin: 0 auto 10px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (min-width: 1200px) {
  #modal-holiday-delivery .popup-wrapper {
    max-width: 660px;
  }
  #modal-holiday-delivery .popup-container {
    padding: 60px 60px 30px;
  }
  #modal-about-subscription .popup-container {
    padding: 90px 180px;
  }
}
input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text] {
  border-radius: 6px;
  border: 1px solid #dbe1eb;
  background-color: #fff;
  padding: 10px 20px 0;
  height: 56px;
  transition: all 0.25s ease-in-out;
  box-sizing: border-box;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
}

input[type=email]:-webkit-autofill ~ .hint, input[type=number]:-webkit-autofill ~ .hint, input[type=password]:-webkit-autofill ~ .hint, input[type=search]:-webkit-autofill ~ .hint, input[type=tel]:-webkit-autofill ~ .hint, input[type=text]:-webkit-autofill ~ .hint {
  font-size: 10px;
  font-size: 0.625rem;
  top: 9px;
  line-height: 12px;
  margin: 0;
}

input.error {
  border-color: #ef4747;
}

input[type=email]:disabled, input[type=number]:disabled, input[type=password]:disabled, input[type=tel]:disabled, input[type=text]:disabled {
  background-color: #f7f7f7;
  cursor: not-allowed;
  position: relative;
  -webkit-text-fill-color: currentcolor;
  opacity: 1;
  color: #98a0af;
}

input[type=password] {
  padding: 10px 45px 0 20px;
}

input::-ms-clear {
  display: none;
}

input[type=password]::-ms-clear, input[type=password]::-ms-reveal {
  display: none;
}

input[type=checkbox].error ~ .custom-checkbox {
  border-color: #ef4747;
}

input.search_address {
  padding-right: 45px;
}

input.search_address ~ .icon-search {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #dbe1eb;
  font-size: 20px;
}

textarea {
  border-radius: 6px;
  border: 1px solid #dbe1eb;
  max-width: 100%;
  width: 100%;
  padding: 45px 20px 20px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #0d2c54;
}

textarea::-moz-placeholder {
  color: #98a0af;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
}

textarea:-ms-input-placeholder {
  color: #98a0af;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
}

textarea::placeholder {
  color: #98a0af;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
}

textarea.error {
  border-color: #ef4747;
}

label:not(.hint):not(.hint-top) {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #656d79;
}

label:not(.hint):not(.hint-top).error {
  display: block;
  color: #ef4747;
  font-size: 11px;
  font-size: 0.6875rem;
  margin: 5px 0 0;
}

label:not(.hint):not(.hint-top).error.valid {
  margin: 0;
}

label:not(.hint):not(.hint-top):not(.custom-switch-item):not(.choose-subscription-plan__item):not(.quantity-btn) {
  margin-bottom: 10px;
}

.input-col.message {
  margin-bottom: 30px;
}

.input-col.message .form-group {
  margin-bottom: 0;
}

.input-col.message .hint.top ~ textarea[name=content] {
  padding-top: 25px;
  min-height: 193px;
}

.input-col.message textarea {
  font-weight: 500;
}

select.error ~ .select2-container .select2-selection--single {
  border-color: #ef4747;
}

select.error ~ label.error {
  display: block;
  line-height: 1.2;
  order: 2;
}

select.with-hint ~ .select2-container .select2-selection__rendered {
  padding-top: 10px;
}

select.disabled {
  color: #98a0af;
  background-color: #eef1f6;
  border-color: 1px solid #eef1f6;
}

select::-ms-expand {
  display: none;
}

.form-group {
  position: relative;
  margin-bottom: 15px;
}

.form-group.mb-5 {
  margin-bottom: 5px;
}

.form-group-inline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.form-group-inline .inline-input {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.form-group-inline .inline-input:nth-child(2) {
  margin: 0 10px;
}

.form-group-inline.gender {
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-group-inline.gender .toggle {
  flex: 1;
}

.form-group-inline.gender .toggle .custom-switch {
  width: 100%;
  margin: 0;
  padding: 16.5px 0;
  border: 1px solid #dbe1eb;
  background-color: #fff;
  border-radius: 6px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}

.form-group-inline.gender .toggle .custom-switch.male {
  margin-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.form-group-inline.gender .toggle .custom-switch.female {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
}

.form-group-inline.gender .toggle .custom-switch span {
  display: block;
  margin: auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #98a0af;
  font-weight: 400;
}

.form-group-inline.gender .toggle .custom-switch.checked {
  background-color: #e7fcf7;
}

.form-group-inline.gender .toggle .custom-switch.checked span {
  color: #11ddac;
}

.form-group-inline.gender .toggle .custom-switch.checked span:before {
  content: "\e904";
  font-family: icomoon;
  font-size: 10px;
  margin-right: 8px;
}

.form-group-inline.gender .toggle .custom-switch.disabled.checked span:before {
  content: "\e901";
}

.form-group-inline.gender .toggle .custom-switch.disabled span {
  color: #98a0af;
}

.form-group-inline.gender.error-group .custom-switch, .form-group-inline.gender .toggle .custom-switch.error {
  border-color: #ef4747;
}

.form-group.disabled:after {
  content: "\e998";
  font-family: icomoon;
  font-size: 22px;
  color: #dbe1eb;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.form-group-btn {
  margin-top: 15px;
}

.form-group .search-btn {
  position: absolute;
  display: flex;
  align-items: center;
  right: 7px;
  top: 7px;
  bottom: 7px;
  width: 54px;
  border-radius: 6px;
  background-color: #11ddac;
  color: #fff;
  transition: all 0.25s ease-in-out;
  transform: translateY(0);
  justify-content: center;
}

.form-group .search-btn .icon {
  font-size: 24px;
}

.form-group .search-btn.hidden {
  display: none;
}

.form-group .search-btn:hover {
  right: 1px;
  top: 1px;
  bottom: 1px;
  width: 60px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-group .clear-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
}

.form-group .clear-search .icon {
  font-size: 24px;
  color: #11ddac;
}

.form-group .clear-search.hidden {
  display: none;
}

.form-group .show-hide-password {
  position: absolute;
  right: 20px;
  top: 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-group .show-hide-password .icon {
  font-size: 22px;
  color: #dbe1eb;
}

.form-text {
  font-size: 12px;
  font-size: 0.75rem;
  color: #98a0af;
  margin-bottom: 15px;
}

.pass-notice-block {
  margin-bottom: 10px;
}

.pass-notice-block .pass-notice {
  display: block;
  max-width: 75%;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #656d79;
}

.mail-consent {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin: 0 0 30px;
}

.mail-consent, .mail-consent a {
  font-family: Roboto, sans-serif;
  color: #656d79;
}

.mail-consent a {
  text-decoration: underline;
}

.mail-consent a:hover {
  text-decoration: none;
}

.hint {
  cursor: default;
  pointer-events: none;
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding-left: 20px;
  padding-right: 10px;
  margin: 0;
  line-height: 56px;
  text-align: left;
  color: #98a0af;
  font-size: 14px;
  font-size: 0.875rem;
  transition: 0.2s ease-out;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.hint-top {
  font-family: Roboto, sans-serif;
  color: #98a0af;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.hint.top {
  font-size: 10px;
  font-size: 0.625rem;
  top: 9px;
  line-height: 12px;
  margin: 0;
}

.hint:after {
  content: " *";
  color: #ef4747;
}

.hint.optional:after {
  display: none;
}

.custom-switch {
  position: relative;
  display: flex;
}

.custom-switch input[type=checkbox], .custom-switch input[type=radio] {
  position: absolute;
  z-index: -1;
  filter: alpha(opacity=0);
  opacity: 0;
}

.custom-switch .custom-text {
  font-family: Roboto, sans-serif;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #656d79;
  font-weight: 400;
}

.custom-switch.disabled {
  cursor: not-allowed;
}

.custom-switch.disabled:hover {
  background: transparent;
}

.custom-switch.disabled.checked {
  background-color: #f7f7f7 !important;
}

.custom-switch.disabled.checked span:before {
  content: "\e901";
  font-family: icomoon;
  font-size: 12px;
  margin-right: 15px;
  color: #98a0af;
}

.custom-checkbox {
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid #dbe1eb;
  border-radius: 2px;
  position: relative;
  transition: all 0.25s ease-in-out;
}

.custom-checkbox:after {
  display: none;
  font-family: icomoon;
  content: "\e986";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
  background-color: #11ddac;
}

.custom-checkbox, .custom-radio {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  box-sizing: border-box;
}

.custom-radio {
  width: 22px;
  min-width: 22px;
  height: 22px;
  border: 2px solid #eef1f6;
  background-color: transparent;
  border-radius: 50%;
  transition: 0.2s ease-out;
}

.custom-radio:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: 3px auto;
  border-radius: 50%;
  background-color: transparent;
}

:checked + .custom-checkbox {
  border-color: #11ddac;
}

:checked + .custom-checkbox:after {
  display: flex;
  align-items: center;
  justify-content: center;
}

:checked + .custom-radio {
  border-color: #11ddac;
}

:checked + .custom-radio.blue {
  border-color: #0d2c54;
}

:checked + .custom-radio.blue:after {
  background-color: #0d2c54;
}

:checked + .custom-radio:after {
  background-color: #11ddac;
}

.search-treatment-form ::-webkit-input-placeholder {
  color: #656d79;
  font-size: 14px;
  font-size: 0.875rem;
}

.search-treatment-form :-moz-placeholder, .search-treatment-form ::-moz-placeholder {
  color: #656d79;
  font-size: 14px;
  font-size: 0.875rem;
}

.search-treatment-form :-ms-input-placeholder {
  color: #656d79;
  font-size: 14px;
  font-size: 0.875rem;
}

.search-treatment-form .s-input {
  padding-right: 45px;
}

#register-form-checkout .hint-top {
  margin-bottom: 5px;
}

#register-form-checkout .hint-top:after {
  content: " *";
  color: #ef4747;
}

@media only screen and (min-width: 768px) {
  .form-group {
    margin-bottom: 15px;
  }
  .form-group.birthday {
    margin-bottom: 10px;
  }
  .form-group.agree-block {
    margin: 20px 0 5px;
  }
  .pass-notice-block {
    margin: -10px 0 20px;
  }
  .one-row {
    display: flex;
  }
  .one-row .form-group {
    flex: 1;
  }
  .one-row .form-group:first-of-type {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .input-row {
    display: flex;
    margin-bottom: 15px;
  }
  .input-col {
    flex: 1;
    margin-right: 30px;
  }
  .input-col:last-of-type {
    margin-right: 0;
  }
  .input-col.message {
    margin-bottom: 0;
  }
  .input-col.confirm {
    max-width: 540px;
    margin: 0 auto;
  }
  #register-form-checkout .hint-top {
    margin-bottom: 15px;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .input-col {
    flex: auto;
    width: 100%;
  }
}
.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  border: 1px solid #dbe1eb;
  border-radius: 6px;
  height: 56px;
  display: flex;
  align-items: center;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0d2c54;
  width: 100%;
  padding: 0 40px 0 20px;
  text-align: left;
}

.select2-container .select2-selection--single .select2-selection__placeholder {
  color: #98a0af;
  font-weight: 400;
}

.select2-container .select2-selection--single.has-error {
  border-color: #ef4747;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  padding: 0 5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  font-family: icomoon;
  content: "\e987";
  display: block;
  color: #11ddac;
  font-size: 13px;
  transition: all 0.25s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(180deg);
}

.select2-container--disabled {
  cursor: not-allowed !important;
}

.select2-container--disabled .select2-selection--single {
  background-color: #f7f7f7 !important;
  pointer-events: none;
}

.select2-container--disabled .select2-selection--single .select2-selection__rendered {
  color: #98a0af;
}

.select2-container--disabled .select2-selection--single .select2-selection__arrow:after {
  content: "\e998";
  font-size: 22px;
  color: #dbe1eb;
}

.select2-dropdown {
  border: 1px solid #dbe1eb;
  border-radius: 0;
  overflow: hidden;
}

.select2-dropdown--below {
  -moz-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -moz-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.select2-dropdown--above {
  -moz-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
}

.select2-results ul {
  max-height: 220px !important;
}

.select2-results__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #eef1f6;
  background-color: #fff;
  color: #656d79;
  font-weight: 500;
}

.select2-results__option--selected {
  background-color: #fff !important;
  color: #0d2c54 !important;
}

.select2-results__option[aria-selected=true] {
  background-color: #fff !important;
}

.select2-results__option[aria-disabled=true] {
  color: #eef1f6 !important;
}

.select2-results__option[aria-disabled=true] .item-out-of-stock {
  color: #656d79;
}

.select2-results__option--highlighted {
  background-color: #e7fcf7 !important;
  color: #0d2c54 !important;
}

.select2-results__option--highlighted[aria-selected=true] {
  background-color: #e7fcf7 !important;
}

.select2-results__option:last-of-type {
  border-bottom: 0;
}

.select2-results__options::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.select2-results__options::-webkit-scrollbar-track {
  background-color: #e7fcf7;
}

.select2-results__options::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #11ddac;
  color: #11ddac;
}

.select2-results__options::-webkit-scrollbar-button {
  display: none;
}

.coupon {
  display: flex;
  margin-top: 90px;
  padding: 120px 0;
  background: #0d2c54;
  border-radius: 60px 12px;
}

.coupon__title {
  margin-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: #11ddac;
  font-size: 24px;
  font-size: 1.5rem;
}

.coupon__description {
  margin-bottom: 30px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
}

.coupon__info {
  margin: 15px 0 50px;
  font-size: 14px;
  font-size: 0.875rem;
  color: #dbe1eb;
}

.coupon__info a {
  color: #dbe1eb;
  text-decoration: underline;
}

.cookieAcceptBar .coupon__form .btn-accept-cookies, .cookieAcceptBar .manage-preferences .coupon__form span, .coupon__form .btn, .coupon__form .cookieAcceptBar .btn-accept-cookies, .coupon__form .cookieAcceptBar .manage-preferences span, .coupon__form .next-article .button-wrapper .read-more, .coupon__form input, .coupon__form label, .next-article .button-wrapper .coupon__form .read-more {
  width: 100%;
}

.coupon__form label {
  margin-bottom: 15px;
}

.coupon + p {
  font-size: 13px;
  font-size: 0.8125rem;
}

.coupon .show-coupon__title {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.coupon .show-coupon .coupon-code {
  display: inline-block;
  margin-bottom: 30px;
}

.coupon .show-coupon .coupon-code-value, .coupon .show-coupon .coupon-code .copy-done {
  min-width: 180px;
  padding: 12px;
  background: rgba(17, 221, 172, 0.1);
  border: 1px dashed #11ddac;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #11ddac;
}

.coupon .show-coupon .coupon-code .copy-done {
  cursor: default;
  color: #fff;
  background: transparent;
}

.coupon .show-coupon p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  margin: 0 0 5px;
}

.coupon .show-coupon p.bold {
  font-weight: 700;
}

.coupon-after-text {
  margin: 30px auto 0;
}

.coupon-after-text p {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .coupon {
    display: flex;
    margin-top: 90px;
    padding: 60px 0;
  }
  .coupon .show-coupon {
    padding: 0 5px;
  }
  .coupon .show-coupon__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .coupon .show-coupon .coupon-code {
    display: block;
  }
  .coupon .show-coupon .coupon-code-value, .coupon .show-coupon .coupon-code .copy-done {
    font-size: 16px;
    font-size: 1rem;
  }
  .coupon .show-coupon p {
    margin: 0;
  }
}
.gray-scroll::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.gray-scroll::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #98a0af;
  color: #98a0af;
}

.gray-scroll.horizontal {
  scrollbar-color: #dbe1eb transparent;
  scrollbar-width: thin;
}

.gray-scroll.horizontal::-webkit-scrollbar {
  height: 4px;
}

.gray-scroll.horizontal::-webkit-scrollbar-thumb {
  background-color: #dbe1eb;
  color: #dbe1eb;
}

.green-scroll::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.green-scroll::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background-color: #11ddac;
  color: #11ddac;
}

.green-scroll::-webkit-scrollbar-track {
  background-color: rgba(17, 221, 172, 0.2);
  border-radius: 3px;
}

.trustpilot-modal {
  background: #e7fcf7;
  padding: 30px;
  height: 80px;
}

.trustpilot__section {
  padding: 90px 0;
  border-top: 1px solid #eef1f6;
}

.trustpilot__section .heading-style {
  text-align: center;
  margin-bottom: 30px;
}

.trustpilot__section .review {
  margin: 60px -15px 30px;
  position: relative;
}

.trustpilot__section .review:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  z-index: -1;
  background-color: #11ddac;
  -moz-border-top-right-radius: 60px;
  border-top-right-radius: 60px;
  -moz-border-bottom-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.trustpilot__section .review__wrapper {
  display: flex;
  padding: 60px 0 60px 40px;
  overflow-x: auto;
}

.trustpilot__section .review__box {
  background-color: #fff;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  margin-right: 30px;
  padding: 30px;
  min-width: 255px;
  width: 255px;
  min-height: 243px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.trustpilot__section .review__box .quotes {
  position: absolute;
  right: 19px;
  top: 24px;
}

.trustpilot__section .review__box .title {
  font-family: Roboto, sans-serif;
  display: block;
  margin-right: 30px;
  color: #000;
}

.trustpilot__section .review__box .info {
  margin-bottom: 15px;
  font-size: 12px;
  font-size: 0.75rem;
}

.trustpilot__section .review__box .date, .trustpilot__section .review__box .name {
  font-family: Roboto, sans-serif;
  color: #656d79;
}

.trustpilot__section .review__box .name {
  font-weight: 400;
}

.trustpilot__section .review__box .review-text {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 -1px 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.trustpilot__section .review__box .rating {
  display: flex;
  align-items: flex-end;
}

.trustpilot__section .review__box .icon-star-fill {
  color: #ffe66d;
  margin-right: 5px;
}

.trustpilot__section .link-underlined {
  font-family: Roboto, sans-serif;
}

.trustpilot__wrapper {
  height: 115px;
}

.trustpilot__wrapper iframe {
  height: 115px !important;
}

@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .trustpilot__wrapper iframe {
    height: auto !important;
  }
}
@media only screen and (min-width: 768px) {
  .trustpilot__section {
    padding: 120px 0;
  }
  .trustpilot__section .review {
    margin: 60px -15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .trustpilot__section .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .trustpilot__section {
    padding: 30px 0 120px;
    border-top: 0;
  }
  .trustpilot__section .review {
    margin: 0 0 0 -60px;
  }
  .trustpilot__section .review:before {
    width: 539px;
    border-radius: 6px;
    -moz-border-top-right-radius: 90px;
    border-top-right-radius: 90px;
    -moz-border-bottom-left-radius: 90px;
    border-bottom-left-radius: 90px;
  }
  .trustpilot__section .review__wrapper {
    padding: 60px 0 30px 60px;
    flex-wrap: wrap;
    overflow: inherit;
  }
  .trustpilot__section .review__box {
    margin: 0 30px 30px 0;
  }
  .trustpilot__section .review__box:nth-child(2n) {
    margin: 0 0 30px;
  }
  .trustpilot__section .heading-style {
    text-align: left;
  }
  .trustpilot__section .trustpilot__wrapper {
    position: relative;
    left: -47px;
    margin-bottom: 30px;
  }
  .trustpilot__section .trustpilot__wrapper .trustpilot-widget__preloader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .trustpilot__section .trustpilot__wrapper .trustpilot-widget__preloader .loading-dots {
    position: relative;
    text-align: left;
    left: 50px;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .trustpilot__section .review__box .review-text {
    max-height: 100px;
  }
}
.service-heading {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
}

.service-heading strong {
  display: block;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #0d2c54;
}

.customer-services-small {
  max-width: 460px;
  margin: auto;
}

.customer-services-small .cs-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  position: relative;
  border-radius: 12px;
  border: 1px solid #eef1f6;
  margin-bottom: 15px;
  background-color: white;
}

.customer-services-small .cs-item:last-of-type {
  margin-bottom: 0;
}

.customer-services-small .cs-item .link-overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #11ddac;
  font-size: 0;
}

.customer-services-small .cs-item .link-overlay:active ~ .info .link-underlined, .customer-services-small .cs-item .link-overlay:hover ~ .info .link-underlined {
  text-decoration: underline;
}

.customer-services-small .cs-item .main-icon {
  background-repeat: no-repeat;
  display: block;
  margin-right: 15px;
  width: 52px;
  height: 52px;
  background-size: cover;
}

.customer-services-small .cs-item .main-icon.chat {
  background-image: url(/img_v4/svg/icons/chat-lg.svg);
}

.customer-services-small .cs-item .main-icon.phone {
  background-image: url(/img_v4/svg/icons/phone-lg.svg);
}

.customer-services-small .cs-item .main-icon.mail {
  background-image: url(/img_v4/svg/icons/mail-lg.svg);
}

.customer-services-small .cs-item .main-icon.mail--lg-big {
  width: 58px;
  height: 58px;
  background-size: 110%;
  background-position: 50%;
}

.customer-services-small .cs-item .main-icon.skype {
  background-image: url(/img_v4/svg/icons/skype.svg);
}

.customer-services-small .cs-item .main-icon.whatsapp {
  background-image: url(/img_v4/svg/icons/whatsapp.png);
}

.customer-services-small .cs-item .info {
  display: flex;
  flex-direction: column;
  flex: 1;
  -ms-flex: auto;
  margin-right: 10px;
}

.customer-services-small .cs-item .info .service-title {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  color: #98a0af;
  font-size: 13px;
  font-size: 0.8125rem;
}

.customer-services-small .cs-item .info .link-underlined {
  font-size: 16px;
  font-size: 1rem;
  font-family: Roboto, sans-serif;
  color: #11ddac !important;
}

.customer-services-small .cs-item .icon {
  color: #11ddac;
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .service-heading {
    margin: 0 auto 30px;
  }
  .customer-services-small {
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  .customer-services-small .cs-item .main-icon {
    width: 72px;
    height: 72px;
  }
  .customer-services-small .cs-item .main-icon.skype {
    width: 52px;
    height: 52px;
  }
  .customer-services-small .cs-item .main-icon.mail.mail-sm {
    width: 62px;
    height: 62px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .customer-services-small.info-p {
    max-width: 460px;
    margin: auto;
    display: block;
  }
  .customer-services-small.info-p .cs-item {
    display: flex;
    padding: 20px;
    margin: 0 0 15px;
  }
  .customer-services-small.info-p .cs-item .main-icon {
    margin: 0 15px 0 0;
  }
  .customer-services-small.info-p .cs-item .info {
    margin: 0 10px 0 0;
    text-align: left;
  }
  .customer-services-small .cs-item {
    display: block;
    margin: 0 15px 0 0;
    flex: 1 0 auto;
    text-align: center;
    padding: 60px 20px;
    height: auto;
  }
  .customer-services-small .cs-item:last-of-type {
    margin-right: 0;
  }
  .customer-services-small .cs-item .main-icon {
    margin: 0 auto 15px;
  }
  .customer-services-small .cs-item .info {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .customer-services-small .cs-item .icon, .customer-services-small .cs-item .info .link-underlined {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  .contacts .service-heading {
    margin-bottom: 60px;
  }
  .customer-services-small.info-p .cs-item {
    flex-direction: column;
    text-align: center;
  }
  .customer-services-small.info-p .main-icon {
    margin: 0 0 15px;
  }
  .customer-services-small .cs-item {
    margin: 0 30px 0 0;
    padding: 60px 20px;
    flex: 1;
    transition: all 0.25s ease-in-out;
  }
  .customer-services-small .cs-item:last-of-type {
    margin: 0;
  }
  .customer-services-small .cs-item:hover {
    border-color: #fff;
    box-shadow: 0 60px 90px rgba(0, 0, 0, 0.06);
  }
  .customer-services-small .cs-item.square-lg {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex: 0;
    min-width: 255px;
    max-width: 255px;
    height: 255px;
  }
  .customer-services-small .cs-item.square-lg .info {
    flex: 0;
    -ms-flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-right: 0;
  }
  .customer-services-small--desctop .cs-item {
    width: 255px;
    height: 255px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .customer-services-small--desctop .cs-item .main-icon {
    margin-right: 0;
  }
  .customer-services-small--desctop .cs-item .icon {
    display: none;
    margin-right: 0;
  }
  .customer-services-small--desctop .cs-item .icon .mail.mail-sm, .customer-services-small--desctop .cs-item .icon.skype {
    width: 52px;
    height: 52px;
  }
  .customer-services-small--desctop .cs-item .info {
    flex: 0;
    margin-right: 0;
  }
  .customer-services-small--desctop .cs-item .info .service-title {
    margin: 20px 0 5px;
  }
}
.banner.promotion-banner {
  border-radius: 12px;
  background: #fff3e6;
  padding: 30px;
  margin-bottom: 90px;
  display: flex;
  flex-direction: column;
}

.banner__img {
  display: none;
}

.banner__body strong {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #fe9f2f;
}

.banner__body p {
  font-size: 14px;
  font-size: 0.875rem;
}

.banner__btn {
  font-family: Roboto, sans-serif;
  font-weight: 700;
  display: inline-block;
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .banner.promotion-banner {
    padding: 30px 60px;
    margin-bottom: 120px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .banner__body {
    flex: 1;
    margin-right: 100px;
  }
  .banner__body strong {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .banner__body p:last-of-type {
    margin-bottom: 0;
  }
}
.product__widget {
  margin: 60px 0;
  padding: 30px;
  background-color: #e7fcf7;
  border-radius: 12px;
  -moz-border-top-left-radius: 60px;
  border-top-left-radius: 60px;
  -moz-border-bottom-right-radius: 60px;
  border-bottom-right-radius: 60px;
}

.product__widget--img {
  width: 190px;
  height: 190px;
  margin: 0 auto 15px;
  background-size: cover;
  background-repeat: no-repeat;
}

.product__widget--info .title {
  color: #11ddac;
  font-weight: 700;
  margin-bottom: 5px;
}

.product__widget--info .description {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.cookieAcceptBar .manage-preferences span.product__widget--btn, .cookieAcceptBar .product__widget--btn.btn-accept-cookies, .product__widget--btn.small {
  padding: 10px 20px !important;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .product__widget {
    padding: 30px 55px 30px 60px;
    display: flex;
    align-items: center;
  }
  .product__widget--img {
    margin: 0 35px 0 0;
  }
  .product__widget--info {
    flex: 1;
  }
  .product__widget--info .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.testkit__widget {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  max-width: 350px;
  padding: 20px 35px 30px 50px;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
}

.testkit__widget .testkit__img {
  width: 250px;
  height: 250px;
  margin: auto;
  background-size: cover;
  background-repeat: no-repeat;
}

.testkit__widget .testkit__info .title {
  color: #0d2c54;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 10px;
}

.cookieAcceptBar .manage-preferences .testkit__widget .testkit__info span, .cookieAcceptBar .testkit__widget .testkit__info .btn-accept-cookies, .next-article .button-wrapper .testkit__widget .testkit__info .read-more, .testkit__widget .testkit__info .btn, .testkit__widget .testkit__info .cookieAcceptBar .btn-accept-cookies, .testkit__widget .testkit__info .cookieAcceptBar .manage-preferences span, .testkit__widget .testkit__info .next-article .button-wrapper .read-more {
  margin-bottom: 10px;
}

.testkit__widget .testkit__info .more-info {
  display: inline-block;
  font-family: Roboto, sans-serif;
  font-weight: 700;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 15px;
  text-decoration: underline;
}

.testkit__widget .testkit__info .cta-note {
  color: #656d79;
  font-weight: 400;
}

@media only screen and (min-width: 768px) {
  .testkit__widget {
    padding: 20px 50px 30px;
  }
}
.more-about-widget {
  border-radius: 12px;
  box-shadow: 0 60px 90px rgba(0, 0, 0, 0.06);
  max-width: 445px;
  overflow: hidden;
  margin: 30px auto;
}

.more-about-widget .more-about-image {
  height: 233px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.more-about-widget .more-about-content {
  padding: 40px 25px 60px;
}

.more-about-widget .title {
  color: #0d2c54;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.cookieAcceptBar .manage-preferences .more-about-widget span, .cookieAcceptBar .more-about-widget .btn-accept-cookies, .more-about-widget .btn, .more-about-widget .cookieAcceptBar .btn-accept-cookies, .more-about-widget .cookieAcceptBar .manage-preferences span, .more-about-widget .next-article .button-wrapper .read-more, .next-article .button-wrapper .more-about-widget .read-more {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

@media only screen and (min-width: 768px) {
  .more-about-widget {
    margin: 60px auto;
  }
  .more-about-widget .more-about-image {
    height: 257px;
  }
  .more-about-widget .more-about-content {
    padding: 18px 60px 60px;
  }
}
.start-consultation-widget {
  background-color: #eef1f6;
  border-radius: 6px;
  -moz-border-top-left-radius: 30px;
  border-top-left-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin: 60px 0;
  padding: 60px 30px;
  text-align: center;
}

.start-consultation-widget .title, .start-consultation-widget h2 {
  display: block;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  color: #0d2c54;
  margin-bottom: 15px;
}

.start-consultation-widget p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #0d2c54;
  max-width: 570px;
  margin: 0 auto 30px;
}

.start-consultation-widget ul {
  flex-direction: column;
  align-items: flex-start;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 30px;
}

.start-consultation-widget ul li {
  font-size: 14px;
  font-size: 0.875rem;
  color: #0d2c54;
  font-family: Roboto, sans-serif;
  position: relative;
  margin: 0 0 14px;
  padding-left: 40px;
  text-align: left;
}

.start-consultation-widget ul li:last-of-type {
  margin-bottom: 0;
}

.start-consultation-widget ul li:before {
  font-family: icomoon;
  content: "\e986";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #11ddac;
  box-shadow: 0 10px 15px rgba(17, 221, 172, 0.3);
}

.cookieAcceptBar .manage-preferences .start-consultation-widget span, .cookieAcceptBar .start-consultation-widget .btn-accept-cookies, .next-article .button-wrapper .start-consultation-widget .read-more, .start-consultation-widget .btn, .start-consultation-widget .cookieAcceptBar .btn-accept-cookies, .start-consultation-widget .cookieAcceptBar .manage-preferences span, .start-consultation-widget .next-article .button-wrapper .read-more {
  max-width: 380px;
  padding: 0 10px;
}

.start-consultation-widget .cta-note {
  font-family: Roboto, sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #0d2c54;
}

.start-consultation-widget .cta-note.bottom {
  font-weight: 400;
}

.start-consultation-widget .cta-note strong {
  font-family: Roboto, sans-serif;
}

@media only screen and (min-width: 768px) {
  .start-consultation-widget {
    border-radius: 12px;
    -moz-border-top-left-radius: 60px;
    border-top-left-radius: 60px;
    -moz-border-bottom-right-radius: 60px;
    border-bottom-right-radius: 60px;
    padding: 60px 80px;
  }
  .start-consultation-widget .title, .start-consultation-widget h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .start-consultation-widget p {
    margin-bottom: 23px;
  }
  .cookieAcceptBar .manage-preferences .start-consultation-widget span, .cookieAcceptBar .start-consultation-widget .btn-accept-cookies, .next-article .button-wrapper .start-consultation-widget .read-more, .start-consultation-widget .btn, .start-consultation-widget .cookieAcceptBar .btn-accept-cookies, .start-consultation-widget .cookieAcceptBar .manage-preferences span, .start-consultation-widget .next-article .button-wrapper .read-more {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .start-consultation-widget .cta-note {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media only screen and (max-width: 368px) {
  .start-consultation-widget {
    padding: 60px 10px;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .start-consultation-widget ul {
    max-width: 290px;
  }
}
.btn, .cookieAcceptBar .btn-accept-cookies, .cookieAcceptBar .manage-preferences span, .next-article .button-wrapper .read-more {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 30px;
  height: 56px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 3.5em;
  color: #fff;
  border: 0;
  border-radius: 3px;
  letter-spacing: 0.28px;
  text-decoration: none;
  text-align: center;
  transition: all 0.35s ease;
  cursor: pointer;
  word-break: break-all;
}

.btn:disabled, .cookieAcceptBar .btn-accept-cookies:disabled, .cookieAcceptBar .manage-preferences span:disabled, .next-article .button-wrapper .read-more:disabled {
  cursor: not-allowed;
}

.btn:hover, .cookieAcceptBar .btn-accept-cookies:hover, .cookieAcceptBar .manage-preferences span:hover, .next-article .button-wrapper .read-more:hover {
  color: #fff;
  text-decoration: none;
}

.btn.mobile, .cookieAcceptBar .manage-preferences span.mobile, .cookieAcceptBar .mobile.btn-accept-cookies, .next-article .button-wrapper .mobile.read-more {
  display: block;
}

.btn.desktop, .cookieAcceptBar .desktop.btn-accept-cookies, .cookieAcceptBar .manage-preferences span.desktop, .next-article .button-wrapper .desktop.read-more {
  display: none;
}

.btn.small, .cookieAcceptBar .btn-accept-cookies, .cookieAcceptBar .btn.btn-accept-cookies, .cookieAcceptBar .manage-preferences .next-article .button-wrapper span.read-more, .cookieAcceptBar .manage-preferences span, .cookieAcceptBar .next-article .button-wrapper .read-more.btn-accept-cookies, .cookieAcceptBar .small.btn-accept-cookies, .next-article .button-wrapper .cookieAcceptBar .manage-preferences span.read-more, .next-article .button-wrapper .cookieAcceptBar .read-more.btn-accept-cookies, .next-article .button-wrapper .small.read-more {
  margin: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: 44px;
  padding: 10px 40px;
  min-width: 109px;
  line-height: 24px;
}

.btn.outline, .cookieAcceptBar .manage-preferences .next-article .button-wrapper span.read-more, .cookieAcceptBar .manage-preferences span, .cookieAcceptBar .outline.btn-accept-cookies, .next-article .button-wrapper .cookieAcceptBar .manage-preferences span.read-more, .next-article .button-wrapper .outline.read-more {
  background-color: transparent;
  border: 2px solid;
  color: #11ddac;
}

.btn.outline.white, .cookieAcceptBar .manage-preferences span.white, .cookieAcceptBar .outline.white.btn-accept-cookies, .next-article .button-wrapper .outline.white.read-more {
  color: #fff;
}

.btn.outline.white:disabled, .cookieAcceptBar .manage-preferences span.white:disabled, .cookieAcceptBar .outline.white.btn-accept-cookies:disabled, .next-article .button-wrapper .outline.white.read-more:disabled {
  opacity: 0.5;
}

.btn .icon.plus, .cookieAcceptBar .btn-accept-cookies .icon.plus, .cookieAcceptBar .manage-preferences span .icon.plus, .next-article .button-wrapper .read-more .icon.plus {
  position: relative;
  top: 2px;
  margin-left: 10px;
  width: 16px;
  height: 15px;
  display: inline-block;
}

.btn .icon.plus:before, .cookieAcceptBar .btn-accept-cookies .icon.plus:before, .cookieAcceptBar .manage-preferences span .icon.plus:before, .next-article .button-wrapper .read-more .icon.plus:before {
  content: "";
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.btn .icon.plus:after, .cookieAcceptBar .btn-accept-cookies .icon.plus:after, .cookieAcceptBar .manage-preferences span .icon.plus:after, .next-article .button-wrapper .read-more .icon.plus:after {
  content: "";
  width: 2px;
  height: 16px;
  border-radius: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.btn .icon.icon-chevron-right, .cookieAcceptBar .btn-accept-cookies .icon.icon-chevron-right, .cookieAcceptBar .manage-preferences span .icon.icon-chevron-right, .next-article .button-wrapper .read-more .icon.icon-chevron-right {
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 10px;
  line-height: 26px;
}

.btn .icon.icon-chevron-left, .cookieAcceptBar .btn-accept-cookies .icon.icon-chevron-left, .cookieAcceptBar .manage-preferences span .icon.icon-chevron-left, .next-article .button-wrapper .read-more .icon.icon-chevron-left {
  font-size: 14px;
  margin-right: 10px;
}

.btn-green, .btn-select-dosage.btn-gray, .cookieAcceptBar .btn-accept-cookies, .next-article .button-wrapper .read-more {
  background-color: #11ddac !important;
}

.btn-green-inverted {
  background-color: white;
  border: var(--primary-lightgreen) solid 2px;
  color: var(--primary-lightgreen);
}

.btn-green-inverted:hover {
  background-color: var(--primary-lightgreen);
  border: white solid 2px;
  color: white;
}

.btn-green:disabled, .btn-green:disabled:hover, .btn-select-dosage.btn-gray:disabled, .btn-select-dosage.btn-gray:disabled:hover, .cookieAcceptBar .btn-accept-cookies:disabled, .cookieAcceptBar .btn-accept-cookies:disabled:hover, .next-article .button-wrapper .read-more:disabled, .next-article .button-wrapper .read-more:disabled:hover {
  background-color: rgba(17, 221, 172, 0.3) !important;
}

.btn-green.outline, .cookieAcceptBar .manage-preferences .next-article .button-wrapper span.read-more, .cookieAcceptBar .manage-preferences span.btn-accept-cookies, .cookieAcceptBar .manage-preferences span.btn-green, .cookieAcceptBar .manage-preferences span.btn-select-dosage.btn-gray, .cookieAcceptBar .outline.btn-accept-cookies, .next-article .button-wrapper .cookieAcceptBar .manage-preferences span.read-more, .next-article .button-wrapper .outline.read-more, .outline.btn-select-dosage.btn-gray {
  border-color: #11ddac;
}

.btn-green.outline:hover, .cookieAcceptBar .manage-preferences .next-article .button-wrapper span.read-more:hover, .cookieAcceptBar .manage-preferences span.btn-accept-cookies:hover, .cookieAcceptBar .manage-preferences span.btn-green:hover, .cookieAcceptBar .manage-preferences span.btn-select-dosage.btn-gray:hover, .cookieAcceptBar .outline.btn-accept-cookies:hover, .next-article .button-wrapper .cookieAcceptBar .manage-preferences span.read-more:hover, .next-article .button-wrapper .outline.read-more:hover, .outline.btn-select-dosage.btn-gray:hover {
  background-color: #11ddac;
  color: #fff;
}

.btn-green.outline:disabled, .cookieAcceptBar .manage-preferences .next-article .button-wrapper span.read-more:disabled, .cookieAcceptBar .manage-preferences span.btn-accept-cookies:disabled, .cookieAcceptBar .manage-preferences span.btn-green:disabled, .cookieAcceptBar .manage-preferences span.btn-select-dosage.btn-gray:disabled, .cookieAcceptBar .outline.btn-accept-cookies:disabled, .next-article .button-wrapper .cookieAcceptBar .manage-preferences span.read-more:disabled, .next-article .button-wrapper .outline.read-more:disabled, .outline.btn-select-dosage.btn-gray:disabled {
  width: 100%;
  background-color: transparent;
  opacity: 0.3;
}

.btn-green.outline:disabled:hover, .cookieAcceptBar .manage-preferences .next-article .button-wrapper span.read-more:disabled:hover, .cookieAcceptBar .manage-preferences span.btn-accept-cookies:disabled:hover, .cookieAcceptBar .manage-preferences span.btn-green:disabled:hover, .cookieAcceptBar .manage-preferences span.btn-select-dosage.btn-gray:disabled:hover, .cookieAcceptBar .outline.btn-accept-cookies:disabled:hover, .next-article .button-wrapper .cookieAcceptBar .manage-preferences span.read-more:disabled:hover, .next-article .button-wrapper .outline.read-more:disabled:hover, .outline.btn-select-dosage.btn-gray:disabled:hover {
  color: #11ddac;
}

.btn-pink {
  background: #f267c4;
}

.btn-pink:disabled {
  opacity: 0.3;
}

.btn-pink:disabled:hover {
  background: #f267c4;
}

.btn-select-dosage {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  min-height: 56px;
  max-width: 460px;
  margin: 0 auto 15px;
}

.btn-outline-long {
  padding: 10px;
  background: transparent;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #98a0af;
  border: 1px solid #98a0af;
  border-radius: 3px;
  transition: 0.2s ease-out;
}

.btn-outline-long:active, .btn-outline-long:focus, .btn-outline-long:hover {
  text-decoration: none;
  background: #11ddac;
  color: #fff;
  border-color: #11ddac;
}

.back-btn.fixed-m {
  position: fixed;
  background-color: #11ddac;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  z-index: 9;
}

.back-btn.fixed-m .link-underlined {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 21px;
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--primary, .btn--primary-small {
  height: auto;
}

@media only screen and (min-width: 1200px) {
  .btn, .next-article .button-wrapper .read-more {
    width: auto;
    padding: 0 50px;
    font-weight: 700;
    font-size: 16px;
    font-size: 1rem;
    line-height: 3.5em;
    font-family: Poppins, sans-serif;
    letter-spacing: 0.32px;
  }
  .btn.mobile, .cookieAcceptBar .manage-preferences span.mobile, .cookieAcceptBar .mobile.btn-accept-cookies, .next-article .button-wrapper .mobile.read-more {
    display: none;
  }
  .btn.desktop, .cookieAcceptBar .desktop.btn-accept-cookies, .cookieAcceptBar .manage-preferences span.desktop, .next-article .button-wrapper .desktop.read-more {
    display: block;
  }
  .btn-pink:hover {
    background: #ed2aac;
  }
  .btn-green:hover, .btn-select-dosage.btn-gray:hover, .cookieAcceptBar .btn-accept-cookies:hover, .next-article .button-wrapper .read-more:hover {
    background-color: #0ebc92 !important;
  }
}
@media only screen and (max-width: 368px) {
  .btn-select-dosage {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 0 10px;
    line-height: 56px;
  }
}
#manage-preferences-popup {
  -webkit-overflow-scrolling: touch;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 16000006 !important;
  position: fixed;
}

#manage-preferences-popup.modal-opened {
  opacity: 1;
  visibility: visible !important;
  display: block !important;
}

#manage-preferences-popup .modal-overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  cursor: pointer;
  right: 0;
  bottom: 0;
  background-color: #0d2c54;
  transition: 0.2s ease-out;
  filter: alpha(opacity=96);
  opacity: 0.96;
}

#manage-preferences-popup .modal-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-sizing: border-box;
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 12;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  max-height: 578px;
  max-width: 708px;
  padding: 0;
  overflow: inherit;
  border-radius: 6px;
  -moz-border-top-left-radius: 30px;
  border-top-left-radius: 30px;
  -moz-border-bottom-right-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
}

#manage-preferences-popup .modal-content .modal-header {
  padding: 30px 30px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0;
  border-radius: 0;
  position: relative;
}

#manage-preferences-popup .modal-content .modal-header .subtitle {
  margin: 0;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2c54;
}

#manage-preferences-popup .modal-content .modal-header .modal-close {
  cursor: pointer;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 25px;
  top: 25px;
  overflow: hidden;
  font-family: Poppins, sans-serif;
}

#manage-preferences-popup .modal-content .modal-header .modal-close:after {
  content: "✖";
  color: #98a0af;
}

#manage-preferences-popup .modal-content .main-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 392px;
  padding: 0 20px 30px 30px;
  margin-right: 10px;
}

#manage-preferences-popup .modal-content .main-content p {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #656d79;
}

#manage-preferences-popup .modal-content .main-content p.sm {
  font-size: 12px;
  font-size: 0.75rem;
}

#manage-preferences-popup .modal-content .main-content a {
  font-size: 14px;
  font-size: 0.875rem;
  color: #656d79;
  font-family: Roboto, sans-serif;
  text-decoration: underline;
}

#manage-preferences-popup .modal-content .main-content a:hover {
  text-decoration: none;
}

#manage-preferences-popup .modal-content .modal-footer {
  display: inline-block;
  text-align: center;
  border-top: 0;
  padding: 30px;
  background-color: #e7fcf7;
}

#manage-preferences-popup .modal-content .modal-footer .cookiebot-footer-error {
  display: none;
  margin: -15px 0 30px;
  flex: 1 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: left;
}

#manage-preferences-popup .modal-content .modal-footer .cookiebot-footer-error:before {
  top: 16px;
}

#manage-preferences-popup .modal-content .modal-footer .close {
  float: none;
  margin: 0 30px 0 0;
  display: inline-block;
  opacity: 1;
}

#manage-preferences-popup .modal-content .modal-footer .close-link {
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  cursor: pointer;
}

#manage-preferences-popup .modal-content .modal-footer .save {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}

#manage-preferences-popup .modal-content .modal-footer .save .btn, #manage-preferences-popup .modal-content .modal-footer .save .cookieAcceptBar .btn-accept-cookies, #manage-preferences-popup .modal-content .modal-footer .save .cookieAcceptBar .manage-preferences span, #manage-preferences-popup .modal-content .modal-footer .save .next-article .button-wrapper .read-more, .cookieAcceptBar #manage-preferences-popup .modal-content .modal-footer .save .btn-accept-cookies, .cookieAcceptBar .manage-preferences #manage-preferences-popup .modal-content .modal-footer .save span, .next-article .button-wrapper #manage-preferences-popup .modal-content .modal-footer .save .read-more {
  border: 0;
}

#manage-preferences-popup .overflow {
  overflow: visible;
}

.cookies-table {
  border: 1px solid #dbe1eb;
  border-collapse: collapse;
  table-layout: auto;
  margin-bottom: 0;
}

.cookies-table-wrapper {
  margin-top: 30px;
}

.cookies-table thead tr th {
  background-color: #f7f7f7;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  color: #656d79;
  text-align: left;
  padding: 8px 10px;
}

.cookies-table thead tr th:first-of-type {
  padding-right: 0;
}

.cookies-table tbody tr {
  border-bottom: 1px solid #dbe1eb;
}

.cookies-table tbody tr:last-of-type {
  border-bottom: 0;
}

.cookies-table tbody tr td {
  border: 0;
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
  color: #656d79;
  padding: 8px 10px;
  vertical-align: top;
  font-family: Roboto, sans-serif;
}

.cookies-table tbody tr td:first-of-type {
  min-width: 110px;
  font-weight: 700;
}

.cookies-table tbody tr td .cookiebot-modal-error {
  font-size: 13px;
  font-size: 0.8125rem;
  color: red;
  margin: 20px 0 -15px !important;
  vertical-align: middle;
  text-align: center;
}

.cookies-table tbody tr td .col {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.cookies-table tbody tr td .col label {
  display: flex;
  align-items: center;
  line-height: normal;
  margin-bottom: 8px;
  cursor: pointer;
}

.cookies-table tbody tr td .col label:last-of-type {
  margin-bottom: 0;
}

.cookies-table tbody tr td .col input[type=radio] {
  position: absolute;
  z-index: -1;
  filter: alpha(opacity=0);
  opacity: 0;
}

.cookies-table tbody tr td .col .cookiebot-radio-error {
  border-color: #ef4747;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #manage-preferences-popup .modal-content {
    max-height: 90%;
  }
}
@media only screen and (max-width: 767px) {
  #manage-preferences-popup .modal-content {
    max-height: 85%;
  }
  #manage-preferences-popup .modal-content .modal-header {
    padding: 30px 20px 5px;
  }
  #manage-preferences-popup .modal-content .modal-header .subtitle {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #manage-preferences-popup .modal-content .main-content {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px 20px 20px;
    margin-right: 6px;
    max-height: 398px;
  }
  #manage-preferences-popup .modal-content .modal-footer {
    padding: 15px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    box-sizing: border-box;
    flex-flow: row wrap;
  }
  #manage-preferences-popup .modal-content .modal-footer .save {
    display: inline-block;
  }
  #manage-preferences-popup .modal-content .modal-footer .cookiebot-footer-error {
    margin: 0 0 15px;
  }
  .cookies-table {
    overflow-y: scroll;
    display: block;
    border: 0;
    table-layout: auto;
    margin-bottom: 0;
  }
  .cookies-table-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-y: scroll;
    border: 1px solid #dbe1eb;
  }
}
@media only screen and (max-width: 359px) {
  #manage-preferences-popup .modal-content .modal-footer .close {
    margin-right: 10px;
  }
}
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
  #manage-preferences-popup .modal-content {
    height: 580px;
  }
}
.cqc-block {
  max-width: 205px;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  color: #282832;
  line-height: normal;
}

.cqc-block .bottom-block, .cqc-block .top-block {
  margin-right: 0 !important;
  display: flex;
}

.cqc-block .content {
  margin-left: auto;
}

.cqc-block .rating-label {
  font-size: 8px;
  font-size: 0.5rem;
  margin-right: 0 !important;
}

.cqc-block .rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cqc-block .rating .indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #458f00;
  border-radius: 100%;
  margin-right: 8px;
}

.cqc-block .rating .indicatorText {
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: aeonikbold, Arial, sans-serif;
  font-weight: 700;
}

.cqc-block .bottom-block {
  margin-top: 5px;
  flex-wrap: wrap;
}

.cqc-block .company-name {
  font-size: 12px;
  font-size: 0.75rem;
  margin-right: auto;
  line-height: normal;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
}

.cqc-block .inspection-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: 8px;
  font-size: 0.5rem;
  text-align: right;
  margin-left: auto;
}

.cqc-block .inspection-info .inspection-label {
  display: inline-block;
  width: 100%;
}

.cqc-block .report-button {
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #11dbab;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  margin-top: 5px;
}

.footer {
  padding: 60px 5px;
  background-color: #e7fcf7;
  -moz-border-top-left-radius: 90px;
  border-top-left-radius: 90px;
}

.footer .footer__subcription-block {
  display: block;
  text-align: center;
  color: #98a0af;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer.footer-backlink, .footer.footer-purchase {
  padding: 30px 0;
  background-color: #f7f7f7;
  border-top: 1px solid #eef1f6;
  border-radius: 0;
}

.footer.footer-backlink .rabatt-disclaimer, .footer.footer-purchase .rabatt-disclaimer {
  display: block;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  color: #656d79;
}

.footer.footer-backlink .copyright-text, .footer.footer-purchase .copyright-text {
  display: block;
  margin: 0 auto;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #98a0af;
}

.footer.footer-backlink-mobile .back-link, .footer.footer-backlink .back-link {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer.footer-backlink-mobile {
  background-color: #f7f7f7;
  margin-top: 6px;
  padding: 0 0 30px;
  border-radius: 0;
}

.footer.bg-white {
  background-color: #fff;
}

.footer.bg-white .copyright-text {
  color: #98a0af;
}

.footer .dok-logo {
  margin-bottom: 30px;
  text-align: center;
}

.footer .dok-logo img {
  width: 165px;
  height: 27px;
}

.footer__top {
  margin-bottom: 30px;
}

.footer__top--heading {
  position: relative;
  font-weight: 500;
  color: #0d2c54;
  margin: 0;
  cursor: pointer;
}

.footer__top--heading.show-links {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__top--heading.show-links .icon-chevron-down {
  margin-right: 5px;
  font-size: 14px;
  color: #11ddac;
  transition: all 0.25s ease-in-out;
}

.footer__top--heading.show-links.opened .icon-chevron-down {
  transform: rotate(180deg);
}

.footer__top--heading.show-links.opened ~ .footer__top--list {
  display: block;
}

.footer__top--list {
  margin-bottom: 11px;
  display: none;
}

.footer__top--list li {
  margin-bottom: 5px;
}

.footer__top--list li a, .footer__top--list li span {
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #656d79;
  display: inline-block;
}

.footer__top--list li a:hover, .footer__top--list li span:hover {
  text-decoration: none;
  color: #11ddac;
}

.footer__top--list li:last-of-type, .footer__top--list li:last-of-type a, .footer__top--list li:last-of-type span {
  margin-bottom: 0;
}

.footer__certificates .partners {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer__certificates .partners li {
  margin: 0 10px;
  flex: 1;
}

.footer__certificates .partners .headline {
  color: #0d2c54;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: Roboto, sans-serif;
  margin-bottom: 15px;
  display: block;
  text-align: center;
  word-break: break-word;
}

.footer__certificates .partners-text {
  color: #656d79;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  text-align: center;
}

.footer__certificates .partners .sprite {
  margin: auto;
}

.footer__certificates .partners .legit-script {
  margin-bottom: 15px;
}

.footer-links {
  border-bottom: 1px solid #c6f4e9;
}

.footer-links.top {
  border-top: 1px solid #c6f4e9;
}

.footer-certificates-heading {
  margin-top: 30px;
  color: #656d79;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-family: Roboto, sans-serif;
  margin-bottom: 20px;
}

.footer__methods--payment {
  margin: 0 -15px 20px 0;
}

.footer__methods--payment li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  height: 44px;
  min-width: 74px;
  border: 1px solid #c6f4e9;
  background-color: #fff;
  border-radius: 6px;
  margin: 0 10px 10px 0;
}

.footer__methods--secure li {
  margin-bottom: 20px;
  margin-left: 20px;
}

.footer__methods--secure li a {
  display: inline-block;
}

.footer .social {
  margin-bottom: 25px;
}

.footer .social li:not(:last-of-type) {
  margin-right: 30px;
}

.footer .social a {
  display: block;
  text-decoration: none;
  color: #0d2c54;
  transition: all 0.25s ease-in-out;
}

.footer .social a:hover {
  color: #11ddac;
}

.footer .social a .icon {
  font-size: 20px;
}

.footer .social a .icon-twitter {
  font-size: 17px;
}

.footer .region {
  margin-bottom: 30px;
}

.footer .region-info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .region-info .title {
  margin-right: 15px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #98a0af;
  font-weight: 700;
}

.footer .region-info .title span {
  font-family: Roboto, sans-serif;
  display: inline-block;
}

.footer .region .locales, .footer .region .locales-item {
  display: flex;
  align-items: center;
}

.footer .region .locales-item {
  margin-right: 15px;
}

.footer .region .locales-item a:after {
  display: none;
}

.footer .region .locales-item:last-of-type {
  margin-right: 0;
}

.footer .region .locales-item .sprite, .footer__bottom span {
  display: block;
}

.footer .copyright-disclaimer {
  font-family: Roboto, sans-serif;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #0d2c54;
  max-width: 285px;
  margin: 0 auto 25px;
}

.footer .copyright-text {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: #656d79;
  margin: 30px 0 15px;
  text-align: center;
}

.footer .copyright-text.footer__reorder-disclaimer {
  margin-bottom: 5px;
}

.footer .copyright-info {
  margin-bottom: 0;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
}

.checkout-step-prescription ~ .footer {
  background-color: #fff;
}

.blackout {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: #0d2c54;
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.2s ease-out;
}

.blackout.is-active {
  visibility: visible;
  filter: alpha(opacity=96);
  opacity: 0.96;
  z-index: 1101;
}

.blackout-light {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background-color: black;
  visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.2s ease-out;
}

.blackout-light.is-active {
  visibility: visible;
  filter: alpha(opacity=96);
  opacity: 0.3;
  z-index: 1101;
}

.footer__certificates .partners .regulation-links__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media only screen and (min-width: 768px) {
  .footer {
    padding: 60px 0 35px;
  }
  .footer .footer__subcription-block {
    text-align: right;
  }
  .footer .dok-logo {
    margin-bottom: 10px;
  }
  .footer .copyright-disclaimer {
    margin: 0 auto 15px;
  }
  .footer .copyright-text {
    margin: 0 0 15px;
  }
  .footer .copyright-text.footer__reorder-disclaimer {
    margin-bottom: 0;
  }
  .footer .social {
    margin-bottom: 20px;
  }
  .footer .region {
    margin-bottom: 0;
  }
  .footer .region .locales-item a:hover {
    text-decoration: none;
  }
  .footer .region .locales-item a:hover:after {
    display: none;
  }
  .footer__methods--secure li:nth-child(n+2) {
    margin-left: 25px;
  }
  .footer-links {
    padding: 0;
    border: 0;
  }
  .footer-links.top {
    border-top: 0;
  }
  .footer__top {
    margin-bottom: 0;
    padding: 0 15px;
  }
  .footer__top--header {
    padding-bottom: 30px;
    border-bottom: 1px solid #c6f4e9;
    margin-bottom: 30px;
  }
  .footer__top--heading {
    margin: 0 0 15px;
    font-weight: 500;
    cursor: text;
  }
  .footer__top--heading.show-links {
    padding: 0;
  }
  .footer__top--heading.show-links .icon {
    display: none;
  }
  .footer__top--list {
    margin: 0 0 30px;
    display: block;
  }
  .footer__top--list li a, .footer__top--list li span {
    font-family: Roboto, sans-serif;
  }
  .footer__certificates {
    padding: 30px 0 10px;
    border-top: 1px solid #c6f4e9;
  }
  .footer__certificates .partners {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
    justify-content: center;
  }
  .footer__certificates .partners li {
    margin: 0;
    flex: none;
  }
  .footer__certificates .partners .sprite {
    margin: 0;
  }
  .footer__certificates .partners-text, .footer__certificates .partners .regulation-links .headline {
    text-align: left;
  }
  .footer__certificates .partners .regulation-links div {
    margin-right: 15px;
  }
  .footer__certificates .partners .regulation-links div:last-of-type {
    margin-right: 0;
  }
  .footer__certificates .partners .legit-script {
    margin-bottom: 0;
  }
  .footer__methods--wrapper {
    padding: 30px 0 20px;
    border-top: 1px solid #c6f4e9;
  }
  .footer__methods--payment {
    margin: 0;
  }
  .footer__methods--payment li {
    border: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .footer {
    padding: 120px 0 90px;
  }
  .footer__top {
    padding: 0;
  }
  .footer__top--header {
    padding: 0;
    border: 0;
    margin-bottom: 40px;
  }
  .footer__top--list {
    margin: 0 0 40px;
  }
  .footer .copyright-disclaimer, .footer .dok-logo {
    text-align: left;
  }
  .footer .region-info {
    justify-content: flex-start;
  }
  .footer__certificates .partners li {
    display: flex;
    align-items: center;
  }
  .footer__certificates .partners li .headline {
    max-width: 130px;
    margin-right: 50px;
    text-align: left;
  }
  .footer__certificates .partners li.regulation-links .headline {
    max-width: inherit;
    margin: 0 50px 0 0;
  }
}
.sprite-main-adyen-bt-de {
  background-position: -887px -526px;
}

.sprite-main-adyen-bt-de, .sprite-main-adyen-bt-se {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 65px;
  height: 33px;
}

.sprite-main-adyen-bt-se {
  background-position: -887px -559px;
}

.sprite-main-adyen-bt-uk {
  background-position: -887px -592px;
  width: 65px;
}

.sprite-main-adyen-bt-uk, .sprite-main-adyen-cartes-bancaires {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  height: 33px;
}

.sprite-main-adyen-cartes-bancaires {
  background-position: -887px -493px;
  width: 67px;
}

.sprite-main-adyen-credit {
  background-position: -887px -625px;
}

.sprite-main-adyen-credit, .sprite-main-adyen-giropay {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 65px;
  height: 33px;
}

.sprite-main-adyen-giropay {
  background-position: -887px -658px;
}

.sprite-main-adyen-google-pay {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -815px -715px;
  width: 56px;
  height: 33px;
}

.sprite-main-adyen-klarna {
  background-position: -887px -691px;
}

.sprite-main-adyen-klarna, .sprite-main-adyen-maestro {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 65px;
  height: 33px;
}

.sprite-main-adyen-maestro {
  background-position: -887px -724px;
}

.sprite-main-adyen-paypal {
  background-position: -887px -757px;
  width: 65px;
  height: 33px;
}

.sprite-main-adyen-paypal, .sprite-main-axcessms {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-axcessms {
  background-position: -660px -329px;
  width: 60px;
  height: 30px;
}

.sprite-main-bank-transfer-fr-b-old {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -347px -596px;
  width: 182px;
  height: 40px;
}

.sprite-main-bank-transfer-fr-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -533px -651px;
  width: 81px;
  height: 21px;
}

.sprite-main-bank-transfer-fr-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -250px -231px;
  width: 160px;
  height: 80px;
}

.sprite-main-bank-transfer-fr-old {
  background-position: -203px -724px;
  width: 120px;
  height: 30px;
}

.sprite-main-bank-transfer-fr, .sprite-main-bank-transfer-fr-old {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-bank-transfer-fr {
  background-position: -614px -651px;
  width: 81px;
  height: 21px;
}

.sprite-main-bank-transfer-se-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -529px -596px;
  width: 182px;
  height: 40px;
}

.sprite-main-bank-transfer-se-lg {
  background-position: -410px 0;
  width: 160px;
  height: 80px;
}

.sprite-main-bank-transfer-se, .sprite-main-bank-transfer-se-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-bank-transfer-se {
  background-position: -570px -507px;
  width: 123px;
  height: 30px;
}

.sprite-main-bim {
  background-position: -480px -461px;
  width: 87px;
  height: 72px;
}

.sprite-main-bim, .sprite-main-box {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-box {
  background-position: -887px -120px;
  width: 55px;
  height: 54px;
}

.sprite-main-bt-short-uk {
  background-position: -935px -282px;
}

.sprite-main-bt-short, .sprite-main-bt-short-uk {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 32px;
  height: 32px;
}

.sprite-main-bt-short {
  background-position: -935px -343px;
}

.sprite-main-camera {
  background-position: -887px -402px;
  width: 55px;
  height: 43px;
}

.sprite-main-camera, .sprite-main-cards-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-cards-lg {
  background-position: -250px 0;
  width: 160px;
  height: 120px;
}

.sprite-main-cartes-bancaires-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -82px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-cartes-bancaires-lg {
  background-position: -410px -80px;
  width: 160px;
  height: 80px;
}

.sprite-main-cartes-bancaires, .sprite-main-cartes-bancaires-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-cartes-bancaires {
  background-position: -660px -359px;
  width: 60px;
  height: 30px;
}

.sprite-main-cash-delivery {
  background-position: -102px -724px;
  width: 101px;
  height: 50px;
}

.sprite-main-cash-delivery, .sprite-main-certificate {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-certificate {
  background-position: -887px -343px;
  width: 48px;
  height: 59px;
}

.sprite-main-chat-lg {
  background-position: -730px -157px;
  width: 72px;
  height: 72px;
}

.sprite-main-chat-lg, .sprite-main-chat-sm {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-chat-sm {
  background-position: -672px -80px;
  width: 42px;
  height: 42px;
}

.sprite-main-clock {
  background-position: -887px -282px;
  width: 48px;
  height: 61px;
}

.sprite-main-clock, .sprite-main-cod-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-cod-b {
  background-position: -163px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-cqc-dark {
  background-position: -404px -541px;
}

.sprite-main-cqc-dark, .sprite-main-cqc-light {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 172px;
  height: 55px;
}

.sprite-main-cqc-light {
  background-position: 0 -596px;
}

.sprite-main-creditcard-b {
  background-position: 0 -818px;
  width: 82px;
  height: 40px;
}

.sprite-main-creditcard-b, .sprite-main-creditcard-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-creditcard-lg {
  background-position: -410px -160px;
  width: 160px;
  height: 80px;
}

.sprite-main-creditcard {
  background-position: -660px -418px;
  width: 60px;
  height: 30px;
}

.sprite-main-creditcard, .sprite-main-de_cod-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-de_cod-lg {
  background-position: -410px -240px;
  width: 160px;
  height: 80px;
}

.sprite-main-de_cod {
  background-position: -887px -820px;
  width: 61px;
  height: 31px;
}

.sprite-main-de_cod, .sprite-main-de_klarna-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-de_klarna-b {
  background-position: -244px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-de_klarna-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: 0 -381px;
  width: 160px;
  height: 80px;
}

.sprite-main-de_klarna {
  background-position: -815px -436px;
}

.sprite-main-de_klarna, .sprite-main-de_paypal {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 61px;
  height: 31px;
}

.sprite-main-de_paypal {
  background-position: -815px -467px;
}

.sprite-main-de_uberweisung {
  background-position: -815px -498px;
  width: 61px;
  height: 31px;
}

.sprite-main-de_uberweisung, .sprite-main-Deutsch {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-Deutsch {
  background-position: -942px -126px;
  width: 69px;
  height: 26px;
}

.sprite-main-dhl-express {
  background-position: -815px -529px;
}

.sprite-main-dhl-express, .sprite-main-dhl-packstation {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 61px;
  height: 31px;
}

.sprite-main-dhl-packstation {
  background-position: -815px -560px;
}

.sprite-main-dmca-footer {
  background-position: 0 -724px;
  width: 102px;
  height: 52px;
}

.sprite-main-dmca, .sprite-main-dmca-footer {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-dmca {
  background-position: -730px -661px;
  width: 85px;
  height: 43px;
}

.sprite-main-dpo {
  background-position: -172px -596px;
  width: 175px;
  height: 44px;
}

.sprite-main-dpo, .sprite-main-dr-hasan-bigger {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-dr-hasan-bigger {
  background-position: 0 0;
  width: 250px;
  height: 381px;
}

.sprite-main-dr-hasan-ev {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -250px -120px;
  width: 123px;
  height: 111px;
}

.sprite-main-English {
  background-position: -948px -183px;
}

.sprite-main-English, .sprite-main-français {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 25px;
  height: 26px;
}

.sprite-main-français {
  background-position: -950px -155px;
}

.sprite-main-giropay-b {
  background-position: -325px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-giropay-b, .sprite-main-giropay-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-giropay-lg {
  background-position: -160px -381px;
  width: 160px;
  height: 80px;
}

.sprite-main-googlepay-b, .sprite-main-googlepay-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-googlepay-lg {
  background-position: -320px -381px;
  width: 160px;
  height: 80px;
}

.sprite-main-giropay {
  background-position: -815px -591px;
  width: 61px;
  height: 31px;
}

.sprite-main-giropay, .sprite-main-google-pay-b, .sprite-main-apple-pay-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-google-pay-b {
  background-position: -406px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-apple-pay-b {
  background-position: -135px -910px;
  width: 60px;
  height: 40px;
}

.sprite-main-google-pay-lg {
  background-position: -320px -381px;
  width: 160px;
  height: 80px;
}

.sprite-main-apple-pay-lg {
  background-position: -2px -1002px;
  width: 160px;
  height: 102px;
}

.sprite-main-google-pay, .sprite-main-apple-pay, .sprite-main-google-pay-lg, .sprite-main-apple-pay-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-google-pay {
  background-position: -815px -622px;
  width: 61px;
  height: 31px;
}

.sprite-main-apple-pay {
  background-position: -210px -910px;
  width: 44px;
  height: 27px;
}

.sprite-main-HealthRevs {
  background-position: -341px -651px;
  width: 192px;
  height: 28px;
}

.sprite-main-HealthRevs, .sprite-main-heydata-reg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-heydata-reg {
  background-position: -887px -174px;
  width: 55px;
  height: 54px;
}

.sprite-main-heydata {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -570px -80px;
  width: 102px;
  height: 105px;
}

.sprite-main-ico {
  background-position: -570px -261px;
  height: 68px;
}

.sprite-main-ico, .sprite-main-klarna-ch {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 120px;
}

.sprite-main-klarna-ch {
  background-position: -410px -320px;
  height: 60px;
}

.sprite-main-legitscript {
  background-position: 0 -651px;
  width: 100px;
  height: 73px;
}

.sprite-main-legitscript, .sprite-main-logo {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-logo {
  background-position: -887px -445px;
  width: 48px;
  height: 48px;
}

.sprite-main-maestro-b {
  background-position: -487px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-maestro-b, .sprite-main-maestro-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-maestro-lg {
  background-position: 0 -461px;
  width: 160px;
  height: 80px;
}

.sprite-main-maestro {
  background-position: -660px -448px;
  width: 60px;
  height: 30px;
}

.sprite-main-maestro, .sprite-main-mail-sm {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-mail-sm {
  background-position: -672px -122px;
  width: 42px;
  height: 42px;
}

.sprite-main-message {
  background-position: -815px -320px;
  width: 58px;
  height: 58px;
}

.sprite-main-message, .sprite-main-mhra-nl {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-mhra-nl {
  background-position: -480px -381px;
  width: 86px;
  height: 73px;
}

.sprite-main-monitor {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -815px -378px;
  width: 58px;
  height: 58px;
}

.sprite-main-original_med_de {
  background-position: -570px -329px;
}

.sprite-main-original_med_de, .sprite-main-original_med_uk {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 90px;
  height: 89px;
}

.sprite-main-original_med_uk {
  background-position: -570px -418px;
}

.sprite-main-paypal-b {
  background-position: -568px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-paypal-b, .sprite-main-paypal-ch {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-paypal-ch {
  background-position: -250px -311px;
  width: 120px;
  height: 60px;
}

.sprite-main-paypal-lg {
  background-position: -160px -461px;
  width: 160px;
  height: 80px;
}

.sprite-main-paypal, .sprite-main-paypal-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-paypal {
  background-position: -887px -40px;
  width: 80px;
  height: 40px;
}

.sprite-main-pci {
  background-position: -570px -185px;
  width: 121px;
  height: 76px;
}

.sprite-main-pci, .sprite-main-phone-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-goldsponsor {
  background-image: url(/img_v4/sprite-main/Goldsponsor.png);
  width: 150px;
  height: 121px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}

.sprite-main-phone-lg {
  background-position: -730px -229px;
  width: 72px;
  height: 72px;
}

.sprite-main-phone-sm {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: 0 -858px;
  width: 42px;
  height: 42px;
}

.sprite-main-prescribe {
  background-position: -815px -205px;
  width: 60px;
}

.sprite-main-prescribe, .sprite-main-prescribing {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  height: 61px;
}

.sprite-main-prescribing {
  background-position: -815px -144px;
  width: 61px;
}

.sprite-main-quotes {
  background-position: -815px -748px;
  width: 36px;
  height: 27px;
}

.sprite-main-quotes, .sprite-main-registered-pharmacy {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-registered-pharmacy {
  background-position: -84px -776px;
  width: 91px;
  height: 37px;
}

.sprite-main-result-rejected {
  background-position: -730px -301px;
  width: 72px;
  height: 72px;
}

.sprite-main-result-rejected, .sprite-main-royal-mail-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-royal-mail-b {
  background-position: -649px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-royal-mail-lg {
  background-position: -320px -461px;
  width: 160px;
  height: 80px;
}

.sprite-main-royal-mail, .sprite-main-royal-mail-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-royal-mail {
  background-position: -323px -724px;
  width: 60px;
  height: 30px;
}

.sprite-main-sdg-dark {
  background-position: 0 -541px;
}

.sprite-main-sdg-dark, .sprite-main-sdg-light {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 202px;
  height: 55px;
}

.sprite-main-sdg-light {
  background-position: -202px -541px;
}

.sprite-main-sended {
  background-position: -730px -373px;
}

.sprite-main-sended, .sprite-main-step-1 {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 72px;
  height: 72px;
}

.sprite-main-step-1 {
  background-position: -730px -445px;
}

.sprite-main-step-2 {
  background-position: -730px -517px;
}

.sprite-main-step-2, .sprite-main-step-3-fr {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 72px;
  height: 72px;
}

.sprite-main-step-3-fr {
  background-position: -730px -589px;
}

.sprite-main-step-3 {
  background-position: -730px -85px;
  width: 73px;
  height: 72px;
}

.sprite-main-step-3, .sprite-main-tp-about {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-tp-about {
  background-position: -100px -651px;
  width: 121px;
  height: 56px;
}

.sprite-main-tp-reg {
  background-position: -576px -541px;
  width: 118px;
  height: 54px;
}

.sprite-main-tp-reg, .sprite-main-tr-list {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-tr-list {
  background-position: -815px 0;
  width: 72px;
  height: 72px;
}

.sprite-main-track {
  background-position: -815px -266px;
  width: 65px;
  height: 54px;
}

.sprite-main-track, .sprite-main-transfer-b {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-transfer-b {
  background-position: -730px -818px;
  width: 81px;
  height: 40px;
}

.sprite-main-trusted-logo {
  background-position: -730px 0;
  width: 85px;
  height: 85px;
}

.sprite-main-trusted-logo, .sprite-main-trusted-shop-text {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-trusted-shop-text {
  background-position: -221px -651px;
  width: 120px;
  height: 49px;
}

.sprite-main-trusted-shops {
  background-position: -887px -228px;
  width: 55px;
  height: 54px;
}

.sprite-main-trusted-shops, .sprite-main-trustpilot-logo {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-trustpilot-logo {
  background-position: -730px -704px;
  width: 83px;
  height: 19px;
}

.sprite-main-uberweisung-lg {
  background-position: -570px 0;
  width: 160px;
  height: 80px;
}

.sprite-main-uberweisung, .sprite-main-uberweisung-lg {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-uberweisung {
  background-position: -887px 0;
  width: 81px;
  height: 40px;
}

.sprite-main-uk_cod {
  background-position: -815px -653px;
}

.sprite-main-uk_cod, .sprite-main-uk_wiretransfer {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  width: 61px;
  height: 31px;
}

.sprite-main-uk_wiretransfer {
  background-position: -815px -684px;
}

.sprite-main-ups-sm {
  background-position: -887px -790px;
  width: 68px;
  height: 30px;
}

.sprite-main-ups, .sprite-main-ups-sm {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-ups {
  background-position: -887px -80px;
  width: 80px;
  height: 40px;
}

.sprite-main-whatsapp-lg {
  background-position: -815px -72px;
  width: 72px;
  height: 72px;
}

.sprite-main-whatsapp-lg, .sprite-main-whatsapp-sm {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
}

.sprite-main-whatsapp-sm {
  background-position: -42px -858px;
  width: 42px;
  height: 42px;
}

.sprite-main-wire {
  background-image: url(/img_v4/spritesmith/sprite-main.4423ce.png.webp);
  background-position: -383px -724px;
  width: 60px;
  height: 30px;
}

.sprite-main-sanco-logo {
  background-image: url(/img_v4/sprite-main/LogoSancoInternet.png);
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.carousel-b-test {
  margin: 80px auto;
  overflow: hidden;
  display: flex;
  width: 100%;
}

.carousel-b-test-mob {
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  width: 100%;
}

.group-b-test,
.group-b-test-mob {
  display: flex;
  will-change: transform;
  gap: 60px;
}

.carousel-animation {
  animation: scrolling 30s linear infinite;
}

.manufacture-img-card,
.manufacture-img-card-mob {
  height: 150px;
  width: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.target-hidden-carousel {
  display: none;
}

.behandlungen-manufactures-title {
  width: 380px;
  color: #0d2c54;
  font-family: Poppins;
  line-height: 48px;
  font-weight: 700;
  font-size: 32px;
  margin: 50px auto 5px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__top .order-md-4 {
    display: none;
  }
  .carousel-b-test {
    margin: 0 auto;
    height: 80px;
  }
  .carousel-b-test-mob {
    display: flex;
    height: 80px;
  }
  .manufacture-img-card,
  .manufacture-img-card-mob {
    height: 50px;
    width: 165px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .group-b-test,
  .group-b-test-mob {
    display: flex;
    will-change: transform;
    gap: 0;
  }
  .target-hidden-carousel {
    display: flex;
  }
  .carousel-animation-mob {
    animation: scrolling 30s linear infinite;
  }
  .behandlungen-manufactures-title {
    width: 375px;
    height: 36px;
    font-size: 24px;
    line-height: 36px;
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@keyframes scrolling {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.one_a_pharma {
  background-image: url(/img_v4/common/manufactures/one_a_pharma.png);
}

.avaay_medical {
  background-image: url(/img_v4/common/manufactures/avaay_medical.png);
}

.bedrocan {
  background-image: url(/img_v4/common/manufactures/bedrocan.png);
}

.cannamedical {
  background-image: url(/img_v4/common/manufactures/cannamedical.png);
}

.cantourage {
  background-image: url(/img_v4/common/manufactures/cantourage.png);
}

.demecan {
  background-image: url(/img_v4/common/manufactures/demecan.png);
}

.four_twenty_pharma {
  background-image: url(/img_v4/common/manufactures/four_twenty_pharma.png);
}

.hexal {
  background-image: url(/img_v4/common/manufactures/hexal.png);
}

.ratiopharm {
  background-image: url(/img_v4/common/manufactures/ratiopharm.png);
}

.medizinisches_b_test {
  background-image: url(/img_v4/common/cannabis_img/medizinisches_b_test.png);
}</pre></body></html>