/* ==============icons============== */
.icons-btn {
    position: absolute;
    padding: 1%;
    margin-left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    cursor: pointer;
    z-index: 99999;
    animation: LoadIconBtn .5s;
    animation-delay: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes LoadIconBtn {
    from {
        transform: scale(.4);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.icons-btn i {
    font-size: 1.3rem;
    color: #f9906f;
}

.icons-btn:hover>i {
    color: #fff;
}

.icons {
    position: fixed;
    width: 0;
    height: 100%;
    background-color: rgba(65, 0, 145, .8);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    left: 0;
    overflow: hidden;
    z-index: 9999999999;
}

/*@keyframes loadTopIcons {*/
/*    0% {*/
/*        left: -5%;*/
/*        opacity: 0;*/
/*    }*/
/*    100% {*/
/*        left: 30px;*/
/*        opacity: 1;*/
/*    }*/
/*}*/

.icon-link {
    font-size: 2rem;
    cursor: pointer;
    padding: 10% 35%;
    border-radius: 10px;
    color: #fff;
}

/* ==============dark or light============== */
.time-mod-toggle-key {
    position: relative;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-mod-toggle-key i {
    font-size: 1.8rem !important;
}
/* ==============dark or light============== */

.callendar-icon {
    padding: 10% 10%;
    border-radius: 10px;
    cursor: pointer;
}
/* ==============icons============== */