*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --main-background: #fff;
    --text-color: #eee;
    --main-color: #ff173b;
    --main-font: 'Poppins', sans-serif;
    --logo-font: 'Quite Magical', sans-serif;
    --bold-text: #2e2e2e;
    --faint-text: #505050;
    --sub-text: #e2e2e2;
}

a,p,h1,h2,h3,h4,h5,h6,span,li,div {
    user-select: none;
}

html, body {
    font-size: 10px;
    font-family: var(--main-font);
    overflow-x: hidden;
}

body {
    width: 100vw;
    height: max-content;
    min-height: 100vh;
    background: var(--main-background);
    color: var(--bold-text);
}

body.overlay {
    height: 100vh;
    position: fixed;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    background: rgba(0, 0, 0, .5);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

body.overlay::before {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

#app {
    width: 100vw;
    min-height: 100vh;
}

.container {
    width: 100%;
    min-height: 55vh;
    height: max-content;
    padding-top: 6rem;
}

ul {
    list-style: none;
}

.accordion-content ul {
    list-style: initial;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    color: var(--text-color);
    background: var(--main-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: var(--main-color);
    z-index: -1;
    opacity: 1;
}

.btn.btn-primary::before {
    background: inherit;
}

.btn:hover::before,
.btn:active::before {
    transition: opacity .3s ease,
                transform .3s ease;
    transform: scale(1.2, 1.4);
    opacity: 0;
}

.main-header {
    width: 100%;
    height: 6rem;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: var(--main-background);
    transition: transform .3s ease;
}

.page-nav {
    width: 90%;
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
}

.main-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    padding: 15vh 0;
    z-index: 1100;
    background: var(--main-color);
    transform: translate(110%, 0);
    transition: transform .3s ease;
}

.active .main-nav {
    transform: translate(0, 0);
}

.main-nav .logo,
.main-nav .cart,
.main-nav .search,
.main-nav .auth {
    display: none;
}

.will-disappear {
    transition: transform .3s ease;
}

.will-disappear.disappear {
    transform: scale(0);
}

.will-disappear:nth-of-type(3) {
    transition-delay: .2s;
}
.will-disappear:nth-of-type(2) {
    transition-delay: .1s;
}
.will-disappear:nth-of-type(1) {
    transition-delay: 0s;
}

.will-disappear.disappear:nth-of-type(3) {
    transition-delay: 0s;
}
.will-disappear.disappear:nth-of-type(2) {
    transition-delay: .1s;
}
.will-disappear.disappear:nth-of-type(1) {
    transition-delay: .2s;
}

.navlinks.main {
    width: 50%;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 54px;
    color: var(--main-background);
}

.main-nav a,
.responsive a {
    position: relative;
    transition: color .3s ease;
}

.main-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--main-background);
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease;
}

.main-nav a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

.main-nav a:hover {
    color: var(--main-background);
}

.responsive a:hover {
    color: var(--main-color);
}

.main-nav .router-link-exact-active {
    color: var(--main-color);
}

.cart a::before {
    display: none;
}

.cart-count {
    position: absolute;
    left: -1.5rem;
    top: -1.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    background: var(--main-color);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
}

.login {
    cursor: pointer;
}

.responsive-nav .logo {
    font-size: 2.4rem;
    font-family: var(--logo-font);
    font-weight: 700;
    color: var(--main-color);
}

.search {
    position: relative;
}

.search input {
    position: absolute;
    right: 25px;
    top: 50%;
    width: 190px;
    padding: 5px;
    border-radius: 4px;
    outline: none;
    border: 1px solid var(--main-color);
    color: var(--bold-text);
    background: var(--main-background);
    transform: translate(10rem,-50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease 0s;
}

#search.appear,
#search-responsive.appear {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition-delay: .23s;
}

.search-item {
    cursor: pointer;
    transition: color .3s ease;
}

.search-item:hover {
    color: var(--main-color);
}

