/* PALETTE COLORI */

:root {
    /* Definizione della palette */
    --primary-color: #a9d320;
    --secondary-color: #eef5ce;
    --text-color: #4f7e00;
}


/* MAIN HOMEPAGE*/
main {
    display: flex;

    height: calc(100vh - 162px);
    width: 100vw;
    background-color: white;
}

/* MODAL */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;

}

.modal-content {
    background: white;
    /* padding: 20px; */
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.modal-dimension {
    height: 96%;
    width: 98%;
    border-radius: 2rem;
}

.modal-d {
    height: 75% !important;
    width: 55% !important;
}

.headermodal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 5rem;
}

.cart-modal {
    height: 17rem;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body-content .cart-item {
    height: 17rem;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.modal-body-content .image-cart {
    height: 14.5rem;
}

.modal-body-content .title-prod {
    font-size: 23px !important;
}

.modal-body-content .description-prod {
    font-size: 15px !important;
}

.infocart-modal {
    height: 100%;
    padding-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-around;
    padding-left: 1rem;
}

.modal-body-content .p-quantity {
    display: flex;
    align-items: center;
    gap: 0px;
    border: 1px solid var(--text-color);
    height: 2rem;
    border-radius: 1rem;
    overflow: hidden;
}

.qty-input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: none;
    height: 100%;
}

.t-c-c-icon {
    cursor: pointer;
}

.trash-custom {
    color: red;
    font-size: 18px;
}

.btn-success-cstm {
    border-radius: 0 !important;
    background-color: var(--secondary-color) !important;
    color: var(--text-color) !important;
    border: none !important;
    border-left: 1px solid var(--text-color) !important;
    height: 100%;
}

.btn-pre-cstm {
    border-radius: 0;
    background-color: white;
    border: none;
    background-color: var(--secondary-color) !important;
    color: var(--text-color) !important;
    height: 100%;
    border-right: 1px solid var(--text-color);
}

.btn-pre-cstm:hover,
.btn-pre-cstm:active {
    background-color: var(--text-color) !important;
    color: white !important;
    border-right: 1px solid var(--text-color);
}

.btn-success-cstm:hover,
.btn-success-cstm:active {
    background-color: var(--text-color) !important;
    color: white !important;
}

/* Nasconde le freccette in Chrome, Safari e Edge */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-q-t-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 15rem;
}

/* Nasconde le freccette in Firefox */
.qty-input {
    -moz-appearance: textfield;
}

.close-cstm {
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: unset !important;
}

.h-f-model {
    min-height: 5rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding: 0 1rem 0 1rem;
}

.h-f-model .btn,
.f-model-r-b .btn {
    white-space: nowrap;
    padding: 5px 15px;
    border-radius: 3rem !important;
    color: white !important;
    font-weight: bold;

    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important
}

.h-f-model .btn:hover,
.f-model-r-b .btn:hover {
    background-color: var(--text-color);
    color: var(--secondary-color);
    border: 1px solid var(--text-color) !important;
}


.title-prod-price {
    color: black;
    font-size: 19px !important;
    font-weight: bold;
}

.h-f-model .card-title {
    font-size: 32px;

}

.h-f-model .header-card-circle {
    transform: scale(1.3);
    margin-bottom: 0rem;

}

.h-f-model .fa-xmark {
    transform: scale(1.3);
}

.c-count-model {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.modal-body-content .table {
    --bs-table-striped-bg: none !important;
}

.header-table {
    color: var(--text-color) !important;
    background-color: var(--secondary-color) !important;
}

.info-cstm {
    color: var(--text-color) !important;
}

.download_doc {
    background-color: transparent !important;
    color: var(--text-color) !important;
    border-radius: 50%;
    height: 2.5rem !important;
    width: 2.5rem !important;
    border: none !important;
}

.f-model-r-b {
    min-height: 5rem !important;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 1rem 0 1rem;
}


/* HEADER */

header {

    height: 70px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1rem;

}

.logo-header {
    height: 3rem;
}

.header-containers {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-buttons-container {
    gap: .5rem;
}

.search-bar {
    background-color: var(--secondary-color);
    width: 600px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-custom {
    border-radius: 2rem 0 0 2rem !important;
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-right: none !important;
    padding-bottom: 7px !important;
}

.search-icon {
    border-radius: 0 2rem 2rem 0 !important;
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-left: none !important;
}

.search-dimention {
    width: 60% !important;
    background-color: transparent !important;
}

.btn-custom-light {
    color: black !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 2rem !important;
    font-weight: bold !important;
    height: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    padding-bottom: 0px !important;
    width: 5.5rem !important;

}

.btn-custom-light:hover{
    background-color: var(--secondary-color) !important;
}

.btn-custom-dark {
    background-color: black !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    border-radius: 2rem !important;
    height: 2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    padding-bottom: 0px !important;
    width: 5.5rem !important;

}
.btn-custom-dark:hover{
    color: var(--secondary-color) !important;
}
.logo-container {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    margin-left: 1rem;
}

.header-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 140px;
    height: 30px;
    margin-right: 1rem;
}

.form-control:focus {
    box-shadow: none !important;
    border: 2px solid var(--primary-color) !important;
}


.search-shadow:focus-within {
    box-shadow: 0 0 8px 2px var(--primary-color) !important;
    border-radius: 1.5rem;
}

.header--1 {
    display: flex;
    width: 100%;
}

.header-1-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header--2 {
    display: none;
    align-items: center;
    justify-content: center;
}


.nav-bar-header {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: .5rem;
}


.nav-bar-header li {
    margin-right: 1rem;
    flex-shrink: 0;
}

.nav-bar-header .btn {
    white-space: nowrap;
    padding: 3px 15px;
    font-size: 14px;
    border-radius: 3rem !important;
    color: black !important;
    background-color: white;
    border: 1px solid var(--primary-color) !important;
}

.container-nav-h {
    display: flex;
    width: 75%;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;

}


.container-nav-h::-webkit-scrollbar {
    height: 1px;

}

.container-nav-h::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(169, 211, 32, 0.3) 0%, rgba(169, 211, 32, 1) 100%);
    border-radius: 10px;

}

