.shoppingCart {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99999;
  justify-content: flex-end;
  /* display: none; */
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.shoppingCart.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.shoppingCart__inner {
  padding: 20px;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  max-width: 600px;
  width: 100%;
  height: 100%;
  transform: translateX(100%);
  transition: 0.3s;
  overflow: auto;
}

@media (max-width: 992px) {
  .shoppingCart__inner {
    width: 90%;
    padding: 10px;
  }
}

.shoppingCart.open .shoppingCart__inner {
  transform: translateX(0);
  transition: 0.3s;
}

.shoppingCart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shoppingCart__head svg {
  cursor: pointer;
}

.shoppingCart__head-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #000;
  font-weight: 700;
}
@media (max-width: 992px) {
  .shoppingCart__head-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.orderList {
  margin-top: 20px;
}

.orderList__item {
  border-bottom: 2px solid #e8e8e8;
  padding: 20px 0 10px;
}

.orderList__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.orderList__item-row__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.orderList__item-row__social-group {
  display: flex;
  align-items: center;
  gap: 5px;
}
.orderList__item-row__social-icon {
  display: flex;
}
.orderList__item-row__social-icon img {
  width: 32px;
  height: 32px;
}

@media (max-width: 992px) {
  .orderList__item-row__social-icon img {
    width: 24px;
    height: 24px;
  }
}

.orderList__item-row__social-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #111;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}

@media (max-width: 992px) {
  .orderList__item-row__social-name {
    font-size: 14px;
    line-height: 18px;
  }
}

.orderList__item-row__service {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #111;
}

@media (max-width: 992px) {
  .orderList__item-row__service {
    font-size: 16px;
    line-height: 24px;
  }
}

.delete {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .delete {
    width: 20px;
    height: 20px;
  }
}
.orderList__item-row__group {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #111;
}

.edit {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: #828488;
  font-size: 16px;
  line-height: 22px;
}

.edit-text {
}

@media (max-width: 992px) {
  .edit-text {
    display: none;
  }
}

.edit img {
  width: 24px;
  height: 24px;
}
@media (max-width: 992px) {
  .edit img {
    width: 20px;
    height: 20px;
  }
}
.edit-action {
  display: flex;
  align-items: center;
  gap: 20px;
  display: none;
}

.edit-action[style*='display: block'] {
  display: flex !important;
}

.edit-action img {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.orderList__item-row__link {
  width: 100%;
}
.orderList__item-row__link input {
  border: none;
  outline: none;
  border: 2px solid transparent;
  border-radius: 114px;
  padding: 8px 0;
  width: 100%;
}

@media (max-width: 992px) {
  .orderList__item-row__link input {
    padding: 6px 0;
  }
}

.orderList__item-row__link input.changed {
  border-color: #0071eb;
}

.orderList__item-row__link input[disabled] {
  background-color: #fff;
  font-weight: 600;
}

.orderList__item-row__text {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.orderList__item-row__current-price {
  font-weight: 600;
}

.orderList__item-row__old-price {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-decoration: line-through;
  color: #828488;
}
.orderNotification__price-total {
}
.shoppingCart__total {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.shoppingCart__total-item {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.money__sale {
  font-weight: 600;
}

.shoppingCart__total-item-right {
  display: flex;
  align-items: baseline;
}
.shoppingCart__total-item-right:has(.money__sale) {
  color: #ff2222;
}
.shoppingCart__btn {
  outline: none;
  border: none;
  margin-top: 40px;
  width: 100%;
  transition: none;
  background:
    linear-gradient(90deg, #fcaf3d -2.64%, #ff7a00 102.64%), linear-gradient(0deg, #ffa500, #ffa500);
  border-radius: 30px;
  padding: 16px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #111;
  cursor: pointer;
}
@media (max-width: 992px) {
  .shoppingCart__btn {
    font-size: 14px;
    line-height: 18px;
    padding: 15px 0;
  }
}

.shoppingCart__btn:hover {
  box-shadow: none;
}
.shoppingCart__btn_keep-shopping {
  margin: 10px auto 0;
  display: block;
  width: 100%;
  border: 1px solid #ffa500;
  border-radius: 30px;
  color: #111;
  padding: 16px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  background: none;
  cursor: pointer;
}
@media (max-width: 992px) {
  .shoppingCart__btn_keep-shopping {
    font-size: 14px;
    line-height: 18px;
    padding: 15px 0;
  }
}
.orderNotification {
  display: none;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 40px 0 0 40px;
  border: 2px solid #e8e8e8;
  border-right: none;
  position: fixed;
  right: 0;
  top: 266px;
  margin: auto;
  height: max-content;
  cursor: pointer;
  z-index: 9999;
  background-color: #fff;
}
@media (max-width: 768px) {
  .orderNotification {
    padding: 12px 20px 12px 12px;
    top: 272px;
  }
}

.orderNotification.open {
  display: flex;
}

.orderNotification .orderNotification__group {
  position: relative;
  display: flex;
}

.orderNotification .orderNotification__group img {
  width: 32px;
  height: 32px;
}
@media (max-width: 992px) {
  .orderNotification .orderNotification__group img {
    width: 27px;
    height: 27px;
  }
}

.orderNotification__count {
  position: absolute;
  top: -13px;
  right: -13px;
  background-color: #0071eb;
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orderNotification__price {
  display: flex;
  align-items: baseline;
  color: #111;
}
@media (max-width: 768px) {
  .orderNotification .orderNotification__price {
    display: none;
  }
}
.orderNotification__price-total {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
}
.shoppingCart__total-item-left {
  color: #000;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 992px) {
  .shoppingCart__total-item-left {
    font-size: 14px;
    line-height: 20px;
  }
}
h4.shoppingCart__total-item-left {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 992px) {
  h4.shoppingCart__total-item-left {
    font-size: 16px;
    line-height: 20px;
  }
}
.shoppingCart__total-item-right {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #000;
}
.shoppingCart__total .shoppingCart__total-item:first-child .shoppingCart__total-item-right {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}
@media (max-width: 992px) {
  .orderList__item-row__label {
    font-size: 14px;
    line-height: 18px;
  }
}

.checkout {
  padding: 160px 0 60px 0;
  /* display: none; */
}
.sectionTitle {
  font-weight: 600;
  font-size: 40px;
  line-height: 70px;
}
@media (max-width: 992px) {
  .sectionTitle {
    font-size: 24px;
    line-height: 30px;
  }
}
.text-center {
  text-align: center;
}
.checkoutForm {
}

.checkout__content {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .checkout__content {
    flex-direction: column;
    gap: 20px;
  }
}

.checkout__block {
  border: 2px solid #e8e8e8;
  border-radius: 40px;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  height: max-content;
  background-color: #fff;
}
@media (max-width: 992px) {
  .checkout__block {
    max-width: 100%;
  }
}
.checkout__block:first-child .checkout__block__title {
  margin-bottom: 40px;
}
.checkout__block__title span:first-child {
  color: #111;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
.form-group-label {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
.checkout__block__title_grey {
  color: #828488;
}

.promocode {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .promocode {
    flex-direction: column;
    gap: 15px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.checkout .form-group input {
  border: 2px solid #e8e8e8;
  padding: 17px 20px;
  border-radius: 40px;
}
.checkout .form-group input::placeholder {
  font-size: 16px;
  line-height: 22px;
}

label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-input {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out;
}

.radio-input:checked {
  border-color: #FF8562;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.radio-input:checked::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #FF8562;
  display: block;
}

.radio-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.radio-input:disabled + span {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-group input::placeholder {
  color: #b1b1b4;
}

.form-group-label {
}

.promocode__btn,
.checkout__btn {
  position: relative;
  border-radius: 30px;
  outline: none;
  border: none;
  padding: 16px 15px;
  background:
    linear-gradient(90deg, #fcaf3d -2.64%, #ff7a00 102.64%), linear-gradient(0deg, #ffa500, #ffa500);
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 992px) {
  .promocode__btn,
  .checkout__btn {
    padding: 15px 10px;
    font-size: 14px;
    line-height: 20px;
  }
}
.mono__checkout {
  background-color: #000;
  border-radius: 40px;
  padding: 13px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-top: 40px;
}

.mono__checkout:hover {
  transform: translateY(-2px);
}

.mono__checkout img {
  width: 15px;
  height: 15px;
}

.checkout__separator {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  position: relative;
}

.checkout__separator::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #e8e8e8;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
}

.checkout__separator span {
  padding: 0 5px;
  background-color: #fff;
}

.payment-method {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #111;
}

.payment-method label {
  display: flex;
  gap: 10px;
}
.payment-method .payment-method-crypto-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}
.payment-method .payment-method-crypto-wrapper span {
    margin-right: 0;
    margin-left: auto;
}
.payment-method-input {
}

.checkout__agreement {
  margin-top: 40px;
  color: #828488;
}

.checkout__agreement a {
  color: #FF8562;
  text-decoration: underline;
}

.checkout__btn {
  margin-top: 40px;
  width: 100%;
}

.thankYou__content h5 {
}

@media (max-width: 992px) {
  .thankYou__content h5 {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
  }
}

.orderResult {
  margin: 40px auto 0;
  border: 2px solid #e8e8e8;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  border-radius: 40px;
}

@media (max-width: 992px) {
  .orderResult {
    padding: 10px;
  }
}

.orderResult__head-name {
  color: #828488;
}

.orderResult__head-group {
  margin-top: 40px;
  display: grid;
  gap: 10px;
  padding-bottom: 20px;
}

.orderResult__bottom {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .orderResult__bottom {
    margin-top: 30px;
  }
}

.orderResult__bottom h4 {
  font-weight: 600;
}

.orderResult .orderList__item {
  border-bottom: none;
  border-top: 2px solid #e8e8e8;
}

.orderResult__bottom-desc {
  margin-top: 10px;
}

.orderResult__btn {
  margin-top: 20px;
}

.orderResult__bottom-link {
  display: block;
  width: max-content;
  margin: 30px auto 0;
  color: #2389af;
}

@media (max-width: 992px) {
  .thankYou__content .sectionTitle {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .orderResult__bottom-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.paymentError {
  display: grid;
}

.paymentError .sectionTitle {
  margin-bottom: 0;
}

.paymentError__content {
  display: grid;
  gap: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.paymentError__btn {
  width: 100%;
  margin-top: 20px;
}

.paymentError__img {
  max-width: 100px;
  margin: auto;
}

.paymentError__bottom-link {
  display: block;
  margin: 30px auto 0;
  width: max-content;
  color: #2389af;
}
