@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
.noscroll {
  overflow: hidden;
}

.amount-counter {
  display: flex;
  border: 1px solid #e0e0e0;
}
.amount-counter > * {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.amount-counter__increase img, .amount-counter__decrease img {
  width: 16px;
}
.amount-counter__value {
  outline: none;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-bottom: none;
}
@media screen and (max-width: 400px) {
  .amount-counter > * {
    width: 24px;
    height: 24px;
  }
  .amount-counter__value {
    font-size: 12px;
    line-height: normal;
  }
}

.progressbar {
  width: 100%;
  height: 10px;
  border-radius: 30px;
  background: #F2F2F2;
}
.progressbar.done .progressbar-value {
  border-radius: inherit;
  background: #0FD32F;
}
.progressbar.done .progressbar-marker {
  display: none;
}
.progressbar-value {
  height: 100%;
  width: var(--progress-value);
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  background: #FFB800;
  position: relative;
}
.progressbar-marker {
  position: absolute;
  right: 0;
  top: 50%;
  translate: 50% -50%;
  width: 3px;
  height: 16px;
  background: #000;
}

.iti {
  --iti-border-color: #7a7a7a;
  --iti-arrow-color: #000000;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 12px;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}
.iti > input {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  background: transparent;
  width: 100%;
  padding: 0;
  outline: none;
  border: none;
}
.iti > input::placeholder {
  opacity: 0.4;
}
.iti__dropdown-content {
  width: 100%;
}
.iti__tel-input {
  width: 100%;
}
.iti__flag {
  scale: 1.3;
}
.iti__arrow {
  border: none;
  height: fit-content;
  width: fit-content;
}
.iti__arrow:before {
  content: " ";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("../../assets/icons/chevron-down.svg");
  background-size: cover;
}
.iti__country-container {
  padding: 0;
}
.iti__selected-country-primary {
  --iti-arrow-padding: 14px;
  --iti-spacer-horizontal: 14px;
  border-right: 1px solid #7a7a7a;
}
.iti__selected-dial-code {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-left: 12px !important;
}
.iti__search-input {
  outline: none;
  padding: 8px 12px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.modal-basket {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.modal-basket ::-webkit-scrollbar {
  width: 6px;
}
.modal-basket ::-webkit-scrollbar-track {
  background: #f2f2f2;
}
.modal-basket ::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.modal-basket ::-webkit-scrollbar-thumb:hover {
  background: #6e6e6e;
}
.modal-basket_active {
  opacity: 1;
  pointer-events: all;
}
.modal-basket_smallamountitems .modal-basket__suggestionsmob_desktop {
  display: block;
}
.modal-basket_smallamountitems .modal-basket__sugg {
  display: none;
}
.modal-basket__container {
  --container-margin: 28px;
  --container-padding: 40px;
  max-height: calc(100dvh - 2 * var(--container-margin));
  overflow: auto;
  padding: 0;
  background: #fff;
}
.modal-basket__content {
  padding: var(--container-padding);
  padding-top: 0;
  padding-bottom: 0;
}
.modal-basket__layout {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.modal-basket__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-basket__header-content {
  display: flex;
  gap: 20px;
}
.modal-basket__header-wrapper {
  padding: var(--container-padding);
  padding-bottom: 24px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
}
.modal-basket__showall {
  display: none;
}
.modal-basket__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 18px;
  color: #333333;
}
.modal-basket__amount {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 18px;
  line-height: 21px;
  margin-top: 1px;
  color: #000000;
}
.modal-basket__exit {
  background: none;
  outline: none;
  border: none;
  padding: 0;
}
.modal-basket__exit img {
  width: 20px;
}
.modal-basket__clear {
  display: none;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.modal-basket__clear span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__clear:hover {
  text-decoration: none;
}
.modal-basket__grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px 10px;
}
.modal-basket__list {
  grid-column: 1/9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-basket__item {
  width: 100%;
  border: 1px solid #e0e0e0;
  position: relative;
  padding: 10px;
  padding-right: 30px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
.modal-basket__item_failed {
  border: 2px dashed #d11616;
}
.modal-basket__item_failed .modal-basket__item-status span {
  color: #d11616;
}
.modal-basket__item_deleting {
  border-style: solid;
  border-color: #d11616;
}
.modal-basket__item_deleting .modal-basket__item-deletion {
  opacity: 1;
  pointer-events: all;
}
.modal-basket__item_hidden {
  display: none;
}
.modal-basket__item-deletion {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.modal-basket__item-deletion-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-basket__item-deletion-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__item-deletion-manipulators {
  margin-top: 16px;
  display: flex;
  gap: 40px;
}
.modal-basket__item-deletion-manipulators > * {
  text-decoration: none !important;
  background: none;
  outline: none;
  border: none;
  padding: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__item-deletion-manipulators > *.yes {
  font-weight: 500;
}
.modal-basket__item-deletion-manipulators > *:hover, .modal-basket__item-deletion-manipulators > *:focus, .modal-basket__item-deletion-manipulators > *:active {
  color: #000000;
}
.modal-basket__item-img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.modal-basket__item-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.modal-basket__item-main {
  margin-left: 10px;
}
.modal-basket__item-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__item-price {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  display: flex;
  gap: 10px;
}
.modal-basket__item-price .prev {
  text-decoration: line-through;
}
.modal-basket__item-price .new {
  color: #e51616;
}
.modal-basket__item-status {
  margin-top: 16px;
  display: none;
  gap: 5px;
}
.modal-basket__item-status img {
  width: 14px;
}
.modal-basket__item-status span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000000;
}
.modal-basket__item-additional {
  display: flex;
  align-items: start;
}
.modal-basket__item-pricing {
  display: flex;
  align-items: center;
}
.modal-basket__item-counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-basket__item-unit {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__item-total {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-left: 40px;
}
.modal-basket__item-manipulators {
  margin-left: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.modal-basket__item-manipulators a,
.modal-basket__item-manipulators button {
  background: none;
  outline: none;
  border: none;
  display: flex;
}
.modal-basket__item-manipulators a img,
.modal-basket__item-manipulators a svg,
.modal-basket__item-manipulators button img,
.modal-basket__item-manipulators button svg {
  width: 24px;
  transition: all 0.3s;
}
.modal-basket__item-manipulators a.heart svg,
.modal-basket__item-manipulators button.heart svg {
  fill: transparent;
}
.modal-basket__item-manipulators a.heart.active svg,
.modal-basket__item-manipulators button.heart.active svg {
  fill: black;
}
.modal-basket__item-manipulators a.heart:hover:not(.active) svg,
.modal-basket__item-manipulators button.heart:hover:not(.active) svg {
  fill: #5a5a5a;
}
.modal-basket__item-manipulators a.heart:hover:not(.active) svg path,
.modal-basket__item-manipulators button.heart:hover:not(.active) svg path {
  stroke: #5a5a5a;
}
.modal-basket__item-manipulators a.delete,
.modal-basket__item-manipulators button.delete {
  background: none;
  outline: none;
  border: none;
  padding: 0;
}
.modal-basket__item-manipulators a.heart,
.modal-basket__item-manipulators button.heart {
  display: none;
}
.modal-basket__suggestions {
  padding: 10px;
  border-left: 1px solid #e0e0e0;
  grid-column: 9/13;
}
.modal-basket__suggestions-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 18px;
  color: #333333;
}
.modal-basket__suggestions-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.modal-basket__suggestions-item {
  padding: 10px;
  padding-bottom: 12px;
  position: relative;
}
.modal-basket__suggestions-item-img {
  display: block;
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}
.modal-basket__suggestions-item-title {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
.modal-basket__suggestions-item-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-basket__suggestions-item-price {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__suggestions-item-link {
  display: flex;
  padding: 4px 6px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}
.modal-basket__suggestions-item-link:hover {
  background: #5a5a5a;
}
.modal-basket__suggestions-item-link img {
  width: 16px;
}
.modal-basket__suggestions-item-heart {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
}
.modal-basket__suggestions-item-heart svg {
  width: 24px;
  transition: all 0.3s;
}
.modal-basket__suggestions-item-heart:hover:not(.active) svg {
  fill: #5a5a5a;
}
.modal-basket__suggestions-item-heart:hover:not(.active) svg path {
  stroke: #5a5a5a;
}
.modal-basket__suggestions-item-heart.active svg {
  fill: black;
}
.modal-basket__aside {
  grid-column: 9/13;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: fit-content;
  position: sticky;
  top: 90px;
}
.modal-basket__payment {
  position: relative;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #e0e0e0;
  grid-column: 1/13;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.modal-basket__payment-first {
  grid-column: 1/9;
}
.modal-basket__promo {
  display: flex;
  gap: 10px;
}
.modal-basket__promo > * {
  width: 100%;
}
.modal-basket__promo-item {
  padding: 20px;
  border: 1px solid #e0e0e0;
}
.modal-basket__freedelivery {
  height: fit-content;
}
.modal-basket__freedelivery-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
.modal-basket__freedelivery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}
.modal-basket__freedelivery-bottom {
  min-width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-basket__freedelivery-img {
  display: none;
  width: 60px;
}
.modal-basket__freedelivery-goal {
  min-width: fit-content;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__freedelivery-progress {
  margin-top: 4px;
}
.modal-basket__redeem-accordion {
  margin: 0;
}
.modal-basket__redeem-accordion .panel {
  border: none !important;
  margin-top: 15px !important;
}
.modal-basket__redeem-accordion .panel:nth-child(1) {
  margin-top: 0 !important;
}
.modal-basket__redeem-accordion .panel-title {
  border: none !important;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  display: flex;
  justify-content: space-between;
}
.modal-basket__redeem-accordion .panel-title .marker {
  transition: all 0.3s;
  rotate: 180deg;
}
.modal-basket__redeem-accordion .panel-title:hover, .modal-basket__redeem-accordion .panel-title:active, .modal-basket__redeem-accordion .panel-title:focus {
  text-decoration: none;
}
.modal-basket__redeem-accordion .panel-title.collapsed .marker {
  rotate: 0deg;
}
.modal-basket__redeem-accordion .panel-title .tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
  border: none;
}
.modal-basket__redeem-accordion .panel-title .tooltip-arrow {
  display: none;
}
.modal-basket__redeem-accordion .panel-title .tooltip-inner {
  max-width: none;
  border: none;
  background: #ffffff;
  padding: 20px;
  border-radius: 0;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  text-align: left;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.modal-basket__redeem-accordion .panel-heading {
  padding: 0;
  border: none !important;
}
.modal-basket__redeem-accordion .panel-collapse {
  border: none !important;
}
.modal-basket__redeem-accordion .panel-body {
  padding: 0;
  padding-top: 10px;
  border: none !important;
}
.modal-basket__redeem-accordion .panel-body form {
  display: flex;
  gap: 5px;
}
.modal-basket__redeem-accordion .panel-body form .input {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 12px;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}
.modal-basket__redeem-accordion .panel-body form .input > input {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  background: transparent;
  width: 100%;
  padding: 0;
  outline: none;
  border: none;
}
.modal-basket__redeem-accordion .panel-body form .input > input::placeholder {
  opacity: 0.4;
}
.modal-basket__redeem-accordion .panel-body form .input img {
  display: none;
}
.modal-basket__redeem-accordion .panel-body form .input.success img {
  display: block;
}
.modal-basket__redeem-accordion .panel-body form button {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
}
.modal-basket__redeem-accordion .panel-body form button:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .modal-basket__redeem-accordion .panel-body form button {
    padding: 12px 20px;
  }
}
.modal-basket__redeem-accordion .panel-body form:invalid:not(.success) button {
  cursor: not-allowed;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.5);
}
.modal-basket__redeem-accordion .panel-body form:invalid:not(.success) button:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .modal-basket__redeem-accordion .panel-body form:invalid:not(.success) button {
    padding: 12px 20px;
  }
}
.modal-basket__redeem-accordion .panel-body form:invalid:not(.success) button:hover {
  background: #f3f3f3;
  color: rgba(0, 0, 0, 0.5);
}
.modal-basket__redeem-accordion .panel-body form.success .input {
  border-color: #24a941;
  background: #e9fded;
}
.modal-basket__redeem-accordion .panel-body form.success .input img {
  display: block;
}
.modal-basket__redeem-accordion .panel-body .error {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: #cf0000;
  display: none;
  margin-top: 2px;
}
.modal-basket__redeem-accordion .panel-body .error.show {
  display: block;
}
.modal-basket__continue {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  width: fit-content;
  margin-top: auto;
}
.modal-basket__continue:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .modal-basket__continue {
    padding: 12px 20px;
  }
}
.modal-basket__continue:hover {
  background: #f1f3f7;
}
.modal-basket__finish {
  grid-column: 9/13;
  background: #f0f2f8;
  padding: 20px;
}
.modal-basket__finish-punct {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-basket__finish-punct:nth-child(1) {
  margin-top: 0;
}
.modal-basket__finish-punct-name {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__finish-punct-value {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__finish-total {
  margin-top: 40px;
}
.modal-basket__finish-total .modal-basket__finish-punct-value {
  font-size: 24px;
  line-height: 20px;
}
.modal-basket__finish-redirects {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-basket__finish-redirects > a:nth-child(1) {
  margin-top: 0;
}
.modal-basket__finish-redirects > a img {
  margin-left: 10px;
  width: 20px;
}
.modal-basket__finish-redirects > a.white {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid #000;
  background: #fff;
  color: #000;
}
.modal-basket__finish-redirects > a.white:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .modal-basket__finish-redirects > a.white {
    padding: 12px 20px;
  }
}
.modal-basket__finish-redirects > a.white:hover {
  background: #f1f3f7;
}
.modal-basket__finish-redirects > a.black {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
}
.modal-basket__finish-redirects > a.black:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .modal-basket__finish-redirects > a.black {
    padding: 12px 20px;
  }
}
.modal-basket__suggestionsmob {
  display: none;
}
.modal-basket__suggestionsmob_desktop {
  margin-top: 20px;
  border: 1px solid #e0e0e0;
  padding: 20px;
}
.modal-basket__suggestionsmob_desktop .modal-basket__slider-item {
  border: 1px solid #e0e0e0;
}
.modal-basket__seen {
  margin: var(--container-padding);
  margin-top: 40px;
  padding: 20px;
  background: #f1f3f7;
}
.modal-basket__seen-title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 18px;
  color: #333333;
}
.modal-basket__slider {
  margin-top: 12px;
  position: relative;
}
.modal-basket__slider .owl-nav > * {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9183a7;
  outline: none;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.modal-basket__slider .owl-nav > * img {
  filter: brightness(0) invert(1);
}
.modal-basket__slider .owl-nav > *.disabled {
  display: none;
}
.modal-basket__slider .owl-prev {
  left: 0;
  translate: -50%;
}
.modal-basket__slider .owl-prev img {
  rotate: 90deg;
}
.modal-basket__slider .owl-next {
  right: 0;
  translate: 50%;
}
.modal-basket__slider .owl-next img {
  rotate: 270deg;
}
.modal-basket__slider-item {
  background: #fff;
  padding: 20px;
  position: relative;
}
.modal-basket__slider-item-img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto;
}
.modal-basket__slider-item-title {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  color: #000000;
}
.modal-basket__slider-item-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-basket__slider-item-price {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.modal-basket__slider-item-link {
  display: flex;
  padding: 9px 12px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}
.modal-basket__slider-item-link:hover {
  background: #5a5a5a;
}
.modal-basket__slider-item-link img {
  width: 16px;
}
.modal-basket__slider-item-heart {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
}
.modal-basket__slider-item-heart svg {
  width: 32px;
  transition: all 0.3s;
}
.modal-basket__slider-item-heart:hover:not(.active) svg {
  fill: #5a5a5a;
}
.modal-basket__slider-item-heart:hover:not(.active) svg path {
  stroke: #5a5a5a;
}
.modal-basket__slider-item-heart.active svg {
  fill: black;
}
@media screen and (max-width: 1200px) {
  .modal-basket__container {
    --container-padding: 36px 32px;
  }
  .modal-basket__item-total {
    margin-left: 20px;
  }
  .modal-basket__item-manipulators {
    margin-left: 24px;
  }
}
@media screen and (max-width: 992px) {
  .modal-basket__container {
    --container-margin: 20px;
  }
  .modal-basket__list {
    grid-column: 1/8;
  }
  .modal-basket__suggestions {
    grid-column: 8/13;
  }
  .modal-basket__aside {
    grid-column: 8/13;
  }
  .modal-basket__item {
    padding: 10px;
  }
  .modal-basket__item-content {
    flex-direction: column;
    margin-left: 10px;
  }
  .modal-basket__item-main {
    margin-left: 0;
  }
  .modal-basket__item-total {
    display: none;
  }
  .modal-basket__item-manipulators {
    flex-direction: row-reverse;
  }
  .modal-basket__item-status {
    margin-top: 10px;
  }
  .modal-basket__item-additional {
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
  }
  .modal-basket__payment-first {
    grid-column: 1/13;
  }
  .modal-basket__finish {
    grid-column: 1/13;
  }
  .modal-basket__finish-redirects > a.black {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 768px) {
  .modal-basket__container {
    --container-margin: 0px;
    --container-padding: 24px;
  }
  .modal-basket__header {
    padding-bottom: 16px;
    border-bottom: 1px solid #e4e4e4;
  }
  .modal-basket__header-wrapper {
    padding-bottom: 0;
  }
  .modal-basket__clear {
    margin: 16px 0;
  }
  .modal-basket__clear-wrapper {
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 10px;
  }
  .modal-basket__suggestions {
    display: none;
  }
  .modal-basket__aside {
    position: static;
    margin-top: 20px;
    grid-column: 1/-1;
  }
  .modal-basket__grid {
    gap: 0;
  }
  .modal-basket__continue {
    display: none;
  }
  .modal-basket__list {
    grid-column: 1/13;
  }
  .modal-basket__item {
    padding: 20px 0;
    border: none;
    border-bottom: 1px solid #e4e4e4;
  }
  .modal-basket__showall {
    display: block;
    background: none;
    outline: none;
    border: none;
    padding: 0;
    margin-top: 20px;
    min-width: max-content;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
  }
  .modal-basket__showall.hidden {
    display: none;
  }
  .modal-basket__payment {
    margin-top: 30px;
    border: none;
    padding: 0;
  }
  .modal-basket__promo {
    flex-direction: column-reverse;
  }
  .modal-basket__redeem-accordion .panel-body label {
    width: 100%;
  }
  .modal-basket__finish_fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
  }
  .modal-basket__finish_fixed-punct:not(.modal-basket__finish-total) {
    display: none;
  }
  .modal-basket__finish_fixed-total {
    margin-top: 0;
  }
  .modal-basket__suggestionsmob {
    margin-top: 30px;
    display: block;
  }
  .modal-basket__suggestionsmob_desktop {
    display: none !important;
  }
  .modal-basket__sugg {
    display: none;
  }
  .modal-basket__seen {
    margin: 0;
    margin-top: 30px;
    margin-bottom: -1px;
    padding: 0;
    padding-top: 20px;
  }
  .modal-basket__seen-title {
    margin: 0 20px;
  }
  .modal-basket__slider .owl-stage-outer {
    padding: 0px 20px;
  }
  .modal-basket__slider .owl-nav {
    display: none;
  }
  .modal-basket__slider-item {
    width: 100%;
    padding: 10px;
    padding-bottom: 12px;
  }
  .modal-basket__freedelivery-head {
    display: block;
  }
  .modal-basket__freedelivery-bottom {
    margin-top: 10px;
  }
  .modal-basket__freedelivery-img {
    display: initial;
  }
}
@media screen and (max-width: 400px) {
  .modal-basket__container {
    --container-padding: 20px;
  }
  .modal-basket__header {
    padding-bottom: 12px;
  }
  .modal-basket__header-content {
    gap: 16px;
  }
  .modal-basket__title {
    font-size: 24px;
  }
  .modal-basket__amount {
    font-size: 16px;
  }
  .modal-basket__clear {
    margin: 10px 0;
    gap: 8px;
  }
  .modal-basket__clear img {
    width: 20px;
  }
  .modal-basket__clear span {
    font-size: 14px;
  }
  .modal-basket__item-img {
    width: 80px;
    height: 80px;
  }
  .modal-basket__item-title {
    font-size: 14px;
    line-height: normal;
  }
  .modal-basket__item-price {
    font-size: 14px;
    line-height: normal;
  }
  .modal-basket__item-unit {
    font-size: 12px;
  }
  .modal-basket__showall {
    display: block;
    background: none;
    outline: none;
    border: none;
    padding: 0;
    margin-top: 20px;
    min-width: max-content;
    font-family: "Roboto";
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
  }
  .modal-basket__showall.hidden {
    display: none;
  }
  .modal-basket__slider-item-heart {
    display: none;
  }
  .modal-basket__slider-item-link {
    padding: 4px 6px;
  }
  .modal-basket__slider-item-price {
    font-size: 14px;
  }
  .modal-basket__slider-item-title {
    font-size: 14px;
  }
}

.page-checkout {
  background: #efefef;
}
.page-checkout-title {
  margin-top: 32px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 44px;
  color: #333333;
  text-align: center;
}
.page-checkout-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-checkout-forms {
  grid-column: 1/9;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-checkout-form {
  width: 100%;
  padding: 40px;
  background: #fdfdfd;
}
.page-checkout-form__submit {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
  margin-top: 20px;
  padding: 24px 0;
  text-align: center;
  width: 50%;
}
.page-checkout-form__submit:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .page-checkout-form__submit {
    padding: 12px 20px;
  }
}
@media screen and (max-width: 1200px) {
  .page-checkout-form__submit {
    width: fit-content;
    padding: 20px 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-checkout-form__submit {
    padding: 16px 32px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .page-checkout-form__submit {
    padding: 16px;
  }
}
.page-checkout-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-checkout-form__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: #333333;
}
.page-checkout-form__change {
  display: none;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}
.page-checkout-form__change img {
  width: 24px;
}
.page-checkout-form__results {
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 15px;
}
.page-checkout-form__results li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 21px;
  color: #000000;
}
.page-checkout-form__chevron {
  width: 32px;
  transition: all 0.3s;
}
.page-checkout-form__body {
  padding-top: 0;
  overflow: hidden;
  box-sizing: content-box;
  height: 0;
}
.page-checkout-form_contact .page-checkout-form__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.page-checkout-form_contact .page-checkout-form__content .form-group {
  padding: 0;
  margin: 0;
}
.page-checkout-form_contact .page-checkout-form__content .form-group > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .iti {
  margin-top: 5px;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .input {
  display: flex;
  align-items: stretch;
  margin-top: 5px;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .input > input, .page-checkout-form_contact .page-checkout-form__content .form-group .input > textarea {
  width: 100%;
  outline: none;
  background: none;
  border: none;
  resize: none;
  padding: 12px 14px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .input > .dropdown {
  width: fit-content;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .input > .dropdown .dropdown-toggle {
  height: 100%;
  background: none;
  border: none;
  padding: 0 14px;
  border-right: 1px solid #7a7a7a;
  border-radius: 0;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .input > .dropdown .dropdown-toggle .caret {
  margin-left: 4px;
  border: none;
  width: auto;
  height: auto;
}
.page-checkout-form_contact .page-checkout-form__content .form-group .input > .dropdown .dropdown-toggle .caret img {
  width: 16px;
}
.page-checkout-form_contact .page-checkout-form__content .form-group select.input {
  width: 100%;
  padding: 12px 14px;
  padding-right: 20px;
  border: #7a7a7a 1px solid;
  background: #fff;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
.page-checkout-form_contact .page-checkout-form__content .form-group select.input:invalid {
  font-weight: 100;
}
.page-checkout-form_contact .page-checkout-form__content .clarification {
  margin: 0;
  display: flex;
  align-items: center;
}
.page-checkout-form_contact .page-checkout-form__content .clarification input {
  position: relative;
  margin: 0;
  width: 20px;
  height: 20px;
}
.page-checkout-form_contact .page-checkout-form__content .clarification input[type=checkbox] {
  appearance: none;
  border: 2px solid #000;
  border-radius: 4px;
}
.page-checkout-form_contact .page-checkout-form__content .clarification input[type=checkbox]:before {
  content: "";
  background: url("../../assets/icons/tick.svg");
  background-size: fill;
  width: 70%;
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.page-checkout-form_contact .page-checkout-form__content .clarification input[type=checkbox]:checked:before {
  opacity: 1;
}
.page-checkout-form_contact .page-checkout-form__content .clarification input[type=radio] {
  accent-color: #000;
}
.page-checkout-form_contact .page-checkout-form__content .clarification span {
  margin-left: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-checkout-form_contact .page-checkout-form__content .clarification input {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-checkout-form_contact .page-checkout-form__content {
    gap: 16px;
  }
}
@media screen and (max-width: 576px) {
  .page-checkout-form_contact .page-checkout-form__content {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-checkout-form_contact .page-checkout-form__content > .clarification {
    margin-top: 6px;
  }
}
.page-checkout-form_contact .page-checkout-form__content .form-group--comment {
  grid-column: 1/-1;
}
.page-checkout-order {
  grid-column: 9/13;
  padding: 20px;
  height: fit-content;
  background: #fdfdfd;
  position: sticky;
  top: 16px;
}
.page-checkout-order__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-checkout-order__title span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  color: #333333;
}
.page-checkout-order__title img {
  width: 24px;
}
.page-checkout-order__list {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}
.page-checkout-order__item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 10px;
  display: flex;
  gap: 10px;
}
.page-checkout-order__item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
}
.page-checkout-order__item-title {
  margin-top: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.page-checkout-order__item-details {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.page-checkout-order__item-details li {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.page-checkout-order__redeem {
  margin-top: 10px;
  padding: 20px;
  border: 1px solid #dcdcdc;
}
.page-checkout-order__finish {
  margin-top: 20px;
}
.page-checkout-order__finish .modal-basket__finish-redirects a {
  padding: 16px;
}
.page-checkout-form__list {
  display: flex;
  flex-direction: column;
}
.page-checkout-form__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}
.page-checkout-form__item:nth-last-child(1) {
  margin: 0;
  padding: 0;
  border: none;
}
.page-checkout-form__item-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-checkout-form__item-header input[type=radio] {
  min-width: 24px;
  min-height: 24px;
  accent-color: #000;
  display: block;
  margin: 0;
}
.page-checkout-form__item-header > label {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 18px;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-checkout-form__item-body {
  box-sizing: content-box;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.page-checkout-form__item-content {
  padding: 20px;
  background: #f1f3f7;
}
.page-checkout-form__item-content .form-group {
  padding: 0;
  margin: 0;
  margin-top: 24px;
}
.page-checkout-form__item-content .form-group > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
.page-checkout-form__item-content .form-group .iti {
  margin-top: 5px;
}
.page-checkout-form__item-content .form-group .input {
  display: flex;
  align-items: stretch;
  margin-top: 5px;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}
.page-checkout-form__item-content .form-group .input > input, .page-checkout-form__item-content .form-group .input > textarea {
  width: 100%;
  outline: none;
  background: none;
  border: none;
  resize: none;
  padding: 12px 14px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.page-checkout-form__item-content .form-group .input > .dropdown {
  width: fit-content;
}
.page-checkout-form__item-content .form-group .input > .dropdown .dropdown-toggle {
  height: 100%;
  background: none;
  border: none;
  padding: 0 14px;
  border-right: 1px solid #7a7a7a;
  border-radius: 0;
}
.page-checkout-form__item-content .form-group .input > .dropdown .dropdown-toggle .caret {
  margin-left: 4px;
  border: none;
  width: auto;
  height: auto;
}
.page-checkout-form__item-content .form-group .input > .dropdown .dropdown-toggle .caret img {
  width: 16px;
}
.page-checkout-form__item-content .form-group select.input {
  width: 100%;
  padding: 12px 14px;
  padding-right: 20px;
  border: #7a7a7a 1px solid;
  background: #fff;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
.page-checkout-form__item-content .form-group select.input:invalid {
  font-weight: 100;
}
.page-checkout-form__item-content .form-group:nth-child(1) {
  margin-top: 0;
}
.page-checkout-form__item-content .preoptions {
  margin-top: 16px;
  display: flex;
  gap: 24px;
}
.page-checkout-form__item-content .preoptions button {
  background: none;
  padding: 0;
  outline: none;
  border: none;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  color: #000000;
}
.page-checkout-form__item-additional {
  margin-top: 5px;
}
.page-checkout-form__item-additional > .clarification {
  margin: 0;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.page-checkout-form__item-additional > .clarification input {
  position: relative;
  margin: 0;
  width: 20px;
  height: 20px;
}
.page-checkout-form__item-additional > .clarification input[type=checkbox] {
  appearance: none;
  border: 2px solid #000;
  border-radius: 4px;
}
.page-checkout-form__item-additional > .clarification input[type=checkbox]:before {
  content: "";
  background: url("../../assets/icons/tick.svg");
  background-size: fill;
  width: 70%;
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.page-checkout-form__item-additional > .clarification input[type=checkbox]:checked:before {
  opacity: 1;
}
.page-checkout-form__item-additional > .clarification input[type=radio] {
  accent-color: #000;
}
.page-checkout-form__item-additional > .clarification span {
  margin-left: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-checkout-form__item-additional > .clarification input {
    width: 24px;
    height: 24px;
  }
}
.page-checkout-form__item-additional > .clarification strong {
  margin-left: 6px;
}
.page-checkout-form_isolated .page-checkout-form__header {
  cursor: pointer;
}
.page-checkout-form_changable .page-checkout-form__chevron {
  display: none;
}
.page-checkout-form_changable .page-checkout-form__change {
  display: flex;
}
.page-checkout-form_changable .page-checkout-form__results {
  display: flex;
}
.page-checkout-form_opened .page-checkout-form__body {
  padding-top: 20px;
  overflow: visible;
}
.page-checkout-form_opened .page-checkout-form__chevron {
  rotate: 180deg;
}
.page-checkout-form_opened .page-checkout-form__change {
  display: none;
}
.page-checkout-form_opened .page-checkout-form__results {
  display: none;
}
.page-checkout-form_delivery .page-checkout-form__submit {
  margin-top: 40px;
}
.page-checkout-form_delivery .page-checkout-form__switcher {
  width: 100%;
  display: flex;
}
.page-checkout-form_delivery .page-checkout-form__switcher button {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  border-radius: 0;
  padding: 18px;
  width: 100%;
  font-size: 14px;
  line-height: initial;
}
.page-checkout-form_delivery .page-checkout-form__switcher button:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .page-checkout-form_delivery .page-checkout-form__switcher button {
    padding: 12px 20px;
  }
}
.page-checkout-form_delivery .page-checkout-form__switcher button:hover {
  background: #f1f3f7;
}
.page-checkout-form_delivery .page-checkout-form__switcher button img,
.page-checkout-form_delivery .page-checkout-form__switcher button svg {
  margin-right: 10px;
  width: 24px;
}
.page-checkout-form_delivery .page-checkout-form__switcher button.active {
  background: #000;
  color: #ffffff;
}
.page-checkout-form_delivery .page-checkout-form__switcher button.active:hover {
  background: #000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver {
  margin: 0;
  display: flex;
  align-items: center;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver input {
  position: relative;
  margin: 0;
  width: 20px;
  height: 20px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver input[type=checkbox] {
  appearance: none;
  border: 2px solid #000;
  border-radius: 4px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver input[type=checkbox]:before {
  content: "";
  background: url("../../assets/icons/tick.svg");
  background-size: fill;
  width: 70%;
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver input[type=checkbox]:checked:before {
  opacity: 1;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver input[type=radio] {
  accent-color: #000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver span {
  margin-left: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-checkout-form_delivery .page-checkout-form__diffreceiver input {
    width: 24px;
    height: 24px;
  }
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  display: none;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group {
  padding: 0;
  margin: 0;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .iti {
  margin-top: 5px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input {
  display: flex;
  align-items: stretch;
  margin-top: 5px;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input > input, .page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input > textarea {
  width: 100%;
  outline: none;
  background: none;
  border: none;
  resize: none;
  padding: 12px 14px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input > .dropdown {
  width: fit-content;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input > .dropdown .dropdown-toggle {
  height: 100%;
  background: none;
  border: none;
  padding: 0 14px;
  border-right: 1px solid #7a7a7a;
  border-radius: 0;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input > .dropdown .dropdown-toggle .caret {
  margin-left: 4px;
  border: none;
  width: auto;
  height: auto;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group .input > .dropdown .dropdown-toggle .caret img {
  width: 16px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group select.input {
  width: 100%;
  padding: 12px 14px;
  padding-right: 20px;
  border: #7a7a7a 1px solid;
  background: #fff;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .form-group select.input:invalid {
  font-weight: 100;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification {
  margin: 0;
  display: flex;
  align-items: center;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification input {
  position: relative;
  margin: 0;
  width: 20px;
  height: 20px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification input[type=checkbox] {
  appearance: none;
  border: 2px solid #000;
  border-radius: 4px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification input[type=checkbox]:before {
  content: "";
  background: url("../../assets/icons/tick.svg");
  background-size: fill;
  width: 70%;
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification input[type=checkbox]:checked:before {
  opacity: 1;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification input[type=radio] {
  accent-color: #000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification span {
  margin-left: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-checkout-form_delivery .page-checkout-form__diffreceiver-body .clarification input {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-checkout-form_delivery .page-checkout-form__diffreceiver-body {
    gap: 16px;
  }
}
@media screen and (max-width: 576px) {
  .page-checkout-form_delivery .page-checkout-form__diffreceiver-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page-checkout-form_delivery .page-checkout-form__diffreceiver-body > .clarification {
    margin-top: 6px;
  }
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-body.active {
  display: grid;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-international {
  display: none;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper {
  display: none;
  gap: 8px;
  flex-direction: column;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label {
  margin: 0;
  display: flex;
  align-items: center;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label input {
  position: relative;
  margin: 0;
  width: 20px;
  height: 20px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label input[type=checkbox] {
  appearance: none;
  border: 2px solid #000;
  border-radius: 4px;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label input[type=checkbox]:before {
  content: "";
  background: url("../../assets/icons/tick.svg");
  background-size: fill;
  width: 70%;
  height: 70%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label input[type=checkbox]:checked:before {
  opacity: 1;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label input[type=radio] {
  accent-color: #000;
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label span {
  margin-left: 10px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .page-checkout-form_delivery .page-checkout-form__diffreceiver-internwrapper label input {
    width: 24px;
    height: 24px;
  }
}
.page-checkout-form_delivery .page-checkout-form__diffreceiver-wrapper {
  margin-top: 20px;
}
.page-checkout-form_delivery .page-checkout-form__subbody {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}
.page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent {
  display: grid;
  gap: 15px 10px;
  grid-template-columns: repeat(4, 1fr);
}
.page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group {
  margin: 0;
}
.page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(1) {
  grid-column: 1/5;
}
.page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(2) {
  grid-column: 1/3;
}
.page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(3) {
  grid-column: 3/4;
}
.page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(4) {
  grid-column: 4/5;
}
.page-checkout-form_delivery .page-checkout-form__item_international {
  display: none;
}
.page-checkout-form_delivery .page-checkout-form__item.opened .page-checkout-form__item-body {
  padding-top: 20px;
}
.page-checkout-form_delivery.page-checkout-form_international .page-checkout-form__item {
  display: none;
}
.page-checkout-form_delivery.page-checkout-form_international .page-checkout-form__item_international {
  display: block;
}
.page-checkout-form_delivery.page-checkout-form_international .page-checkout-form__diffreceiver {
  display: none;
}
.page-checkout-form_delivery.page-checkout-form_international .page-checkout-form__diffreceiver-ukraine {
  display: none;
}
.page-checkout-form_delivery.page-checkout-form_international .page-checkout-form__diffreceiver-international {
  display: initial;
}
.page-checkout-form_delivery.page-checkout-form_international .page-checkout-form__diffreceiver-internwrapper {
  display: flex;
}
.page-checkout-form_payment .page-checkout-form__item-header {
  justify-content: space-between;
}
.page-checkout-form_payment .page-checkout-form__item-header label > img {
  width: 24px;
}
.page-checkout-form_payment .page-checkout-form__item-header > div {
  display: flex;
  gap: 5px;
}
.page-checkout-form_payment .page-checkout-form__item-header > div img {
  height: 32px;
}
.page-checkout-form_payment .page-checkout-form__submit {
  margin-top: 40px;
}
.page-checkout-form_comment .form-group {
  padding: 0;
  margin: 0;
}
.page-checkout-form_comment .form-group > span {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
}
.page-checkout-form_comment .form-group .iti {
  margin-top: 5px;
}
.page-checkout-form_comment .form-group .input {
  display: flex;
  align-items: stretch;
  margin-top: 5px;
  border: 1px solid #7a7a7a;
  border-radius: 2px;
}
.page-checkout-form_comment .form-group .input > input, .page-checkout-form_comment .form-group .input > textarea {
  width: 100%;
  outline: none;
  background: none;
  border: none;
  resize: none;
  padding: 12px 14px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}
.page-checkout-form_comment .form-group .input > .dropdown {
  width: fit-content;
}
.page-checkout-form_comment .form-group .input > .dropdown .dropdown-toggle {
  height: 100%;
  background: none;
  border: none;
  padding: 0 14px;
  border-right: 1px solid #7a7a7a;
  border-radius: 0;
}
.page-checkout-form_comment .form-group .input > .dropdown .dropdown-toggle .caret {
  margin-left: 4px;
  border: none;
  width: auto;
  height: auto;
}
.page-checkout-form_comment .form-group .input > .dropdown .dropdown-toggle .caret img {
  width: 16px;
}
.page-checkout-form_comment .form-group select.input {
  width: 100%;
  padding: 12px 14px;
  padding-right: 20px;
  border: #7a7a7a 1px solid;
  background: #fff;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: #000000;
}
.page-checkout-form_comment .form-group select.input:invalid {
  font-weight: 100;
}
@media screen and (max-width: 1200px) {
  .page-checkout-forms {
    grid-column: 1/8;
  }
  .page-checkout-order {
    grid-column: 8/13;
  }
  .page-checkout-form_payment .page-checkout-form__item-header > div {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .page-checkout-grid {
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 32px;
  }
  .page-checkout-forms {
    grid-column: 1/13;
  }
  .page-checkout-order {
    grid-column: 1/13;
    position: static;
  }
  .page-checkout-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-checkout-title {
    font-size: 36px;
  }
  .page-checkout-form {
    padding: 28px;
  }
  .page-checkout-form__title {
    font-size: 24px;
  }
  .page-checkout-form__change span {
    display: none;
  }
  .page-checkout-form__results {
    gap: 12px;
    margin-top: 20px;
  }
  .page-checkout-form__results li {
    font-size: 16px;
    line-height: initial;
  }
  .page-checkout-form__chevron {
    width: 24px;
  }
  .page-checkout-form__item-header > label {
    font-size: 16px;
  }
  .page-checkout-form__item-content {
    padding: 20px 16px;
  }
  .page-checkout-form__item-content .form-group {
    margin-top: 20px;
  }
  .page-checkout-form__item-content .preoptions {
    margin-top: 16px;
  }
  .page-checkout-form_opened .page-checkout-form__body {
    padding-top: 16px;
  }
  .page-checkout-form_delivery .page-checkout-form__submit {
    margin-top: 20px;
  }
  .page-checkout-form_delivery .page-checkout-form__switcher {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .page-checkout-form_delivery .page-checkout-form__switcher button {
    color: #5a5a5a;
    border-color: #5a5a5a;
  }
  .page-checkout-form_delivery .page-checkout-form__switcher button:nth-child(1) {
    border-bottom: none;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .page-checkout-form_delivery .page-checkout-form__switcher button:nth-child(2) {
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .page-checkout-form_delivery .page-checkout-form__diffreceiver-wrapper {
    margin-top: 16px;
  }
  .page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(1) {
    grid-column: 1/3;
  }
  .page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(2) {
    grid-column: 1/3;
  }
  .page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(3) {
    grid-column: 1/2;
  }
  .page-checkout-form_delivery .page-checkout-form__item_couriernovaposhta .page-checkout-form__item-subcontent .form-group:nth-child(4) {
    grid-column: 2/3;
  }
  .page-checkout-form_payment .page-checkout-form__submit {
    margin-top: 20px;
  }
}
@media screen and (max-width: 576px) {
  .page-checkout-title {
    margin-top: 20px;
    font-size: 24px;
  }
  .page-checkout-grid {
    margin-top: 16px;
    margin-bottom: 20px;
  }
  .page-checkout-form {
    padding: 20px 16px;
  }
  .page-checkout-form__title {
    font-size: 20px;
  }
  .page-checkout-form__body {
    overflow-y: clip;
    overflow-x: visible;
  }
  .page-checkout-form__item-body {
    overflow-y: clip;
    overflow-x: visible;
  }
  .page-checkout-form__item-content {
    padding: 20px 16px;
    width: calc(100% + 32px);
    margin: 0 -16px;
  }
}

.page-checkout-thanks {
  grid-column: 1/9;
  background: #fdfdfd;
  display: flex;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 40px;
}
.page-checkout-thanks__elf {
  width: 60px;
  display: block;
  margin: 0 auto;
}
.page-checkout-thanks__title {
  margin-top: 20px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-size: 30px;
  color: #333333;
  text-align: center;
}
.page-checkout-thanks__text {
  margin-top: 20px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  text-align: center;
  color: #333333;
}
.page-checkout-thanks__btn {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #000;
  border-radius: 2px;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  transition: all 0.3s;
  padding: 16px 70px;
  margin-top: 30px;
}
.page-checkout-thanks__btn:hover {
  background: #5a5a5a;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .page-checkout-thanks__btn {
    padding: 12px 20px;
  }
}
.page-checkout-thanks__btn:hover {
  color: #fff;
}
.page-checkout-toview {
  padding: 40px;
  background: #fdfdfd;
}
.page-checkout-toview__title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  font-size: 30px;
  line-height: 43px;
  text-transform: uppercase;
  color: #000000;
}
@media screen and (max-width: 1200px) {
  .page-checkout-thanks {
    grid-column: 1/8;
  }
  .page-checkout__btn {
    padding: 16px 48px;
  }
}
@media screen and (max-width: 992px) {
  .page-checkout-thanks {
    grid-column: 1/13;
    padding: 40px 24px;
  }
  .page-checkout-thanks__title {
    font-size: 28px;
    margin-top: 16px;
  }
  .page-checkout-thanks__text {
    margin-top: 24px;
  }
  .page-checkout-thanks__btn {
    padding: 16px 48px;
  }
}
@media screen and (max-width: 768px) {
  .page-checkout-toview {
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
    width: calc(100% + 30px);
    padding: 20px 0;
    background: #fdfdfd;
  }
  .page-checkout-toview__title {
    font-weight: 500;
    font-size: 24px;
    line-height: 1;
    text-transform: none;
  }
}
@media screen and (max-width: 576px) {
  .page-checkout-thanks {
    padding-bottom: 30px;
  }
  .page-checkout-thanks__content {
    width: 100%;
  }
  .page-checkout-thanks__title {
    font-size: 24px;
    margin-top: 10px;
  }
  .page-checkout-thanks__text br {
    display: none;
  }
  .page-checkout-thanks__btn {
    padding: 16px;
    width: 100%;
  }
}