/*
Theme Name: aurasushi-child
Template: twentytwentytwo
License: GNU General Public License v2 or later
License URI: LICENSE
*/


/* Block Checkout Monday */
.as-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 120000;
  font-family: 'Inter', sans-serif;
}
.as-popup-window {
  width: 650px;
  max-width: 95vw;
  border-radius: 15px;
  padding: 28px;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgb(255 255 255 / 5%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.as-popup-text {
  font-size: 1rem;
  margin-bottom: 24px;
}
.as-popup-actions {
 display:flex; 
 gap:12px; 
 justify-content:center; 
}

.as-popup-btn-confirm {
  background: #9B51E0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 15px;
  border-radius: 10px;
  font-weight: 900;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03rem;
  transition: all 0.3s ease;
}

.as-popup-btn-confirm:hover {
border: 1px solid #9B51E0 !important;
box-shadow: 0 0 0 2px rgba(155, 81, 224, .18);
}

.as-popup-btn-cancel {
  background:#242424;
  color:#fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding:10px 18px;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
}

.as-popup-btn-cancel:hover {
border: 1px solid #9B51E0 !important;
box-shadow: 0 0 0 2px rgba(155, 81, 224, .18);
}

@media (max-width:480px){
  .as-popup-text{ 
  	font-size:0.95rem 
  }

  .as-popup-btn-confirm, .as-popup-btn-cancel{ 
  	font-size:0.85rem 
  }
}
/*== Popup END ==*/

/* == Screen Loader NO Aura == */
#page-loader {
  animation: loader-fadeout 0.7s ease-out forwards;
  animation-delay: 0.7s;
}

@keyframes loader-fadeout {
  to {
    opacity: 0;
  }
}

.logo-container {
  position: relative;
  width: 298px;
  height: 132px;
  animation: logo-zoom-timeline 0.7s ease-out forwards;
}

.logo-container img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

@keyframes logo-zoom-timeline {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  28.5% {
    transform: scale(1);
    opacity: 1;
  }
  71% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

/* == End Loader == */

/* LIMIT 250, LIMIT ONLINE PAYMENT */
#payment-warning-pickup {
    font-size: 16px;
    color: #af80f0;
    margin-top: 10px;
}

.custom-payment-button.cod {
    cursor: pointer;
    opacity: 1;
}

.custom-payment-button.cod.cod-disabled {
    color: #888888;
    cursor: not-allowed !important;
    opacity: 0.5;
    pointer-events: none;
}
/* ========== */

.header-border-bottom-cust {
border-bottom: 1px solid #9b51e0;
box-shadow: inset 0 -8px 10px -8px #9b51e0;
}

.footer-border-bottom-cust {
border-top: 1px solid #9b51e0;
box-shadow: 0px -4px 10px 0px #9b51e0;
}

.wc-block-components-radio-control__description-group {
    display: none !important;
}


/* заголовок над кнопками */
.shipping-heading {
    margin-bottom: 0.5em;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: left;
    text-transform: uppercase;
}


.col2-set .woocommerce-shipping-totals.shipping th,
.col2-set .woocommerce-shipping-totals.shipping td {
  text-align: left !important;
  float: none !important;
  margin: 0 !important;
}

/*== RADIO OFF SHIPPING BUTTONS == */
.woocommerce-page input[type=radio].shipping_method:checked+label::before, .woocommerce-page input[type=radio][name=payment_method]:checked+label::before {
display: none;
}

.woocommerce-page input[type=radio].shipping_method+label::before, .woocommerce-page input[type=radio][name=payment_method]+label::before {
display: none !important;
}

/*== END === */

.custom-shipping-buttons {
display: flex !important;
flex-wrap: nowrap;
width: 100%;
box-sizing: border-box !important;
text-transform: uppercase;
flex-direction: column;
align-content: space-between;

/* display: flex !important;
flex-wrap: nowrap;
width: 90%;
box-sizing: border-box !important;
text-transform: uppercase;
flex-direction: row;
align-content: center;
gap: 15px;
justify-content: flex-start; */
}

.custom-shipping-button {
  flex: 0 0 calc(50% - 7.5px) !important;
  padding: 8px 10px 5px !important;
  border-radius: 25px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background-color: rgb(255 255 255 / 5%) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  color: #FFF !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease;

}


.custom-shipping-buttons input.shipping_method:checked + .custom-shipping-button {
background-color: #9b51e0 !important;
}

.custom-shipping-button:hover {
  border: 1px solid #9B51E0 !important;
  box-shadow: 0 0 0 2px rgba(155, 81, 224, .18);
}

@media (max-width: 768px) {
  .custom-shipping-button {
    flex: 0 0 calc(50% - 5px) !important;
    font-size: 15px !important;
  }
}



/* WEB LOGO */
@media (max-width: 768px) {
  .web_logo_phones {
    width: 170px;
  }
}


@media (max-width: 768px) {
  .wp-block-group.alignwide.has-inter-font-family {
    padding-top: 20px !important;
  }
  .mobile-margin-bottom-768 {
    margin-bottom: 10px !important;
    }
}

/* Контейнер */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 0px;
}

