/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #1bbd36;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 28px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #21df41;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

.edit-field {
    padding: 15px !important;
}



/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
}

/*
    #header .logo {
        font-size: 28px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

        #header .logo a {
            color: #111;
        }

            #header .logo a span {
                color: #1bbd36;
            }

        #header .logo img {
            max-height: 48px;
        }
    .no-trasp {
    background-color: rgba(255,255,255,1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.semi-trasp {
    background-color: rgba(255,255,255,0.6);
}

*/


.logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.no-trasp {
    background-color: rgba(255,255,255,1);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    color: #222;
}

.semi-trasp {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.semi-trasp a:hover,
.semi-trasp .active,
.semi-trasp .active:focus,
.semi-trasp li:hover > a,
.semi-trasp a {
    color: #fff!important;
}

.no-trasp a:hover,
.no-trasp .active,
.no-trasp .active:focus,
.no-trasp li:hover > a,
.no-trasp a {
    color: #222;
}

.logo {
    height: 42.6666px;
    width: 120px;
    background-repeat: no-repeat;
    background-size: 100%;
}

.semi-trasp .logo {
    background-image: url(../images/clock2-white.png);
}

.no-trasp .logo {
    background-image: url(../images/clock2.png);
}

/*--------------------------------------------------------------
# Slider Menu
--------------------------------------------------------------*/
.slider-menu {
    display: flex;
    flex-direction: column;
}

.slider-menu .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: solid 1px rgba(255,255,255,0.5);
}

.slider-menu .avatar {
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
}
    .slider-menu .avatar .cross-avatar {
        margin-right: 10px;
    }

.slider-menu .logo {
    background-image: Url(https://diamocitempo.it/public/clock2_black.png);
    width: 120px;
    height:43px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.slider-menu .close-menu {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    z-index: 4;
}

.slider-menu .logo,
.slider-menu .close-menu {
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.slider-menu.open .logo,
.slider-menu.open .close-menu {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition-delay: 1s;
    -o-transition-delay: 1s;
    transition-delay: 1s;
}

.slider-menu .item {
    padding: 10px 15px;
    border-left: solid 1px rgba(255, 255, 255, 0.5);
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
}

.slider-menu .item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.slider-menu .item-gt {
    
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: solid 1px rgba(255, 255, 255, 0.5);
}

.slider-menu .wrapper {
    position: relative;
}

.slider-menu .bg-text {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    transition-delay: 0s;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.1;
}

.slider-menu .items {
    max-width: 300px;
    float: right;
    width: 100%;
    height: calc(100vh - 70px);
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    overflow: auto;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar div,
    .navbar div:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
        color: #111;
        white-space: nowrap;
        text-transform: uppercase;
        transition: 0.3s;
        cursor: pointer;
    }

        .navbar div i,
        .navbar div:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar div:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > div {
            color: var(--cross-primary-color);
        }


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

#footer {
    color: #fff;
    background: #555;
    padding: 20px 0 40px 0;
    line-height: 1.5rem;
}

    #footer .img-box {
        margin-bottom: 10px;
    }

    #footer .copyright {
        margin-top: 30px;
        border-top: solid 4px #777;
        padding: 5px 5px 0 0;
    }

    #footer a {
        color: #a7f7ff;
        text-decoration: underline;
    }

.carousel {
    position: relative;
}
.carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;

}
.carousel-inner {

}

.carousel-overlay {
    position: absolute;
    background-image: radial-gradient( circle at center, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100% ) !important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.carousel-container {
    position: relative;
    width: 100%;
    text-align: center;
    
}

.carousel-container h2 {
    color: #fff;
}

.carousel-content {
    width: 100%;
    padding: 15px 15px 50px 15px;
    position: absolute;
    bottom: 0;
    /* border-top: solid 4px #ff6a00;
    background-color: rgba(0,0,0,0.6); */
    min-height: 130px;
    
}

.mud-carousel .mud-ripple {
    background-color: #1aa4edB2;
    --mud-palette-action-default-hover: #1aa4ed;
    color: #fff !important;
    /*opacity: 1!important; */
}
.mud-carousel .mud-ripple:hover {
    background-color: #1aa4ed;
}

.mud-carousel .mud-ripple.transparent {
    background-color: transparent;
    color: #fff !important;
}
    .mud-carousel .mud-ripple.transparent:hover {
    background-color: #1aa4ed;
}


.even {
    background-color: #fff;
}
.odd {
    background-color: #eee;
}
.clear-tbl {
    width: 100%;
    border-collapse: collapse;
}
th {
    padding: 10px 6px;
}
td {
    padding: 6px;
}

