@charset "UTF-8";

/* CSS Document */

.navbar {
    background-color: white;
    top: 0;
    width: 100%;
    position: fixed;
    z-index: 1;
    padding: 0;
    background: linear-gradient(to right, #84a4e1 0%, #67bfeb 100%);
    line-height: 1;
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* padding: .5rem .5rem; */
}

.overlay {
    display: none;
}

.navbar-content {
    color: white;
    display: flex;
    /* font-size: 14px; */
    /* font-size: 1vw; */
    font-size: 15px;
    margin: auto;
    /* width: 1026px; */
    /* width: 1080px; */
    /* width: 1200px; */
    max-width: 100%;
    position: relative;
    justify-content: center;
    /* width: 100%; */
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-link {
    display: flex;
    /* width: 100%; */
}

.navbar-link div {
    /* padding: 14px 10px; */
    /* padding: 14px 0px 14px 6px; */
    padding: 20px 0px 20px 6px;
    cursor: pointer;
}

.navbar-link div label {
    cursor: pointer;
    margin: 0;
}

.navbar-link a:hover {
    background-color: #6f9df6;
    color: white;
}

.navbar-link a {
    /* margin-left: 1%; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 5px;
    /* white-space: nowrap; */
    color: #fff;
    text-decoration: none;
    /* width: 100%; */
}

#my-profile {
    display: none;
}

#logout {
    /* display: none; */
}

.fa-bars {
    display: none;
}

.mobile-navbar,
.mobile-navbar-container {
    display: none;
}

.link-label {
    display: flex;
    flex-direction: column;
}

.link-label label {
    cursor: pointer;
}

.fa-search {
    font-size: 28px;
}

@media only screen and (max-width: 1233px) {
    .navbar-link a {
        padding: 0px 8px;
    }
}

@media only screen and (max-width: 1179px) {
    .navbar-link a {
        padding: 0px 5px;
    }
}

@media screen and (max-width: 1140px) {
    .navbar {
        display: none;
        position: relative;
    }
    .mobile-navbar {
        display: block;
        background: linear-gradient(to right, #84a4e1 0%, #67bfeb 100%);
        height: 70px;
        color: black;
        line-height: 1.8;
    }
    .mobile-navbar-container {
        /* display: block; */
    }
    .mobile-navbar-logo {
        position: absolute;
        /* left: 50%;
    transform: translateX(-50%); */
        text-align: center;
        left: 54%;
        transform: translateX(-54%);
        top: 8px;
    }
    .mobile-navbar-logo img {
        /* width: 100px; */
        width: 150px;
    }
    .mobile-navbar-container {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 100;
    }
    .mobile-navbar-content {
        background-color: white;
        /* height: 100vh; */
        height: 100%;
        /* width: 70%; */
        width: 75%;
        top: 0px;
        /* position: fixed; */
        position: relative;
        left: -75%;
        transition: all 300ms ease-out;
        z-index: 32;
        background-image: url('https://edbapl.s3.ap-east-1.amazonaws.com/mobile/background/sidebar_bgd.png');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: bottom;
        font-size: 15px;
        padding-bottom: 100px;
        overflow-y: auto;
    }
    .mobile-navbar-content div {
        padding: 14px 16px;
        cursor: pointer;
    }
    .mobile-navbar-content a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        /* padding: 0px 10px; */
        padding: 0;
        white-space: nowrap;
        color: #000;
        text-decoration: none;
    }
    .link-label {
        width: 100%;
        line-height: 1;
        color: #2676b1;
    }
    .mobile-navbar-content div:hover {
        /* background: #6f9df6; */
        background: rgba(111, 157, 246, 0.78);
        color: #FFF;
    }
    #mobile-logout {
        display: none;
    }
    .mobile-navbar-overlay {
        /* position: fixed; */
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 31;
        width: 100%;
        height: 100%;
    }
    .fa-bars {
        display: block;
        position: absolute;
        transform: translateY(-50%);
        top: 35px;
        left: 10px;
        color: white;
        font-size: 25px !important;
        cursor: pointer;
    }
    .mobile-navbar.active .mobile-navbar-content,
    .mobile-navbar-container.active .mobile-navbar-content {
        left: 0%;
        transition: all 300ms ease-in;
    }
    .mobile-navbar-container.active {
        display: block;
    }
    .mobile-navbar.active .mobile-navbar-overlay,
    .mobile-navbar-container.active .mobile-navbar-overlay {
        display: block;
    }
    #lobby {
        display: none;
    }
    .fa-bars {
        z-index: 1;
    }
}