﻿:root {
    --var-primary-color-shop: #e40c7d;
    --var-primary-color-dark: #8a0043;

}

/* Scrollbar personalizzato per WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background-color: #e40c7d;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #8a0043;
}

/* Per Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #e40c7d #f0f0f0;
}

/* ============================
   SIDEBAR
============================ */
.category-item {
    display: block!important;
    width: 100%;
    margin-bottom: 5px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 25px;
}

.category-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #000;
}

.category-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.category-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.count-submenu {
    display: inline-block;
    background-color: var(--var-primary-color-shop)!important;
    color: #fff!important;
    border-radius: 50%;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;

    line-height: 24px;
}

.toggle-submenu {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.submenu {
    display: none;       /* nasconde */
    list-style: none;
    margin: 0;
    padding: 8px 0 0 28px; /* indentazione */
}

.submenu li {
    display: block;
    margin: 4px 0;
}

.category-item.active > .submenu {
    display: block;     /* mostra */
}

/* ============================
   Checkbox e Radio Uniformi
============================ */
.custome-radio {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custome-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custome-radio .form-check-label {
    position: relative;
    display: inline-block;
    padding-left: 28px;
    cursor: pointer;
    color: #000;
    font-weight: 400;
    transition: color 0.2s ease;
}

.custome-radio .form-check-label:hover span {
    color: var(--var-primary-color-shop);
}

/* === Cerchio (radio) === */
.custome-radio .form-check-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
}

/* === Puntino interno === */
.custome-radio input[type="radio"]:checked + .form-check-label::before {
    border-color: var(--var-primary-color-shop);
    background-color: var(--var-primary-color-shop);
    box-shadow: 0 0 0 2px var(--var-primary-color-dark);
}

/* === Testo accanto === */
.custome-radio .form-check-label span {
    font-size: 14px;
    color: #687188;
    vertical-align: middle;
}

/* === Bottone dettaglio varianti === */
.product-cart-wrap .product-card-bottom .add-cart .link {
    position: relative;
    display: inline-block;
    padding: 6px 20px 6px 20px;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #1F1F1F;
    color: #1F1F1F;
}
.product-cart-wrap .product-card-bottom .add-cart .link:hover {
    background-color: #1F1F1F;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

/* ============================
   AUTOCOMPLETAMENTO
============================ */

/* --- TOGLIE ICONA RICERCA --- */
.search-style-2 form input {
    background: transparent!important;
}

.lw-ac-list {
    display: none;
    z-index: 99999;
    position: absolute;
    top: 0;
    background-color: white;
    max-height: 300px;
    width: 100%;
    overflow-y: auto;

    -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    box-shadow: 1px 1px 15px rgba(0,0,0,0.1);
}

/* ðŸ”¹ Aumenta altezza su mobile */
@media (max-width: 767px) {
    .lw-ac-list {
        max-height: 600px;
    }
}

.lw-ac-list > p {

    padding: 15px 15px 15px 20px;

}

.lw-ac-list > p:hover {

    background-color: #f6f7f8;
    cursor: pointer;

}

.lw-ac-list > p[disabled] {

    color: #aaa;
    font-weight: 300;
    cursor: no-drop;

}

.lw-ac-list > p[disabled]:hover {

    color: #aaa;
    background: #fff;
    font-weight: 300;
    cursor: no-drop;

}

.lw-ac-input {
    position: relative;
}

.lw-ac-input .clear-input-x {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    color: #aaa;
    z-index: 10;
    transition: all 0.5s;
}

.lw-ac-input .clear-input-x:hover {
    color: #dc3545;
}
/* ============================
   H1 Liste di Prodotti
============================ */
.archive-header h1 {
    font-size: 28px;
}
/* ============================
   FILTRI MOBILE
============================ */
.btn-filtri-mobile {
    margin-right: 5px;
    color: var(--var-primary-color-shop)!important;
}
.btn-filtri-mobile i.arrow {
    display: none;
}

/* ============================
   GALLERIA IMMAGINI
============================ */
.product-image-slider figure {

    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;

}

.product-image-slider figure img {

    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* âœ… mostra tutta lâ€™immagine */
    object-position: center;
    transition: transform 0.3s ease;

}

.slider-nav-thumbnails .slick-slide {
    cursor: pointer;

    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.slider-nav-thumbnails .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* âœ… mantiene tutto visibile */
    object-position: center;
    transition: transform 0.3s ease;
}

.slider-nav-thumbnails .slick-slide.slick-current {
    border: 2px solid var(--var-primary-color-shop);
}

.slider-nav-thumbnails .slick-slide.slick-current img {
    border: unset!important;
}

/* ============================
   FIX VAIRANTI DETTAGLIO
============================ */
/* VARIANTI COLORE - layout compatto */
.product_variant.color ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    padding: 0;
}

.product_variant.color li {
    list-style: none;
}

.product_variant.color li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: visible;
    transition: all 0.2s ease;
    padding: 0; /* âœ… nessun margine interno */
}