.container-nav-h::-webkit-scrollbar-track {
    background: rgba(29, 100, 14, 0.1);
    border-radius: 10px;
}

/* SEZIONE CENTRALE HOMEPAGE*/
.vertical-section {
    display: flex;
    flex-direction: column;
    height: 100%;
}


/*CARDS HOMEPAGE*/
.card-scrollable {
    overflow-y: auto;
    padding-right: 3px;
    scroll-behavior: smooth;
}

.card-scrollable::-webkit-scrollbar {
    width: 8px;
}

.card-scrollable::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.card-scrollable::-webkit-scrollbar-track {
    background: transparent;
}

.middle-section-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
    width: 100%;

    overflow-x: auto;
}

.height-100 {
    height: 100%;
}

.header-card-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 0.3rem;
}

.card-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem 0 0.5rem;
    height: 2.5rem;
    padding-top: 0.25rem;
    background-color: var(--primary-color) !important;
    border: 1px siolid var(--primary-color);
}

.card-footer-custom {
    display: flex;
    align-items: center;
    justify-content: end;
    height: 2.5rem;
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--primary-color);
    border-radius: 0 0 1rem 1rem !important;
}

.cart-item {
    height: 5rem;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .1rem;
    padding-left: 0;
    padding-right: 0;
}

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

.t-c-c-price {
    justify-content: center;
    align-items: end;
}

.card-body-cudtom {
    padding: 0 !important;
}

.image-cart-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-cart {
    height: 3.5rem;
}

.title-prod {
    font-size: 12px !important;
    color: var(--text-color);
    font-weight: bold;
}

.description-prod {
    font-size: 10px;
}

.price-trash-cart {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding: .5rem;
    gap: 6px;
}

.trash-custom {
    color: #be0000 !important
}

.p-tot-price {
    line-height: 7px;
}

.b-f-items-cotainer {
    border-bottom: 1px solid var(--primary-color);
    height: 3.5rem;
    width: 100%;
    padding-left: 0.7rem;
    display: flex;
    align-items: start;
    justify-content: center;
}

.b-f-items-cotainer:last-child {
    border-bottom: none;
}

.card-date {
    background-color: var(--secondary-color);
    border-radius: 2rem;
    padding: 0 .4rem 0rem;
    font-weight: bold;
}

.c-d-container {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: .5rem;
}