/* Універсальний бейдж */
.custom-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    padding: 3px 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    z-index: 10;
    white-space: nowrap;
}

/* SVG іконка */
.custom-badge .icon {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

/* Бейджі зі своїми кольорами / рамками */
.custom-badge.vege {
    background-color: transparent;
    border: 1px solid #008000;
}

.custom-badge.spicy {
    background-color: transparent;
    border: 1px solid #c0392b;
}

.custom-badge.bestseller {
    background-color: transparent;
    border: 1px solid #FFD700;
}

.custom-badge.grill {
    background-color: transparent;
    border: 1px solid #FF8C00;
}

.custom-badge.fresh {
    background-color: transparent;
    border: 1px solid #1E90FF;
}

.custom-badge.smoked {
    background-color: transparent;
    border: 1px solid #708090;
}

.custom-badge.tempura {
    background-color: transparent;
    border: 1px solid #FFE4B5;
}

.custom-badge.promo_sale {
    background-color: transparent;
    border: 1px solid #ff0000;
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .custom-badge {
        font-size: 12px;
        padding: 3px 5px;
    }
}













.add_to_cart_button {
    font-size: 12px !important;
    font-weight: bold !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    width: 105px !important;
}

/* WIĘCEJ BUTTON CUSTOM */
.wiecej-button-custom {
    border-radius: 12px;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 600;
    line-height: 2;
    text-transform: uppercase;
    padding: 4px 9px;
    width: 105px;
}


/* Обґрунтовані селектори без :root :where для сумісності */
.woocommerce-table.woocommerce-table--custom-fields.shop_table.custom-fields,
.wc-block-order-confirmation-totals__table {
  border: 1px solid #9B51E0 !important;       /* рамка */
  border-radius: 15px !important;             /* заокруглення */
  background-color: transparent !important;   /* прозорий фон */
  padding: 0 35px !important;                 /* падінг по боках */
  border-collapse: separate !important;       /* дозволяє padding і radius */
  border-spacing: 0 !important;               /* щоб не було зайвих відступів */
}






.status-zamowienia-confirmed h1 {
  font-size: 35px;
color: #9B51E0;
  font-weight: 900;
  margin-bottom: 10px;
}

.status-zamowienia-confirmed p {
  font-size: 1rem;
  font-weight: normal;
}




.woocommerce-powiadomienia {
  margin: 0 !important;
}


.gpls-wpsctr-countdown-timer-wrapper {
    margin: 0 !important;
    margin-top: -25px !important;
}


.gpls-wpsctr-flipper .rotor-painter {
    color: #9B51E0 !important;
text-shadow: 
    0 0 5px #9B51E0;
}

.gpls-wpsctr-countdown-timer-wrapper .rotor-group-heading {
    visibility: hidden;
}

.promka-zestaw-grill {
  text-shadow: 
    0 0 5px #9B51E0,
    0 0 15px #9B51E0;
}



/* OLD REGULAMIN CHECKBOX */
/*
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    margin-top: 30px;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #131313;
    border: 2px solid #9b51e0;
    border-radius: 4px;
    margin-right: 10px;
    transition: border-color 0.3s;
    vertical-align: top;
}

.custom-checkbox input[type="checkbox"]:not(:checked) + .custom-checkmark {
    border-color: #9b51e0;
}

.custom-checkbox input[type="checkbox"]:checked + .custom-checkmark {
    border-color: #131313;
    background-color: #131313;
}

.custom-checkbox input[type="checkbox"]:checked + .custom-checkmark::before {
    content: "✅";
    display: block;
    color: white;
    font-size: 16px;
    text-align: center;
    line-height: 20px;
}

.regulamin-polityka-text-css {
  text-align: justify;
}
*/

/* NEW REGULAMIN CHECKBOX STYLES */
.woocommerce button[type=submit]:not(.wp-block-search__button) {
  margin-top: 0px !important;
}

.woocommerce-terms-and-conditions-wrapper {
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 0px !important;
}

.custom-terms-info a {
  color: #9b51e0;
}



/* MAIN MENU PROMOCJA BADGE */
.custom-sale-badge {
    background-color: #e30000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: white;
    padding: 3px 5px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    z-index: 10;
    white-space: nowrap;
    margin-top: 0 !important;
    margin-bottom: 5px;
}

.custom-sale-badge img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .custom-sale-badge {
        font-size: 12px;
        padding: 3px 5px !important;
        margin-top: 0 !important;
    }
}




/* PRODUCT IMG BORDER */
.woocommerce-product-gallery__image img {
    border-radius: 15px !important;
}

.wc-block-cart-item__image img {
    border-radius: 15px !important;
}

.cart_item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: rgb(255 255 255 / 5%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 25px;
    width: 100%;
    padding: 0px 15px 0px 15px;
    margin-bottom: 5px;
}

.one-product-img-weight {
    width: auto !important;
    height: auto !important;
    display: block;
    max-width: 100% !important;
}

.product-name img {
    border-radius: 12px !important;
    margin-right: 10px !important;
    width: 20%;
    height: auto;
}

.optional {
    display: none !important;
}


/* Прибрати зум фото на сторінці одного продукту */
.zoomImg {
  display: none !important;
}

