@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    /* margin-bottom: 3000px; */
}
/* Lower Header */
.nav-bar {
    width: 100%;
    /* padding-left: 1000px; */
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    height: 45px;
    max-width: 100%;
    top: 0;
    background-color: white; 
    z-index: 999;
    left: 0;
    right: 0;
    padding: 18px 50px;
}
.nav-right span {
    margin-right: 20px;
}
.nav-left {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: baseline;
}
.nav-left a {
    display: flex;
}
.nav-right {
    display: flex;
    flex-direction: column;
}
.sign-in {
    font-size: 12px;
    color: #737373;
    font-weight: 500;
    margin-bottom: 5px;
}
.login-mail {
    font-size: 16px;
    color: black;
    font-weight: 500;
}
.quantity {
    font-size: 14px;
    font-weight: 500;
}
.quantity span {
    font-weight: 400;
}
.nav-right-sep {
    color: rgb(230, 230, 230);
    margin-right: 20px;
    font-size: 20px;
    pointer-events: none;
}
.seasons-logo {
    height: 40px;
    width: 100px;
    margin-right: 16px;
}
.season-mobile-logo {
    height: 50px;
    width: 60px;
    display: none;
}
@media (max-width: 880px) {
    .nav {
        top: 0;
        background-color: #ffd033;
        border: none;
        padding: 8px 15px;
        /* height: 49px; */
    }
    .nav-left-content {
        display: none;
    }
    .nav-right-sep {
        color: rgb(0, 0, 0)
    }
    .sign-in {
        font-size: 12px;
        color: #000000;
        font-weight: 500;
        margin-bottom: 5px;
    }
    /* .seasons-logo {
        height: 80px;
        width: 110px;
        object-fit: fill;
    } */
    .login-mail {
        font-size: 14px;
    }
}
@media(max-width: 550px) {
    .seasons-logo-off {
        display: none;
    }
    .season-mobile-logo {
        display: initial;
    }
}