/* Root
----------------------------------------*/
:root{
    --color-text: #1b1b1b;
    --color-text-50: rgba(27, 27, 27, .5);
    --color-brand: #666600;
    --color-light: #f7e7ce;
    --color-gray: #e6e6e6;
    --color-red: #ed2c3d;
    --color-blue: #007aff;
}

/* Tags options
----------------------------------------*/
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
}
html, body{
    height: 100%;
}
body{
    margin: 0;
    overflow-x: hidden;
    padding-top: 75px;
}
img{
    vertical-align: top;
}
input:focus,
select:focus,
textarea:focus{
    outline: none;
}
a{
    text-decoration: none;
}
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p{
    margin: 0;
    padding: 0;
}

/* Helper classes
----------------------------------------*/
.transition{
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.no-select{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header
----------------------------------------*/
.header{
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray);
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
}
.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__left{
    width: 30%;
}
.header__middle {
    text-align: center;
}
.header__right {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: right;
}

/* Header menu
----------------------------------------*/
.header-menu__heading{
    font-size: 18px;
}
.header-menu__toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.header-menu__spans {
    margin-right: 12px;
    position: relative;
    width: 16px;
    height: 12px;
}
.header-menu__span {
    background-color: var(--color-text);
    width: 100%;
    height: 2px;
    position: absolute;
}
.header-menu__span:nth-child(1) {
    top: 0;
}
.header-menu__span:nth-child(2),
.header-menu__span:nth-child(3) {
    top: 50%;
    margin-top: -1px;
}
.header-menu__span:nth-child(4) {
    bottom: 0;
}

/* Header search
----------------------------------------*/
.header-search__field {
    position: relative;
    width: 170px;
}
.header-search__input{
    height: 50px;
    padding: 0 45px 0 15px;
    background-color: #f2f2f2;
    width: 100%;
    font-size: 18px;
    border: none;
    border-radius: 25px;
}
.header-search__input::placeholder {
    color: #bbb;
}
.header-search__input::-ms-input-placeholder {
    color: #bbb;
}
.header-search__button {
    position: absolute;
    border: none;
    background: none;
    right: 10px;
    font-size: 20px;
    top: 50%;
    margin-top: -10px;
    font-weight: 700;
    cursor: pointer;
}

/* Header user
----------------------------------------*/
.header-user{
    margin: 0 40px 0 25px;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
}
.header-user:hover .header-user__name{
    color: var(--color-brand);
}
.header-user__icon{
    margin-right: 10px;
    font-weight: 700;
    font-size: 20px;
}

/* Header cart
----------------------------------------*/
.header-cart{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.header-cart__icon{
    margin-right: 10px;
    font-size: 24px;
}
.header-cart__count{
    background-color: var(--color-text);
    padding: 4px 5px;
    color: #fff;
    border-radius: 10px;
    font-size: 10px;
    min-width: 18px;
    line-height: 1;
    text-align: center;
}
.header-cart:hover .header-cart__count{
    background-color: var(--color-brand);
}

/* Aside
----------------------------------------*/
.aside {
    /*left: -100%;*/
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    left: 0;
    top: 74px;
    bottom: 0;
    width: 400px;
    background-color: #fff;
    padding-left: calc((100vw - 1200px) / 2);
    z-index: 100;
    position: fixed;
    overflow-y: auto;
}
.aside__body{
    padding: 30px 30px 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Aside back
----------------------------------------*/
.aside-back{
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-text-50);
    z-index: 98;
}

/* Aside (active)
----------------------------------------*/
.aside-active .header-menu__heading{
    color: var(--color-red);
}
.aside-active .header-menu__span{
    background-color: var(--color-red);
}
.aside-active .header-menu__span:nth-child(1),
.aside-active .header-menu__span:nth-child(4){
    opacity: 0;
}
.aside-active .header-menu__span:nth-child(2){
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.aside-active .header-menu__span:nth-child(3){
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.aside-active .aside{
    /*left: 0;*/
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
}
.aside-active .aside-back{
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
}

/* Language
----------------------------------------*/
.language {
    list-style: none;
    display: flex;
    grid-gap: 12px;
    margin-bottom: 30px;
}
.language__link {
    display: block;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 16px;
    line-height: 1;
}
.language__link:hover{
    background-color: var(--color-light);
}
.language__item--active .language__link {
    background-color: var(--color-brand);
    color: #fff;
}

/* Aside menu
----------------------------------------*/
.aside-menu {
    list-style: none;
    margin-bottom: 30px;
}
.aside-menu__item:not(:last-child) {
    margin-bottom: 20px;
}
.aside-menu__link{
    font-size: 18px;
}
.aside-menu__link:hover,
.aside-menu__item--active .aside-menu__link {
    color: var(--color-brand);
}

/* Aside links
----------------------------------------*/
.aside-links{
    margin-bottom: 30px;
}
.aside-links__item:not(:last-child){
    margin-bottom: 15px;
}
.aside-links__link{
    color: #bbb;
}
.aside-links__link:hover{
    text-decoration: underline;
}

/* Aside call
----------------------------------------*/
.aside-call__link{
    display: inline-flex;
    align-items: center;
}
.aside-call__link:hover{
    color: var(--color-brand);
}
.aside-call__icon{
    margin-left: 10px;
    color: inherit;
    font-size: inherit;
}

/* Main
----------------------------------------*/
.main{
    padding: 20px 0 200px 0;
}

/* Main slider
----------------------------------------*/
.main-slider{
    margin-bottom: 40px;
    min-height: 400px;
}
.main-slider__item {
    height: 400px;
    background: no-repeat 50% / cover;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 34px;
}
.main-slider__heading {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}
.main-slider__description {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 40px;
}
.main-slider__link {
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    height: 50px;
    padding: 0 25px 0 40px;
    background-color: var(--color-brand);
    color: #fff;
    border-radius: 25px;
}
.main-slider__link:hover{
    background-color: var(--color-text);
}
.main-slider__link-icon {
    color: inherit;
    margin-left: 15px;
    font-size: 16px;
}
.main-slider .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 0;
    right: 0;
}
.main-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 16px 0 rgba(12, 5, 61, .12);
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}
.main-slider:hover .main-slider__nav{
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}
.main-slider__nav:hover{
    color: #fff;
    background-color: var(--color-brand);
}
.main-slider__prev {
    left: 20px;
}
.main-slider__next {
    right: 20px;
}
.main-slider .owl-dots{
    display: none;
}

/* Product slider
----------------------------------------*/
.product-slider{
    margin-bottom: 40px;
}
.product-slider__heading{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.product-slider .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 0;
    right: 0;
}
.product-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 16px 0 rgba(12, 5, 61, .12);
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}
.product-slider:hover .product-slider__nav{
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}
.product-slider__nav:hover{
    color: #fff;
    background-color: var(--color-brand);
}
.product-slider__prev {
    left: -25px;
}
.product-slider__next {
    right: -25px;
}
.product-slider .owl-dots{
    display: none;
}

/* Product item
----------------------------------------*/
.product-item{
    border: 1px solid var(--color-gray);
    border-radius: 20px;
    padding: 12px;
}
.product-item__top{
    position: relative;
    margin-bottom: 12px;
}
.product-item__tags{
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
}
.product-item__tag{
    font-size: 10px;
    color: #fff;
    background-color: var(--color-brand);
    padding: 7px 12px;
    line-height: 1;
    border-radius: 12px;
}
.product-item__image{
    width: 100%;
}
.product-item__info{
    margin-bottom: 18px;
}
.product-item__quantity{
    color: #bbb;
    font-size: 12px;
    margin-bottom: 5px;
}
.product-item__name{
    font-weight: 700;
}
.product-item__name:hover{
    color: var(--color-brand);
}
.product-item__cart {
    display: flex;
    align-items: center;
}
.product-item__prices {
    flex: 1;
}
.product-item__button {
    background-color: var(--color-brand);
    width: 100px;
    height: 50px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}
.product-item__button:hover{
    background-color: var(--color-text);
}
.product-item__icon {
    height: 24px;
}
.product-item__price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}
.product-item__price-old {
    color: #bbb;
    text-decoration: line-through;
}

