* {
    box-sizing: border-box;
}

#btnleft {
    display: none;
}

@media screen {
    body {
        overflow-x: hidden;
    }
}

@media screen and (max-width: 925px) {
    #btnleft {
        display: inline-block;
    }
    body>.mainDivOfNav {
        padding-left: 0px;
        padding-right: 0px;
    }
    #idnav {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 5px;
    height: 15px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
    box-shadow: inset 0 0 5px black;
}

::-webkit-scrollbar-thumb:hover {
    background: lightcoral;
}

.mainDivOfNav {
    padding-left: 50px;
    padding-right: 50px;
}

.ff {
    font-family: 'Poppins', sans-serif; 
     /*font-family: 'just sans', sans-serif;*/
    font-size: 1rem;
    padding: .5rem;
}

.fff {
  font-family: 'Poppins', sans-serif; 
    font-family: 'just sans', sans-serif;
}

.hor {
    display: flex;
    flex-direction: row;
}

.ver {
    display: flex;
    flex-direction: column;
}

.black {
    background-color: black;
}

.green {
    background-color: green;
}

.blue {
    background-color: blue;
}

.yellow {
    background-color: yellow;
}

.white {
    background-color: white;
}

.violet {
    background-color: violet;
}

.pink {
    background-color: pink;
}

.red {
    background-color: red;
}

.orange {
    background-color: orange;
}

.brown {
    background-color: brown;
}

.paTop {
    position: relative;
    animation: animatetop 0.4s
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

.paLeft {
    position: relative;
    animation: animateleft 0.4s
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

.paRight {
    position: relative;
    animation: animateright 0.4s
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0
    }
    to {
        right: 0;
        opacity: 1
    }
}

.paBottom {
    position: relative;
    animation: animatebottom 0.4s
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }
    to {
        bottom: 0;
        opacity: 1
    }
}

#cm {
    min-width: 250px;
    margin-left: -125px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    /* position: fixed; */
    z-index: 5;
    /* right: auto; */
    /* left: 50%; */
    /* transform: translate(-50%, 0); */
    /* top: 30px; */
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 2200;
    left: 50%;
    top: 30px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }
    to {
        top: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        top: 30px;
        opacity: 1;
    }
    to {
        top: 0;
        opacity: 0;
    }
}

.alert {
    display: none;
}

.jcc {
    display: flex;
    justify-content: center;
}

html {
    scroll-behavior: smooth;
}