/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: #000000a8;
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #fff;
    border-color: white transparent white transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1.5s linear infinite;
    animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
    font-family: Eurostile;
    src: url(../fonts/eurostile.TTF);
}

@font-face {
    font-family: eurostile_bold;
    src: url(../fonts/EurostileBold.ttf);
}

@font-face {
    font-family: Eurostile Normal;
    src: url(../fonts/eurostile_normal.ttf);
}

:root {
    scroll-behavior: smooth;
}

body {
    font-family: Eurostile !important;
    color: #444444;
}

a {
    color: #4154f1;
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Eurostile;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
    margin-top: 10vh;
    /*padding: 20px 30px;*/
    transition: all 0.3s;
}
@media (max-width: 1199px) {
    #main {
        padding: 20px 0;
    }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}
.pagetitle h1 {
    font-size: 24px;
    margin-bottom: 0;
    font-weight: 600;
    color: #012970;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #99c21e;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.back-to-top:hover {
    background: #6776f4;
    color: #fff;
}
.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    -webkit-animation-name: dropdown-animate;
    animation-name: dropdown-animate;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}
.dropdown-menu .dropdown-header, .dropdown-menu .dropdown-footer {
    text-align: center;
    font-size: 15px;
    padding: 10px 25px;
}
.dropdown-menu .dropdown-footer a {
    color: #444444;
    text-decoration: underline;
}
.dropdown-menu .dropdown-footer a:hover {
    text-decoration: none;
}
.dropdown-menu .dropdown-divider {
    color: #a5c5fe;
    margin: 0;
}
.dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}
.dropdown-menu .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}
.dropdown-menu .dropdown-item:hover {
    background-color: #f6f9ff;
}

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}
@-webkit-keyframes dropdown-animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    0% {
        opacity: 0;
    }
}
@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
    0% {
        opacity: 0;
    }
}
/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

/* Card */
.card {
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header, .card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    font-family: "Poppins", sans-serif;
}
.card-title span {
    color: #899bbd;
    font-size: 14px;
    font-weight: 400;
}
.card-body {
    padding: 0 20px 20px 20px;
}

.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}
.btn-close:focus {
    outline: 0;
    box-shadow: none;
}

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}
.accordion-flush .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #4154f1;
}
.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    font-family: 'Titillium Web', sans-serif;
    color: #899bbd;
    font-weight: 600;
}
.breadcrumb a {
    color: #899bbd;
    transition: 0.3s;
}
.breadcrumb a:hover {
    color: #51678f;
}
.breadcrumb .breadcrumb-item::before {
    color: #899bbd;
}
.breadcrumb .active {
    color: #51678f;
    font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}
.nav-tabs-bordered .nav-link {
    margin-bottom: -2px;
    border: none;
    color: #2c384e;
}
.nav-tabs-bordered .nav-link:hover, .nav-tabs-bordered .nav-link:focus {
    color: #4154f1;
}
.nav-tabs-bordered .nav-link.active {
    background-color: #fff;
    color: #4154f1;
    border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}
@media (min-width: 1200px) {
    .logo {
        width: 280px;
    }
}
.logo img {
    max-height: 80px;
}

@media (max-width: 1400px) {
    .logo img {
        max-height: 50px;
    }
}
.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #012970;
    font-family: 'Titillium Web', sans-serif;
}

.header {
    transition: all 0.5s;
    z-index: 997;
    height: 10vh;
    background-color: #fff;
    padding-left: 20px;
    box-shadow: 0px 2px 20px rgb(72 86 100 / 10%);
    /* Toggle Sidebar Button */
    /* Search Bar */
}
.header .toggle-sidebar-btn {
    font-size: 48px;
    padding-left: 10px;
    cursor: pointer;
    color: #3e484a;
    font-weight: 700;
}
.header .search-bar {
    min-width: 360px;
    padding: 0 20px;
}
@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }
    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}
