@font-face {
    font-family: 'font-awesome';
    src: url('icons.otf');
}


/*
body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */

label {
    color: #000;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 25px;
    background-color: #fff;
}

.form-label {
    color: #000;
}

.shadow {
    box-shadow: 0 4px 6px 0 rgb(85 85 85 / 8%), 0 1px 20px 0 rgb(0 0 0 / 7%), 0px 1px 11px 0px rgb(0 0 0 / 7%);
}

.main {
    margin-left: 20%;
}

.side {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 20%;
    z-index: 99999;
    box-shadow: 0 4px 6px 0 rgb(85 85 85 / 8%), 0 1px 20px 0 rgb(0 0 0 / 7%), 0px 1px 11px 0px rgb(0 0 0 / 7%);
    padding: 50px 0px;
    background-color: #fff;
    color: #000;
    opacity: 1;
}

.side-nav {
    list-style: none;
    padding: 0;
}

.side-nav>li {
    display: block;
    padding: 0;
    color: #000;
}

.side-nav>li>a {
    display: block;
    text-decoration: none;
    padding: 10px 25px;
    color: #000;
    transition: .25s ease-in-out all;
}

.side-nav>li>a:hover {
    text-decoration: none;
    background-color: #B85252;
    color: #fff !important;
}

.slide-in {
    animation: slide-in 0.5s forwards;
}

.slide-out {
    animation: slide-out 0.5s forwards;
}

@keyframes slide-in {
    100% {
        left: 0
    }
}

@-webkit-keyframes slide-in {
    100% {
        left: 0
    }
}

@keyframes slide-out {
    100% {
        left: -100px;
    }
}

@-webkit-keyframes slide-out {
    100% {
        left: -100px;
    }
}


/* The snackbar - position it at the bottom and in the middle of the screen */

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}


/* Show the snackbar when clicking on a button (class added with JavaScript) */

#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
    However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}


/* Animations to fade the snackbar in and out */

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }
    to {
        bottom: 30px;
        opacity: 1;
    }
}

.end {
    justify-content: end;
    display: flex;
    width: 100%;
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }
    to {
        bottom: 0;
        opacity: 0;
    }
}

@media screen and (max-width:768px) {
    .side {
        opacity: 0;
        z-index: -1;
        width: 50%;
    }
    .main {
        margin: 0;
    }
}

.side {
    overflow-y: scroll;
}

.side::-webkit-scrollbar {
    width: 10px;
}

.side::-webkit-scrollbar-thumb {
    background-color: #494947;
    border-radius: 10px;
    transition: .5s all ease-in-out;
}

.side::-webkit-scrollbar-thumb:hover {
    background-color: #252524;
}

.slider-active {
    text-decoration: none;
    background-color: #B85252;
    color: #fff !important;
}

.notification-slug {
    background-color: #B85252;
    border-radius: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
}