
:root {
    --primary-color: #F17E32;
    --secondary-color: #F37321;
    --hover-color: #f27a18ff;
    --primary-light-color: #fee6d3;
    --text-color: #000;
    --white-color: #FFFFFF;
    --font-family: "Open Sans", Arial, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.4;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    min-width: 320px;
}
.bee-document-lock body {
    position: relative;
}

img {
    max-width: 100%;
}

p {
    color: var(--text-color);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

a {
    outline: none !important;
    text-decoration: none !important;
    color: var(--text-color);
    -webkit-transition: all 0.30s ease-in-out;
            transition: all 0.30s ease-in-out;
}
a:focus, a:hover {
    color: var(--text-color);
}
html.no-touch a:hover {
    color: var(--hover-color);
}

input:focus-visible {
    outline: none !important;
}

/* Buttons */
.btn:focus {
    box-shadow: none !important;
}
.btn-general,
.btn-general:focus {
    background-color: var(--text-color);
    border-radius: 0;  
    padding: .375rem 3rem;
    line-height: 28px;
    border: none;
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    transition: color .3s ease;
}
.btn-page {
    padding: .375rem 3rem;
    line-height: 22px;
}
.btn-general img {
    padding-left: 10px;
}
html.no-touch .btn-general:hover {
    color: var(--white-color);
}
html.no-touch .btn-general:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
html.no-touch .btn-general:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hover-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

/* Form control */
.form-control {
    height: 41px;
    border-radius: 0;
    border: 2px solid #656263ff;
}
.form-control[type="date"] {
    cursor: pointer;
}
.form-control::placeholder {
    color: #7b7979ff;
}
.form-control:focus {
    box-shadow: none;
    border-color: #656263ff;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-bottom: 40px;
}
.pagination li {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 7px;
    position: relative;
}
.pagination li:first-child,
.pagination li:last-child {
    border: none;
    font-size: 20px;
}
.pagination li.active,
html.no-touch .pagination li:hover {
    color: var(--hover-color);
    border: 2px solid var(--hover-color);
}
html.no-touch .pagination li:hover {
    -webkit-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}
html.no-touch .pagination li:hover a {
    color: var(--hover-color);
}
.pagination li a,
.pagination li span {
    width: 100%;
    height: 100%;
    padding: 5px;
}
.pagination li.disabled {
    display: none;
}

/* Bee scroll top */
.bee-scroll-top {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    align-content: center;
    bottom: 80px;
    z-index: 120;
}
.bee-scroll-top i {
    color: var(--white-color);
}
html.no-touch .bee-scroll-top:hover {
    background-color: var(--white-color);
}
html.no-touch .bee-scroll-top:hover i {
    color: var(--primary-color);
}

/* Slick */
.slick-slide img {
    width: 100%;
}
.slick-dots {
    margin-top: 30px !important;
    position: relative !important;
    bottom: 0 !important;
}
.slick-dots li {
    display: inline-block !important;
    min-width: 40px;
    margin: 0;
    padding: 0;
    height: auto;
    border: 0;
    border-radius: 0;
    min-height: 1px;
    height: auto !important;
}
.slick-dots li.slick-active {
    border: none !important;
}
.slick-slider .slick-dots li+li {
    margin-left: 15px;
}
.slick-dots li button {
    height: auto !important;
    padding: 0 !important;
    width: auto !important;
}
.slick-dots li button:before {
    content: '' !important;
    display: block !important;
    width: 48px !important;
    height: 6px !important;
    background-color: #5B5D5F !important;
    opacity: 1 !important;
    position: relative !important;
    transform: none !important;
}
.slick-dots li.slick-active button:before {
    background-color: var(--primary-color) !important;
}
html.no-touch .slick-dots li button:hover,
.slick-dots li.slick-active button {
    background-color: transparent !important;
}

/* Helpers */
.pr-30 {
    padding-right: 30px;
}
.pb-100 {
    padding-bottom: 100px;
}
.mr-20 {
    margin-right: 20px;
}
.mt-40 {
    margin-top: 40px;
}
.mb-50 {
    margin-bottom: 50px;
}


/* Header
------------------------------------------------------------ */

header {
    padding: 3rem 0 1rem;
}
header img {
    max-width: 369px;
}
header .navbar-collapse {
    justify-content: center;
}
header .navbar {
    flex-direction: column;
    padding: 0;
}
header .navbar>.container-fluid {
    justify-content: center;
}
header .navbar-nav {
    margin-top: 1rem;
}
header .navbar-nav .nav-item .nav-link {
    padding: 0 0 5px;
    margin: 0 2rem;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}
header .navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 0%;
    bottom: 0;
    background: var(--primary-color);
    height: 3px;
    transition: width .3s ease;
    
    right: 0;
    left: auto;
    transform-origin: right;
}
html.no-touch header .navbar-nav .nav-item .nav-link:hover:before,
header .navbar-nav .nav-item .nav-link.active:before {
    width: 100%;
}
html.no-touch header .navbar-nav .nav-item .nav-link:hover:before {
    left: 0;
    transform-origin: left;
}
html.no-touch header .navbar-nav .nav-item .nav-link:hover,
header .navbar-nav .nav-item .nav-link.active {
    color: var(--text-color);
}
header .navbar-nav .nav-item .nav-link.active {
    font-weight: 700;
}
header .navbar .btn-menu {
    width: 60px;
    border: none;
    box-shadow: none;
    padding-left: 24px;
    padding-right: 0;
}
header .navbar .btn-menu span {
    display: block;
    width: 100%;
    border-radius: 2px;
    height: 3px;
    background: var(--text-color);
    transition: all .3s;
    position: relative;
}
header .navbar .btn-menu span + span {
    margin-top: 7px;
}
header .navbar .btn-menu.active span:nth-child(1) {
    animation: ease .7s top-resized forwards;
}
header .navbar .btn-menu.not-active span:nth-child(1) {
    animation: ease .7s top-2-resized forwards;
}
header .navbar .btn-menu.active span:nth-child(2) {
    animation: ease .7s scaled forwards;
}
header .navbar .btn-menu.not-active span:nth-child(2) {
    animation: ease .7s scaled-2 forwards;
}
header .navbar .btn-menu.active span:nth-child(3) {
    animation: ease .7s bottom-resized forwards;
}
header .navbar .btn-menu.not-active span:nth-child(3) {
    animation: ease .7s bottom-2-resized forwards;
}
@keyframes top-resized {
    0% {
        top: 0;
        transform: rotate(0);
    }
    50% {
        top: 10px;
        transform: rotate(0);
    }
    100% {
        top: 10px;
        transform: rotate(45deg);
    }
}
@keyframes top-2-resized {
    0% {
        top: 10px;
        transform: rotate(45deg);
    }
    50% {
        top: 10px;
        transform: rotate(0deg);
    }
    100% {
        top: 0;
        transform: rotate(0deg);
    }
}
@keyframes bottom-resized {
    0% {
        bottom: 0;
        transform: rotate(0);
    }
    50% {
        bottom: 10px;
        transform: rotate(0);
    }
    100% {
        bottom: 10px;
        transform: rotate(135deg);
    }
}
@keyframes bottom-2-resized {
    0% {
        bottom: 10px;
        transform: rotate(135deg);
    }
    50% {
        bottom: 10px;
        transform: rotate(0);
    }
    100% {
        bottom: 0;
        transform: rotate(0);
    }
}
@keyframes scaled {
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes scaled-2 {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}


/* Footer 
------------------------------------------------------------ */

.box-footer {
    background-image: url('/assets/alforo/images/sf-footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 30px;
}

.footer-copy.text {
    font-weight: 400;
}
.footer-copy.text,
.footer-copy a {
    color: #75797B;
}

.footer-last .text {
    font-size: 14px;
    font-weight: 700;
}

footer .text,
footer a,
html.no-touch footer a:hover,
footer a:focus {
    color: var(--white-color);
}

footer .title-footer {
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 700;
    font-size: 14px;
}
footer .big-title-footer {
    font-size: 20px;
    font-weight: 900;
    text-transform: none;
    color: var(--white-color);
}
footer .text {
    line-height: 1.4;
    font-size: 14px;
    font-weight: 300;
}
footer .socials {
    margin-bottom: 20px;
}
footer .social i {
    font-size: 30px;
    margin-right: 15px;
}
footer .two-columns {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    padding-left: 0;
}
footer .two-columns .nav-footer-item {
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 700;
}
html.no-touch footer a:hover {
    color: var(--hover-color);
}


/*
--------------------
------------------------------------------------------------

MISC
@infoK Codice disordinato - da rivedere e organizzare

*/
.title{font-size:30px;color:var(--primary-color)}
.subtitle{font-weight:700;font-size:25px}
h2{font-size:50px;color:var(--text-color);font-weight:900}
.home-content .title{font-weight:700}
.home-content .subtitle{margin-bottom:70px}
.home-content .text{margin-top:10px}
.mappa{margin-bottom:80px}
.mappa .title{margin-bottom:70px;font-weight:700}
.mappa-container{width:100%;overflow:hidden;border:2px solid #ccc;background-color:#fff;touch-action:none;position:relative}
.mappa-container img{display:block;width:100%;height:auto;cursor:grab}
.controls{margin-top:10px}
.btn-zoom{color:var(--primary-color);margin:5px;border:none;background-color:transparent;font-size:22px}
.col-logo{padding-right:0;padding-left:0;text-align:center}
.divider{position:relative}
.divider::after{content:"";position:absolute;right:0;top:7px;width:2px;bottom:0;background-color:var(--white-color)}
.shops-section,.services-section{padding-top:45px}
.shops-section .box-change{justify-content:flex-end}
.shops-section .btn-page,.sliders-section .btn-page{background-color:var(--white-color);color:var(--text-color);border-radius:0;border:2px solid #000;text-transform:uppercase}
.route-eventsnews .search-form .btn-page,.route-home .search-form .btn-page,.services-section .btn-page{background-color:var(--white-color);color:var(--text-color);border-radius:0;border:2px solid #000}
.route-eventsnews .search-form .btn-page,.route-home .search-form .btn-page{text-transform:uppercase;margin-bottom:0;padding:.375rem 1.5rem}
.route-eventsnews .search-form .btn-page + .btn-page,.route-home .search-form .btn-page + .btn-page{margin-left:10px}
.shops-section .btn-page.active,html.no-touch .shops-section .btn-page:hover,.services-section .btn-page.active,html.no-touch .services-section .btn-page:hover,.route-eventsnews .search-form .btn-page.active,html.no-touch .route-eventsnews .search-form .btn-page:hover,.route-home .search-form .btn-page.active,html.no-touch .route-home .search-form .btn-page:hover,.sliders-section .btn-page.active,html.no-touch .sliders-section .btn-page:hover{background-color:var(--text-color);color:var(--white-color)}
.shops-section .btn-page i,.sliders-section .btn-page i{margin-left:10px;font-size:23px;vertical-align:middle}
.shops-section .shops-list,.services-section .services-list{margin-top:10px;margin-bottom:40px}
.shops-section .shops-group,.services-section .services-group{border-bottom:2px solid #545558ff;padding-top:45px}
.shops-section .shops-group .letter{font-size:55px;margin-right:30px;font-weight:900;width:64px;line-height:1}
.shops-section .shops-group .shops{width:100%;margin-top:31px}
.shops-section .shops-group .shops .shop{padding-top:15px;padding-bottom:25px;margin-right:30px;width:calc(33.33% - 20px)}
.shops-section .shops-group .shop:nth-child(3n),.services-section .services-group .service:nth-child(4n){margin-right:0}
.shops-section .shops-group .shop .title,.services-section .services-group .service .title,.sliders-section .shop .title,.sliders-section .service .title{font-size:16px;text-transform:uppercase;color:var(--text-color);font-weight:700;margin-bottom:5px;padding-left:10px;padding-right:10px}
.sliders-section .shop p,.sliders-section .service p{margin-bottom:0}
.services-section .services-group .service .title,.sliders-section .service .title{margin-top:15px}
.services-section .services-group .service .text,.sliders-section .service .text{padding-left:10px;padding-right:10px;font-size:14px;line-height:1.2}
.shops-section .shops-group .shop .shop-desc,.services-section .services-group .service .service-desc,.sliders-section .shop .shop-desc,.sliders-section .service .service-desc{padding:0 10px 10px;text-align:right;font-size:14px}
.services-section .services-group .service .service-desc,.sliders-section .service .service-desc{margin-top:5px}
.shops-section .shops-group .shop .point,.shop-section .point,.sliders-section .point{height:14px;width:14px;border-radius:9999px;background-color:#7cc425;margin-right:5px}
.shops-section .shops-group .shop .point.close,.shop-section .point.close,.sliders-section .point.close{background-color:#dc0327}
.shops-section .shops-group .shop .point.disabled,.shop-section .point.disabled,.sliders-section .point.disabled{background-color:#75797B}
.shops-section .shops-group .shop i,.services-section .services-group .service i,.sliders-section .shop i,.sliders-section .service i{font-size:24px}
.shops-section .shops-group .shop .logo-image,.sliders-section .shop .logo-image{position:relative;margin-bottom:32px}
.shops-section .shops-group .shop .logo-wrapper,.sliders-section .shop .logo-wrapper{position:absolute;top:-1rem;padding:.5rem;left:50%;transform:translateX(-50%);z-index:1;background-color:#FFF}
.shops-section .shops-group .shop .cover-wrapper,.sliders-section .shop .cover-wrapper{overflow:hidden}
.shops-section .shops-group .shop .cover-wrapper img,.sliders-section .shop .cover-wrapper img{-webkit-transform:scale(1);transform:scale(1);-webkit-transition:.3s ease-in-out;transition:.3s ease-in-out}
html.no-touch .shops-section .shops-group .shop .cover-wrapper img:hover,html.no-touch .sliders-section .shop:hover .cover-wrapper img{transform:scale(1.1)}
.newsletter-box{padding-left:60px}
.search-form input,.newsletter-form input,.input-wrapper .select2-container--default .select2-selection--single{border-radius:0!important;border:2px solid #000!important;font-size:14px!important;width:233px!important;max-width:100%!important;padding-left:12px!important;height:41px!important}
.input-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b{border:none!important}
.input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:37px}
.route-shops .select2-search--dropdown,.route-promotions .select2-search--dropdown,.route-informations .select2-search--dropdown{padding:0!important}
.route-shops .select2-results__message,.route-promotions .select2-results__message,.route-informations .select2-results__message{padding:0 6px!important}
.search-form .btn-submit,.search-form .btn-order,.newsletter-form .btn-submit{background-color:var(--text-color);border-radius:0;height:41px;border-top:2px solid #000;border-bottom:2px solid #000;border-right:2px solid #000;color:var(--white-color)}
.search-form .btn-submit .triangle,html.no-touch .search-form .btn-submit:hover .triangle-black,.newsletter-form .btn-submit .triangle,html.no-touch .newsletter-form .btn-submit:hover .triangle-black{display:block}
.search-form .btn-submit .triangle-black,html.no-touch .search-form .btn-submit:hover .triangle,.newsletter-form .btn-submit .triangle-black,html.no-touch .newsletter-form .btn-submit:hover .triangle{display:none}
html.no-touch .search-form .btn-submit:hover,html.no-touch .newsletter-form .btn-submit:hover{background-color:var(--white-color)}
.select2-results__option[data-select2-id*="area_"]{font-weight:700;padding-left:10px}
.select2-results__option--selectable{padding-left:20px}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#90b51a!important;transition:all .2s ease-in-out}
.select2-hidden-accessible{display: none}
.promotions-section .promotions-list .promotion .box-promotion,.items-section .items-list .box-item{box-shadow:1px 1px 5px #0003;margin-bottom:60px;transition:box-shadow .3s ease}
html.no-touch .promotions-section .promotions-list .promotion .box-promotion:hover,html.no-touch .items-section .items-list .box-item:hover{box-shadow:1px 1px 5px #0006}
.promotions-section .promotions-list .promotion .box-content,.eventsnews-list .box-item .box-content{padding:20px 25px 30px}
.route-promotion .promotions-section .promotions-list{margin-top:0}
.gallery-promotions h2,.gallery-items h2{margin-bottom:60px;color:var(--text-color)}
.eventsnews-list .box-item .box-content .date{font-size:14px;color:var(--text-color);padding-bottom:20px}
.eventsnews-list .box-item .box-content .box-button{padding:0;margin-bottom:0}
html.no-touch .promotions-section .btn-general:hover,html.no-touch .items-section .items-list .box-item .btn-general:hover,html.no-touch .route-eventnews .btn-general:hover{color:var(--white-color)}
.title-centro{font-weight:900}
.modal-title{font-weight:700}
.form-textarea{height:100%}
.box-form-control,.box-button{margin-bottom:20px}
.contacts-section,.informations-section{padding-top:50px;padding-bottom:60px}
.contacts-section h3,.informations-section h3{margin-bottom:40px}
.map{width:100%;height:600px}
.map .gm-style .gm-style-iw-c {padding: 0 0 0 12px !important;}
.map .gm-ui-hover-effect{width: 24px !important;height: 24px !important; margin: 5px 5px 0 5px !important;}
.map .gm-ui-hover-effect>span {margin: 0 !important;}
.navigation-buttons .title{font-size:20px;font-weight:900;margin-top:15px;margin-bottom:15px}
.navigation-buttons .title-centro{font-weight:700}
.navigation-buttons .search-form .search-field,.navigation-buttons .search-form .search-field input{width:100%!important}
.route-informations .search-form input,.route-informations .input-wrapper .select2-container--default .select2-selection--single{padding-left:12px!important}
.route-informations .select2-container .select2-selection--single .select2-selection__rendered{padding-left:0!important}
/*

MISC END

------------------------------------------------------------
--------------------
*/



/* Areas
------------------------------------------------------------ */

.areas-section {
    padding-top: 60px;
    padding-bottom: 200px;
}
.areas-section h2 {
    margin-bottom: 25px;
}
.areas-section .title-box {
    margin-bottom: 25px;
}
.areas-section .box-button .btn-general { 
    width: 100%;
    max-width: 360px;
    text-align: left;
}
.areas-section .reservation-title {
    margin-bottom: 16px !important;
}

.areas-section .info-text {
    margin-bottom: 17px;
    color: #7b7979ff;
}
.areas-section .contact-info {
    margin-bottom: 40px;
}


/* Assessment
------------------------------------------------------------ */

.assessment {
    text-align: center;
    padding: 3rem 0;
}
.assessment .title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
    line-height: 1.1;
    margin: 0;
}
.assessment .desc {
    margin: 5px 0 0;
}
.assessment .modes {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.assessment .modes span {   
    display: block;
    text-transform: uppercase;
    margin: 0 3rem;
    padding: 1rem;
}
.assessment .modes span .fa-regular {
    font-size: 30px;
    margin-right: 5px;
}
.assessment .btn-general {
    font-weight: 700;
}
.assessment .btn-general .fa-regular {
    margin-right: 5px;
}


/* Breadcrumb
------------------------------------------------------------ */

.breadcrumb-box {
    position: relative;
    width: 100%;
    color: var(--white-color);
}

.breadcrumb-box .breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #b06321;
    padding: 9px 10px;
    margin: 0;
    z-index: 3;
}
.breadcrumb-box .breadcrumb a {
    color: var(--white-color);
}
html.no-touch .breadcrumb-box .breadcrumb a:hover {
    color: var(--text-color);
}
.breadcrumb-box .breadcrumb li {
    display: inline;
    font-size: 16px;
}
.breadcrumb-box .breadcrumb li:after {
    content: ">";
    padding-left: 5px;
    padding-right: 5px;
}
.breadcrumb-box .breadcrumb li:last-child:after {
    content: "";
}
.breadcrumb-box .breadcrumb ol li {
    font-size: 15px;
}

.breadcrumb-box .main-cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-image: url("../images/breadcrumb-cover.jpg");
    background-size: cover;
    background-position: center;
    height: 500px;
    z-index: 1;
}
.breadcrumb-box .cover-box {
    position: relative;
    z-index: 2;
}
.breadcrumb-box .cover-box img {
    width: 100%;
    height: auto;
    display: block;
}

.breadcrumb-box .title-box {
    position: relative;
    min-height: 500px;
    z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
}
.breadcrumb-box .title-box .pre-title {
    text-transform: uppercase;
    font-size: 20px;
}
.breadcrumb-box .title-box h1 {
    color: var(--white-color);
    font-size: 56px;
    font-weight: 900;
    max-width: 700px;
}


/* Box Cookies
------------------------------------------------------------ */

.box-cookies {
    color: var(--white-color);
    background-color: var(--primary-color);
    text-transform: uppercase;
    padding: 3px 30px;
    font-weight: 700;
    bottom: 20px;
    right: 20px;
    display: block;
    position: fixed;
    z-index: 50;
    border: 2px solid var(--primary-color);
}

html.no-touch .box-cookies:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}


/* Calendar
------------------------------------------------------------ */

.calendar .calendar-head {
    background-color: #000;
    padding: 15px 15px 20px 15px;
    text-align: center;
}
.calendar .calendar-head .calendar-title {
    color: var(--white-color);
    font-weight: 900;
    font-size: 36px;
}
.calendar .items-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}
.calendar .items-title .title {
    color: #000;
    font-weight: 900;
    font-size: 36px;
}
.calendar .items-section .items-list {
    margin-top: 1rem;
}


/* Come Here
------------------------------------------------------------ */

.come-here.box-img {
    position: relative;
}
.come-here.box-img .navigation-buttons {
    position: absolute;
    top: 40px;
    right: 0;
    padding: 0 40px 40px;
    background-color: var(--white-color);
    width: 380px;
    max-width: 100%;
}
.come-here.box-img .navigation-buttons .btn-map {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-color);
    padding-left: 15px;
    position: relative;
    border-top: 2px solid var(--text-color);
    width: 100%;
    height: 41px;
    display: inline-block;
    align-content: center;
    transition: all 0.30s ease-in-out;
    -webkit-transition: all 0.30s ease-in-out;
}
.come-here.box-img .navigation-buttons .btn-map-2 {
    border-bottom: 2px solid var(--text-color);
}
.come-here.box-img .navigation-buttons .btn-map:before {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 0;  
    height: calc(100% - 10px);
    width: 2px;
    background-color: var(--text-color);
}
html.no-touch .come-here.box-img .navigation-buttons .btn-map:hover {
    color: var(--white-color);
    background-color: var(--text-color);
}
.come-here.box-img .navigation-buttons .btn-map .triangle,
html.no-touch .come-here.box-img .navigation-buttons .btn-map:hover .triangle-black {
    display: none;
}
.come-here.box-img .navigation-buttons .btn-map .triangle-black,
html.no-touch .come-here.box-img .navigation-buttons .btn-map:hover .triangle {
    display: block;
}


/* Element
------------------------------------------------------------ */

.element-section {
    padding-top: 60px;
    padding-bottom: 60px;
}
.element-section .date {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--text-color);
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 900;
}
.element-section .date {
    margin-bottom: 40px;
}
.element-section .text {
    margin-bottom: 1rem;
}
.element-section .btn-general {
    margin-bottom: 20px;
}
.element-section .link {
    display: inline-block;
    font-weight: 700;
    border-bottom: 2px solid #000;
    padding-bottom: .1rem;
    transition: color .3s ease, border-color .3s ease;
    margin: 0 0 1.5rem;
}
html.no-touch .element-section .link:hover {
    color: var(--hover-color);
    border-color: var(--hover-color);
}


/* Errors 
------------------------------------------------------------ */

.errors-section h1 {
    margin-top: 100px;
    font-size: 150px;
    font-weight: 900;
    color: var(--text-color);
}
.errors-section .subtitle {
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 40px;
}
.errors-section .icon-cart {
    font-size: 100px;
    color: var(--secondary-color);
    animation: move 3s ease-in-out infinite;
}

@keyframes move {
    0% {
      transform: translateX(-150px);
    }
    50% {
      transform: translateX(150px);
    }
    100% {
      transform: translateX(-150px);
    }
}


/* Gallery Shops
------------------------------------------------------------ */

.gallery-shops.shops-section .shops-group {
    border-bottom: none;
    padding-bottom: 100px;
}

.gallery-shops.shops-section .shops-group h2 {
    text-transform: uppercase;
    margin-bottom: 55px;
}

.gallery-shops.shops-section .shops-group .shop {
    padding-top: 0;
    padding-bottom: 25px;
    margin-right: 0;
}

.gallery-shops .more-shops {
    height: 100%;
    padding: 20px;
    background-color: var(--primary-color);
    align-content: center;
}

.gallery-shops .more-shops .text {
    font-size: 24px;
    font-weight: 900;
    color: var(--white-color);
}

.gallery-shops .more-shops .btn-general {
    margin-top: 30px;
    width: 100%;
    -webkit-transition-property: none;
    transition-property: none;
    -webkit-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
}

html.no-touch .gallery-shops .more-shops .btn-general:hover {
    background-color: var(--white-color);
    color: var(--text-color) !important;
}

html.no-touch .gallery-shops .more-shops .btn-general:before {
    content: none;
}


/* Home Slider
------------------------------------------------------------ */

.home-slider .slick-track {
    background-color: #ededed;
}
.home-slider .carousel-wrapper {
    display: flex;
    align-items: center;
}

.home-slider .carousel-wrapper .picture-desk {
    flex: 0 0 50%;
}
.home-slider .carousel-wrapper .picture-mobile {
    display: none;
}

.home-slider .carousel-wrapper .slide-content {
    flex: 1 1 auto;
    padding: 2rem 4rem;
    max-width: 800px;
}
.home-slider .carousel-wrapper .slide-content .pre-title {
    text-transform: uppercase;
    font-size: 22px;
}
.home-slider .carousel-wrapper .slide-content h2 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 900;
    color: var(--text-color);
    margin: 0;
}
.home-slider .carousel-wrapper .slide-content .btn {
    margin: 20px 0 0;
    font-weight: 700;
}


/* Items Section
------------------------------------------------------------ */

.items-section .items-list {
    margin-top: 70px;
}
.items-section .box-item {
    position: relative;
}
.items-section .box-item .box-content .box-content-title {
    position: absolute;
    top: 40px;
    left: 25px;
    right: 25px;
}
.items-section .item .date {
    color: var(--white-color);
    padding-bottom: 15px;
}
.items-section .item .pretitle {
    color: var(--white-color);
    font-size: 20px;
}
.items-section .item .title {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 30px;
}
.items-section .item .box-button {
    padding: 15px
}


/* Informations List
------------------------------------------------------------ */

.informations-list {
    margin-bottom: 50px;
}

.informations-list .informations-list-item {
    margin-bottom: 70px;
}
.informations-list .informations-list-item .informations-list-content {
    font-weight: 900;
    line-height: 1.2;
    padding-left: 38px;
    padding-right: 4rem;
}
.informations-list .informations-list-item .search-form {
    display: block;
    width: 100%;
}
.informations-list .informations-list-item .search-form .input-wrapper {
    display: flex;
    width: 100%;
}
.informations-list .informations-list-item .search-form .input-wrapper .select2 {
    flex: 1 1 auto;
}
.informations-list .informations-list-item .search-form .input-wrapper .select2 .select2-selection {
    width: 100% !important;    
}

.informations-list .day {
    font-weight: 700;
}
.informations-list .clock-open,
.informations-list .clock-close {
    max-width: 110px;
    padding: 1.2rem;
}
.informations-list .default-text {
    margin-left: 110px;
}
.informations-list .week-list {
    margin-left: 40px;
    margin-right: 25px;
}


/* Informed
------------------------------------------------------------ */

.informed-section {
    margin-bottom: 60px;
    margin-bottom: 80px;
}
.informed-section .title {
    color: var(--text-color);
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 35px;
}
.informed-section .text {
    max-width: 800px;
    margin-bottom: 20px;
}
.informed-section .text2 {
    font-weight: 900;
}


/* Loading 
------------------------------------------------------------ */

.box-loading {
    display: flex;
    justify-content: center;
    margin: 150px 0 200px 0;
}
.loading {
    height:50px;
    width: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor:progress;

    border-radius: 50%;
    border-top: 5px solid var(--primary-color);
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid transparent;

    animation: loading 1s linear infinite;
}
@keyframes loading {
    0% {
    transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Newsletter Form
------------------------------------------------------------ */

.newsletter-form {
    color: var(--white-color);
}
.newsletter-form input {
    margin-bottom: 20px;
    border: 2px solid #FFFFFF !important;
    width: 100% !important;
}
.newsletter-form .btn-submit {
    border: 2px solid #FFFFFF;
}


/* Promotions
------------------------------------------------------------ */

.promotions-section .title-list {
    margin: 40px 0;
    font-size: 65px;
}
.promotions-section .text-list {
    max-width: 800px;
    margin: 0 auto;
}
.promotions-section .promotions-list {
    margin-top: 70px;
    margin-bottom: 80px;
}
.promotions-section .promotions-list .promotion .box-content .title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--text-color);
}
.promotions-section .promotions-list .promotion .box-content .text {
    font-size: 16px;
    color: var(--text-color);
    padding-bottom: 30px;
    margin-bottom: 0;
}
.promotions-section .promotions-list .promotion .box-content .date {
    font-size: 14px;
    color: var(--text-color);
    padding-bottom: 20px;
}
.promotions-section .promotions-list .promotion .box-promotion .btn-general {
    width: 100%;
}


/* Search Form
------------------------------------------------------------ */

.search-form .btn-order {
    border: none;
}
.search-form .btn-order.active,
html.no-touch .search-form .btn-order:hover {
    background-color: var(--hover-color);
}
.search-form .select-search {
    width: 215px;
    max-width: 100%;
}
.search-form .box-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: var(--text-color) !important;
    color: var(--white-color) !important;
    padding-left: 12px;
    padding-right: 34px;
    line-height: 41px !important;
    text-transform: uppercase;
    width: 215px;
    max-width: 100%;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.search-form .box-select .select2-container--default .select2-selection--single .select2-selection__rendered::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
html.no-touch .search-form .box-select .select2-container--default .select2-selection--single .select2-selection__rendered:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}
.search-form .box-select .select2-container--default .select2-selection--single,
.search-form .box-select .select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 41px;
}
.search-form .box-select .select2-container--default .select2-selection--single {
    border-radius: 0 !important;
    border: none !important;
}
.search-form .box-select .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}
.search-form .box-select .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    font-family: "Font Awesome 6 Free"; 
    font-weight: 700;
    content: "\f15c";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--white-color);
    font-size: 23px;
}
.search-form .box-order .select2-container--default .select2-selection--single .select2-selection__arrow::after {
    content: none !important;
}
.search-form .box-order .select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url('/assets/alforo/images/triangle-down.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 20px;
    right: 12px;
}
.search-form .box-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 8px !important;
}
.search-form .box-button{
    margin-bottom:0
}