.single-product .woocommerce-product-gallery__trigger {
  display: none !important;
}

.single-product .woocommerce-product-gallery__image a {
  pointer-events: none;
  cursor: default;
}




/* =====COUPON FORM======= */
.woocommerce-page main .woocommerce {
    max-width: 1200px !important;
}

.woocommerce-form-coupon-toggle.woocommerce-notices-wrapper,
.wc-block-components-notice-banner,
.checkout_coupon.woocommerce-form-coupon {
    background-color: #131313 !important;
    color: white !important;
    padding: 15px !important;
    border-radius: 35px !important;
  margin-bottom: 1rem;
}

/* Стилізація контенту всередині */
.wc-block-components-notice-banner__content,
.woocommerce-form-coupon-toggle.woocommerce-notices-wrapper,
.checkout_coupon.woocommerce-form-coupon p {
    color: white !important;
}

.wc-block-components-notice-banner.is-info>svg {
  background-color: #9b51e0;
}

.wc-block-components-notice-banner.is-info {
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    background-color: rgb(255 255 255 / 5%) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.checkout_coupon.woocommerce-form-coupon {
  border: 1px solid rgba(155, 81, 224, 0.2) !important;
}

/* Фіолетовий колір для посилань */
.wc-block-components-notice-banner__content a,
.woocommerce-form-coupon-toggle.woocommerce-notices-wrapper a,
.checkout_coupon.woocommerce-form-coupon a {
    color: #9b51e0 !important;
    text-decoration: none;
}

/* Стилізація поля вводу */
.checkout_coupon.woocommerce-form-coupon input.input-text {
    background-color: #222 !important;
    color: white !important;
  border: 1px solid rgba(155,   81, 224, 0.8) !important;
    padding: 10px !important;
    border-radius: 8px !important;
}

/* Стилізація кнопки */
.checkout_coupon.woocommerce-form-coupon button.button {
    background-color: #9b51e0 !important; /* Фіолетовий */
    color: white !important;
    font-weight: bold !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.3s ease-in-out !important;
}

/* Ховер ефект для кнопки */
.checkout_coupon.woocommerce-form-coupon button.button:hover {
    background-color: #7a3db8 !important;
}

/* Стилізація іконки */
.wc-block-components-notice-banner svg {
    fill: white !important;
}




/*CHECKOUT KUPON txt*/
.cart-discount {
    color: #28a745 !important;
    background-color: #131313;
    display: flex;
    border: solid 1px;
    border-radius: 15px;
    text-transform: uppercase;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    font-weight: bold;
}

.cart-discount th {
  font-weight: bold !important;
}

/* KOSZYK KUPON */
.wc-block-components-totals-coupon {
    color: #9B51E0;
}



/* img border all products */
.wo-product-img {
  border-radius: 15px !important;
}

/* img border single product */
.wp-block-woocommerce-product-image-gallery {
  border-radius: 15px !important;
}

/* Woo Additional cust */



/* HIDE +1 w koszyku */
.added_to_cart, .wc_forward {
    display: none !important;
}




/* PODSUMOWANIE ZAMOWIENIA */
/* CENTER CHECKOUT */



/* Основний стиль */
.col2-set {
    border-radius: 35px !important;
    background: transparent;
    padding: 20px !important;
    width: 49% !important;
    height: auto !important;
    font-family: 'Inter', sans-serif !important;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background-color: rgb(255 255 255 / 5%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

/*
.col2-set {
  margin-left: 0 !important;
}

#customer_details {
  margin-left: 0 !important;
  margin-right: 25px !important;
}
*/

@media (max-width: 768px) {
  .col2-set {
    width: 90% !important;
    margin-left: 5% !important; 
    margin-right: 5% !important; 
    padding: 15px !important; 
  display: contents;
  }

  #customer_details {
    margin-right: 10px !important;
  }
}

/* @media (max-width: 480px) {
  .col2-set {
    width: 100% !important; 
    padding: 10px !important; 
    margin-left: 0 !important; 
    margin-right: 0 !important; 
  }
} */


.woocommerce-page .woocommerce-checkout,
.woocommerce-page.woocommerce-order-pay {
    display: block !important;
}







/* Усуваємо маржі між елементами списку методів оплати */
.wc_payment_methods.payment_methods.methods li {
    margin-bottom: 0 !important;
}

.wc_payment_methods.payment_methods.methods li label {
    padding-bottom: 0 !important;
}

.wc_payment_methods.payment_methods.methods li {
    padding: 0 !important;
}


.woocommerce-billing-fields__field-wrapper {
    margin-top: 0 !important;
}

.woocommerce-checkout-review-order-table {
    margin-top: 0 !important;
}

/* Вирівнювання вмісту всіх клітинок по верху */
.cart_item td {
    vertical-align: top !important;
}

/* Для зображень, щоб не було відступів */
.cart_item img {
    vertical-align: top !important;
}

.product-total {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
}

.product-total .woocommerce-Price-amount {
    display: inline-block;
    text-align: right;
}

tfoot td {
    text-align: right;
}



.product-name {
    padding-right: 0 !important;
}



.col2-set h3 {
  text-transform: uppercase !important;
  font-size: 1.2rem !important;
}


tr.order-total th {
    font-weight: 900 !important; 
    font-size: 20px !important;
}

tr.order-total td {
    font-weight: 900 !important; 
    font-size: 20px !important; 
}

.woocommerce-checkout-payment {
    margin-top: 10px !important;
}






/* PAYMENT METHOD FLEX */
.custom-payment-button {
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  padding: 8px 10px;
  margin: 5px 5px 0 0;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background-color: rgb(255 255 255 / 5%) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.custom-payment-label {
  letter-spacing: 0.05rem;
  font-size: 16px;
}

.custom-payment-button:hover {
  border: 1px solid #9B51E0 !important;
  box-shadow: 0 0 0 2px rgba(155, 81, 224, .18);
}

.custom-payment-button.selected {
background-color: #9b51e0 !important;
color: rgb(255 255 255) !important;
transition: all 0.3s ease;
}



.custom-payment-icon {
  margin-right: 5px;
}

.payment_method_flex {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}


@media (max-width: 768px) {
  .custom-payment-button {
    width: 100%;
    height: 38px;
    padding: 6px 8px;
    margin: 3px 3px 0 0;
    border-radius: 15px;
  }

  .custom-payment-icon {
    margin-right: 0px;
  }

  .payment_method_flex {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 8px;
  }
}



/* CHECKOUT BUTTON */
.woocommerce #payment #place_order,.woocommerce-page #payment #place_order {
  text-decoration: none !important;
  letter-spacing: 0.08rem !important;
}




/* POLIA */
.input-text {
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background-color: rgb(255 255 255 / 5%) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: white !important;
  border-radius: 25px !important;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background-color: rgb(255 255 255 / 5%) !important;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 25px !important;
}

.select2-selection.select2-selection--single, .select2-selection--single {
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background-color: rgb(255 255 255 / 5%) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  border-radius: 25px !important;
}

.woocommerce form .form-row label {
    color: #bdbdbd !important;
}


/* KNOPKA przejdz do platn. */
button.alt.wp-element-button {
  background-color: #9B51E0 !important;
  color: white !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  text-align: center !important;
  padding: 15px 30px !important;
  border: none !important;
  border-radius: 35px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

button.alt.wp-element-button:hover {
  background-color: #7A3AE1 !important; /* Фіолетовий фон при наведенні */
  box-shadow: 0 0 15px 5px rgba(155, 81, 224, 0.8) !important; /* Неоновий ефект навколо кнопки */
}

button.alt.wp-element-button:active {
  background-color: #7A3AE1 !important; /* Темніший фіолетовий при натисканні */
}







/* KOSZYK PODSUMOWANIE */
/* Для того, щоб блок рухався разом з прокручуванням екрану */
.wc-block-components-sidebar,
.wc-block-cart__sidebar,
.wp-block-woocommerce-cart-totals-block,
.podsumowanie-koszyka {
    border: 2px solid #131313 !important; /* Сіра рамка */
    border-radius: 15px !important;       /* Заокруглені кути */
    position: sticky !important;          /* Приклеїти до сторінки */
    top: 0 !important;                    /* Залишити на верху при прокручуванні */
    padding: 20px !important;             /* Відступи всередині */
    width: 350px !important;              /* Збільшена ширина на 50px до 350px */
    height: 100% !important;             /* Збільшена висота */
    max-height: none !important;          /* Максимальна висота без обмежень */
    overflow-y: auto !important;          /* Прокручування по вертикалі, якщо потрібно */
    background-color: rgba(19, 19, 19, 0.8) !important; /* Прозорий сірий фон з 80% прозорістю */
}

/* Підтримка для мобільних пристроїв */
@media (max-width: 768px) {
    .wc-block-components-sidebar,
    .wc-block-cart__sidebar,
    .wp-block-woocommerce-cart-totals-block,
    .podsumowanie-koszyka {
        width: 100% !important;         /* Ширина блоку на мобільних пристроях */
        height: 100% !important;        /* Висота автоматично на мобільних */
        padding: 20px !important;       /* Зменшення відступів на мобільних */
        padding-top: 30px !important;
    }
}




/* PRIHOVATIO OPIS W MINI KOSZYKU */

.style-cart-sort .wc-block-components-product-metadata,
.style-cart-sort .wc-block-components-product-metadata__description,
.style-cart-sort .wc-block-components-product-metadata__description p {
    display: none !important;
}


/* MINI KOSZYK, Bold Cena*/

.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value {
    font-weight: bold !important;
}

/* ====================== */


.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-totals-item__value {
    font-weight: 900 !important; /* Супер жирний текст */
    font-size: 120% !important; /* Збільшуємо на 50% */
}

.wp-block-woocommerce-mini-cart-title-label-block {
    display: none !important;
}


/* ========== IMAGE */


/* ====IMG END===== */


/* =====MINI KOSZYK dodaj do koszyka ======= */
.outlined, .contained {
    background-color: #9B51E0 !important; /* Фіолетовий фон */
    color: #fff !important; /* Білий текст */
    transition: background-color 0.3s ease, transform 0.3s ease !important;
    border-radius: 15px; /* Округлені кути */
    padding: 8px 12px !important; /* Відступи */
    font-size: 16px !important; /* Розмір шрифту */
    text-align: center !important; /* Вирівнювання тексту */
    cursor: pointer !important; /* Курсор */
    display: inline-block; /* Перетворюємо в елемент, який можна клікати */
}

.outlined:hover, .contained:hover {
    background-color: #7a3fc0 !important; /* Темніший фіолетовий при наведенні */
    transform: scale(1.03); /* Збільшення кнопки */
}

.wc-block-components-button__text {
    color: inherit;
    border-radius: 15px;
    padding: 0px;
    cursor: pointer;
}

.wc-block-components-drawer {
    background-color: #000;
}


/* SHOP BUTTON EMPTY CART PAGE */
.button-container--empty-cart {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.button-woo-com--empty-cart {
  background-color: #242424;
  color: #FFF;
  /* border: solid 1px rgb(155, 81, 224, 0.5); */
  padding: 12px 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0px 0px 8px #9B51E0;
}


.button-woo-com--empty-cart:hover {
  background-color: #9B51E0;
  color: #FFF;
  transform: scale(1.02);
  transition: color 0.5s ease, transform 0.3s ease;
}


/* OPINIE BUTTON, KONTAKT PAGE */
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.button-woo-com {
  background-color: #242424;
  color: #FFF;
  border: 0;
  padding: 12px 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 15px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 8px #ffd700;
}

.star {
  color: #ffd700;
  margin: 0 6px 0;
}

.button-woo-com:hover {
  background-color: rgb(215 181 0);
  color: #FFF;
  transform: scale(1.02);
  transition: color 0.5s ease, transform 0.3s ease;
}

.button-woo-com:hover .star {
  color: #ffffff;
  transform: scale(1.02);
  transition: color 0.5s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
  .star { margin: 0 5px 0; }
}



/* KOSZYK */
.wp-container-6, .wp-container-5 {
  margin-top: 62px !important;
}

/* Сховати опис продукту в mini-cart */
.product-info .entry-summary .description,
.product-info .description {
    display: none !important;
}


.empty-add-cart-button {
  border: solid 1px;
  border-radius: 12px !important;
  padding: 5px 5px !important;
  width: 40% !important;
}

/* Button minus, plus in mini cart */
.wc-block-components-quantity-selector__button--plus,
.wc-block-components-quantity-selector__button--minus {
    border: 1px solid #9b51e0 !important;
    border-radius: 5px !important;
}

/* USUN button */

.wc-block-cart-item__remove-link {
  color: white !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.wc-block-cart-item__remove-link:hover {
  color: #ff4d4d !important;
}

.wc-block-components-button.wc-block-components-drawer__close {
    background: #000000 !important;
    border: solid 1px;
    border-radius: 5px;
    color: inherit !important;
    margin: 1px;
    opacity: 0.8;
    padding: 5px 5px !important;
    position: absolute !important;
    right: 20px;
    top: 12px;
    vertical-align: baseline;
    z-index: 2;
}

/* === */
.wc-block-mini-cart__items {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-y: auto;
    padding: 5px 10px 0;
}


/*
======= OLD СОРТУВАННЯ КАТЕГОРІЙ OLD =======
.kategoria-menu-sort {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    padding: 0 !important; 
    border-radius: 8px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important; 
    margin: 0 !important;
}

.kategoria-menu-sort li {
    display: block !important;
    list-style: none !important;
    padding: 10px 15px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    background-color: rgba(19, 19, 19, 0.8) !important;
    color: white !important;
    border-radius: 8px !important;
    transition: background 0.3s, color 0.3s !important;
    margin: 0 !important; 
}

.kategoria-menu-sort li:hover {
    background-color: #9B51E0 !important;
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .kategoria-menu-sort {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        justify-content: flex-start !important;
    }

    .kategoria-menu-sort li {
        font-size: 16px !important;
        padding: 10px 15px !important;
        white-space: normal !important;
    }
}
======= OLD СОРТУВАННЯ КАТЕГОРІЙ OLD =======
*/

/* = NEW СОРТУВАННЯ КАТЕГОРІЙ NEW = */
    /* СТИЛІ КАТЕГОРІЙ */
    .main-category-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 0;
        margin-top: 0.7rem !important;
        margin-bottom: 0 !important;
        justify-content: flex-start;
        align-items: flex-start;
        border-radius: 8px;
     /* letter-spacing: 0.5px; */
    }

    /* СТИЛІ ДЛЯ КНОПОК*/
    .main-category-menu a {
        display: block;
        padding: 7px 13px;
        font-size: 16px;
        font-weight: bold;
        background-color: rgb(24, 24, 24);
        border: 1px solid rgba(155, 81, 224, 0.1);
        border-radius: 8px;
        color: white;
        text-align: center;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
        white-space: nowrap;
    }

    /* ХОВЕР-ЕФЕКТ */
    .main-category-menu a:hover {
        background-color: #9B51E0;
        cursor: pointer;
    }

    /* Активний стан */
    .main-category-menu a.active {
        background-color: #9B51E0;
        color: #fff;
    }

    /* МОБІЛЬНА ВЕРСІЯ */
    @media (max-width: 768px) {
        .main-category-menu {
        gap: 10px;
        padding-left: 0 !important;
        padding-right: 0 !important;
        letter-spacing: 0.5px;
        justify-content: flex-start;
            overflow-x: auto; /* Горизонтальний скрол */
            flex-wrap: nowrap;
            -webkit-overflow-scrolling: touch;
        }

        .main-category-menu::-webkit-scrollbar {
            display: none;
        }

        .main-category-menu a {
            font-size: 16px;
        }
    }





/* KNOPKIIIIIIII */
/* Адаптація для телефонів */
@media only screen and (max-width: 480px) {
  button.wp-block-button__link.wp-element-button span,
  button.wc-block-components-product-button__button span,
  button.wc-interactive span {
    font-size: 12px !important; /* Збільшуємо розмір тексту для кращої читабельності */
    padding: 0 !important;
    margin: 0 !important;
  }
}


.but-pric-cont {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-to-cart-btn {
    background-color: #9B51E0;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #7a3ab6;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quantity-controls button {
    background-color: #131313;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.quantity-controls button:hover {
    background-color: #9B51E0;
}

a {
  text-decoration: none; /* Прибирає підкреслення з усіх посилань */
}

/* Підтримка для телефонів */
@media only screen and (max-width: 480px) {
    .add-to-cart-btn {
        padding: 8px 12px; /* Зменшені відступи */
        font-size: 12px;  /* Зменшений розмір шрифту */
    }
    
    .quantity-controls button {
        padding: 4px 8px; /* Зменшені відступи */
        font-size: 14px;  /* Зменшений розмір шрифту */
    }
    
    .quantity-controls {
        gap: 3px; /* Менший проміжок між кнопками */
    }
}




/* MENU NAVIGACJA */
.nawigacja-menu-nav ul li a {
  text-decoration: none !important;
  color: white !important;
  font-size: 18px !important;
  font-weight: bold !important;
  transition: text-shadow 0.4s ease;
}

.nawigacja-menu-nav ul li a:hover {
  color: #9B51E0 !important;
  text-shadow:
    0 0 10px #9B51E0,
    0 0 20px #9B51E0,
    0 0 30px #9B51E0 !important;
}

/* Підсвічування активного пункту меню */
.nawigacja-menu-nav ul li.active a {
  color: #9B51E0 !important;
  text-shadow:
    0 0 10px #9B51E0,
    0 0 20px #9B51E0,
    0 0 30px #9B51E0 !important;
}


/* Адаптація для телефонів */
@media (max-width: 768px) {
  .nawigacja-menu-nav ul li a {
    font-size: 16px !important;
  }
}

/* Підняти меню на 10px на екранах від 769px і ширше */
@media (min-width: 769px) {
  .nawigacja-menu-nav {
    margin-top: -5px !important;
  }
}







/* required */
.required {
  color: red !important;
}



/* sticks box checkout */
.select2-selection.select2-selection--single,
.select2-selection--single {
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  background-color: rgb(255 255 255 / 5%) !important;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  border-radius: 25px !important;
}


.select2-dropdown.select2-dropdown--above,
.select2-dropdown.select2-dropdown--below {
    color: white !important;
    background-color: #242424 !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 15px !important;
}

.select2-selection__rendered {
   color: white !important;
}

/* приховати поле пошуку */
.select2-search__field {
    display: none !important;
}







/* NAZWA PRODUCTU */



/* CENNIK MENU */


/* SKIDKI CENA (PRODUCTS MENU, IN KOSZYK) */
.style-cena-prod {
display: flex;
/* flex-direction: column; */
align-items: flex-start;
}

/* Стара ціна (del) */
.style-cena-prod del {
  text-decoration: none !important; /* Вимикаємо стандартне горизонтальне закреслення */
  color: rgb(150 150 150) !important; /* Білий */
  font-size: 75% !important;       /* Зменшення розміру тексту */
  font-weight: bold !important;      /* Жирний шрифт */
  position: relative !important;   /* Потрібно для псевдоелемента ::after */
  margin-bottom: -8px !important; /* Зменшений відступ між старою і новою ціною */
}

/* Тонка діагональна лінія для старої ціни */
.style-cena-prod del::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 2px solid rgb(150 150 150) !important; /* Тонка (1px) діагональна лінія */
  transform: rotate(15deg) !important;         /* Нахил 20 градусів */
  transform-origin: center;
  pointer-events: none;                        /* Лінія не блокує кліки */
}

.style-cena-prod ins {
  color: #9b51e0 !important;
  font-weight: 800 !important;
}

/* Ціна в міні кошику (регулярна) ціна */
.wc-block-components-product-price__regular {
  text-decoration: none !important;  /* Вимикаємо стандартне горизонтальне закреслення */
  color: rgb(150 150 150) !important; 
  font-size: 85% !important;      /* Зменшення розміру тексту */
  font-weight: bold !important;      /* Жирний шрифт */
  position: relative !important;     /* Для псевдоелемента ::after */
}

/* Тонка діагональна лінія для звичайної ціни */
.wc-block-components-product-price__regular::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 2px solid rgb(150 150 150) !important; /* Тонка (1px) діагональна лінія */
  transform: rotate(15deg) !important;         
  transform-origin: center;
  pointer-events: none;                        /* Лінія не впливає на взаємодію з елементом */
}

.wc-block-cart-item__prices ins.wc-block-components-product-price__value.is-discounted {
  color: #9b51e0 !important;
  font-weight: 800 !important;
}






/* PO RABACIE TEXT */
.wc-block-components-product-price__value.is-discounted {
  font-size: 1.1em !important;  /* Трохи більший розмір шрифту */
  font-weight: bold !important;  /* Жирний шрифт */
  color: white !important;       /* Білий колір тексту */
}

/*BAGAGE KOSZYK */
.wc-block-components-product-badge {
  color: green !important;
}


.wo-product-name {
  font-size: 1.5rem !important; /* Базовий розмір тексту для десктопу */
  line-height: 1.2 !important;
}

/* Адаптація для телефонів */
@media only screen and (max-width: 480px) {
  .wo-product-name {
    font-size: 1.3rem !important; /* Зменшений розмір тексту для мобільних */
    line-height: 1.1 !important;
  }
}


/* BAGAGE on main MENU */



/* Dodaj do koszyka */
/* ========== 1. Виправляємо батьківський контейнер, щоб не тягнув дітей ========== */
.woocommerce form .form-row,
.woocommerce form .cart,
.woocommerce div.quantity {
    align-items: flex-start !important;
}

/* ========== 2. Кнопка ========== */
button.single_add_to_cart_button {
    /* Твої кольори та шрифти залишаються: */
    background-color: #9b51e0 !important;
    color: white !important;
    font-size: 16px !important;
    border-radius: 15px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    text-align: center !important;
    padding: 10px 20px !important;

    /* ВИМИКАЄМО розтягування: */
    display: inline-flex !important;   /* Замість block */
    width: auto !important;           /* Прибрати 100% ширину */
    height: auto !important;          /* Якщо десь задано висоту */
    flex: 0 0 auto !important;        /* Не тягнутися у flex-контейнері */
    align-items: center !important;   /* Вирівнювання тексту/іконок по вертикалі */
    justify-content: center !important;
    align-self: flex-start !important; /* Якщо батько – flex зі stretch */
}

/* При ховері */
button.single_add_to_cart_button:hover {
    background-color: #7f33b4 !important;
}

/* ========== 3. Поле кількості ========== */
input.input-text.qty.text,
.qty .input-text.qty.text {
    /* Твої кольори, шрифти, тощо лишаються */
    font-size: 14px !important;
    padding: 5px !important;
    text-align: center !important;

    /* ВИМИКАЄМО розтягування: */
    display: inline-block !important; 
    width: 60px !important;     /* можеш змінити на auto, якщо треба */
    height: auto !important;
    flex: 0 0 auto !important;
    align-self: flex-start !important; 
    margin-top: 0 !important;  /* При бажанні зроби 10px, щоб опустити нижче */
}

/* Ховаємо поле кількості */
input.input-text.qty.text,
.qty {
    display: none !important;
}



/* OLD 10% BANNER */
/*
.main-discount-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 1000px;
    margin: 0;
    padding: 5px 0 0 0;
}

.banner-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-discount-banner-title {
    color: white;
    font-size: 112px;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 5px #9B51E0, 0 0 10px #9B51E0, 0 0 15px #9B51E0;
    position: static;
    margin: 0;
    animation: neonShadowPulse 3s ease-in-out infinite;
}

.banner-code {
    border: 1px solid white;
    background-color: rgba(155, 81, 224, 0.7);
    color: white;
    border-radius: 15px;
    padding: 4px 8px;
    font-size: 16px;
    font-weight: 600;
    margin-left: 15px;
    display: inline-block;
}

.main-discount-banner-text {
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    text-shadow: 1px 1px 4px black;
    position: static;
    margin: 0;
    padding: 0;
}

.small-discount-banner-text {
    color: white;
    font-size: 9px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 5px;
    position: static;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .main-discount-banner {
        width: 100%;
        padding: 0 0 0 0;
    }

    .main-discount-banner-title {
        font-size: 70px;
        padding-top: 0;
    }

    .banner-code {
        font-size: 14px;
        margin-left: 10px;
        padding: 3px 8px;
    }

    .main-discount-banner-text {
        font-size: 25px;
    }

    .small-discount-banner-text {
        font-size: 8px;
    }
}

@keyframes neonShadowPulse {
    0%, 100% {
        text-shadow:
            0 0 5px #9B51E0,
            0 0 10px #9B51E0,
            0 0 15px #9B51E0;
    }
    50% {
        text-shadow:
            0 0 10px #9B51E0,
            0 0 20px #9B51E0,
            0 0 30px #9B51E0;
    }
}
*/


/* NEW 10% BANNER AS */
  .as_custom_promo_banner {
    position: relative;
    width: 1000px;
    height: 200px;
    overflow: hidden;
    border: 1px solid #9b51e0;
    border-radius: 15px;
    box-shadow: 0 0 8px #9b51e0;
    margin: 20px auto;
    display: block;
  }

  .as_custom_promo_banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("https://aurasushi.pl/wp-content/uploads/2025/02/aura-sushi-japan-wave-copyright-purple-inverse-scaled.jpg");
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1200px auto;
    filter: blur(0.05rem);
    z-index: 0;
  }

  .as_custom_promo_banner__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
  }

  .as_custom_promo_banner__title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
  }

  .as_custom_promo_banner__title {
    font-size: 70px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 5px 2px 5px #9b51e0;
  }

