.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:hover .edit-text {
  color: #ff8562;
}

@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;

  object-fit: contain;
}

.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: #ff8562;
}

.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; */
}

@media (max-width: 1440px) {
  .checkout {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .checkout {
    padding-top: 50px;
  }
}

.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: 1440px) {
  .checkout__content {
    max-width: 95%;

    margin: 20px auto 0;
  }
}

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

    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: 20px;
}
@media (max-width: 992px) {
  .checkout__block:first-child .checkout__block__title {
    margin-bottom: 10px;
  }
}
.checkout__block__title span:first-child {
  color: #111;

  font-size: 18px;

  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;
  position: relative;
}

@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;

  min-width: 24px;
  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: 16px 10px;

    font-size: 14px;

    line-height: 20px;
  }
}
.promocode__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #000;
}
.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: 0;
}

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

.payment-method {
  margin-top: 40px;

  display: flex;

  flex-direction: column;

  gap: 20px;

  color: #111;
}
@media (max-width: 992px) {
  .payment-method {
    margin-top: 25px;
  }
}
.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;
  display: flex;
  gap: 5px;
}
@media (max-width: 768px) {
  .payment-method .payment-method-crypto-wrapper span {
    gap: 0;
  }
}
.payment-method-input {
}

.checkout__agreement {
  margin-top: 40px;

  color: #828488;
}

.checkout__agreement a {
  color: #ff8562;

  text-decoration: underline;
}

.checkout__btn {
  margin-top: 40px;
color: #000;
    font-weight: 600;
  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;
}

.successPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  display: none;
}
.successPopup[style*="display: block"] {
  display: flex !important;
}
.successPopupInner {
  width: 100%;
  max-width: 560px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: max-content;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .successPopupInner {
    max-width: 90%;
  }
}
.successPopup__head {
  text-align: center;
}
.successPopup__title {
  color: #000;
  font-size: 24px;
}
.successPopup__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.successPopup__text {
  color: #000;
  text-align: center;
  font-size: 18px;
}
.successPopup__text .service__name {
  font-weight: 600;
}
.successPopup__btns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.successPopup__btn:hover {
  transform: translateY(-2px);
  transition: 0.25s;
}
.successPopup__btn {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-radius: 15px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.25s;
  color: #000;
}
.successPopup__btn-cancel {
  border: 1px solid #ffa500;
  background: none;
}
.successPopup__btn-apply {
  border: 1px solid red;
  background-color: red;
  color: #fff;
}
.page-404__image {
  max-width: 300px;
}

.error-404 {
  width: max-content;
  margin: 150px auto 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

@media (max-width: 768px) {
  .error-404 {
    margin: 100px auto;
    width: 100%;
  }
}

.page-404__subtitle {
  color: #fff;
  text-align: center;
}

.page-404 h1 {
  font-weight: 700;
  text-align: center;
}

.page-404__desc {
  color: #fff;
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.page-404 .button {
  background: #ff0000;
  color: #000;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.3s;
  margin: 0 auto;
  display: block;
  width: fit-content;
}
.paymentError__content .paymentError__btn,
.thankYou__content .orderResult__btn,
.page-404 .button {
  background: linear-gradient(90deg, #fcaf3d -2.64%, #ff7a00 102.64%), linear-gradient(0deg, #ffa500, #ffa500);
  color: #000;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: background-color 0.3s;
  margin: 0 auto;
  display: block;
  width: fit-content;
}
.thankYou__content {
  margin: 150px auto 100px;
}
@media (max-width: 768px) {
  .thankYou__content {
    width: 95%;
  }
}
.thankYou__content .orderResult {
  background-color: #fff;
}
.thankYou__content .orderResult * {
  color: #1f1f1f;
}
.thankYou__content .orderResult__head-row span:nth-child(2) {
  font-weight: 600;
  color: #000;
}
.thankYou__content .orderResult__btn {
  margin-top: 20px;
}
.thankYou__content .orderResult__head-title {
  font-size: 20px;
}
.paymentError {
  display: grid;
}

.paymentError .sectionTitle {
  margin-bottom: 0;
}
.paymentError__content * {
  color: #1f1f1f;
}
.paymentError__content {
  display: grid;
  gap: 20px;
  max-width: 600px;
  width: 100%;
  margin: 150px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .paymentError__content {
    width: 95%;
  }
}
.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;
}
.payment-method-hidden{
  display: none !important;
}
.payment-method-group{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}
.payment-method-group button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}
.payment-method-group button svg{
  width: 200px;
  height: 80px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .payment-method-group button svg {
    width: 100px;
  }
}
.payment-method-group button svg:hover rect {
  stroke: #000;
}
.apple-pay{}
.google-pay{}
.payment-method-card{
  display: flex;
  flex-direction: column;
}