html{
    font-family: 'DM Sans', sans-serif;
    max-width: 100%;
    background-color: var(--background);
    color: var(--text);
    padding: 0;
    margin: 0;
    
}
body{
    opacity: 0;
    margin: 0;
    padding: 0;
    -webkit-transition: opacity var(--animation_duration) ease-in-out;
    -moz-transition: opacity var(--animation_duration) ease-in-out;
    -ms-transition: opacity var(--animation_duration) ease-in-out;
    -o-transition: opacity var(--animation_duration) ease-in-out;
    transition: opacity var(--animation_duration) ease-in-out;
}
.centered-container{
    max-width: 75rem;
    margin: 0 auto; 
	float: none;
    padding-left: 1rem;
}
.centered-content{
    width: min-content;
    height: min-content;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.navigation-bar{
    position: absolute;
    height: 9rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    z-index: 999;
}
.navigation-bar__promotion-bar{
    position: relative;
    height: 1.5rem;
    width: 100%;
    background-color: var(--background);
}
.navigation-bar__promotion-bar__button{
    position: relative;
    height: 1.5rem;
    line-height: 1.5rem;
    width: fit-content;
    float: left;
    margin-right: 2rem;
    text-align: center;
    font-size: var(--fontsize_xsmall);
    background-color: var(--background);
    color: var(--theme);
}
.navigation-bar__promotion-bar__button--right{
    position: relative;
    height: 1.5rem;
    line-height: 1.5rem;
    width: fit-content;
    float: right;
    margin-left: 2rem;
    text-align: center;
    font-size: var(--fontsize_xsmall);
    background-color: var(--background);
    color: var(--theme);
    cursor: pointer;
}
.navigation-bar__shop-bar{
    position: relative;
    height: 4.5rem;
    width: 100%;
    background-color: var(--theme);
}
.navigation-bar__logo{
    height: 14rem;
    width: 14rem;
    margin: -4.75rem;
    margin-left: -4.5rem;
    filter: invert();
}
.navigation-bar__menu-bar{
    position: relative;
    height: 3rem;
    width: 100%;
    background-color: var(--background);
}
.navigation-bar__menu-item{
    position: relative;
    height: 3rem;
    width: fit-content;
    float: right;
    margin-left: 2rem;
    line-height: 3rem;
    text-align: center;
    font-size: var(--fontsize_small);
    color: var(--text-contrast);
    background-color: var(--background);
    cursor: pointer;
}
.navigation-bar__menu-item--left{
    position: relative;
    height: 3rem;
    width: fit-content;
    float: left;
    margin-right: 2rem;
    line-height: 3rem;
    text-align: center;
    font-size: var(--fontsize_small);
    color: var(--text-contrast);
    background-color: var(--background);
    cursor: pointer;
}
.navigation-bar__menu-item--flyout{
    position: relative;
    height: 3rem;
    width: fit-content;
    float: left;
    margin-right: 3rem;
    line-height: 3rem;
    text-align: center;
    font-size: var(--fontsize_small);
    color: var(--text-contrast);
    background-color: var(--background);
    cursor: pointer;
    transition: var(--animation_duration);
}
.navigation-bar__menu-item--flyout::after{
    content: '';
    position: absolute;
    right: -1.3rem;
    top: calc(50% - 0.5rem);
    width: 0;
    height: 0;
    border: solid black;
    border-width: 0 0.1rem 0.1rem 0;
    display: inline-block;
    padding: 0.3rem;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    clear: both;
    cursor: pointer;
}
.navigation-bar__menu-item--flyout:hover{
    border-style: solid;
    border-width: 0;
    border-bottom-width: 0.25rem;
    border-bottom-color: var(--theme);
}
.menu-item-hover:hover{
    border-style: solid;
    border-width: 0;
    border-bottom-width: 0.25rem;
    border-bottom-color: var(--theme);
}
.icon--navbar{
    font-size: 2rem;
    line-height: 4.5rem;
    vertical-align: middle;
    cursor: pointer;
}

.icon--small{
    position: relative;
    font-size: 1rem;
    line-height: 1rem;
    vertical-align: middle;
}
.icon--medium{
    position: relative;
    font-size: 1.5rem;
    line-height: 1rem;
    vertical-align: middle;
}
.hover--underline:hover{
    text-decoration: underline;
    cursor: pointer;
}
.hover--accent:hover{
    color: var(--accent);
    cursor: pointer;
}
.space-reserve--navbar{
    position: relative;
    height: 9rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 1;
}
.space-reserve--05{
    position: relative;
    height: 0.5rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 1;
}
.space-reserve--1{
    position: relative;
    height: 1rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 1;
}
.space-reserve--2{
    position: relative;
    height: 2rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 1;
}
.space-reserve--3{
    position: relative;
    height: 3rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 1;
}
.space-reserve--4{
    position: relative;
    height:17rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: transparent;
    z-index: 1;
}
.line{
    position: relative;
    height: 0.1rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: var(--theme);
    z-index: 1;
}
.content{
    position: relative;
    height: 55rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: var(--background);
}
.content-1{
    position: relative;
    height: 20rem;
    width: 100%;
    max-width: 100%;
    left: 0;
    background-color: var(--background);
}
.title--large{
    font-size: 2rem;
    color: var(--text-contrast);
}
.title--large--contrast{
    font-size: 2rem;
    color: var(--text);
}
.title--medium{
    font-size: 1.5rem;
    color: var(--text-contrast);
}
.title--medium--contrast{
    font-size: 1.5rem;
    color: var(--text);
}
.product-container{
    position: relative;
    margin: 0;
    width: 25%;
    /* background-color: rgba(255, 166, 0, 0.233); */
    float: left;
    height: 35%;
    margin-bottom: 5%;
    border-radius: 1%;
    cursor: pointer;
}
.product-container--medium{
    position: relative;
    margin: 0;
    width: 33%;
    /* background-color: rgba(255, 166, 0, 0.233); */
    float: left;
    height: 15rem;
    margin-bottom: 5%;
    border-radius: 1%;
    cursor: pointer;
}
.product-container--small{
    position: relative;
    margin: 0;
    width: 20%;
    /* background-color: rgba(255, 166, 0, 0.233); */
    float: left;
    height: 35%;
    margin-bottom: 5%;
    border-radius: 1%;
    cursor: pointer;
}
.product-container:hover{
    box-shadow: 0px 0px 0.1rem var(--theme)
}
.product-container__image{
    position: relative;
    margin-top: 5%;
    width: 60%;
    height: 60%;
    left: 20%;
    object-fit: scale-down;
}
.product-container__image--medium{
    position: relative;
    margin-top: 5%;
    max-width: 60%;
    height: 60%;
    left: 20%;
    object-fit: scale-down;
}
.product-container__data{
    position: relative;
    width: 80%;
    height: 20%;
    left: 10%;
}
.product-container__data--title{
    position: relative;
    width: 100%;
    text-align: center;
    color: var(--text-contrast);
}
.product-container__data--price{
    position: relative;
    width: 100%;
    text-align: center;
    color: var(--text-contrast);
}
.product-container__data--price--old{
    position: relative;
    width: 100%;
    text-align: center;
    text-decoration: line-through;
    color: var(--red);
}
.button__large--color{
    position: relative;
    float: left;
    width: max-content;
    height: max-content;
    padding: 1rem;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0.1rem;
    background-color: var(--theme);
    cursor: pointer;
}
.button__large--color:hover{
    background-color: var(--accent);
}
.footer{
    position:relative;
    width: 100%;
    height: 25rem;
    background-color: var(--theme);
    box-sizing: border-box;
}
.footer__link{
    position: relative;
    width: 100%;
    height: 1rem;
    line-height: 1rem;
    color: var(--text);
    cursor: pointer;
    margin-bottom: 1rem;
    z-index: 100;
}
.footer__content-block{
    position: relative;
    width: 25%;
    height: calc(100% - 2rem);
    top: 1rem;
    background-color: transparent;
    float: left;
}
.footer__logo{
    position: relative;
    padding: 0;
    height: 6rem;
    width: 6rem;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    filter: invert();
}
.footer__legal{
    position: relative;
    width: max-content;
    height: 1rem;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.footer__legal--item{
    position: relative;
    width: max-content;
    height: 1rem;
    line-height: 1rem;
    float: left;
    font-size: small;
    color: var(--text);
}
.footer__legal--item__spacer{
    position: relative;
    width: max-content;
    height: 1rem;
    line-height: 1rem;
    float: left;
    font-size: small;
    color: var(--text);
    margin-left: 1rem;
    margin-right: 1rem;
}
.ads-block{
    height: 10rem;
    background-color: var(--theme);
    width: 100%;
}
.ads-block__text{
    position: relative;
    height: 0.5rem;
    text-align: center;
    line-height: 0.5rem;
    color: var(--text-contrast);
    font-size: small;
}
.center95{
    width: 95%;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.paragraph--small{
    position: relative;
    color: var(--text-contrast);
}