/* CAROSELLO HOMEPAGE*/
.carosel-section {
    height: 50%;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.carousel-cotainer-img {
    height: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.list {
    display: flex;
    padding-left: 0 !important;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    height: 100%;
}

.item {
    flex-shrink: 0;
    /* Impedisce che le immagini si riducano */
    width: 34%;
    /* Larghezza del container responsivo */
    height: 100%;
    /* Adatta l'altezza al container */
    background-color: #FFF;
    scroll-snap-align: center;
    display: flex;
    /* Centra il contenuto */
    align-items: center;
    justify-content: center;
}

.item img {
    width: 100%;
    /* L'immagine riempie la larghezza del container */
    height: 100%;
    /* L'immagine riempie l'altezza del container */
    object-fit: cover;
    /* Ritaglia l'immagine per adattarsi mantenendo proporzioni */
    object-position: center;
    /* Centra l'immagine nel container */


}

.content {
    height: 100%;
    /* Assicura che le immagini si adattino */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 64px;
    font-weight: bold;
    width: 100%;
}



.list {
    scrollbar-width: none;
    /* Nasconde scrollbar */
    -ms-overflow-style: none;
}

.list::-webkit-scrollbar {
    display: none;
}

.list-wrapper {
    position: relative;
}

.button {
    width: 3rem;
    height: 3rem;

}

.button--previous {
    border-radius: 0 3rem 0 1rem !important;
    display: flex;
    justify-content: center;
    padding: 0 !important;
    margin: 0;
    flex-direction: column;
    padding-right: .5rem !important;
    align-items: center;
}

.button--next {
    border-radius: 3rem 0 1rem 0 !important;
    display: flex;
    justify-content: center;
    padding: 0 !important;
    margin: 0;
    flex-direction: column;
    padding-left: .5rem !important;
    align-items: center;
}

.f-c-container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    position: absolute;
    z-index: 1;
    height: 5rem;
    bottom: 0;
    width: 100%;
    overflow: hidden;
}

.concave-container {
    position: relative;
    width: 8rem;
    height: 1.7rem;
    background: white;
    border-radius: 3rem 3rem 0 0;
}

.concave-container:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -31px;
    height: 48.5px;
    width: 20px;
    border-bottom-left-radius: 100%;
    box-shadow: 0 20px 0 0 white;
    transform: rotate(-90deg);
}

