html{
    box-sizing: border-box;
    height: 100%;
    scroll-behavior: smooth;
}
*,
*::before,
*::after{
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    height: 100%;
    overflow-x: hidden;
    min-width: 320px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
}
.content{
	min-height: 100%;
        width: 100%;
	display: flex;
	flex-direction: column;
}
.container {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
    /* padding: 0 110px; */
}

.main{
    flex:  1 0 auto;
    flex-grow: 1;
}

.footer{
    flex: 0 0 auto;
}
.wrapper{
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.on-flex{
    display: flex !important;
}

.btn{
    max-width: 180px;
    height: 48px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: var(--pam_color3, #FFDB80);
    box-shadow: 0px 14px 23px 0px rgba(28, 37, 44, 0.08);
    font-size: 20px;
    font-weight: 600;
    color: #6D31D0;
    line-height: 32px;
    border: none;
    cursor: pointer;
}
.title {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: white;
    text-transform: uppercase;
}
.rotate{
    rotate: -180deg;
}







.product-list__aside-form-label {
    color:  #474747;
font-size: 14px;
font-weight: 500;
line-height: 22px; 
letter-spacing: 0.25px;
margin: auto 0;
}

.check-box {
color: transparent;
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0);
    opacity: 0;
}
.check-box:checked + span{
background-color: #C92071;
color: white;
}
.custom-check-box{
    display: inline-block;
    background-color: transparent;
    width: 32px;
    height: 32px;
    vertical-align: sub;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
    margin: auto 0;
    border: 2px solid white;
}

.custom-check-box:checked {
    background-color: #6D31D0;
} 



.header__burger-wrapper{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header__burger{
    display: none;
    position: relative;
    width: 40px;
    height: 30px;
}
.header__burger span{
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    background-color: white;
    top: 50%;
    transform: translateY(-50%);
}
.header__burger::before{
    position: absolute;
    background-color: white;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    top: 0;
}
.header__burger::after{
    position: absolute;
    background-color: white;
    content: '';
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
}

.header__burger.header__burger--active span{
    transform: scale(0);
    background-color: white;
}
.header__burger.header__burger--active::before{
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
    background-color: white;
}
.header__burger.header__burger--active::after{
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
    background-color: white;
} 
