.mainmsgdiv{
    position: absolute;
    z-index: 999;
    right: 50%;
    top:-10%;
    transition: top 1s;
}
#mainmsg{
    position: relative;
    width: 1024px;
    right: -50%;
    height: 50px;
    border:2px solid #F8F8F2;
    border-radius: 5px;
    display: flex;
}

.msg{
    width: 97%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    word-break: break-all;
}

.closemsgdiv{
    width: 3%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.closemsg{
    font-family: sans-serif;
    cursor: pointer;
}

.closemsg:active{
    color: #8BE9FD;
}

.mainmaincontainer{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #f0f2f5;
}

.navbarcontainerdiv{
    width: 100%;
    height: 50px;
    background-color: #fff;
    box-shadow: grey 0px 1px 10px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.navbarcontainer{
    width: 1440px;
    height: inherit;
    display: flex;
    align-items: center;
}

.navlogo{
    margin: 0 20px;
    width: 50px;
    height: 50px;
    background-image: url("../rawfiles/logo.png");
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center center;
}

.navlogincontainer{
    height: inherit;
    display: flex;
    align-items: center;
    margin-right: 10px;
    gap: 10px;
    padding: 0 5px;
}

.navlogincontainer:hover{
    cursor: pointer;
    box-shadow: grey 0px 1px 10px;
}

#main{
    width: 1440px;
    height: 100%;
    overflow: auto;
}

.logintext{
    font-size: 25px;
    font-weight: bold;
    color: #282A36;
}

.navloginicon{
    color: #282A36;
}

.navbarbuttondiv{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    padding: 0 10px;
}

.navbarbutton{
    color: #282A36;
}

.navbarbuttondiv:hover{
    cursor: pointer;
    box-shadow: grey 0px 1px 10px;
}

.navbarslide{
    visibility: hidden;
    background-color: #f0f2f5;
    box-shadow: grey 0px 1px 10px;
    margin-top: 85px;
    width: 1420px;
    position: absolute;
    z-index: 1;
    height: 0%;
    border-radius: 15px;
    transition: height 0.5s;
    overflow: hidden;
}

.navmodediv{
    margin-left: auto;
    margin-right: 10px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navmodediv:hover{
    cursor: pointer;
    box-shadow: grey 0px 1px 10px;
}

.navloginicon{
    color: #282A36;
}

.navmodebutton{
    cursor: pointer;
    color: #282A36;
}

.navslidefirstcontainer{
    display: none;
    justify-content: center;
    align-items: center;
}
.navslidelogoutcontainer{
    margin-left:auto;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navslidelogouticondiv{
    margin-left: 10px;
    display:flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: #282a36;
}

.navslidelogouttext{
    margin-right: 10px;
    font-size: 25px;
    font-weight: bold;
    color: #282a36;
}

.navslidelogoutcontainer:hover{
    cursor: pointer;
    box-shadow: grey 0px 1px 10px;
    border-top-right-radius: 15px;
    
}