﻿._layoutRecruitMain {
    position: absolute;
    width: 100%;
    top: 0;
    height: 0
}

.topHeader {
    position: fixed;
    width: 100%;
    height: 50px;
    background-color: #2A3F54;
    display: flex;
    justify-content: center;
    z-index:4;
}

    .topHeader ._mobile {
        width: 50px;
        height: 100%;
        display: none;
        vertical-align: middle;
        justify-content: center;
        align-items: center;
        color: whitesmoke;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.471;
        cursor: pointer;
    }

    .topHeader ._desktop {
        width: 500px;
        height: 100%;
        display: flex;
        vertical-align: middle;
        justify-content: space-around;
        align-items: center;
        color: whitesmoke;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 13px;
        font-weight: 400;
        line-height: 1.471;
    }


.topLogin {
    position: fixed;
    right: 10px;
    width: 80px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.471;
    font-weight: bold;
    z-index:4;
}

._content {
    position: relative;
    width: 100%;
    top: 55px;
    padding:10px;
}

@media screen and (max-width: 800px) {
    .topHeader {
        justify-content: normal
    }

        .topHeader ._desktop {
            display: none;
        }

        .topHeader ._mobile {
            display: flex;
        }

    .topLogin {
        font-weight: bold;
        width: 80px;
    }

    ._content {
        position: relative;
        width: 100%;
        top: 80px
    }
}

._menuMobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005f;
    color: white;
    align-items: center;
    z-index: 22;
}

._menuContentMobile {
    cursor: pointer;
    position: relative;
    height: 50px;
    width: 100%;
    border-bottom: 1px solid white;
    padding: 15px
}
 
._on {
    display: flex;
}

._off {
    display: none;
}