.concave-right {
    position: relative;
    height: 100%;
    width: 100%;
    background: white;
    border-radius: 3rem 3rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concave-right::before {
    content: "";
    position: absolute;
    top: -2px;
    right: -31px;
    height: 48.5px;
    width: 20px;
    border-bottom-left-radius: 100%;
    box-shadow: 0 20px 0 0 white;
    transform: rotate(270deg) scale(1, -1);
    transform-origin: center;
}

.title-crsl {
    font-weight: bold;
    font-size: 12px !important;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    z-index: 2;
}

.arrow-carousel {
    color: var(--primary-color) !important;
    background-color: white;
    border: 1px solid var(--primary-color);
}

.arrow-carousel:hover {
    background-color: var(--secondary-color) !important;
    color: black !important;
    border: 1px solid var(--primary-color);
}

/* SIDENAV HOMEPAGE*/
.sidenav {
    height: 100%;
}

.sidenav-header {
    min-height: 5.5rem;
    background-color: var(--primary-color);
    border-radius: 0 3rem 3rem 0;
    margin-bottom: .5rem;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
}

.sidenav-body {

    height: calc(100% - 104px);
    display: flex;
    flex-direction: column;
    align-items: start;
    overflow-y: auto;

}

.nav-list {
    width: 100%;
    height: 3rem;
    border-radius: 0 3rem 3rem 0;
    background-color: var(--primary-color);
}

.nav-item {
    background-color: white;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 0 3rem 3rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.nav-item:hover {
    width: 97%;
    background-color: var(--secondary-color);
}

.nav-item:hover .arrow-icon-custom {
    color: black !important;
    /* Cambia il colore dell'icona su hover */
}

.nav-item.active {
    width: 97%;
    background-color: var(--secondary-color);
}

.nav-item.active .arrow-icon-custom {
    color: black !important;
}

.sidenav-h-t-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    width: 90%;
}

.sidenav-h-title {
    color: white;
}


/* NEW CONTAINER HOMEPAGE*/
.news-container {
    height: 100%;
}

.header-news-radius {
    border-radius: calc(1rem - 1px) 0 0 0 !important;
}

.news-radius {
    border-radius: 1rem 0rem 0 1rem !important;
}

.news-item {
    height: 4.5rem;
    width: 100%;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-item:hover {
    background-color: var(--secondary-color);
}

.news-item:hover .container-arrow {
    background-color: var(--primary-color);
    border-radius: 3rem 0 0 3rem;
}

.news-item:hover .arrow-icon-custom {
    color: black !important;
}

.news-container-item {
    padding-left: 0.7rem;
    display: flex;
    align-items: start;
    justify-content: center;
}

.container-arrow {
    display: flex;
    align-content: center !important;
    justify-content: center;
    height: 1.5rem;
    width: 1.2rem;
    flex-direction: column;
}

/* FOOTER */
.footer-align {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1rem;
    height: 60px;
    width: 100vw;
    background-color: var(--secondary-color);
    position: fixed;
    bottom: 0;
}

.row-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-footer {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

/* GENERAL */
.border-radius {
    border-radius: 1rem;
}

.radius-header {
    border-radius: calc(1rem - 1px) calc(1rem - 1px) 0 0 !important;
}

p {
    margin-bottom: 0;
}

.border-color {
    border: 1px solid var(--primary-color);
}

.cart-border-color {
    border-right: 1px solid var(--primary-color);
    border-left: 1px solid var(--primary-color);
}

.no-mb {
    margin-bottom: 0 !important;
}

.arrow-icon-custom {
    color: var(--primary-color) !important;
    padding-left: .2rem;
}

.icon-footer {
    scale: 1.7;
}

.as-jc {
    display: flex;
    justify-content: center;
    align-items: start;
}

.black {
    color: black !important;
}

.card-custom {
    overflow: hidden;
    box-shadow: none !important;
}

.footer-txt {
    color: black;
}

/* PC PORTATILE */
@media (max-width: 1366px) {
    .description-prod {
        font-size: 8px !important;
    }

    .title-prod {
        font-size: 10px !important;
    }

    .qty-item {
        font-size: 8px !important;
    }

    .trash-custom {
        transform: scale(0.8);
    }

    .no-mb {
        font-size: 1rem !important;
    }

    .subt-sidenav {
        font-size: .7rem !important;
    }

    .sidenav-header {
        height: 4rem;
    }

    .navigator {
        font-size: .8rem;
    }

    .image-cart {
        height: 2.5rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .footer-txt {
        font-size: .7rem;
        color: black;
    }

    .loc-icon-c {
        transform: scale(.7);
    }

    .footer-align {
        height: 50px;
    }

    main {
        height: calc(100vh - 142px);
    }

    .logo-header {
        height: 2.5rem;
    }

    .search-scale {
        transform: scale(.95);
    }

    .header-containers {
        transform: scale(.7);
    }

    header {
        height: 60px;
    }

    .header-card-circle {
        height: 1.5rem;
        width: 1.5rem;
    }

    .card-header-custom {
        height: 2rem;
    }

    .button {
        height: 2rem !important;
        width: 2rem !important;
    }

    .title-crsl {
        font-size: 8px !important;
        text-align: center;
        line-height: 6px;
    }


    .concave-container {
        width: 4rem;
        height: 1rem;
    }

    .concave-container:before {
        top: -8px;
        left: -20.2px;
        height: 36.5px;
        width: 13px;
    }

    .concave-right::before {
        top: -8px;
        right: -20.2px;
        height: 36.5px;
        width: 13px;
    }

    .card-footer-custom {
        height: 2rem;
    }

    /* AUTH */

    .auth-container {
        width: 35% !important;
        height: 70% !important;
    }

    .powered-by {
        transform: scale(.7);
        bottom: 1rem !important;
    }

    .accordion-btn {
        height: 2.5rem !important;
    }

    .sub-c-btn {
        font-size: 11px;
    }

    .a-b-cstm {
        max-height: 20%;
    }

    .list-group-item-cstm {
        width: 100% !important;
    }

    .dataTable-custom thead th {
        font-size: 12px !important;
    }

    TD {
        font-size: 9px !important;
    }

    .sidenav-h-t-container {
        transform: scale(.8);
    }
}

/* TABLET */
@media (max-width: 1020px) {
    .news-container {
        display: none;
    }

    .sidenav {
        display: none;
    }

    .tablet-100 {
        width: 100% !important;
    }

    header {
        height: 120px;
    }

    main {
        height: calc(100vh - 202px);
    }

    .header--1 {
        height: 50%;
    }

    .header--2 {
        height: 50%;
        display: flex;
        padding-bottom: .75rem;
        align-items: center;
        justify-content: space-between;
    }

    .container-nav-h {
        height: 100%;
    }

    .sidenav-header {
        margin-right: 1rem;
    }

    .f-c-container {
        width: 100%;
    }

    .sidenav-header {
        height: 100%;
    }

    .auth-container {
        height: 55% !important;
        width: 45% !important;
    }

    .sub-c-btn {
        font-size: 11px;
    }

    .accordion-btn {
        font-size: 14px !important;
    }

}

/* Blocco con sfondo bianco semi-trasparente */
.rotate-screen-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    color: black;
    font-size: 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

/* Mostra il messaggio SOLO in verticale */
@media screen and (orientation: portrait) {
    .rotate-screen-overlay {
        display: flex;
    }
}


A {
    text-decoration: none;
    color: #000000
}

A:link {
    text-decoration: none;
    color: #000000
}

A:visited {
    text-decoration: none;
    color: #000000
}

A:hover {
    text-decoration: none;
    color: #25ABE2
}

td {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt;
    color: #000000
}

.admin {
    font-size: 10pt;
    font-family: "monospace";
    color: black;
}

#divUpControl {
    Z-INDEX: 100;
    LEFT: 345px;
    WIDTH: 100px;
    POSITION: absolute;
    TOP: 130px;
    HEIGHT:
        100px;
    TEXT-ALIGN: right
}

#divDownControl {
    Z-INDEX: 100;
    LEFT: 345px;
    WIDTH: 100px;
    POSITION: absolute;
    TOP: 290px;
    HEIGHT: 152px;
    TEXT-ALIGN: right
}

#divContainer {
    LEFT: 155px;
    VISIBILITY: hidden;
    OVERFLOW: hidden;
    WIDTH: 260px;
    CLIP: rect(0px 260px 200px 0px);
    POSITION: absolute;
    TOP: 120px;
    HEIGHT: 200px
}

#divContent {
    LEFT: 0px;
    POSITION: absolute;
    TOP: 0px
}