.product_variant.color li a img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* âœ… riempie meglio il box */
    object-position: center;
    border-radius: 6px;
    display: block;
}

/* --- Hover e stato attivo --- */
.product_variant.color li a:hover {
    border: 5px solid var(--var-primary-color-shop);
    /*transform: scale(1.04);*/
}

.product_variant.color li.active a {
    border: 5px solid var(--var-primary-color-shop);
}


.list-filter li a:hover,
.list-filter li.active a {
    color: #fff!important;
    background-color: #e40c7d;
    border-color: #e40c7d;
}

/* ============================
   BADGE PRODOTTO
============================ */
/* === DISPONIBILE === */
.stock-status.in-stock {
    background: #DEF9EC;
    color: #005a2f;
}

/* === ESAURITO === */
.stock-status.out-stock {
    background: #fde0e9;
    color: #b1002e;
}

/* === IN ESAURIMENTO === */
.stock-status.low-stock {
    background: #fff4d4;
    color: #7a5200;
}

/* === PROMOZIONE === */
.stock-status.promo {
    background: #FFE6D6;
    color: #FF8C00;
}

/* === NOVITÃ€ (Pepino Style) === */
.stock-status.new {
    background: #FFD9EC;   /* Rosa chiaro soft, coerente col brand */
    color: #C00064;        /* Fucsia Pepino */
}

/* === VETRINA === */
.stock-status.hot {
    background: #FFE8D6;   /* Arancio chiaro di base */
    color: #FF4B00;        /* Arancio-rosso acceso */
}

/* === SCONTO === */
.stock-status.discount {
    background: #E6F4FF;   /* Celeste chiaro per sfondo */
    color: #0078D7;        /* Blu acceso, in linea con toni moderni */
}

/* === SPEDIZIONE GRATUITA (IMPATTO FORTE) === */
.stock-status.free-shipping {
    background: #C1FF72;   /* Verde lime acceso â†’ attira subito lâ€™occhio */
    color: #2A3A00;        /* Verde scuro per contrasto e leggibilitÃ  */
}


/* ============================
   FIX INPUT SELECT
============================ */
select.form-control {
    appearance: none; /* rimuove freccia nativa */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 24px 16px;
    padding-right: 32px; /* spazio per la freccia */
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.25s ease;
    cursor: pointer;
}

/* Effetto focus */
.form-control:focus,
select.form-control:focus {
    border-color: var(--var-primary-color-shop);
    outline: none;
    box-shadow: 0 0 0 2px rgba(228, 12, 125, 0.15);
}



/* ============================
   TOOLTIP PERSONALIZZATO
============================ */
.tooltip-inner {
    background-color: #e40c7d !important;   /* colore Pepino */
    color: #fff !important;                 /* testo bianco */
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 500;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #e40c7d !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: #e40c7d !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: #e40c7d !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: #e40c7d !important;
}

