.is--hover {
    cursor: pointer;
}

.is--hidden {
    display: none;
}

.is--focus {}

.is--not--opacity {
    opacity: 0;
    z-index: -1;
}

.is--hover--grid:hover {
    color: #00263c;
    transition: .2s;
}

.is--hover--border:hover {
    transition: all .4s;
}

.is--underline--hover:hover {
    text-decoration: underline;
}

.tags_style:hover {
    background-color: #f65a5a;
    color: #fff;
    box-shadow: 4px 5px 6px #d4d4d4;
}

.button_update_grid:active .icon_update_page {
    transform: rotate(40deg);
    transition: .3s;
}

.inputs:focus {
/*    outline-color: #f65a5a;*/
    outline-color: #00263c;
    outline-width: thin;
    transition: all .5s;
}


.wrapper_content_category:hover {
    border-color: #f65a5a;
    transition: .5s;
}

.icon_order {
    padding: 0 8px 0 0;
}

.filter_day:first-child:checked ~ .label_filter_days {
    background-color: #f31414b3;
    color: #fff;
    /*    background-color: #a8ceec;*/
    border: 1px solid #d21c1c;
    outline: none;
}










/*KEYFRAMES EFFECTS*/
.main {
    animation: effect-load-main 1.2s;
}

@keyframes effect-load-main {
    from {
        margin-top: -60px;
    }

    to {
        margin-top: 0px;
    }
}

.icon-effect-loading {
    opacity: 0;
    animation: effect-loading 1s infinite;
}

@keyframes effect-loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.wrapper_content_left_side {
    opacity: 1;
    animation: effect-left-index .7s;
}

@keyframes effect-left-index {
    from {
        opacity: 0;
        margin-right: 40%;
    }

    to {
        margin-right: 0%;
    }
}


.wrapper_content_rigth_side {
    opacity: 1;
    animation: effect-right-index .7s;
}

@keyframes effect-right-index {
    from {
        opacity: 0;
        margin-left: 40%;
    }

    to {
        margin-left: 0%;
    }
}





/*SCROLL BAR STYLE*/
::-webkit-scrollbar-track {
    background-color: #f4f4f4;
    border-radius: 8px;
}

::-webkit-scrollbar {
    height: 10px;
    width: 10px;
    background: #f4f4f4;
}

::-webkit-scrollbar-thumb {
    background: rgb(0, 118, 211);
    border-radius: 6px;

}

::-webkit-scrollbar-thumb:active {
    background-color: #004e4e
}