input.timer {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt;
    width: 180px;
    height: 18px;
    background: transparent;
    border: none;
    padding-top: 1px;
    padding-left: 2px;
}

.s0 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    text-decoration: none;
    color: #303030;

}


.s0grigio {

    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    text-decoration: none;
    color: #999999;

}


.s1 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 12px;
    text-decoration: none;
    color: black
}



.s1a {
    font-family: Verdana, Helvetica, Helv;
    font-size: 14px;
    text-decoration: none;
    color: black;

}



.s2 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: black
}



.s3 {

    font-family: Arial, Verdana, Helvetica, Helv;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #404040
}



.s4 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 12px;
    text-decoration: none;
    color: black
}



.s5 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    color: black
}



.s6 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 18px;
    text-decoration: none;
    font-weight: bolder;
    font-style: italic;
    color: #5881AA
}



TD {
    FONT-SIZE: 11px;
    WORD-SPACING: normal;
    FONT-FAMILY: verdana, Arial, Sans-Serif;

}

.td {

    BORDER-RIGHT: #808080 1px solid;
    MARGIN: 1px;
    BORDER-BOTTOM: #808080 1px solid
}

.tr {

    MARGIN: 1px;
    BORDER-BOTTOM: #003366 1px solid
}

/* .table {

	BORDER-RIGHT: #003366 1px solid; BORDER-TOP: #003366 1px solid; MARGIN: 1px; BORDER-LEFT: #003366 1px solid; BORDER-BOTTOM: #003366 1px solid

} */

.MenuLaterale {

    FONT-WEIGHT: bold;
    FONT-SIZE: 8pt;
    COLOR: #404040;
    FONT-FAMILY: verdana, arial, helvetica;
    TEXT-DECORATION: none
}

.MenuLaterale:hover {

    FONT-WEIGHT: bold;
    FONT-SIZE: 8pt;
    COLOR: #FE7C12;
    FONT-FAMILY: verdana, arial, helvetica;
    TEXT-DECORATION: none
}

.MenuLateraleNoLink {

    FONT-WEIGHT: bold;
    FONT-SIZE: 8pt;
    COLOR: #868686;
    FONT-FAMILY: verdana, arial, helvetica;
    TEXT-DECORATION: none
}

.s2rosso {



    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: #FF0000
}

.s2small {



    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    text-decoration: none;
    color: #2079AE
}

.s3blu {
    font-family: Arial, Verdana, Helvetica, Helv;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    color: #333333;
    font-style: italic;


}

.s2normal {
    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none;
    color: black
}

.LineaSopra {
    border-top-style: solid;
    border-top-color: #666666;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #666666;


}

.LineaSopra2 {

    border-top-style: solid;
    border-top-color: #666666;
    border-top-width: 2px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #666666;
}

.s2rossoBlink {




    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: bold;
    text-decoration: blink;
    color: #FF0000
}

.s2Grigio {


    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: #666666
}

.s2Bianco {


    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: #FFFFFF
}

.rosso {
    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none;
    color: #000099;
    background-color: #AEC2EB;
}

.s9 {

    font-family: Verdana, Helvetica, Helv;
    font-size: 8px;
    text-decoration: none;
    color: #303030
}

.s0a {
    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    text-decoration: none;
    color: #303030;
    line-height: 9px;
}

.s0tasto {
    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    text-decoration: none;
    color: #303030;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    font-weight: bold;
}

.text9-bold {
    font-family: Verdana, Helvetica, Helv;
    font-size: 9px;
    text-decoration: none;
    font-weight: bold;
}



.text11-bold {
    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    text-decoration: none;
    font-weight: bolder;
    color: #000000;
}

.soci {
    background-color: #48b7e5;
}

.affiliati {
    background-color: #E5E5E5;
}

.tasto_arancio {
    FONT-WEIGHT: bold;
    FONT-SIZE: 11px;
    COLOR: #25ABE2;
    FONT-FAMILY: verdana;
    TEXT-DECORATION: none;
    background-color: #FFFFFF;
    border: thin solid #25ABE2;
}

.s2Arancio {



    font-family: Verdana, Helvetica, Helv;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
    color: #25ABE2
}

.tasto_grigio {

    FONT-WEIGHT: bold;
    FONT-SIZE: 11px;
    COLOR: #333333;
    FONT-FAMILY: verdana;
    TEXT-DECORATION: none;
    background-color: #FFFFFF;
    border: thin solid #333333;
}

.s0tastoGrigio {

    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    text-decoration: none;
    color: #303030;
    background-color: #eeeeee;
    border: 1px solid #000000;
    font-weight: bold;
}

