body {
    min-height: 100dvh;
}

.text {
    display: inline;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    background: transparent;
}

strike {
    text-decoration: line-through;
}

.bg {
    position: fixed;
    z-index: -1;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.hidden, .alwaysHidden, .alwaysHidden *, .hidden * {
    opacity: 0;
    visibility: hidden;
}

.overlay {
    background-color: var(--color0);
    width: 100vw;
    height: 100dvh;
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
}

*::-webkit-scrollbar {
    width: 0;
    height: 0;
}

* {
    color: var(--color4);
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    transition: 300ms;
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
    font-weight: 700;   
}

h2 {
    font-weight: 600;
    text-align: center;
}

h3 {
    font-weight: 500;
}


hr {
    border: 0;
    background: var(--color4);
    border-radius: 4px;
    height: 1px;
}





._circleBtn {
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 100%;
    background: var(--color1);
    color: var(--color4);
    font-size: 16px;
    transition: 250ms;
    border: 2px solid var(--color3);
}



._circleBtn:hover::not(.nav__cart), ._circleBtn:hover::not(.nav__cart) * {
    background-color: var(--color3);
    color: var(--color1);
    transform: scale(1.1);
}

._circleBtn:active, ._circleBtn:active *, ._circleBtn._active, ._circleBtn._active * {
    background-color: var(--color3);
    color: var(--color1);
    transform: scale(1.1);
}


.nav__cart._notEmpty > i::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 18px;
    width: 8px;
    height: 8px;
    background: var(--color4);
    border-radius: 50%;
}