/* Search section
------------------------------------------------------------ */

.search-section {
    padding:20px 0;--tw-shadow:0 2px 6px #00000038;--tw-shadow-colored:0 2px 6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)
}
.search-section .search-form {
    display: flex;
    align-items: center;

}
.search-section .search-form div + div {
    margin-left: 1rem;
}
.search-section .search-form .tools {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}


/* Service
------------------------------------------------------------ */

.services-section .btn-page {
    margin-bottom: 25px;
}
.services-section .btn-page span {
    font-weight: 900;
}
.services-section .services-group .letter {
    font-size: 45px;
    font-weight: 900;
    line-height: 1;
}
.services-section .services-group .services {
    width: 100%;
}
/* Commentato per fare una modifica al width. */
/* .services-section .services-group .services .service {
    margin: 25px 30px 25px 0;
    width: calc(25% - 23px);
} */
html.no-touch .services-section .services-group .services .service[data-open-map]:hover {
    box-shadow: 1px 1px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}
.services-section .box-categories {
    margin-bottom: 20px;
}
.services-section .box-categories .btn {
    border: 2px solid #000000;
    text-align: center;
    margin-bottom: 5px;
}


/* Shop
------------------------------------------------------------ */

.shop-section {
    position: relative;
    z-index: 30;
    margin-top: -160px;
}
.shop-section .col-desc {
    padding-top: 190px;
}
.shop-section .box-categories{
    margin-bottom: 35px;
}
.shop-section .box-categories .category {
    display: inline-block;
    border: 2px solid #000000;
    color: var(--text-color);
    margin-right: 15px;
    padding: 6px 10px;
    height: 41px;
}
.shop-section .col-info {
    position: relative;
}
.shop-section .col-info .box-info-shop {
    position: relative;
    padding: 0 60px 40px;
    background-color: var(--white-color);
}
.shop-section .col-info  .box-info-shop h1 {
    margin-bottom: 25px;
    font-size: 50px;
    color: var(--text-color);
    font-weight: 900;
}
.shop-section .col-info .box-info-shop .btn-map {
    background: transparent;
    border: none;
}
.shop-section .col-info .box-info-shop .box-img-logo {
    padding: 20px 0;
}
.shop-section .col-info .box-info-shop .box-img-logo img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}
.shop-section .col-info .box-info-shop .box-contacts-shop .box-link {
    margin: 5px 0 20px;
}
.shop-section .col-info .box-info-shop .box-contacts-shop .box-link i {
    margin-right: 20px;
}
.shop-section .box-shop-desc {
    margin-bottom: 35px;
}
.shop-section .box-hours-shop .text {
    font-weight: 700;
    font-family: var(--font-family);
    font-size: 16px;
    margin-bottom: 12px;
}
.shop-section .box-hours-shop .accordion-button .text {
    width: 100%;
}
.shop-section .box-hours-shop .text .day {
    font-size: 20px;
    margin-right: 10px;
    min-width: 85px;
}
.shop-section .box-hours-shop .accordion-button {
    padding: 0 0 5px 0;
}
.shop-section .box-hours-shop .accordion-button::after {
    margin-left: 10px;
    margin-bottom: 10px;
    width: 20px;
}
.shop-section .box-hours-shop .clock {
    margin-right: 20px;
}
.shop-section .box-hours-shop .clock .clock-close,
.shop-section .box-hours-shop .clock.close .clock-open {
    display: none;
}
.shop-section .box-hours-shop .clock img {
    width: 43px;
    margin-bottom: 15px;
}
.shop-section .box-hours-shop .accordion-hours {
    width: 100%;
}
.shop-section .box-hours-shop .accordion-hours .accordion-body {
    padding: 0;
}
.shop-section .box-hours-shop .accordion-hours .accordion-item {
    border: none;
}
.shop-section .box-hours-shop .accordion-hours .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--text-color);
    background-color: var(--white-color);
}
.shop-section .box-hours-shop .accordion-hours .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.shop-section .box-hours-shop .accordion-hours .accordion-button:focus {
    box-shadow: none;
}
.shop-section .box-hours-shop .clock.close .clock-close,
.shop-section .box-hours-shop .clock .clock-open {
    display: block;
}
.shop-section .col-info i {
    font-size: 24px;
    width: 36px;
}