.tooltip.show {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.tooltip-inner {
    background-color: #e40c7d !important;
    color: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(228, 12, 125, 0.3);
    font-size: 13px;
}

.tooltip-arrow::before {
    border-color: #e40c7d transparent transparent transparent !important;
}

/* ============================
   ALERT AGGIUNTA CARRELLO
============================ */
/* --- BASE --- */
/* ============================
   ALERT BASE
============================ */
/* === STATO BASE (nascosto) === */
.lw-alert {
    display: none;                /* nascosto finchÃ© JS non mostra */
    position: fixed;
    right: -300px;                /* fuori schermo â†’ modificabile */
    bottom: 180px;                /* altezza DESKTOP â†’ modificabile */
    background: var(--var-primary-color-shop);
    color: #fff;
    padding: 16px 22px;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
    opacity: 0;
    z-index: 99999;
    transition: all .45s cubic-bezier(0.22, 1, 0.36, 1); /* stile iOS */
}

/* === STATO VISIBILE (slide-in iOS) === */
.lw-alert.show {
    right: 20px;                  /* posizione finale â†’ MODIFICA QUI */
    opacity: 1;
}


/* DECORAZIONE ICONA SFONDO */
.lw-alert::after {
    content: attr(data-icon);
    position: absolute;
    right: 12px;
    top: 6px;
    font-size: 2rem;
    opacity: .12;
    pointer-events: none;
}


/* ============================
   MOBILE
============================ */
@media(max-width: 768px) {

    .lw-alert {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        bottom: 80px;            /* posizione mobile â†’ modificabile */
        width: calc(100% - 40px);
        max-width: 380px;
    }

    .lw-alert.show {
        right: auto;             /* sovrascrivi */
        transform: translateX(-50%) translateY(0);
    }
}


/* ============================
   CUSTOM CHECKBOX
============================ */
.custom-checkbox {
    display: inline-flex;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    /* Nasconde la checkbox nativa */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* Stile della casella personalizzata */
    width: 25px;
    height: 25px;
    border: 2px solid #B6B6B6;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: var(--var-primary-color-shop);
    border-color: var(--var-primary-color-dark);
}

.custom-checkbox input[type="checkbox"]:checked::before {
    /* Crea l'icona del segno di spunta */
    content: 'âœ”'; /* Carattere Unicode per il segno di spunta */
    font-size: 18px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-checkbox span {
    vertical-align: middle;
    line-height: 16px;
}

/* ============================
   ALERT PEPINO
============================ */
.alert-pepino {
    background-color: #fff6fa;          /* rosa chiarissimo, delicato */
    border: 1px solid #f7a8c2;          /* rosa pastello */
    color: #b30059;                     /* rosa scuro/amaranto per testo */
    border-radius: 6px;
    padding: 12px 18px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.alert-pepino i {
    color: #e40c7d;                     /* rosa brand Pepino */
    margin-right: 6px;
    font-size: 1.1em;
}

.alert-pepino a {
    color: #e40c7d;                     /* link rosa Pepino */
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}

.alert-pepino a:hover {
    color: #b30059;                     /* piÃ¹ scuro al hover */
    text-decoration: none;
}

/* ============================
   FIX MINI CART MOBILE
============================ */
@media only screen and (max-width: 600px) {
    .cart-dropdown-wrap {
        width: 95vw!important;
    }
}

/* ============================
   FIX ACTION LIST MOBILE
============================ */
@media only screen and (max-width: 768px) {
    .product-cart-wrap .product-img-action-wrap .product-action-1 {
        min-width: fit-content!important;
    }
}

/* ============================
   ACTIVE PER MENU MOBILE
============================ */
.mobile-menu a.active,
.mobile-menu a.active:hover {
    color: #e40c7d !important;
}

/* ============================
   FIX BTN
============================ */
/* --- Hover --- */
.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #5a6268;         /* grigio piÃ¹ scuro */
    border-color: #5a6268;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Attivo / clic --- */
.btn-secondary:active {
    background-color: #545b62;
    border-color: #545b62;
    transform: translateY(0);
    box-shadow: none;
}

/* ============================
   BOTTONI OUTLINE
============================ */
/* Versione base */
[class*="btn-outline-"] {
    background: transparent;
    /*padding: 12px 20px;*/
    padding: 15px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary {
    background: transparent;
    color: var(--var-primary-color-shop);
    border: 2px solid var(--var-primary-color-shop);
}

/* --- Hover attivo --- */
.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--var-primary-color-shop)!important;
    color: #fff;
    border-color: var(--var-primary-color-shop);
}

/* Variazione colore secondaria (es. outlineâ€secondary) */
.btn-outline-secondary {
    background: transparent;
    color: #6c757d; /* colore secondario grigio */
    border: 2px solid #6c757d;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: #6c757d!important;
    color: #fff;
}

/* ============================
   BOTTONI DISABILITATI
============================ */
.disabled,
.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    opacity: 0.65;
    cursor: not-allowed!important;
    pointer-events: none!important;
    box-shadow: none;
    transform: none;
}

/* --- Variante secondaria --- */
.btn-secondary.disabled,
.btn-secondary:disabled {
    background-color: #adb5bd;   /* grigio chiaro */
    border-color: #adb5bd;
    color: #fff;
}

/* --- Variante outline --- */
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
    color: #999;
    border-color: #ccc;
    background: transparent;
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
    color: #aaa;
    border-color: #ccc;
    background: transparent;
}

/* ============================
   PALLINO DISPONIBIITA
============================ */
.availability-dot {
    position:absolute;
    top:8px;
    right:8px;
    width:20px;
    height:20px;
    border-radius:50%;
    border:2px solid #fff;
    box-shadow:0 0 4px rgba(0,0,0,0.3);
    cursor: help;
    z-index: 98;
}

.availability-dot-xs {
    position:absolute;
    top:-3px;
    right:-3px;
    width:10px;
    height:10px;
    border-radius:50%;
    box-shadow:0 0 4px rgba(0,0,0,0.3);
    cursor: help;
    z-index: 98;
}