.header .search-form {
    width: 100%;
}
.header .search-form input {
    border: 0;
    font-size: 14px;
    color: #012970;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}
.header .search-form input:focus, .header .search-form input:hover {
    outline: none;
    box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
    border: 1px solid rgba(1, 41, 112, 0.3);
}
.header .search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}
.header .search-form button i {
    color: #012970;
}

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}
.header-nav > ul {
    margin: 0;
    padding: 0;
}
.header-nav .nav-icon {
    font-size: 20px;
    color: #012970;
}
.header-nav .nav-profile {
    color: #012970;
}
.header-nav .nav-profile img {
    max-height: 36px;
}
.header-nav .nav-profile span {
    font-size: 14px;
    font-weight: 600;
}
.header-nav .badge-number {
    position: absolute;
    inset: 4px 6px auto auto;
    font-weight: normal;
    font-size: 11px;
    padding: 3px 6px;
}
.header-nav .notifications .notification-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    transition: 0.3s;
}
.header-nav .notifications .notification-item i {
    margin: 0 20px 0 10px;
    font-size: 24px;
}
.header-nav .notifications .notification-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.header-nav .notifications .notification-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}
.header-nav .notifications .notification-item:hover {
    background-color: #f6f9ff;
}
.header-nav .messages .message-item {
    padding: 15px 10px;
    transition: 0.3s;
}
.header-nav .messages .message-item a {
    display: flex;
}
.header-nav .messages .message-item img {
    margin: 0 20px 0 10px;
    max-height: 40px;
}
.header-nav .messages .message-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #444444;
}
.header-nav .messages .message-item p {
    font-size: 13px;
    margin-bottom: 3px;
    color: #919191;
}
.header-nav .messages .message-item:hover {
    background-color: #f6f9ff;
}
.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
}
.header-nav .profile .dropdown-header h6 {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    color: #444444;
}
.header-nav .profile .dropdown-header span {
    font-size: 14px;
}
.header-nav .profile .dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    transition: 0.3s;
}
.header-nav .profile .dropdown-item i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 0;
}
.header-nav .profile .dropdown-item:hover {
    background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
    position: fixed;
    top: 10vh;
    right: 0;
    bottom: 0;
    width: 300px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #99c21e transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #99c21e;
}
@media (max-width: 1199px) {
    .sidebar {
        right: 0;
        top: 8vh;
    }
}
.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}
.sidebar::-webkit-scrollbar-thumb {
    background-color: #99c21e;
}

@media (min-width: 1200px) {
    #main, #footer {
        margin-right: 300px;
    }
}
@media (max-width: 1199px) {
    .toggle-sidebar .sidebar {
        right: -300px;
    }
}
@media (min-width: 1200px) {
    .toggle-sidebar #main, .toggle-sidebar #footer {
        margin-right: 0;
    }
    .toggle-sidebar .sidebar {
        right: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-nav li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar-nav .nav-item {
    margin-bottom: 5px;
}
.sidebar-nav .nav-heading {
    font-size: 11px;
    text-transform: uppercase;
    color: #899bbd;
    font-weight: 600;
    margin: 10px 0 5px 15px;
}
.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: white;
    transition: 0.3;
    background: #99c21e;
    padding: 10px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: Eurostile;
}
.sidebar-nav .nav-link i {
    font-size: 16px;
    margin-right: 10px;
    color: #0a79bf;
}
.sidebar-nav .nav-link.collapsed {
    color: white;
    background: #99c21e;
}
.sidebar-nav .nav-link.collapsed i {
    color: white;
}
.sidebar-nav .nav-link:hover {
    color: white;
    background: #99c21e;
}
.sidebar-nav .nav-link:hover i {
    color: white;
}
.sidebar-nav .nav-link .bi-caret-down-fill {
    margin-right: 0;
    transition: transform 0.2s ease-in-out;
}
.sidebar-nav .nav-link:not(.collapsed) .bi-caret-down-fill {
    transform: rotate(180deg);
}
.sidebar-nav .nav-content {
    padding: 5px 0 0 0;
    margin: 0;
    list-style: none;
}
.sidebar-nav .nav-content a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #0a79bf;
    transition: 0.3;
    padding: 10px 0 10px 40px;
    transition: 0.3s;
    text-transform: uppercase;
}
.sidebar-nav .nav-content a i {
    font-size: 6px;
    margin-right: 8px;
    line-height: 0;
    border-radius: 50%;
}
.sidebar-nav .nav-content a:hover, .sidebar-nav .nav-content a.active {
    color: #0a79bf;
    text-decoration: underline;
}
.sidebar-nav .nav-content a.active i {
    background-color: #4154f1;
}