/* Main banner
----------------------------------------*/
.main-banner {
    margin-bottom: 40px;
}
.main-banner__heading {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.main-banner__image {
    height: 280px;
    background: no-repeat 50% / cover;
    border-radius: 34px;
}
.main-banner--high .main-banner__image{
    height: 540px;
}

/* Footer
----------------------------------------*/
.footer{
    padding: 40px 0;
    background-color: var(--color-brand);
}
.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}
.footer__left {
    width: 30%;
}
.footer__right {
    width: 30%;
}
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer__copyright {
    font-size: 12px;
    color: var(--color-light);
}
.footer__policies {
    display: flex;
    align-items: center;
    grid-gap: 40px;
}
.footer__policy {
    font-size: 12px;
    color: var(--color-light);
}
.footer__policy:hover{
    color: #fff;
}

/* Footer contact
----------------------------------------*/
.footer-contact__item:not(:last-child){
    margin-bottom: 12px;
}
.footer-contact__link{
    font-size: 24px;
    font-weight: 700;
    color: var(--color-light);
    line-height: 1;
}
.footer-contact__link:hover{
    color: #fff;
}

/* Error
----------------------------------------*/
.error {
    text-align: center;
    padding-top: 50px;
}
.error__heading {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
}
.error__text {
    margin-bottom: 40px;
}
.error__link {
    display: inline-block;
    border: 1px solid var(--color-gray);
    font-size: 18px;
    padding: 13px 25px;
    border-radius: 25px;
}
.error__link:hover{
    color: #fff;
    border-color: var(--color-text);
    background-color: var(--color-text);
}