/* Sliders
------------------------------------------------------------ */

.sliders-section {
    margin-bottom: 60px;
}

.sliders-section .service .text {
    max-height: 33.58px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* mostra massimo 2 righe */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.sliders-section .sliders {
    margin-right: -12px;
    margin-left: -12px;
}
.sliders-section .sliders .slide .shop,
.sliders-section .sliders .slide .service {
    margin: 0 12px; 
}
.sliders-section .sliders .slick-track {
    margin-left: 0 !important;
}
.sliders-section .sliders .slick-list {
    padding-top: 30px;
}

.sliders-section .first-image {
    position: relative;
    height: 100%;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}
.sliders-section .first-image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    font-size: 25px;
    font-weight: 900;
}

.sliders-section .sliders .shop-item,
.sliders-section .sliders .service-item {
    border-bottom: 1px solid #545558ff;
}

.sliders-section .sliders .shop-item {
    padding-bottom: 15px !important;
}

.sliders-section .sliders .service-item {
    padding-bottom: 15px !important;
}
html.no-touch .sliders-section .sliders .service-item[data-open-map]:hover {
    box-shadow: 1px 1px 6px rgba(0,0,0,0.2);
    cursor: pointer;
}

.sliders-section .box-change {
    margin-top: 30px;
}

.sliders-section .slick-prev:before,
.sliders-section .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    color: var(--text-color);
    font-size: 25px;
}
.sliders-section .slick-prev:before {
    content: "\f053" !important;
}
.sliders-section .slick-next:before {
    content: "\f054" !important;
}

