/* IcsHome.css Ridefinizione degli stili GRAFICA ANGULAR */

.brand-logo img {
    display: block;
    margin: 0 auto;
    padding-top: 25px;
    height: 50px;
}

.MnuToolbar {
    height: 40px;
    overflow-y: hidden;
    background-color: #095978;
}

.ClsLogin {
    padding-right: 3px;
    background-color: #095978;
}

.ClsInfoBox {
    background-color: #000000;
    height: 90px;
    background-image: linear-gradient(to top right, #79B43A 0%, #59B3CD 80%);
}

.DivFindMenu i {
    font-size: 30px;
    cursor: default;
    color: #59B3CD;
}

button#ImgBookmark:focus, button#IdImgMenu:focus, 
button#ImgBell:focus, button#ImgHome:focus, button#ProfiloUtenteBtn:focus, 
button#btnLogout:focus, button#btnCambiaAmb:focus, button#ImgBookmark:hover, button#IdImgMenu:hover, 
button#ImgBell:hover, button#ImgHome:hover, button#ProfiloUtenteBtn:hover, button#btnLogout:hover, button#btnCambiaAmb:hover {
    border: 1px solid darkslategrey;
    --background-color: #095978;
    background-image: linear-gradient(to top right, #CC0A31 0%, #095978 80%);
    height: 39.6px !important;
}

.MenuTitleDiv p {
    margin: 0px;
    padding: 10px;
    background-color: #D8B523!important;
}

.ClsImgBookmarkEnabled {
    color: #D8B523 !important;
}


.notificationTitle {
    font-family: system, sans-serif;
    font-weight: bold;
    font-size: 16px;
    background-color: #59B3CD !important;
    z-index: 1000;
    width: inherit;
    color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    text-align: center;
}

.notificationFooter {
    background-color: #59B3CD !important;
    padding: 8px;
    font-size: 14px;
    border-top: 1px solid #dddddd;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: center;
    font-family: system, sans-serif;
    text-decoration: none;
}

/*PERSONALIZZAZIONE LIVELLI MENU'*/
#.caret-down {
    color: #ffffff !important;
    background-color: #095978 !important;
}

#.caret-down:hover {
    background-color: #095978 !important;
}

#.active {
    display: block;
    padding-left: 0px;
    border-left: 8px solid #59B3CD;
}

#.nested2 {
    border-left: 8px solid #CC0A31;
}

#.iconaPreferitiLi {
    background-color: transparent;
    border: none;
    opacity: 1;
    color: #79B43A;
    display: inline-block;
    float: left;
    position: relative;
    cursor: pointer;
}


/*ANIMAZIONE DEI PREFERITI/NOTIFICHE CAMPANELLA*/

.ClsImgBell {
    display: inline-block; /* Necessario per le trasformazioni */
    transition: transform 0.1s;
}

.ClsImgBell:hover {
    animation: ring 0.6s ease-in-out;
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    15% { transform: rotate(15deg); }
    30% { transform: rotate(-12deg); }
    45% { transform: rotate(10deg); }
    60% { transform: rotate(-8deg); }
    75% { transform: rotate(6deg); }
    90% { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}