/* Content
----------------------------------------*/
.content__heading{
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Page
----------------------------------------*/
.page__heading{
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Page more
----------------------------------------*/
.page-more {
    text-align: center;
    padding-top: 40px;
}
.page-more__button {
    background-color: var(--color-text);
    height: 50px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 0 30px;
    font-size: 16px;
}
.page-more__button:hover{
    background-color: var(--color-brand);
}

/* Breadcrumb
----------------------------------------*/
.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 12px;
    margin-bottom: 20px;
}
.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
}
.breadcrumb li:not(:last-child):after {
    content: '/';
    margin-left: 10px;
    font-style: italic;
    color: #7b828a;
}
.breadcrumb a {
    color: #7b828a;
    font-size: inherit;
}
.breadcrumb a:hover {
    color: var(--color-brand);
}

/* Typography
----------------------------------------*/
.typography {
    line-height: 1.7;
}
.typography > *:last-child{
    margin-bottom: 0;
}
.typography h2 {
    margin-bottom: 18px;
}
.typography p {
    margin-bottom: 18px;
}
.typography a {
    color: var(--color-brand);
}
.typography a:hover {
    text-decoration: underline;
}
.typography table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 18px;
}
.typography table td {
    border: 1px solid var(--color-gray);
    padding: 6px 12px;
}

/* Catalog children
----------------------------------------*/
.catalog-children {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 12px;
    list-style: none;
}
.catalog-children__link {
    display: block;
    line-height: 1;
    padding: 16px 24px;
    border-radius: 24px;
    background-color: var(--color-gray);
}
.catalog-children__link:hover{
    background-color: var(--color-light);
}
.catalog-children__item--active .catalog-children__link {
    background-color: var(--color-brand);
    color: #fff;
}