.sliders-section .slick-prev,
.sliders-section .slick-next,
.sliders-section .slick-prev:focus,
.sliders-section .slick-next:focus {
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    background-color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    --tw-shadow: 0 5px 10px rgba(0, 0, 0, .22);
    --tw-shadow-colored: 0 5px 10px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    z-index: 20;
}

html.no-touch .sliders-section .slick-prev:hover,
html.no-touch .sliders-section .slick-next:hover {
    background-color: var(--hover-color);
    color: var(--white-color);
}
html.no-touch .sliders-section .slick-prev.slick-disabled,
html.no-touch .sliders-section .slick-next.slick-disabled {
    background-color: #FFF;
    color: #000 !important;
}
html.no-touch .sliders-section .slick-prev.slick-disabled::before,
html.no-touch .sliders-section .slick-next.slick-disabled::before {
    color: #000 !important;
}

html.no-touch .sliders-section .slick-prev:hover:before,
html.no-touch .sliders-section .slick-next:hover:before {
    color: var(--white-color);
}


/* Triangle Title
------------------------------------------------------------ */

.triangle-title {
    position: relative;
    font-size: 35px;
    font-weight: 900;
    line-height: 1;
    padding-left: 38px;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
.triangle-title:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    height: 34px;
    width: 3px;
    background-color: #000;
    margin-top: -17px;
}
.triangle-title:after {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 20px;
    top: 50%;
    left: 12px;
    margin-top: -10px;
    background-image: url('../images/triangle-black.png');
    background-position: center;
    background-repeat: no-repeat;
}