.sel-gruppo {
    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    color: #303030;
    font-weight: bold;
    background-color: #f1f1f1;
}

.sel-sottogruppo {

    font-family: Verdana, Helvetica, Helv;
    font-size: 10px;
    text-decoration: none;
    color: #303030;
    margin-left: 10px;

}

a.mainlevel:link,
a.mainlevel:visited {
    display: block;
    background: url(../images/menu_bg.png) no-repeat;
    vertical-align: middle;
    font-size: 11px;
    font-weight: bold;
    color: #333333;
    text-align: left;
    padding-top: 4px;
    padding-left: 18px;
    height: 15px !important;
    height: 17px;
    width: 100%;
    text-decoration: none;
}

a.mainlevel:hover {
    /* background-position: 0px -16px;  */
    /* problemi con internet explorer e iframe */
    text-decoration: none;
    color: #25ABE2;
}

.newbutt {
    color: #303030;
    font-size: 11px;
    font-family: "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
    background-color: #f1f1f1;
    width: 100px;
    height: 22px;
    border: solid 1px gray;
}


tr#intestazione {
    background: transparent url('/images/aa_bar.jpg') no-repeat scroll center
}

tr#intestazione td.center {
    border-left: 1px solid #666666;
    border-right: 1px solid #EEEEEE;
}

tr#intestazione td.left {
    border-right: 1px solid #EEEEEE;
}

tr#intestazione td.right {
    border-left: 1px solid #666666;
}

tr#intestazione td b {
    border-bottom: 3px solid #25ABE2;
    display: block;
    padding-left: 3px;
}

/* AUTH */
.auth-container {
    width: 25%;
    height: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(241 250 255 / 35%);
    /* border-radius: 6rem; */
    box-shadow: 0 5px 15px rgb(255 255 255 / 68%);
    backdrop-filter: blur(12px);
    border: 1px solid rgb(255 255 255 / 44%);
}

.form-auth {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;

}