/* Catalog list
----------------------------------------*/
.catalog-list {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

/* Product
----------------------------------------*/
.product{
    margin-bottom: 80px;
}
.product__top {
    display: flex;
    margin-bottom: 40px;
}
.product__left {
    width: 600px;
    padding-right: 40px;
    position: relative;
}
.product__right{
    flex: 1;
    padding-left: 40px;
}
.product__tags{
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 8px;
    z-index: 2;
}
.product__tag{
    font-size: 10px;
    color: #fff;
    background-color: var(--color-brand);
    padding: 7px 12px;
    line-height: 1;
    border-radius: 12px;
}
.product__sku {
    font-size: 12px;
    margin-bottom: 10px;
}
.product__name {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}
.product__quantity {
    font-size: 12px;
    margin-bottom: 24px;
    color: var(--color-text-50);
}
.product__prices{
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.product__price {
    font-size: 32px;
    font-weight: 700;
}
.product__price-old {
    color: #bbb;
    text-decoration: line-through;
    margin-left: 20px;
    font-size: 24px;
}
.product__cart {
    background-color: var(--color-brand);
    height: 50px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 0 30px;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.product__cart:hover{
    background-color: var(--color-text);
}
.product__cart-icon{
    margin-left: 15px;
}
.product__stock{
    color: var(--color-blue);
}
.product__stock:hover{
    text-decoration: underline;
}

/* Product images
----------------------------------------*/
.product-images__image{
    border-radius: 34px;
}
.product-images .owl-nav {
    position: absolute;
    top: 50%;
    margin-top: -35px;
    left: 0;
    right: 0;
}
.product-images__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 16px 0 rgba(12, 5, 61, .12);
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -o-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
}
.product-images:hover .product-images__nav{
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
}
.product-images__nav:hover{
    color: #fff;
    background-color: var(--color-brand);
}
.product-images__prev {
    left: -25px;
}
.product-images__next {
    right: -25px;
}
.product-images .owl-dots {
    padding-top: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 8px;
}
.product-images .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    background-color: #F2F2F2;
    border-radius: 50%;
}
.product-images .owl-dot.active span {
    background-color: #D9D9D9;
}

/* Product content
----------------------------------------*/
.product-content {
    display: flex;
    line-height: 1.7;
}
.product-content__left {
    width: 600px;
    padding-right: 40px;
}
.product-content__right {
    flex: 1;
    padding-left: 40px;
}
.product-content__block:not(:last-child){
    margin-bottom: 40px;
}
.product-content__heading{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.product-content__ul{
    padding-left: 15px;
}
.product-content__attribute {
    display: flex;
}
.product-content__key {
    flex: 1;
}
.product-content__value {
    font-weight: 700;
    width: 40%;
}

/* Toastr
----------------------------------------*/
#toast-container > div{
    opacity: 1;
}
#toast-container .toast-message{
    color: #fff;
}
.toast-success{
    background-color: #4caf50;
}
.toast-error{
    background-color: var(--color-red);
}

/* Modal back
----------------------------------------*/
.modal-back {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(25, 42, 62, .25);
    z-index: 1500;
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.modal-back--active{
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
}

/* Modal
----------------------------------------*/
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 1501;
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}
.modal--active{
    filter: alpha(opacity=100);
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.modal__dialog {
    margin: 100px auto 40px auto;
    max-width: 500px;
}
.modal__dialog--lg{
    max-width: 900px;
}
.modal__dialog--sm{
    max-width: 360px;
}
.modal__content {
    background-color: #fff;
    box-shadow: 0 7px 14px rgba(0, 0, 0, .1);
    border-radius: 34px;
    position: relative;
}
.modal__close{
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 24px;
    cursor: pointer;
}
.modal__body{
    padding: 24px;
}

/* User modal
----------------------------------------*/
.user-modal__top {
    text-align: center;
    padding-top: 60px;
}
.user-modal__logo {
    margin-bottom: 60px;
}
.user-modal__heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
}
.user-modal__heading--register{
    display: none;
}
.user-modal__text {
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.7;
}
.user-modal__input {
    background-color: #F2F2F2;
    border: none;
    height: 64px;
    width: 100%;
    border-radius: 32px;
    padding: 0 24px;
    font-size: 18px;
    margin-bottom: 16px;
}
.user-modal__code{
    font-size: 24px;
    letter-spacing: 24px;
    padding-left: 90px;
    font-family: 'Tahoma', sans-serif;
}
.user-modal__button {
    background-color: var(--color-brand);
    height: 50px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.user-modal__button:hover{
    background-color: var(--color-text);
}
.user-modal__button:disabled {
    background-color: #E6E6E6;
    color: var(--color-text-50);
    cursor: not-allowed;
}
.user-modal__error:not(:empty){
    margin-top: 16px;
    background-color: #fbeaeb;
    color: var(--color-red);
    border-radius: 18px;
    font-size: 12px;
    padding: 10px;
    text-align: center;
    line-height: 16px;
}