/* Widget Links
------------------------------------------------------------ */

.widget-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    z-index: 9999;
}

.widget-links .item {
    display: block;
    border: 1px solid var(--text-color);
}
.widget-links .item + .item {
    border-top: none;
}
.widget-links .item:last-child {
    border-top: 1px solid var(--text-color);
    margin-top: 1rem;
}

.widget-links .item .control {
    display: block;
    width: 64px;
    height: 64px;
    padding: .75rem;
    margin: 0;
    background-color: var(--white-color);
    border: none;
}
.widget-links .item .control img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
html.no-touch .widget-links .item .control:hover{
    background-color: #f1c08a
}

.widget-links .item .helper {
    display: none;
    position: relative;
    width: 280px;
    padding: 2rem;
    background-color: var(--white-color);
}
.widget-links .item .helper .closer {
    display: block;
    position: absolute;
    top: .5rem;
    right: .5rem;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    font-size: 18px;
    background-color: transparent;
    border: none;
    padding: 0;
    color: #CCC;
    transition: color .3s ease;
}
html.no-touch .widget-links .item .helper .closer:hover {
    color: #999;
}
.widget-links .item .helper .btn {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
}
.widget-links .item .helper.hours {
    text-align: center;
}
.widget-links .item .helper.hours .head {
    display: flex;
    align-items: center;
}
.widget-links .item .helper.hours .head img {
    width: 60px;
    margin-right: 1rem;
}
.widget-links .item .helper.hours p.default-text {
    font-size: 14px;
    margin-top: 1rem;
}

