/* Laptop View 1 */
@media screen and (min-width: 1140px) {

    /* Navbar */
    .navbar {
        width: 100%;
        background-color: var(--primary);
        display: flex;
        justify-content: space-between;
        padding: 10px 50px;
        position: sticky;
        top: 0px;
        left: 0px;
        height: 75px;
        border-bottom: 1px solid var(--white);
        z-index: 999;
    }
    
    .navbar .icons {
        display: flex;
        justify-content: end;
        align-items: center;
        column-gap: 30px;
    }

    .navbar .icons .headimg {
        background-color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .icons .user {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .icons .user img {
        z-index: 10;
    }

    .navbar .icons .user h6 {
        font-size: 14px;
        margin-left: -10px !important;
        z-index: 5;
        text-transform: uppercase;
    }

    .navbar .icons i {
        font-size: 20px;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #navigation-icon {
        display: none;
    }

    /* --------------------------------------------------- */

}

/* Tablet View 1 */
@media screen and (min-width:768px) and (max-width:1140px) {

    /* Navbar */
    .navbar {
        width: 100%;
        background-color: var(--primary);
        display: flex;
        justify-content: space-between;
        padding: 10px 0px;
        position: sticky;
        top: 0px;
        left: 0px;
        border-bottom: 1px solid var(--white);
        z-index: 999;
    }
    
    .navbar .icons {
        display: flex;
        justify-content: end;
        align-items: center;
        column-gap: 30px;
    }

    .navbar .icons .headimg {
        background-color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .icons .user {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .icons .user img {
        z-index: 10;
    }

    .navbar .icons .user h6 {
        font-size: 14px;
        margin-left: -10px !important;
        z-index: 5;
        text-transform: uppercase;
    }

    .navbar .icons i {
        font-size: 25px;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 20px;
    }

    .responsive_button, 
    #navigation-button {
        background-color: transparent;
    }

    /* --------------------------------------------------- */

}

/* Tablet View 2 */
@media screen and (max-width:768px) {

    /* Navbar */
    .navbar {
        width: 100%;
        background-color: var(--primary);
        display: flex;
        justify-content: space-between;
        padding: 10px 0px !important;
        position: sticky;
        top: 0px;
        left: 0px;
        border-bottom: 1px solid var(--white);
        z-index: 999;
    }
    
    .navbar .icons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 30px;
    }

    .navbar .icons .headimg {
        background-color: var(--white);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar .icons .user {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .navbar .icons .user img {
        z-index: 10;
    }

    .navbar .icons .user h6 {
        font-size: 14px;
        margin-left: -10px !important;
        z-index: 5;
        text-transform: uppercase;
    }

    .navbar .icons i {
        font-size: 18px;
        color: var(--black);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 8px;
    }
    
    .responsive_button, 
    #navigation-button {
        background-color: transparent;
    }

    /* --------------------------------------------------- */

}