/* ============================
   PALLINO SPEDIZIONE
============================ */
.free-shipping-icon {
    position: absolute;
    top: 34px;
    left: 8px;
    background-color: #e40c7d;
    color: #fff;
    padding: 6px;
    border-radius: 100%;
    font-size: 14px;
    z-index: 10;
    cursor: help;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
/* ============================
   BADGE FORMATO
============================ */
.badge-formato {

    position: absolute; right: 0; bottom: 0px;
    z-index: 9;
    color: #fff;
    font-weight: 700;
    line-height: 12px;
    background-color: var(--var-primary-color-dark);
    padding: 5px 10px;
    border-radius: 5px 0 0 5px;

}

.badge-formato span {

    font-weight: 800;
    font-size: 0.7rem;

}

/* ============================
   BANNER COUPON DETTAGLIO PRODOTTO
============================ */
.promo-coupon-box {
    background: #1a1a1a !important; /* grigio scuro piÃ¹ chiaro del nero */
    border: 2px solid #000;        /* bordo nero */
    color: #fff !important;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 10px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
}

.promo-coupon-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promo-coupon-price {
    font-size: 30px;
    font-weight: 800;
    color: #FDC040; /* pepino yellow */
}

.promo-coupon-save {
    color: #ccc;
    font-size: 13px;
}

.promo-coupon-save strong {
    font-weight: 900;
}

.promo-coupon-right {
    text-align: right;
}

.promo-coupon-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

.promo-coupon-code {
    background: #e40c7d;
    color: #fff;
    padding: 5px 14px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-top: 4px;
    cursor: pointer;
}

/* ============================
   MOBILE
============================ */
@media (max-width: 768px) {

    .promo-coupon-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
    }

    /* --- 1a RIGA: prezzo --- */
    .promo-coupon-left {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .promo-coupon-price {
        font-size: 24px;
        font-weight: bold;
    }

    .promo-coupon-save {
        font-size: 14px;
        margin-top: 4px;
        text-align: left;
    }

    /* --- 2a RIGA: codice coupon --- */
    .promo-coupon-right {
        width: 100%;
        text-align: left;
    }

    .promo-coupon-label {
        display: inline-block !important;
        font-weight: 500;
        margin-right: 5px;
        font-size: 14px;
    }

    .promo-coupon-code {
        white-space: nowrap;
        font-size: 14px;
        display: inline-block;
    }
}

.copy-coupon {
    cursor: pointer;
}

/* ============================
   FIX BTN DETTAGLIO
============================ */
.product-extra-link2 a {
    border: 2px solid #f1f1f1;
    line-height: 50px;
}

/* ============================
   BOTTONE NOTIFICA
============================ */
.notify-btn {
    border-color: #ff9900!important;
    color: #ff9900!important;

    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
}

.notify-btn:hover {
    background-color: #ff9900!important;
    color: #FFF!important;
}

.notify-btn i {
    opacity: 1!important;
}

/* ============================
   Reso Form
============================ */

/* --- Base controls --- */
.contact-from-area .reso-control {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    box-shadow: none;
    color: #253D4E;
    font-size: 16px;
    width: 100%;
    transition: border-color .2s ease, background-color .2s ease, opacity .2s ease;
}

/* --- Spacing and sizing --- */
.contact-from-area .input-style .reso-control,
.contact-from-area .textarea-style .reso-control {
    padding: 15px 20px;
}

.contact-from-area .input-style .reso-control,
.contact-from-area .input-style select.reso-control {
    height: 64px;
}

.contact-from-area .textarea-style .reso-control {
    min-height: 200px;
    resize: vertical;
}

/* --- Select arrow --- */
.contact-from-area select.reso-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #838383 50%), linear-gradient(135deg, #838383 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

/* --- File upload --- */
.contact-from-area input[type="file"].reso-control {
    padding: 13px 15px;
    height: auto;
}

.contact-from-area input[type="file"].reso-control::file-selector-button {
    border: 1px solid #253D4E;
    background: #253D4E;
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    margin-right: 14px;
    cursor: pointer;
}

.contact-from-area input[type="file"].reso-control::-webkit-file-upload-button {
    border: 1px solid #253D4E;
    background: #253D4E;
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    margin-right: 14px;
    cursor: pointer;
}

/* --- Readonly and disabled states --- */
.contact-from-area .reso-control[readonly],
.contact-from-area .reso-control:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 1;
}

.contact-from-area .reso-control:disabled::file-selector-button,
.contact-from-area .reso-control:disabled::-webkit-file-upload-button {
    background: #6c757d;
    border-color: #6c757d;
}

.contact-from-area .is-readonly {
    opacity: .92;
}

/* --- Submit state --- */
.contact-from-area .reso-submit:disabled {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    cursor: not-allowed;
    opacity: .75;
}