.widget-links .item.item-open .control {
    display: none;
}
.widget-links .item.item-open .helper {
    display: block;
}

/* Pers CSS */
.btn-collapse{
    background-color: var(--text-color);
    border-radius: 0;
    padding: .375rem 1.5rem;
    width: 100%;
    line-height: 28px;
    border: none;
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
}

.btn-collapse-icon{
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 0;
}

.collapse-open .btn-collapse-icon{
    line-height: 22px;
    margin-bottom: 5px;
}

.collapse-close .btn-collapse-icon{
    line-height: 28px;
    margin-bottom: 0;
}

.btn-collapse:hover{
    color: var(--white-color);
}

.aside-text{
    width: 100%;
    margin-bottom: 30px;
    font-size: .875rem;
}

.services-section .services-group .services .service {
    margin: 25px 30px 25px 0;
    width: calc(25% - 30px);
}

.map-marker-container{
    color: var(--white-color);
    position: absolute;
    z-index: 5;
    bottom: 0;
    right: 0;
    padding-right: 10px;
    padding-bottom: 6px;
}

.box-form-control .select-form-control {
    width: 100%;
    max-width: 100%;
}

.box-form-control .select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: var(--white-color) !important;
    color: #212529 !important;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 12px;
    padding-right: 34px;
    height: 41px;
    border-radius: 0;
    border: 2px solid #656263ff;
    max-width: 100%;
    display: block;
}