.vh-vw-100 {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(/img/auth/Sfondo1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.input-auth-d {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center
}

.form-style-auth {
    width: 80% !important;
    height: 5rem !important;
    border-radius: 0 3rem 3rem 0 !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-left: none !important;
    font-size: 1.5rem !important;
}

.logo-auth {
    height: 8rem;
    margin-bottom: 5rem;
}

.enter-button {
    width: 85% !important;
    background-color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: 3rem !important;
}

.style-icon-auth {
    height: 5rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: end;
    border: 2px solid var(--primary-color);
    border-radius: 3rem 0 0rem 3rem;
    border-right: none;
    font-size: 2rem;
    color: var(--primary-color);
}

.contattaci-btn {
    background-color: rgba(169, 211, 32, 0.5) !important;
    border: 2px solid var(--primary-color) !important;
    width: 85% !important;
    border-radius: 3rem !important;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 5rem;

}

.p-by {
    color: black;
    font-size: 1rem;
    margin: 0 !important;
}

.powered-by img {
    height: 2rem;
    filter: invert(1);
}

.accordion-flush-cstm {
    display: flex !important;
    align-items: start !important;
    justify-content: start !important;
    flex-direction: column !important;
    width: 100%;
    gap: 1rem;
    height: 80%;
    padding-top: .5rem;
}

.accordion-btn {
    border-radius: 0 3rem 3rem 0 !important;
    border: 1px solid var(--primary-color) !important;
}

.accordion-item-cstm {
    width: 100% !important;
}

.list-group-cstm {
    display: flex !important;
    align-items: start !important;
    justify-content: center !important;
    width: 100% !important;
    gap: .5rem !important;
}

.list-group-item-cstm {
    width: 90%;
    border-radius: 0 3rem 3rem 0 !important;
    border: 1px solid var(--primary-color) !important;
    padding: 0 !important;
    overflow: hidden !important;
    background-color: var(--primary-color);
}

.accordion-body {
    padding-left: 0 !important;
}


.accordion-button:not(.collapsed) {
    color: black !important;
    background-color: var(--secondary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 8px 2px var(--primary-color) !important;
}

.list-group-cstm li:hover {
    color: black !important;
    background-color: var(--primary-color);
}

.sub-c-btn {
    width: 100%;
    height: 100%;
    padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
    background-color: white;
    border-radius: 0 3rem 3rem 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: .2rem;
    font-weight: bold;
}

.sub-c-btn:hover {
    width: 97%;
    background-color: var(--secondary-color);
}

.sub-c-btn:hover .arrow-icon-custom {
    color: black !important;
}

A:hover {
    color: black !important;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-lg,
.navbar>.container-md,
.navbar>.container-sm,
.navbar>.container-xl,
.navbar>.container-xxl {
    margin: 0 !important;
}

.alert-danger {
    color: #ff9595 !important;
    background-color: #a8131394 !important;
    border-radius: 3rem !important;
    width: 85% !important;
    height: 4.5rem !important;
    border: none !important;
}

.messaggi-auth {
    width: 100%;
    display: flex;
    justify-content: center;
    height: auto;
}

.news-container-modal {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    padding: 1rem !important;
}

.news .modal-dimension {
    height: 86%;
    width: 70%;
}

.l-container-mdl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;

}

.r-container-mdl {
    height: 100%;
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discount-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
}

.discount-container label {
    height: 3rem;
    width: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 3rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    font-size: 1.5rem;
}

.discount-container input[type="checkbox"]:checked+label {
    background-color: var(--text-color);
    color: white;
    font-weight: bold;
    border-color: var(--text-color);
    transform: scale(.8);
}

tbody,
td,
tfoot,
th,
thead,
tr {
    vertical-align: middle;
    align-items: center;
}

th {
    background-color: var(--secondary-color) !important;
}


.mini-modal-h {
    min-height: 2rem !important;
}

.mini-modal-h .card-title {
    font-size: 20px !important;
}

.mini-modal-dim {
    min-height: 40%;
    max-height: 65%;
    min-width: 30%;
    max-width: 40%;
}


.label-mini {
    width: 80% !important;
    height: 65% !important;
    background-color: transparent !important;
    border-color: var(--text-color);
    color: var(--text-color);
    border-radius: 1rem !important;

}

.form-mini {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    gap: .3rem;
}


.card-body-mini {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    overflow: auto;
}

.footer-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 3.5rem !important;
}

.annulla-btn {
    border-radius: 3rem;
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: black;
    font-weight: 600;
}

.annulla-btn:hover {
    border-radius: 3rem;
    background-color: var(--secondary-color);
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-weight: 600;
}

.Invia-btn {
    border-radius: 3rem;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
}

.Invia-btn:hover {
    background-color: var(--text-color) !important;
    border: 1px solid var(--text-color);
}

.alert-info {
    background-color: var(--secondary-color) !important;
    border: 1px solid var(--text-color) !important;
    color: var(--text-color) !important;
    border-radius: 3rem !important;
}

.mini-t-p {
    font-size: 1.5rem;
}

.form-mini .form-control {
    color: var(--text-color);
    width: 100%;
    height: auto;
    background-color: transparent;
    border-radius: 3rem;
    border-color: var(--text-color);
}

.form-mini .form-control:focus {
    border-color: var(--text-color);
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Loader */
#full-page-loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff00;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(10px);
    border: 1px solid #000;
    z-index: 2000;
    text-align: center;
    justify-content: center;
    align-items: center;

}

.loader {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 4px solid;
    border-color: #000000 #000000 transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 4px solid;
    border-color: transparent var(--primary-color) var(--primary-color);
    width: 39px;
    height: 39px;
    border-radius: 50%;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#rotateWarning {
    display: none;
}


.dinamic-container {
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: auto;
}


.header-table {
    background-color: var(--secondary-color) !important;
    color: black !important;
    border-bottom: 1 px solid var(--primary-color) !important;
}


/* Stile per la tabella */
.dataTable-custom {
    /* border-collapse: separate !important;
    border-spacing: 0 !important; */
    border-radius: 1rem !important;
    overflow: hidden !important;
    width: 100%;
    border: 1px solid var(--primary-color);
}

/* Intestazione della tabella */
.dataTable-custom thead th {
    color: white !important;
    padding: 10px;
    align-items: center;
    vertical-align: middle;
    text-align: center !important;
    background-color: var(--primary-color) !important;
}

/* Bordi delle celle */
.dataTable-custom th,
.dataTable-custom td {
    border: 1px solid #f5f5f5 !important;
    padding: 8px;
    text-align: center;
}

/* Bordi inferiori arrotondati */
.dataTable-custom tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px !important;
}

.dataTable-custom tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px !important;
}


.first {
    border-radius: 3rem 0 0 3rem !important;
}

.last {
    border-radius: 0 3rem 3rem 0 !important;
}