.as_custom_promo_banner__title--zero {
  font-size: 90px;
  color: greenyellow;
    text-shadow: 5px 2px 3px #28a300;
}
  .as_custom_promo_banner__code {
    background: repeating-linear-gradient(315deg, #9b51e0, transparent 110px);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 1px 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-left: 5px;
    border: 1px solid #fff;
    border-radius: 12px;
    box-shadow: 0px 0px 8px #fff;
  }

  .as_custom_promo_banner__text {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0px;
    text-shadow: 2px 2px 5px #000;
  }

  .as_custom_promo_banner__small-text {
    font-size: 0.66rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: auto;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #000;
  }

.as_custom_promo_banner__leaf {
  position: absolute;
  top: 0px;
  bottom: 0px;
  height: auto;
  width: 400px;
  z-index: 1;
  pointer-events: none;
  /* filter: blur(0.03rem); */
}

.as_custom_promo_banner__leaf--left {
  left: -108px;
    top: -16px;
}

.as_custom_promo_banner__leaf--right {
  /* right: -91px;
    top: -63px; */
  right: -145px;
  top: -70px;
}


  @media (max-width: 768px) {
    .as_custom_promo_banner { width: 100%; height: 150px; }
    .as_custom_promo_banner__title { font-size: 40px; }

.as_custom_promo_banner__title--zero {
  font-size: 50px;
}   

 .as_custom_promo_banner__code { font-size: 14px; margin-left: 5px; }
    .as_custom_promo_banner__text { font-size: 20px; }
    .as_custom_promo_banner__small-text { font-size: 8px; }
  .as_custom_promo_banner__leaf {
  height: auto;
  width: 200px;
    /* filter: blur(0.03rem) !important; */
}
.as_custom_promo_banner__leaf--left {
  left: -73px;
    top: -20px;
}
.as_custom_promo_banner__leaf--right {
  right: -91px;
    top: -37px;
}
  }




/* ALERGENY TABLCIA */
@media only screen and (max-width: 768px) {
  .alergeny-tablica {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
  }
  .alergeny-tablica th,
  .alergeny-tablica td {
    padding: 5px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
}


/* Opinie klientow TEXT */
.opinie-klientow-text {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  font-size: 18px;
  font-weight: bolder;
  text-transform: uppercase;
  padding: 0;
  margin-top: 70px !important;
  text-align: center;
}

@media (max-width: 768px) {
    .opinie-klientow-text {
    font-size: 18px !important;
  padding: 10px 10px 10px !important;
  width: 80%;
  height: 100%;
    }
}

.bestsellery-text,
.kategorie-produktow-text {
    border: 1px solid #9B51E0;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .bestsellery-text,
    .kategorie-produktow-text {
        font-size: 1.5rem !important;
    }
}





/* Блок товарів з прокруткою */
.wc-block-mini-cart__items {
    max-height: calc(100vh - 150px); /* Автоматично підлаштовується під екран */
    overflow-y: auto;  /* Дозволяє вертикальну прокрутку */
}

/* Футер */
.mini-cart-footer-custom {
    position: sticky !important;          /* Залишаємо футер закріпленим внизу */
    bottom: 0 !important;                 /* Футер завжди внизу */
    z-index: 10 !important;               /* Забезпечує, щоб футер був на передньому плані */
    background-color: black !important;   /* Чорний фон */
}

/* Медіазапит для екранів шириною більше ніж 768px (планшети та ноутбуки) */
@media (min-width: 768px) {
    .wc-block-mini-cart__items {
        max-height: calc(100vh - 200px) !important; /* Зменшуємо висоту для великих екранів, щоб не перекривало футер */
    }
}

/* Медіазапит для великих екранів (ноутбуки та десктопи) */
@media (min-width: 1024px) {
    .wc-block-mini-cart__items {
        max-height: calc(100vh - 250px) !important; /* Ще більше зменшуємо висоту на великих екранах */
    }
}


.wc-block-components-notice-snackbar {
    display: none !important;
}

.back-button-custom-button {
  border-radius: 25px;
  color: #bdbdbd;
  text-align: left;
  padding: 5px 15px 5px 8px;
  font-size: 16px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  white-space: nowrap;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-color: rgb(255 255 255 / 5%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.back-button-custom-button:hover {
  border: 1px solid #9B51E0 !important;
  box-shadow: 0 0 0 2px rgba(155, 81, 224, .18);
  color: #9b51e0;
}

.back-button-custom-icon{
  width: 18px;
  height: 18px;
  display: block;
}


html, body {
    overflow-x: hidden !important;
}
