.cart-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-ordering {
  width: 100%;
}

.cart-content-wrap {
  width: 100%;
  height: 100%;
  min-height: 524px;
}

.cart-offer-wrap {
  width: 100%;
}

.amount-currency {
  font-weight: 600;
  font-size: .875rem;
  color: inherit;
  display: flex;
  gap: 7px;
  align-items: center;
}

.product-ordering {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  product-ordering {
    padding: 35px 12px;
  }
}

.product-ordering i {
  font-size: 1.2rem;
}

.product-ordering input[type="text"],
.product-ordering input[type="email"],
.product-ordering input[type="number"],
.product-ordering input[type="file"] {
  width: 100%;
  padding: 8px;
}


.product-ordering .product-header {
  display: flex;
  max-width: 768px;
  width: 100%;
  justify-items: center;
  margin: 0 auto;
  justify-content: space-between;
}

html[data-theme=light] .product-ordering .product-header img.header-logo {
  filter: invert(1);
}

.product-step-actions-box {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .product-step-actions-box {
    max-width: 768px;
    margin-right: auto;
  }
}

.cart-empty {
  width: 100%;
  height: 100%;
}

.cart-empty .cart-empty-box {
  position: relative;
  display: flex;
  font-size: 14px;
  width: 100%;
  height: calc(100vh - 636px);
  gap: 25px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cart-empty .cart-empty-box i {
  font-size: 54px;
}

.cart-empty .cart-empty-box .cart-empty-text {
  font-size: 1rem;
  font-weight: 600;
}

.cart-preview {
  display: flex;
  flex-direction: column;
}

.cart-preview .cart-hero {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.cart-preview h1.heading {
  margin-bottom: 25px;
}

@media (min-width: 769px) {
  .cart-preview .cart-hero {
    flex-direction: row;
  }
}

.cart-preview .cart-table {
  display: flex;
  flex: 5;
  gap: 35px;
  flex-direction: column;
}


.cart-preview .cart-table .product-item {
  display: flex;
  position: relative;
  gap: 20px;
  border-bottom-width: 1px;
  padding-bottom: 30px;
}


.cart-preview .cart-table .product-item:last-child {
  border-bottom: none;
}

.cart-preview .cart-table .product-item .product-thumbnail {
  display: flex;
  position: absolute;
  left: 0;
}

@media (min-width: 769px) {
  .cart-preview .cart-table .product-item .product-thumbnail {
    position: relative;
  }
}

.cart-preview .cart-table .product-item .product-details {
  width: 100%;
  position: relative;
  display: flex;
  gap: 13px;
  flex-direction: column;
}

.cart-preview .cart-table .product-item .product-details .product-name {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-preview .cart-table .product-item .product-details .product-name h2 {
  font-size: 1rem;
  font-weight: 300;
  max-width: 75%;
  line-height: 1.7;
}

@media (min-width: 769px) {
  .cart-preview .cart-table .product-item .product-details .product-name h2 {
    max-width: 100%;
  }
}

.cart-preview .cart-table .product-item .product-details .product-attributes {
  display: flex;
  gap: 40px;
}

.cart-preview .cart-table .product-item .product-details .product-attributes span {
  font-size: .875rem;
}

.cart-preview .cart-table .product-item .product-details .product-cost {
  display: flex;
  padding: 7px;
  border-radius: var(--border-radius);
  background: var(--background-secondary);
  border-width: 1px;
  margin-top: 15px;
  font-size: .875rem;
  justify-content: space-between;
}

.cart-preview .cart-table .product-item .product-details .product-cost .product-single-cost {
  display: flex;
  gap: 7px;
  position: relative;
}

.cart-preview .cart-table .product-item .product-details .product-cost .product-single-cost hr.on-sale-line {
  position: absolute;
  width: 80px;
  right: 30px;
  top: -4px;
  transform: rotate3d(1, 1, 1, -35deg);
  border-color: #f20057;
}

.cart-preview .cart-table .product-item .product-details .product-cost span {
  font-weight: 600;
}

@media (min-width: 769px) {
  .cart-preview .cart-table .product-item .product-details .product-cost {
    margin: 0;
  }
}

.cart-preview .cart-table .product-item .product-details .quantity-selector {
  width: 120px;
  height: 40px;
  border-radius: var(--border-radius);
}

.cart-preview .cart-table .product-item .product-details .quantity-selector i {
  font-size: .75rem;
}

.cart-preview .cart-table .product-item .product-details .quantity-selector button {
  min-width: 40px;
}

.cart-preview .cart-table .product-item .product-details .quantity-selector button:hover {
  background-color: #fed500;
  border-color: #fed500;
  color: #212529;
}

.cart-preview .cart-table .product-item .product-details .quantity-selector input[type=number] {
  width: 100%;
  padding: 0;
  font-size: 1rem;
}

.cart-preview .cart-table .product-item .product-details .product-actions {
  display: flex;
  align-items: center;
  gap: 50px;
}


.cart-preview .cart-table .product-item .product-details .product-actions .product-remove i:hover {
  color: #ffb700;
  cursor: pointer;
}

.cart-preview .cart-table .product-item .product-details .product-price,
.cart-preview .cart-table .product-item .product-details .product-subtotal {
  display: flex;
  gap: 4px;
  align-items: center;
}


.cart-preview .cart-table .product-item .product-details .product-price-on-sale {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #f20057;
}

.cart-preview .cart-table .product-item .product-details .product-price-on-sale span {
  font-size: .875rem;
}


.cart-preview .actions-box {
  flex: 2.5;
  display: flex;
  flex-direction: column;
  gap: 40px;
}




.product-review-order-description {
  border-width: 1px;
  border-radius: var(--border-radius);
  padding: 7px;
}

.product-review-order-description textarea {
  background-color: inherit;
}

.cart-hero .happy-time-count .happy-time-label {
  height: 20px;
  font-size: .875rem;
  background: url(https://xstatic.ir/shared/images/texture/salebg.png);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: moveBg 30s linear infinite;
}

@keyframes moveBg {
  0% {
    background-position: 0% 30%;
  }

  100% {
    background-position: 1000% 500%;
  }
}

.cart-hero .happy-time-count {
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: center;
  user-select: none;
  border-radius: var(--border-radius);
  padding: 8px 2px;
  background: rgb(119, 13, 13);
  background: radial-gradient(circle, rgba(119, 13, 13, 0.92) 64%, rgba(0, 0, 0, 0.6) 130%);
}

@media (min-width: 769px) {
  .cart-hero .happy-time-count {
    position: absolute;
    top: 30px;
    left: 0;
  }
}

.cart-hero .happy-time-count .time {
  color: #d99c3b;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.cart-hero .happy-time-count .time .time-num {
  padding: 0 8px;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
}

.cart-hero .happy-time-count .time .time-num span {
  font-size: 1rem;
}


.product-hero .notices {
  border-right: 2px solid #fed500;
  background-color: #a3a3a31a;
  padding: 12px 8px 12px;
  border-radius: var(--border-radius);
}

html[data-theme=dark] .product-hero .notices {
  background: var(--background-secondary);
}

.product-hero .notices .notices-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.product-hero .notices .notices-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}

.product-hero .notices .notices-card-text {
  width: 100%;
  margin: 0;
}

.product-hero .actions-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-hero .actions-box .actions-box-child {
  display: flex;
  gap: 12px;
}

.product-actions-button.order {
  width: 100%;
  height: 60px !important;
  background-color: #fed500;
  color: #000;
}

.product-actions-button.order .dashed-inner-box {
  border: 1.5px dashed rgb(0 0 0 / 50%);
}

.product-actions-button.pricing {
  width: 100%;
  height: 60px !important;
  background-color: #ff7d1b;
  color: #000000;
}

.product-actions-button.pricing .dashed-inner-box {
  border: 1.5px dashed rgb(0 0 0 / 50%);
}

.product-actions-button.login {
  width: 50%;
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.login img {
  border-radius: 50px;
  padding: 0;
  width: 30px;
  height: 30px;
}

.product-actions-button.learnOrdering {
  width: 50%;
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.support {
  width: 50%;
  position: relative;
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.support svg {
  position: absolute;
  right: calc(50% - 73px);
  top: 3px;
}

.product-actions-button.telegram {
  width: 50%;
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.info {
  width: 50%;
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.terms {
  width: 50%;
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.speedTest {
  width: calc(50% - 7.5px);
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}

.product-actions-button.phone {
  width: calc(50% - 7.5px);
  border-width: 1px;
  background-color: var(--background-secondary);
  color: var(--text-color);
}





/*---------------FOUR--------------------*/
.product-review {
  display: flex;
  max-width: 768px;
  flex-direction: column;
  gap: 12px;
}

.product-review-billing {
  display: flex;
  padding: 12px;
  gap: 12px;
  background: var(--background-secondary);
  border-radius: var(--border-radius);
  flex-direction: column;
}

.product-review-billing-items {
  display: flex;
  height: 30px;
  justify-content: space-between;
  align-items: center;
}

.product-review-billing-items span {
  font-size: .875rem;
  font-weight: 600;
}

.grand-cost {
  display: flex;
  position: relative;
  height: 56px;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  background: var(--brand-color-sec);
  color: #ffffff;
  border-radius: var(--border-radius);
  padding: 12px;
}

.grand-cost i,
.grand-cost span {
  color: #ffffff;
}

.discount {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(var(--blueRGB), 0.1);
  border-radius: var(--border-radius);
  flex-direction: column;
  border: 1px dashed var(--blue);
}

.discount .inbox.dis i,
.discount .inbox.dis span {
  color: #f20057;
}



.discount .inbox {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px;
  justify-content: space-between;
}

.discount .inbox.borbottom {
  border-bottom: 1px dashed var(--blue);
}

.grand-total {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grand-total span {
  font-size: .875rem;
  font-weight: 600;
}


.grand-total .currency {
  position: absolute;
  left: 15px;
}

.grand-total .prefix {
  display: flex;
  position: absolute;
  right: 15px;
  align-items: center;
  gap: 3px;
}

.grand-total .prefix span {
  font-size: 14px;
  font-weight: 600;
}

.dashed-inner-box {
  border: 1.5px dashed rgb(0 0 0 / 50%);
}


.turbo-review {
  display: flex;
  justify-content: space-between;
  height: 100%;
  flex-direction: column;
  gap: 12px;
}

.turbo-review-billing {
  display: flex;
  padding: 12px;
  gap: 12px;
  background: var(--background-secondary);
  border-radius: 9px;
  flex-direction: column;
}

.turbo-review-billing-items {
  display: flex;
  height: 30px;
  justify-content: space-between;
  align-items: center;
}

.turbo-review-billing-items span {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
}

.discount {
  display: flex;
  position: relative;
  width: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(2, 167, 160, 0.1);
  border-radius: 9px;
  flex-direction: column;
  border: 1px dashed var(--brand-color-sec);
}

.discount .inbox.dis i,
.discount .inbox.dis span {
  color: #ea5440;
}

.discount .inbox {
  height: 56px;
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 60px;
  justify-content: flex-end;
}

.discount .inbox.borbottom {
  border-bottom: 1px dashed var(--brand-color-sec);
}

.grand-total {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.grand-total span {
  font-size: 1rem;
  font-weight: var(--font-weight-regular);
}

.grand-total .currency {
  position: absolute;
  left: 15px;
}

.grand-total .prefix {
  display: flex;
  position: absolute;
  right: 15px;
  align-items: center;
  gap: 3px;
}

.grand-total .prefix span {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
}

.grand-total .dashed-inner-box {
  border: 1.5px dashed rgb(0 0 0 / 50%);
  font-size: 1rem;
  padding: 12px;
}

.turbo-review-discount-accordion {
  background: var(--background-secondary);
}

.accordion-header {
  background-color: #fed500;
  height: 64px;
  color: #212529;
  border-radius: 7px;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  text-align: right;
  display: flex;
  gap: 3px;
  align-items: center;
}

.accordion-header.active {
  border-radius: 7px 7px 0 0;
}
.turbo-review i {
  font-size: 1.3rem;
}
.accordion-content {
  border-radius: 0 0 7px 7px;
}

.coupon-section {
  display: flex;
  width: 100%;
  gap: 7px;
  border-width: 1px;
  border-radius: 7px;
  padding: 7px;
}

.turbo-review-discount-accordion .coupon-field-wrap {
  display: flex;
  gap: 7px;
}

.coupon-code {
  background: inherit;
  width: 100%;
}

.check-coupon {
  width: 150px;
}

.coupon_box {
  display: flex;
  flex-flow: row;
  width: 100%;
  border-radius: 9px;
  border: 1px solid var(--brand-color-sec);
  background-color: rgba(2, 167, 160, 0.1);
  direction: ltr;
}

.coupon_box #removeCoupon {
  width: 30px;
}

.coupon-info-box {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 35%;
  padding: 12px;
}

@media (max-width: 991px) {
  .coupon-info-box {
    width: 30%;
  }
}

.coupon-info-box:before {
  content: "";
  position: absolute;
  top: -9px;
  right: -8px;
  width: 15px;
  height: 15px;
  background-color: var(--bg-color);
  border-radius: 50%;
  border: 1px solid var(--brand-color-sec);
}

.coupon-info-box:after {
  content: "";
  position: absolute;
  top: -11px;
  right: -13px;
  width: 25px;
  height: 10px;
  background-color: var(--bg-color);
}

.coupon-info-result {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: var(--font-weight-regular);
  color: var(--brand-color-sec);
}

.coupon-info-code {
  font-size: 14px;
  color: var(--brand-color-sec);
}

.coupon-details-box {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  width: 65%;
  padding: 12px;
}

.coupon-details-box p {
  font-size: 12px;
}

@media (max-width: 991px) {
  .coupon-details-box {
    width: 70%;
  }
}

.coupon-details-box:before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: -8px;
  width: 15px;
  height: 15px;
  background-color: var(--bg-color);
  border-radius: 50%;
  border: 1px solid var(--brand-color-sec);
}

.coupon-details-box:after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: -13px;
  width: 25px;
  height: 10px;
  background-color: var(--bg-color);
}

.coupon-header {
  width: 100%;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.coupon-title span {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  margin-right: 3px;
}

.coupon-divider {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: calc(100% - 23px);
  transform: translateY(-50%);
  border-left: 1px dashed var(--brand-color-sec);
}























/*---------------NOT-LOGIN--------------------*/

.product-user--not-login {
  max-width: 768px;
  background-color: var(--background-secondary);
  padding: 50px 40px;
  border-radius: var(--border-radius);
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  border-width: 1px;
}

.product-user--not-login h2 {
  margin-bottom: 15px;
}



/*---------------THREE--------------------*/
.order-shipping {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}

.order-shipping .page-content-orders-shipping h1 {
  text-align: center;
}

.order-shipping .field-wrap {
  display: flex;
  gap: 20px;
  flex-direction: column;
  background-color: var(--bg-color);
}

#toFieldBox {
  background-color: var(--bg-color);
}

.order-shipping .state-address .dropdown-select {
  min-height: 55px;
}

.order-shipping .shipping-method .dropdown-select {
  min-height: 75px;
}

.shipping-method .shipping-method-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 8px 2px;
  cursor: pointer;
  justify-content: space-between;
}

.shipping-method .shipping-method-item i {
  font-size: 1.6em;
}

.shipping-method .shipping-method-item .shipping-method-item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.shipping-method .shipping-method-item .shipping-method-item-name {
  font-size: 14px;
  font-weight: var(--font-weight-regular);
  line-height: 2em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shipping-method .shipping-method-item .shipping-method-item-notice {
  font-size: .875rem;
  line-height: 1.667;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-color);
}

.shipping-method .shipping-method-item .shipping-method-item-price {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  flex-direction: column;
}

.shipping-method .shipping-method-item .shipping-method-item-value {
  min-width: 67px;
  font-size: 1rem;
  line-height: 1.667;
  color: #25cbd1;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  border-radius: var(--border-radius);
  flex-direction: column;
}

.shipping-method .shipping-method-item .shipping-method-item-currency {
  font-size: 0.625rem;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--text-color);
  margin-right: 4px;
}

.order-shipping .shipping-switch-box {
  border-width: 1px;
  padding: 10px;
  background-color: var(--background-secondary);
  color: var(--text-color);
  border-radius: var(--border-radius);
}

.order-shipping .shipping-switch-box label {
  font-size: .875rem;
  font-weight: var(--font-weight-regular);
  display: flex;
  align-items: center;
}

.order-shipping #shippingMethodForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--bg-color);
}

.order-shipping .notices {
  border-right: 2px solid #fed500;
  background-color: #a3a3a31a;
  padding: 12px 8px 12px;
  border-radius: var(--border-radius);
}

html[data-theme=dark] .order-shipping .notices {
  background: var(--background-secondary);
}

.order-shipping .notices .notices-card {
  display: flex;
  gap: 12px;
  align-items: center;
}

.order-shipping .notices .notices-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
}

.order-shipping .notices .notices-card-text {
  width: 100%;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--bg-color);
}

.post-icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAzMCAyNy4zOCIgeG1sbnM6dj0iaHR0cHM6Ly92ZWN0YS5pby9uYW5vIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9IkEiIHgxPSItNjYuOTgyIiB4Mj0iLTQwLjc0NCIgeTE9Ii0yOS44MDgiIHkyPSItMjkuODA4IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iI2ZmN2QxYiIgb2Zmc2V0PSIuMDAyIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHBhdGggZD0iTTMyLjkwNyAzMi42NjVIMTkuMTI2YTEwLjEgMTAuMSAwIDAgMS04LjM3Ni00LjQ0M0wuMjUgMTIuNzE1bDIuNTUyLTEuNDU4YzMuNjE0LTIuMDYgOC4yMDYtLjk1OCAxMC40OTIgMi41MThsNS4wNzggNy43NDVjLjQ1Mi42OTggMS4zODEuOTA0IDIuMDg2LjQ2NGw0LjEyNS0yLjUzN2MzLjM0LTIuMDU4IDUuNjQxLTUuNDQ2IDYuMzIyLTkuMzFsLjY0LTMuNjk1LTE0Ljc1IDkuMTEzLTEuNjAxLTIuNTkyTDM1LjczLjI4NGwtMS44MjUgMTAuMzgzYTE2Ljc4IDE2Ljc4IDAgMCAxLTcuNzI4IDExLjM3N2wtNC4xMjIgMi41MzlhNC41NiA0LjU2IDAgMCAxLTYuMjMyLTEuMzkxbC01LjA3Ni03LjczMmMtMS4zMjgtMi4wMTgtMy45NDEtMi43NDctNi4xMjEtMS43MDdsOC42NDggMTIuNzcxYzEuMzE1IDEuOTM5IDMuNTA3IDMuMDk4IDUuODUgMy4wOTRoOC4xMzlsLTIuNzI3LTQuMTU3IDIuNTUtMS42Njd6IiBmaWxsPSJ1cmwoI0EpIiB0cmFuc2Zvcm09Im1hdHJpeCguODQ1NTUgMCAwIC44NDU1NSAtLjIxMTM5IC0uMjM5NzYpIi8+PC9zdmc+);
}

.courier-icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiBmaWxsPSJub25lIiB3aWR0aD0iMzAiIGhlaWdodD0iMzEuNjQ2IiB4bWxuczp2PSJodHRwczovL3ZlY3RhLmlvL25hbm8iPjxkZWZzPjxsaW5lYXJHcmFkaWVudCBpZD0iQSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPjxzdG9wIHN0b3AtY29sb3I9IiNmZjdkMWIiIG9mZnNldD0iLjAwMiIvPjwvbGluZWFyR3JhZGllbnQ+PGxpbmVhckdyYWRpZW50IGlkPSJCIiB4MT0iLTY0Ljk1OSIgeDI9Ii00My4wOCIgeTE9Ii0yNS45MzEiIHkyPSItMjUuOTMxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iIzAwZTJlYSIgb2Zmc2V0PSIwIi8+PHN0b3Agc3RvcC1jb2xvcj0iIzI1Y2JkMSIgb2Zmc2V0PSIuNTM2Ii8+PC9saW5lYXJHcmFkaWVudD48bGluZWFyR3JhZGllbnQgaWQ9IkMiIHgxPSItNTAuODczIiB4Mj0iLTQyLjE1NCIgeTE9Ii0zOC4wNzQiIHkyPSItMzguMDc0IiB4bGluazpocmVmPSIjQSIvPjxsaW5lYXJHcmFkaWVudCBpZD0iRCIgeDE9Ii01Mi4xMDMiIHgyPSItNDAuMjQyIiB5MT0iLTMxLjQ4NyIgeTI9Ii0zMS40ODciIHhsaW5rOmhyZWY9IiNBIi8+PC9kZWZzPjxnIHRyYW5zZm9ybT0ibWF0cml4KC44NDU1NSAwIDAgLjg0NTU1IC0uMjExMzkgLS4yMzk3NikiIHN0cm9rZS13aWR0aD0iMi4zMDkiPjxwYXRoIGQ9Ik0gMzEuOTQxNzA4LDQuNjMxNjU4OSBBIDUuNzU5NTI1Niw1Ljc1OTUyNTYgMCAwIDAgMzEuODIzNTg5LDEuNDk0MTgxNyAwLjA3NzExOTA3LDAuMDc3MTE5MDcgMCAwIDAgMzEuNzE5MTM2LDEuNDM4NTM4OSBsIC05Ljk0MDU1LDQuNDU1MzM0NyIgc3Ryb2tlPSJ1cmwoI0MpIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48cGF0aCBkPSJNIDEuNDA0NTA4LDE4LjU2Nzc1OSAxNC40NjU5NCwxNi4zMjI1MiBhIDAuODc4NTcxNywwLjg3ODU3MTcgMCAwIDEgMC45NDM5NzcsMC45NTI3NjIgdiA2LjQ4MTkwNyBhIDAuOTkyNzg2MDIsMC45OTI3ODYwMiAwIDAgMSAtMC40NDUxNDMsMC44NTUxNDMgTCAzLjQ2NDI3MDUsMzEuNTYzNzg3IE0gMS40MDQ1MDgsMTguNTY3NzU5IGMgMCwwIDAuODIzOTA1LC0xMC41ODg3NDE5IDEwLjcwOTc4OSwtMTMuOTU5NTI4NyA1Ljk2ODQzLC0yLjAzNDM4MTYgMTAuMjg1MTQ2LDEuMTk0ODU3NSAxMi43Njk1NTEsNC4wNzM2NDQyIE0gMS40MDQ1MDgsMTguNTY3NzU5IFYgMzIuNzY2NDU0IEwgMy40NjQyNzA1LDMxLjU2MjgxIGEgNS42NzY1NDk0LDUuNjc2NTQ5NCAwIDAgMCAyLjg4MzY2NzYsNC44MTM1OTcgNC4zNDY5Nzc2LDQuMzQ2OTc3NiAwIDAgMCAyLjQ3MTcxNSwwIEwgMjkuNDE3Mjc4LDI2LjI2ODkyOCBhIDM3LjMwNjEwNywzNy4zMDYxMDcgMCAwIDAgLTAuMjgxMTQzLC04LjIzMDI2NSIgc3Ryb2tlPSJ1cmwoI0IpIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0ibSAxOS45OTk5NjYsMTIuMDE3NTE5IDAuNDQ5MDQ4LC0xLjIyNDE0NCBBIDEuNzk1MjE0OCwxLjc5NTIxNDggMCAwIDEgMjEuMzcyNDksOS43NTQ3MDc4IEwgMzQuMTg5ODc1LDQuMDAyOTkyIGEgMC4wNzcxMTkwNywwLjA3NzExOTA3IDAgMCAxIDAuMTA0NDUzLDAuMDU1NjQzIDUuNzU5NTI1Niw1Ljc1OTUyNTYgMCAwIDEgMC4xMTgxMTksMy4xMzc0NzcyIGMgLTAuNDgxMjYyLDEuMzE2ODgxMSAtMi40NzU2MiwyLjIxMDA5NTYgLTIuNDc1NjIsMi4yMTAwOTU2IG0gMCwwIEEgOS4zMjY1MjY3LDkuMzI2NTI2NyAwIDAgMSAzMS42ODQ5NywxMi44MTIxMzggNC4zMDIwNzI4LDQuMzAyMDcyOCAwIDAgMSAyOS42MTE1NCwxNC44Mzg3MSBNIDMxLjkzNjgyNyw5LjQwNjIwNzggMjcuMjY2NzMsMTEuNTAxMTE0IG0gMi4zNDI4NTgsMy4zNDA1MjQgLTIuOTQwMjg3LDEuMzE4ODM0IE0gMjkuNjExNTQsMTQuODM4NzEgYSA0LjkyOTc2MzQsNC45Mjk3NjM0IDAgMCAxIC0wLjQwOTAyNCwyLjkyODU3MiA0LjMwNDAyNTIsNC4zMDQwMjUyIDAgMCAxIC0xLjkxODIxNCwyLjUwNjg1OCBsIC0yLjM4OTcxNSwxLjA3MzgxIiBzdHJva2U9InVybCgjRCkiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPjwvZz48L3N2Zz4=);
}


#AddressesForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 12px;
  background-color: var(--dialog-bg-color);
}

.recipient-add-address-wrapp,
.recipient-select-address-wrapp {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.recipient-add-address-wrapp {
  padding: 12px;
}

.recipient-address-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#addAddressButton,
#addCourierGeoLocationButton,
#selectAddressButton {
  max-width: 200px;
}

.map-wrap {
  height: 300px;
  width: 100%;
  border-radius: var(--border-radius);
}

.courier-map {
  min-height: 55vh;
}

#RecipientAddresses {
  min-height: 200px;
}

#addCourierGeoLocationForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 12px;
}

#CourierGeoLocation {
  position: relative;
}

#CourierGeoLocation * {
  user-select: none;
}

#CourierGeoLocation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: transparent;
  cursor: not-allowed;
}



.showcase {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
  font-size: .875rem;
  padding-right: 24px;
  height: 35px;
}

.showcase hr {
  width: 100%;
}

.showcase p {
  width: 200px;
  padding-right: 7px;
  font-weight: 600;
}































.plans {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.payment-options {
  width: 100%;
  gap: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.plans .plan input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.plans .plan {
  width: 100%;
  cursor: pointer;
  border-radius: 9px;
}

.plans .plan .plan-content {
  display: flex;
  padding: 20px;
  border-radius: 9px;
  position: relative;
  border-width: 1px;
}

.plans input[type="radio"]:checked+.plan-content {
  border: 1px solid #216ee0;
  background: var(--background-secondary);
  -webkit-transition: ease-in 0.3s;
  -o-transition: ease-in 0.3s;
  transition: ease-in 0.3s;
}

.plans .plan .plan-content img {
  margin-left: 30px;
  height: 50px;
}

.plans .plan .plan-details span {
  margin-bottom: 10px;
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-regular);
}

.plans .plan .plan-details p {
  font-size: 14px;
}

.plans .plan input[type="radio"]:checked+.plan-content:after {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  background: #216fe0;
  left: 15px;
  top: 15px;
  border-radius: 100%;
  border: 3px solid #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #0066ff;
  box-shadow: 0px 0px 0px 2px #0066ff;
}


.turbo-review-order-description {
  border-width: 1px;
  border-radius: 7px;
  padding: 7px;
}

.turbo-review-order-description textarea {
  background-color: inherit;
  width: 100%;
  min-height: 70px;
  display: flex;
  vertical-align: baseline;
  padding: 12px;
}