.active>.page-link {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.page-link {
    color: var(--text-color) !important;

}

.page-link:focus {
    box-shadow: 0 0 8px 2px var(--primary-color) !important;
}

TD {
    text-align: center !important;
}


.secondary-btn {
    border-radius: 3rem !important;
    background-color: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.primary-btn {
    border-radius: 3rem !important;
    background-color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
    color: white !important;
}

.dt-column-order {
    color: black !important;
}

.filter-container {
    border-radius: 3rem !important;
}


.form-control:focus {
    border: 2px solid var(--primary-color) !important;
}

.login-form:focus {
    border-left: none !important;
}

.form-select-sm {
    border-radius: 3rem !important;

}

.form-select:focus {
    border: 1px solid var(--primary-color) !important;
    box-shadow: 0 0 8px 2px var(--primary-color) !important;
}

.filter-container-m {
    padding: 1rem !important;
}

.accordion-item {
    border-radius: 1rem !important;
    overflow: hidden !important;
}

.tbl-p-cstm {
    padding: o !important;
}

.accordion {
    padding-left: calc(var(--bs-gutter-x)* .5);
    padding-right: calc(var(--bs-gutter-x)* .5);
}

.accordion-item:focus {
    border: 1px solid var(--primary-color) !important;

}

.range-style {
    display: flex !important;
    align-items: center !important;
    flex-direction: column;
    justify-content: center;
    gap: .5rem;
}

container-table {
    margin: 0 !important;

}

@media (min-width: 1400px) {
    .container-table {
        max-width: none !important;
    }
}

@media (min-width: 1200px) {
    .container-table {
        max-width: none !important;
    }
}

@media (min-width: 992px) {
    .container-table {
        max-width: none !important;
    }
}

@media (min-width: 768px) {
    .container-table {
        max-width: none !important;
    }
}

@media (min-width: 576px) {
    .container-table {
        max-width: none !important;
    }
}


.btns-filter-cont {
    align-items: end !important;
    justify-content: center;
    height: 4rem;
}

.dt-paging-button button {
    font-size: 12px !important;
}

.dt-info {
    font-size: 12px !important;
}

.dt-length-0 {
    font-size: 12px !important;
}

.dt-length select {
    font-size: 12px !important;
}

.select-warehouse {
    height: 2rem !important;
    border-radius: 3rem !important;
    padding: .5rem !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--text-color) !important;
}

.carousel-container-img {
    height: 100%;
}

#update-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #28a745;
    /* Verde */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    display: none;
    /* Nascondi di default */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}

.img-poweredby {
    filter: invert(1);
}

.auth-box {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 10rem;
}

.text-success {
    color: var(--text-color) !important;
}

.opzionale {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    flex-direction: column;
    border: 1px solid var(--primary-color);
    border-radius: 1rem;
    padding: 1rem;
}

.opz-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 80%;
}


.note {
    width: 100%;
    display: flex;
}



.obl-inp {
    color: var(--text-color) !important;
    background-color: var(--secondary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

.opzionale-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Evita problemi di overflow e larghezza anomala */
.select2-container {
    width: 100% !important;
}

/* Evita che il dropdown fuoriesca dalla modale */
.select2-dropdown {
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    z-index: 1051 !important;
    /* Assicura che sia sopra la modale */
}

/* Imposta un'altezza massima per lo scroll interno */
.select2-results {
    max-height: 250px !important;
    overflow-y: auto !important;
}

/* Migliora l'aspetto del selettore */
.select2-container--bootstrap4 .select2-selection {
    min-height: 40px;
    border-radius: 5px;
    font-size: 16px;
}

/* Stile più pulito per il dropdown */
.select2-container--bootstrap4 .select2-dropdown {
    border-radius: 5px;
    padding: 10px;
    background-color: white;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    height: 2.5rem !important;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid var(--primary-color) !important;
    background-color: var(--secondary-color) !important;
    color: var(--text-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 3rem !important;
}


.defaultblur {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 2.5rem);
    min-height: 200px;
    min-width: 200px;
    background-image: url(/img/work-in-progress.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 10;
}

.blurred {
    height: 100%;
    background: rgb(75 75 75 / 46%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}


.primary-confirm-btn {
    background-color: var(--secondary-color) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--text-color) !important;
    border-radius: 3rem !important;
}


.modal-copy-ordr {
    height: 45% !important;
    width: 45% !important;
}

.primary-header {
    background-color: var(--primary-color) !important;
}

.dropdown-toggle {
    border-radius: 3rem !important;
}


.list-group-item.active {
    background-color: var(--secondary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--text-color) !important;
}

/* .primary-btn{
    white-space: nowrap;
    padding: 5px 15px;
    border-radius: 3rem !important;
    color: white !important;
    font-weight: bold;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
} */

/* .secondary-btn{
    white-space: nowrap;
    padding: 5px 15px;
    border-radius: 3rem !important;
    color: var(--text-color) !important;
    font-weight: bold;
    background-color: var(--secondary-color);
    border: 1px solid var(--text-color) !important;
} */

td {
    font-size: .8rem !important;
}

.checkbox-style {
    background-color: white !important;
    border-color: var(--primary-color) !important;
    border-radius: 50% !important;
}

.checkbox-style:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    border-radius: 50% !important;
}



.checkbox-style:focus {
    border-color: var(--text-color) !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem #4f7e002e !important;
}

.opencarts-cont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--primary-color);
    height: 4rem;
    padding: 1rem;
    line-height: 1rem;
}


.az {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.totale-open-c {
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: center;
}

.btn-negozio {
    border: 1px solid var(--primary-color);
    border-radius: 3rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}