/* CUSTOM */


.nav-item a{
    cursor: pointer;
}

.div-image-section{
    position: relative;
    width: 100%;
    height: 90vh;
}

.image-section{
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.btn-image-section{
    position: absolute;
    z-index: 1;
    top: 85%;
    left: 10%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.div-vt{
    height: 100%;
    width: 100%;
}

.div-vt .contenitore-principale{
    height: 58.5vh;
    width: 100%;
    border-radius: 12px;
    position: relative;
}



@media (max-width: 992px) {
    .div-vt .contenitore-principale{
        height: 45vh;
    }
}


.right-side-top, .right-side-bottom{
    height: auto;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.div-utenti{
    height: 20vh;
    width: 100%;
    padding: 10px;
    overflow-x: scroll;
    display: -webkit-inline-box;
}

.div-utente{
    width: 20%;
    height: 100%;
    padding: 10px;
}

.utente{
    background-color: white;
    height: 100%;
    width: 100%;
}

.icone-menu{
    width: 40px;
    margin-right: 1rem;
}

.vai-a-360{
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: 80px;
}

.img-radar, .img-chat{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.canali-home-down{
    height: 24.5vh;
    overflow-y: auto;
}

.canali-home-down .canale{
    padding: 10px;
    height: 100%;
}

.canali-home-down .canale h4{
    font-family: Eurostile;
    color: #99c21e;
    font-size: 18px;
    font-weight: bold;
    text-align:center;
    margin-top: 0.5rem;
    cursor: pointer;
}

.canali-home-down .canale .player{
    background-color: #99c21e;
    width: 100%;
    height: 75%;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}

.canali-home-down .canale .active:before{
    content: "";
    background: #99c21ea3;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 8px;
}

/* modal */
.modal-background{
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    flex-direction: row;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.6);
}

/*.modal-body{
    margin: 2% 5%;
    padding: 10px;
    width: 90%;
    height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
    border-radius: 0 20px 20px 20px;    
    overflow: hidden;
}*/

.modal-body{
    width: 60%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #f5f5f5;
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
    border-radius: 0 20px 20px 20px;
    overflow: auto;
}

@media (max-width: 992px) {
    .modal-body{
        width: 90%;
    }
}

.close-modal{
    position: fixed;
    top: 8%;
    right: 8%;
    cursor: pointer;
    font-size: 30px;
}


/*** Multimedial Content ***/

.multimedial-content{
    padding: 20px;
    border-radius: 12px;
    height: 100%;
    overflow: auto;
    color: #374449;
}

.multimedial-content .titolo h4{
    font-weight: 500;
    font-size: 22px;
    color: #374449;
    font-family: Eurostile;
}


.multimedial-content .titolo .separatore{
    margin-bottom: 1rem;
    margin-top: 1rem;
    border: 1px solid #374449;
    border-radius: 99px;
    max-width: 300px;
}

.multimedial-content .titolo h3{
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    color: #374449;
    letter-spacing: 2px;
    font-family: Eurostile;
}

.multimedial-content p, .multimedial-content li{
    font-size: 20px;
    color: #374449;
    padding: 0 20px;
}

.multimedial-content .testo p iframe{
    width: 100%;
    height: 400px;
    object-fit: contain;
}

.multimedial-content li span{
    font-size: 20px !important;
}

.multimedial-content #hotspot-page-modal-container{
    text-align: center;
}

.multimedial-content #hotspot-page-modal-container img{
    height: 400px;
    max-width: 100%;
    object-fit: contain;
}



@media (max-width: 992px) {
    .multimedial-content{
        padding: 5px;
    }
    .multimedial-content .testo{
        height: auto;
    }
}
.multimedial-content .testo a{
    color: #91c63f;
    text-decoration: underline;
    cursor: pointer;
}


.multimedial-content video{
    max-width: 100%;
    border-radius: 0 10px 10px 10px;
}

.video-mc img{
    height: 50px;
    width: 50px;
    margin-left: 1rem;
}

.footer-mc{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
}

.div-immagine-quadro-animato:before{
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.waviy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ml12 {
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.ml12 .letter {
    display: inline-block;
    line-height: 1em;
}

.container-video-quadro-animato{
    height: 90vh;
}

.play-video, .pause-video, .stop-video{
    cursor: pointer;
}

.fullscreen-loader-mask
{
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    margin: 0px;
    padding: 0px;
    background-color: rgba(0, 0, 0, 0.6);
}

.animated {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    animation: up-down .5s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(-10%);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10%);
    }

    100% {
        transform: translateY(-10%);
    }
}

.spinner-container{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-anteprima-modal{
    max-height: 250px;
    object-fit: contain;
}

.box-attributo{
    padding-bottom: 100%;
    width: 100%;
    background-color: #e0edc2;
    margin-bottom: 1rem;
    border-radius: 0 8px 8px 8px;
    position: relative;
}

.box-attributo .elementi{
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-attributo .elementi .icona{
    height: 25px;
    width: auto;
    margin-bottom: .5rem;
}


.box-attributo .elementi span{
    color: #3e474f;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.box-attributo .elementi i{
    margin-bottom: .5rem;
    color: #3e474f;
}

.box-attributo .elementi i:before{
    font-size: 40px;
}

.box-attributo.active{
    background-color: #b9d56f;
    cursor: pointer;
}

.box-attributo.active span{
    color: white;
}

@media (max-width: 1560px) and (min-width: 1200px){
    .box-attributo .elementi .icona{
        height: 18px;
        margin-bottom: .3rem;
    }
    .box-attributo .elementi span{
        font-size: 14px;
    }
}

@media (max-width: 1200px) and (min-width: 992px){
    .box-attributo .elementi .icona{
        height: 12px;
        margin-bottom: .2rem;
    }
    .box-attributo .elementi span{
        font-size: 11px;
    }
}

.right-side-top .col-4{
    padding-left: .5rem;
    padding-right: .5rem;
}

.right-side-bottom .testo{
    padding: 15px 10px;
    background-color: #b9d56f;
    border-radius: 0 8px 8px 8px;
}

.right-side-bottom .testo p{
    font-family: Eurostile;
    color: #3e484a;
    font-size: 16px;
    margin-bottom: 0;
}

.right-side-bottom .testo .typed{
    display: inline-block;
}

.right-side-bottom .testo div{
    font-family: Eurostile;
    color: #3e484a;
    font-size: 16px;
}

.canali-home-top .titolo{
    font-family: Eurostile;
    color: #99c21e;
    font-weight: bold;
    padding: 10px;
}

.canali-home-top .titolo h3{
    margin-bottom: 0;
    font-weight: 600;
    font-size: 22px;
}

.canali-home-top .separatore{
    border:2px solid #99c21e;
}

.header h1{
    font-family: Eurostile;
    color: #99c21e;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: center;
}

.header .logo-simultane img{
    height: 50px;
}


@media (max-width: 1199px) {
    .header{
        height: auto;
    }
    .header h1{
        font-size:22px;
    }
    .div-vt{
        padding: 0;
    }
    .box-attributo{
        margin-bottom: .5rem;
    }
    .header .logo-simultane img{
        height: 30px;
    }
}

@media (max-width: 768px) {
    .header h1{
        font-size:14px;
    }
    .sidebar{
        padding: 40px 10px;
    }
}



/*.capitoli-ds-slider.swiper::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    display: block;
}

.capitoli-ds-slider.swiper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 5px;
}

.capitoli-ds-slider.swiper::-webkit-scrollbar-thumb {
    background: #99c21e;
    border-radius: 5px;
}

.capitoli-ds-slider.swiper::-webkit-scrollbar-thumb:hover {
    background: #99c21e;
}*/

.contenitore-principale .img-home{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contenitore-principale .video-player{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.canale .img-canale{
    width: 100%;
    height:100%;
    object-fit: cover;
    border-radius: 8px;
}

.canali-home-down .canale .player .icona{
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: white;
    padding: 6px;
    border-radius: 50%;
}

.canali-home-down .canale .player .icona img{
    height: 25px;
}

.titolo-dst{
    margin-top: 2vh;
    height: auto;
}

.titolo-dst h1{
    font-size: 32px;
    font-weight: 900;
    font-family: Eurostile;
    color: #99c21e;
}

.titolo-dst h1 span{
    font-weight: 500;
}

.titolo-dst .istruzioni{
    display: block;
    font-weight: 600;
}

.lista-dst{
    height: auto;
    padding: 20px 0;
}

.lista-dst .singolo-dst{
    padding: 10px;
}

.lista-dst .singolo-dst .immagine{
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    background: #00000045;
    border-radius: 10px 10px 0 10px;
    box-shadow: 3px 4px 6px 0 #c7c7c7;
}

.lista-dst .singolo-dst .immagine img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 10px;
    box-shadow: 0px 0 15px rgb(0 0 0 / 10%);
    z-index: -1;
}

.lista-dst .singolo-dst .titolo{
    position: absolute;
    padding: 20px;
    top: 10px;
    color: white;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.lista-dst .singolo-dst .titolo h2{
    font-family: Eurostile;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 0px 0px 10px #000;
}


.lista-dst .singolo-dst .icona{
    height: 20px;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.index-capitoli-slider .swiper-button-next, .index-capitoli-slider .swiper-button-prev{
    width: 30px;
    height: 30px;
    background: #99c21e;
    border-radius: 50%;
    transition: .3s;
    border: 1px solid #fff;
}

.index-capitoli-slider .swiper-button-next:after, .index-capitoli-slider .swiper-button-prev:after{
    font-size: 12px;
    color: #fff;
}

.index-capitoli-slider .swiper-button-next:hover, .index-capitoli-slider .swiper-button-prev:hover{
    background: transparent;
    border-color: #fff;
}

.index-capitoli-slider .swiper-button-next:hover:after, .index-capitoli-slider .swiper-button-prev:hover:after{
    color: #fff;
}

.index-capitoli-slider  .swiper-button-prev, .index-capitoli-slider  .swiper-rtl .swiper-button-next{
    left: 20px;
}

.index-capitoli-slider  .swiper-button-next, .index-capitoli-slider .swiper-rtl .swiper-button-prev{
    right: 20px;
}

.index-capitoli-slider .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .index-capitoli-slider .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    margin-bottom: 8px;
}

.index-capitoli-slider .swiper-pagination-bullet{
    border: 1px solid #fff;
    opacity: 1;
    background: #99c21e;
}

@media (max-width: 992px) {
    .lista-dst{
        margin-top: 1rem;
        height: auto;
        overflow: hidden;
        padding:20px;
    }
    .titolo-dst{
        margin-top: 0;
        padding: 8px;
    }
}

/* width */
.multimedial-content::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    display: block;
}


/* Track */
.multimedial-content::-webkit-scrollbar-track {
    background: #3e474c;
    border-radius: 5px;
}

/* Handle */
.multimedial-content::-webkit-scrollbar-thumb {
    background: #dfdfdf;
    box-shadow: inset 0 0 5px grey;
    border-radius: 5px;
}

/* Handle on hover */
.multimedial-content::-webkit-scrollbar-thumb:hover {
    background: #dfdfdf;
}

.multimedial-content .media-hotspot {
    text-align: center;
    width: fit-content;
    padding: 20px;
    border: 1px solid #91c63f;
    border-radius: 50%;
    margin-bottom: .5rem;
}


@media (max-width: 992px) {
    .multimedial-content .media-hotspot {
        margin-bottom: 1rem;
    }


    .canali-home-down{
        height: auto;
    }
    .box-attributo .elementi .icona{
        height: 30px;
    }
}

.multimedial-content .media-hotspot img{
    height: 50px;
}

.multimedial-content .media-hotspot-active {
    text-align: center;
    width: fit-content;
    padding: 20px;
    background-image: linear-gradient(270deg, #709e31, #90c63f);
    border: 1px solid #91c63f;
    border-radius: 50%;
    margin-bottom: .5rem;
}

.multimedial-content .media-hotspot-active img{
    height: 50px;
}

.multimedial-content .titolo-media-hotspot{
    text-align: center;
}

.multimedial-content .titolo-media-hotspot span{
    font-size: 18px;
}

.multimedial-content .link-media-hotspot{
    color: #374449;
}

.link-media-hotspot:hover{
    color: #374449;
}

.multimedial-content .modal-gallery-hotspot{
}


.multimedial-content .modal-gallery-hotspot img, .multimedial-content .modal-media-hotspot img{
    width: auto;
    object-fit: contain;
    height: 400px;
    border-radius: 0 10px 10px 10px;
}

.multimedial-content .modal-gallery-hotspot video,  .multimedial-content .modal-media-hotspot video, .multimedial-content video{
    width: auto;
    height: 400px;
    border-radius: 0 10px 10px 10px !important;
    margin: 0 auto;
}

.multimedial-content .modal-gallery-hotspot .fotorama__dot{
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid #91c63f;
    background-color: #91c63f;
    position: relative;
}

.multimedial-content .modal-gallery-hotspot .fotorama__nav__frame.fotorama__active .fotorama__dot{
    width: 16px;
    height: 16px;
    border-radius: 999px;
    border: 1px solid #91c63f;
    background-color: white;
    position: relative;
}

.multimedial-content .modal-gallery-hotspot .fotorama__dot span{
    font-size: 10px;
    color: #fff;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.multimedial-content .modal-gallery-hotspot .fotorama__nav__frame.fotorama__active .fotorama__dot span{
    font-size: 10px;
    color: #91c63f;
    height: 100%;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.modal-gallery-hotspot .fotorama__html div, .modal-gallery-hotspot  .fotorama__html a{
    display: block;
    height: 100%;
    cursor: pointer;
}

.contenitore-principale .back-next{
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.contenitore-principale .back-next a{
    color: #99c21e;
    font-size: 18px;
    font-weight: bold;
}

.contenitore-principale iframe{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.video-360 canvas{
    left: 0px;
}

.vjs-tech{
    visibility: hidden;
}

.vjs-poster{
    border-radius: 8px;
}

.vjs-poster img{
    border-radius: 0 !important;
    height: auto !important;
}

.media-gallery-modal{
    box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
    border: 1px solid #dddddd;
}

.media-gallery-modal h3{
    padding: 10px 20px;
    margin-bottom: 0;
    font-weight: bolder;
    font-size: 18px;
    overflow-wrap: anywhere;
}

.media-gallery-modal img{
    width: 100% !important;
    left: 0 !important;
}

.media-gallery-modal video{
    height: 200px;
    width: 100%;
    object-fit: contain;
}

.media-gallery-modal p{
    padding: 20px;
    text-align: justify;
}

.modal-custom{
    border-radius: 0 !important;
}

/* width */
.modal-custom::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    display: block;
}

/* Track */
.modal-custom::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
.modal-custom::-webkit-scrollbar-thumb {
    background: #99c21e;
}

/* Handle on hover */
.modal-custom::-webkit-scrollbar-thumb:hover {
    background: #99c21e;
}

.modal-custom .fotorama__html div, .modal-custom .fotorama__html a {
    display: block;
    height: 100%;
    background: url(_.gif);
    cursor: pointer;
}

.modal-custom .fotorama__stage{
    min-height: 200px;
}


.modal-custom  .fotorama__dot{
    width: 8px;
    height: 8px;
    border: 1px solid #91c63f;
    background-color: #91c63f;
}

.modal-custom .fotorama__nav__frame.fotorama__active .fotorama__dot{
    width: 8px;
    height: 8px;
    border: 1px solid #91c63f;
    background-color: white;
}

.right-side-top .info{
    background: #e0edc2;
    padding: 25px 10px;
    border-radius: 0 8px 8px 8px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.right-side-top .info img{
    height: 100px;
    margin-bottom: 1rem;
    cursor:pointer;
}

.right-side-top h4{
    color: #99c21e;
    font-size: 22px;
    font-weight: bold;
    margin-top: 0.5rem;
}

.arrow-ds{
    color: white;
    background-color: #3e474e;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    position: relative;
    left: 0;
}

.arrow-ds:after{
    font-size: 20px;
}


@media (max-width: 992px) {

    .arrow-ds{
        height: 30px;
        width: 30px;
    }

    .arrow-ds:after{
        font-size: 16px;
    }

}

.swiper {
    width: 100%;
    height: 100%;
}

.right-side-top .chapter-extra-content-modal{
    height: 250px;
}

#CybotCookiebotDialog{
    font-family: Eurostile;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll{
    background-color: #98C120 !important;
    border-color: #98C120 !important;
}

#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a{
    color: #98C120 !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection{
    border-color: #98C120 !important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton{
    border-color: #98C120 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive{
    border-bottom: 1px solid #98C120 !important;
    color: #98C120 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover{
    color: #98C120 !important;
}

#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider {
    background-color: #98C120 !important;
}

#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a, #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink, #CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a, #CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a, #CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a, #CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink, #CybotCookiebotDialogDetailBodyContentTextAbout a{
    color: #98C120 !important;
}

#CookiebotWidget .CookiebotWidget-consent-details button{
    color: #98C120 !important;
}

#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover, #CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentIABv2Tab:hover, #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover{
    color: #98C120 !important;
}

#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover{
    color: #98C120 !important;
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li.CookiebotWidget-approved svg{
    fill: #98C120 !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change{
    background-color: #98C120 !important;
    border-color: #98C120 !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw {
    border-color: #98C120 !important;
}


/* MODIFICHE 18/01/2024 */

.canali-home-down-new{
    position: relative;
    display: flex;
}

.canali-home-down-new .canale-new{
    width: 100%;
    height: 100%;
    position: relative;    
    border-radius: 10px;
    border: 2px solid #99c21e;
    cursor: pointer;
}

.canali-home-down-new .canale-new:before{
    content: "";
    background: #00000010;
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: 8px;
}

.canali-home-down-new .canale-new .img-canale{
    width: 100%;
    height: 100%;
    object-fit: cover;
    height: 200px;
    border-radius: 8px;
}

.canali-home-down-new .canale-new h4{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #fff;
    font-weight: 700;
    z-index: 3;
    font-size: 1.2rem;
    overflow: hidden;
    line-height: 1.2;
    text-shadow: 0px 0px 10px #000;
}

.canali-home-down-new .canale-new .icona{
    position: absolute;
    right: 20px;
    bottom: 10px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background-color: white;
    padding: 6px;
    border-radius: 50%;
    z-index: 10;
}

.canali-home-down-new .canale-new:hover .icona{
    opacity: 1;
    right: 10px;
}

.canali-home-down-new .canale-new .icona img{
    height: 25px;
}