body{
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
}

.bitter{
    font-family: "Bitter", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #3B5998;
}
  
.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: grey;
}

.font-google {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3B5998;
}


/* navbar */
.navbar-first-div {
    position: absolute;
    width: 100%;
}

.navbar-brand{
    font-size: 12px;
}

.nav-item{
   
    padding: 10px;
}
.container-fluid {
    justify-content: space-evenly;    
}

.drop:hover{
    filter: drop-shadow(2px 2px 40px #3B5998);
    transition: 1s ease;
    
    .embed-img{
        border: none;
        display: block;
        position: absolute;
        top: 0px;
        right: 0px;
    }
}
.custome-outline{
    border: 1px solid #3B5998; 
    color: #3B5998; 
    &:hover{
        background-color:#3B5998 ;
        color:antiquewhite
    }
}

.show-pass-btn{
    border: none;
    background-color: rgba(255, 255, 255, 0); 
    margin: auto;
    text-align: center;
}

.toast-header ,.toast-body {
    background-color: #3B5998;
    color: white;
}

.tutorial_btn{
    color: white;
    &:hover{
        color: yellow;
        border: 1px solid white;
    }
}

.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-out; 
}

.loader-hidden {
    opacity: 0;
}

.toast-delete{
    position: absolute;
    top: 46%;
    left: 38%;
    font-size: 16px;
}

.show{
    display: block;
}

.hide{
    display: none;
}

/* Mobile View */
@media only screen and (max-width: 600px) {
    body {
        overflow: hidden; 
    }
    .nav-item{
        font-size: 12px;
        padding: 5px;
    }
    .poppins-bold {
        font-size: 12px;
    }
} 

/* Scroll Bar */
::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-track{
    background-color: rgba(152, 240, 240, 0.055);
}

::-webkit-scrollbar-thumb{
    background-color: #a8b9dd;
    border-radius: 10px;
    opacity: 0.5;
}

.blur{
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
    transition: 1s ease;
}