body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background-color: var(--background-color);
}

input, select, button {
    font-family: 'Open Sans', sans-serif;
}

.mobileMenu {
    display: none;
    position: fixed;
    z-index: 2;
    height: 100vh;
    width: 100%;
    background-color: var(--dark-color);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobileMenu.shown {
    display: flex;
}

.mobileMenu .links a {
    display: block;
    font-size: 5vh;
    color: #fff;
    margin: 0;
    text-decoration: none;
}

.mobileMenu .bottom {
    display: flex;
    position: fixed;
    bottom: 3vh;
    align-items: center;
}

.mobileMenu .bottom a {
    display: block;
    font-size: 2.5vh;
    color: #fff;
    text-decoration: none;
}

.mobileMenu .bottom .account {
    margin-left: 5vw !important;
    padding-bottom: 0vh !important;
}

.navbar {
    display: flex;
    position: fixed;
    z-index: 3;
    width: 70%;
    padding: 4vh 15%;
    transition: padding .4s ease, background-color .4s ease;
}

.navbar.scrolled {
    padding: 2.5vh 15%;
    background-color: var(--dark-color);
}

.navbar.mobileShown {
    padding: 4vh 15%;
    background-color: transparent;
}

.navbar.mobileShown .left img {
    visibility: hidden;
    opacity: 0;
}

.navbar .left img {
    height: 7vh;
    width: auto;
    visibility: visible;
    opacity: 1;
    transition: visibility .4s ease, opacity .4s ease;
}

.navbar .right {
    display: flex;
    flex-grow: 100;
    align-items: center;
}

.navbar .right .links, .navbar .right .mobile {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
}

.navbar .right .mobile {
    display: none;
}

.navbar .right .links a, .navbar .right .mobile a {
    font-size: 2vh;
    color: #fff;
    text-decoration: none;
    margin-left: 1.5%;
    font-weight: 500;
    position: relative;
}

.navbar .right .mobile a {
    font-size: 2.5vh;
}

.navbar .right .mobile a.hidden {
    display: none;
}

.navbar .right .links a.active {
    color: #fff;
}

.navbar .right .links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -.25vh;
    width: 0%;
    height: .25vh;
    background-color: #fff;
    transition: width .4s ease;
}

.navbar .right .links a.active::after, .navbar .right .links a:hover::after {
    width: 100%;
}

.navbar .right .links a.account:hover::after, .navbar .right a.cart:hover::after {
    width: 0% !important;
}

.navbar .right .account i, .navbar .right a.cart i {
    margin-left: none;
}

.mobileMenu .bottom a.cart, .navbar .right a.cart {
    position: relative;
    margin-left: 3%;
}

.mobileMenu .bottom a.cart .num, .navbar .right a.cart .num {
    display: flex;
    position: absolute;
    top: -1vh;
    right: -1vh;
    height: 2vh;
    width: 2vh;
    background-color: var(--main-color);
    border-radius: 50%;
    font-size: 1.5vh;
    align-items: center;
    justify-content: center;
    color: #000;
    border: .2vh solid #000;
    font-weight: bolder;
}

.mobileMenu .bottom .account, .navbar .right .account {
    margin-left: 1.5%;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.mobileMenu .bottom .account, .navbar .right .account.icon {
    margin-bottom: 0vh;
    padding-bottom: .5vh;
}

.mobileMenu .bottom .account .avatar, .navbar .right .account .avatar {
    height: 3.5vh;
    width: 3.5vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
    cursor: pointer;
}

.navbar .right .account .dd {
    display: inline-flex;
    position: absolute;
    top: 5vh;
    left: -2.85vw;
    visibility: hidden;
    opacity: 0;
    background-color: var(--dark-color);
    z-index: 5;
    text-align: center;
    transition: opacity .2s ease, visibility .2s ease;
    padding-bottom: 0vh;
    width: 7.5vw;
    flex-wrap: wrap;
    border-radius: .3vh;
    color: #fff;
    font-size: 2vh;
}

.navbar .right .account .dd i {
    position: absolute;
    top: -1.1vh;
    margin-left: 0%;
    width: 100%;
    left: 0;
    text-align: center;
    color: var(--dark-color);
}

.navbar .right .account .dd.shown {
    opacity: 1;
    visibility: visible;
}

.navbar .right .account .dd a {
    display: block;
    width: 100%;
    padding: .75vh 0vw;
    color: #fff;
    margin-left: 0;
    transition: background-color .3s ease, color .3s ease;
    font-size: 1.5vh;
    font-weight: 500;
    text-align: center;
}

.navbar .right .account .dd a:nth-child(2) {
    border-top-left-radius: .3vh;
    border-top-right-radius: .3vh;
}

.navbar .right .account .dd a:last-child {
    border-bottom-left-radius: .3vh;
    border-bottom-right-radius: .3vh;
}

.navbar .right .account .dd a:hover {
    background-color: var(--main-color);
    color: #000;
}

.navbar .right .account .dd a:hover::after {
    width: 0%;
}

.navbar .right .account:hover::after, .navbar .right a.cart:hover::after {
    width: 0%;
}

footer {
    height: auto;
    width: 100%;
    text-align: center;
    background-color: var(--dark-color);
    padding: 2.5vh 0%;
}

footer .footer-name {
    display: block;
    font-size: 1.7vh;
    font-weight: 700;
    color: var(--main-color);
    margin: 0vh 0% 1vh 0%;
}

footer .footer-modo {
    display: block;
    font-size: 1.5vh;
    color: #fff;
    margin: 0vh 0% 2vh 0%;
}

footer .social-holder {
    display: flex;
    justify-content: center;
}

footer .social-holder .social-icon {
    font-size: 2.2vh;
    margin: 0 0.5vw;
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 600px), (orientation : portrait) {
    .navbar .right .links {
        display: none;
    }


    .navbar .right .mobile {
        display: flex;
    }
}