.nav-bar {
    width: 100%;
    height: 13vh;
    border-bottom: 1px solid lightgray;
}

.notify {
    position: absolute;
    display: flex;
    justify-content: center;
    width: 100vw;
    align-items: center;
    height: 35px;
    top: 0;
    text-align: center;
    color: white;
    font-size: 13px;
    line-height: 28px;
    font-weight: bold;
    background: #8fb72e;
}

.close {
    position: absolute;
    right: 1.5vw;
    top: 0;
    cursor: pointer;
}

.nav-bar > .content {
    height: 100%;
    margin: 3vh 0 0 0;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.nav-bar > .content > .logo {
    margin-bottom: 1vh;
}

.nav-bar > .content > .links {
    display: inline-block;
    /*padding-left: 10vw;*/
    line-height: 25px;
    padding-bottom: 2vh;
}

.nav-bar > .content > .links > ul > li {
    list-style: none;
    float: left;
    margin-right: 15px;
    color: rgb(71,69,69);
    user-select: none;
    cursor: pointer;
}

.nav-bar > .content > .links > ul > li > a {
    outline: none;
    color: rgb(71,69,69);
    text-decoration: none;
}

.nav-bar > .content > .links > ul > li > a:visited {
    color: rgb(71,69,69);
}

.nav-bar > .content > .links > ul > li.active > a {
    color: rgb(179,204,85);
}

.nav-bar > .content > .links > ul > li > a:active {
    color: rgb(179,204,85);
}


.nav-bar .buy-now-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #aace3f;
    padding: 2vh;
    cursor: pointer;
    height: 25px;
    position: relative;
    bottom: 10px;
}

.nav-bar .buy-now-btn .discount {
    font-size: 20px;
    color: #c20075;
    font-weight: bold;
    display: inline-block;
}

.nav-bar .buy-now-btn .text {
    color: white;
    display: inline-block;
}

.nav-bar .login-text {
    display: inline-block;
    cursor: pointer;
}


.nav-bar .register-text {
    display: inline-block;
    cursor: pointer;
}



.login-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9999999;
    font-size: 14px;
    display: none;
}

.login-box > .box {
    position: relative;
    width: 30vw;
    margin: 0 auto;
    margin-top: 6%;
    height: auto;
    background-color: #fff;
    padding: 50px;
}

.login-box > .box > .close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
}

.login-btn {
    height: 45px;
    line-height: 45px;
    background-color: #5d5e73;
    text-align: center;
    color: #ffffff;
    margin-top: 30px;
    cursor: pointer;
}

.reg {
    cursor: pointer;
    line-height: 30px;
}

.form-label {
    color: rgb(105, 101, 101);
    font-weight: 300;
}

.form-input {
    width: 100%;
    margin-top: 8px;
    height: 40px;
    color: rgb(65, 65, 65);
    text-indent: 5px;
    font-size: 17px;
    margin-bottom: 8px;
    outline: none;
    border: 1px solid rgb(192, 192, 192);
}

.login-type-active {
    border-bottom: 2px solid #8fb72e;
    color: #8fb72e;
}