.responsive-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.responsive-nav::before {
    content: '';
    position: absolute;
    left: -50%;
    top: 0;
    width: 150%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0, 0, 0, .5);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.active .responsive-nav::before {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

ul.responsive {
    display: flex;
    align-items: center;
}

.responsive .nav-item {
    margin: 0 1.5rem;
    font-size: 1.4rem;
}

.hamburger {
    cursor: pointer;
    z-index: 2000;
}

.line {
    width: 3rem;
    height: 2px;
    background: var(--main-color);
    margin: 8px 0;
    transition: background .3s ease,
                transform .3s cubic-bezier(.11,.37,.25,1.51);
}

.active .line {
    background: var(--main-background);
}

.line2 {
    transform-origin: right;
    transform: scaleX(.7);
}

.line3 {
    transform-origin: right;
    transform: scaleX(.5);
}

.active .line2,
.active .line3 {
    transform: scaleX(1);
}

.app-footer {
    width: 100vw;
}

.footer-content {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 0;
}

.footer-content .logo {
    font-size: 3.5rem;
    font-family: var(--logo-font);
    font-weight: 700;
    color: var(--main-color);
    position: relative;
    display: inline-block;
    max-height: 35px;
    z-index: 0;
}

.footer-content a {
    transition: color .3s ease;
}

.footer-content a:hover {
    color: var(--main-color);
}

.links-flex {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}

.footer-links ul {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    color: var(--faint-text);
}

.footer-links ul:last-of-type {
    margin-bottom: 0;
}

.footer-links ul li {
    margin-bottom: .7rem;
}

.footer-links ul li:last-of-type {
    margin-bottom: 0;
}

.list-title {
    font-weight: 700;
    margin-bottom: 2rem !important;
    color: var(--bold-text) !important;
}

hr {
    color: rgba(0, 0, 0, .7);
    margin-bottom: 1.7rem;
}

.foot-end {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.copyright {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    align-items: center;
}

.social {
    font-size: 1.5rem;
}

.social:first-child,
.social:nth-of-type(2) {
    margin-right: 1.5rem;
}

.usr-dropdown {
    position: relative;
    cursor: pointer;
    padding: .5rem;
}

.navlinks.main .nav-item.usr-dropdown {
    display: none;
}

.drop-list {
    position: absolute;
    z-index: 1100;
    left: 50%;
    top: 100%;
    width: max-content;
    background: var(--main-background);
    box-shadow: 5px 5px 15px rgba(0,0,0,.05);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-55%,-1rem);
    transition: all .3s ease;
}

.pop-up .drop-list {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate(-55%,0);
}

.drop-item {
    border-bottom: 1px solid rgba(0,0,0,.1);
    cursor: pointer;
    max-height: 60px;
    transition: background .3s ease;
}

.drop-item a {
    color: #2e2e2e;
    display: block;
    width: 100%;
    height: 100%;
    padding: 1rem 2rem;
}

.drop-item.highlight a {
    color: var(--main-color);
}

.drop-item a::before {
    display: none;
}

.drop-item:hover {
    background: rgba(0,0,0,.03);
}

.drop-item:last-of-type {
    border-bottom: none;
}

.drop-item .fas {
    display: inline-block;
    margin-right: .5rem;
}

.fa-user-circle {
    font-size: 1.8rem;
}

@media (min-width: 450px) {
    .search input {
        width: 250px;
    }
}

@media screen and (min-width: 600px) {
    .links-flex {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 100px;
    }

    .search input {
        width: 300px;
    }

    .footer-links {
        margin-top: 0;
        flex-direction: row;
        justify-content: space-between;
        width: 70%;
        max-width: 500px;
    }

    .footer-links ul {
        margin-bottom: 0;
    }

    .footer-links ul li {
        margin-bottom: 1.2rem;
    }

    .foot-end {
        flex-direction: row;
        justify-content: space-between;
    }

    .copyright {
        margin-bottom: 0;
        font-size: 1.2rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding-top: 8rem;
    }

    .active .main-nav {
        transform: translate(0, 6rem);
    }
    

    .hamburger,
    .responsive-nav {
        display: none;
    }

    .navlinks.main .nav-item.usr-dropdown {
        display: initial;
    }

    .main-header {
        height: 7.7rem;
    }

    .main-nav {
        position: initial;
        padding: 0;
        background: initial;
        transform: none;
        z-index: initial;
        height: initial;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .main-nav a::before {
        background: var(--main-color);
    }

    .main-nav a:hover {
        color: var(--main-color);
    }

    .main-nav .logo,
    .main-nav .cart,
    .main-nav .search,
    .main-nav .auth {
        display: initial;
    }

    .navlinks.main {
        display: flex;
        align-items: center;
        font-size: 1rem;
        font-weight: 600;
        line-height: 40px;
        width: initial;
        margin: 0;
        color: var(--bold-text);
        transform: translateX(0);
        clip-path: none;
    }

    .nav-item {
        margin: 0 1rem;
    }

    .nav-item:first-of-type {
        margin-left: 0;
    }

    .nav-item:last-of-type {
        margin-right: 0;
    }

    .logo {
        font-size: 2.8rem;
        font-family: var(--logo-font);
        font-weight: 700;
        color: var(--main-color);
        line-height: 30px;
    }

    .logo::before {
        bottom: -2;
        height: 3px;
    }

    .search input {
        width: 450px;
        border: 2px solid var(--main-color);
        font-size: 1.6rem;
    }

    .fa-user-circle {
        font-size: 2rem;
    }
}

@media (min-width: 900px) {
    .navlinks.main {
        font-size: 1.2rem;
        line-height: 54px;
    }

    .nav-item {
        margin: 0 1.5rem;
    }

    .nav-item:first-of-type {
        margin-left: 0;
    }

    .nav-item:last-of-type {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .logo {
        font-size: 3.5rem;
    }

    .btn {
        font-size: 1.4rem;
    }

    .nav-item {
        margin: 0 2rem;
    }

    .nav-item:first-of-type {
        margin-left: 0;
    }

    .nav-item:last-of-type {
        margin-right: 0;
    }

    .footer-content {
        width: 65%;
    }

    .drop-item {
        font-size: 1.3rem;
    }

    .footer-content .logo::before {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background: var(--main-color);
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease;
    }

    .footer-content .logo:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }
}

@media (min-width: 1300px) {
    .logo {
        font-size: 4.8rem;
    }

    .navlinks.main {
        font-size: 1.4rem;
    }

    .nav-item {
        margin: 0 2.7rem;
    }

    .nav-item:first-of-type {
        margin-left: 0;
    }

    .nav-item:last-of-type {
        margin-right: 0;
    }

    .footer-content {
        padding: 6rem 0 3rem;
    }

    .footer-content .logo {
        font-size: 4.8rem;
    }
}