.box-form-control .select2-container--default .select2-selection--single,
.box-form-control .select2-container--default .select2-selection--single .select2-selection__rendered,
.box-form-control .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 41px;
}
.box-form-control .select2-container--default .select2-selection--single {
    border-radius: 0 !important;
    border: none !important;
}

.informations-list .custom-informations-list-item{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Newletter Pop-in */
.modal-content.bee-dialog .bee-dialog-inner{
    border-radius: 0;
    background-color: var(--primary-light-color);
    padding: 40px 65px;
}

.modal-content .bee-dialog-close::before{
    background-color: var(--text-color) !important;
}

.modal-content .bee-dialog-close::after{
    background-color: var(--text-color) !important;
}

.modal-content .newsletter-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content .newsletter-img img {
    max-width: 350px;
}

.modal-content h1{
    font-size: 44px;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 900;
    color: var(--text-color);
    margin: 30px 0;
}

.modal-content p{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.modal-content .newsletter-form{
    color: var(--text-color);
}

.modal-content .newsletter-form .custom-input-group{
    border: 1px var(--text-color) solid;
    margin-bottom: 30px;
}

.modal-content .newsletter-form .custom-input-group input{
    margin-bottom: 0px;
    font-size: 20px !important;
    height: 52px !important;
    padding-left: 20px !important;
}

.modal-content .newsletter-form .btn-submit{
    height: 52px !important;
    border: 5px solid #FFFFFF !important;
}

/* AppexChart */

.custom-chart{
    width: 100%;
}

.box-select-container{
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.box-select-container .custom-select{
    max-width: 100%;
    width: 215px;
}

.box-select-container .select2-container--default .select2-selection--single{
    border-radius: 0 !important;
    border: none !important;
    height: 41px;
}

.box-select-container .select2-container--default .select2-selection--single .select2-selection__rendered{
    background-color: var(--text-color) !important;
    color: var(--white-color) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    line-height: 41px !important;
    text-transform: uppercase;
    width: 215px;
    max-width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.box-select-container .select2-container--default .select2-selection--single .select2-selection__rendered::after{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.box-select-container .select2-container--default .select2-selection--single .select2-selection__rendered:hover::after{
    transform: scaleX(1);
}

.box-select-container .select2-selection__arrow{
    display: none;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 300px !important;
  overflow-y: auto !important;
}