/* .swiper_experts .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
  } */ /* НЕ УДАЛЯТЬ */

/* .product-category {
    width: 361rem;
} */
.product-category__img {
    /* width: 359rem; */
    height: 144rem;
}
.product-category__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vendor__like {
    position: absolute;
    top: 10rem;
    right: 10rem;
    width: 24rem;
    height: 24rem;
}
.push-down {
    margin-bottom: 40rem;
}
.tbody .status .nice-select {
    padding: 0;
}
.tbody .status .nice-select li[data-value='status_new']{
    color: #E0BC44;
}
.tbody .status .nice-select li[data-value='status_warning']{
    color: #E33046;
}

.liked svg path {
    fill: #7C9DA8;
}
.icon.selected svg path {
    stroke: rgba(255, 255, 255, 0.4);
    fill: #7C9DA8;
}
.product-category__like {
    cursor: pointer;
}

.cookies {
    width: 100%;
    background: #BBCBD0;
    box-shadow: 10px 10px 10px 0px rgba(139, 168, 189, 0.05), -10px -10px 20px 0px rgba(255, 255, 255, 0.20);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 12rem 0;
    transition: all 0.5s ease-in-out
}
.cookies.disactive {
    transform: translateY(100%);
}
.cookies .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cookies--text {
    color: #181818;
    font-size: 16rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.cookies--btn {
    color: #FBFBFB;
    font-size: 16rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    padding: 15rem 32rem;
    border-radius: 5rem;
    background: #181818;
    box-shadow: 5px 5px 25px 0px rgba(153, 173, 187, 0.10);
    cursor: pointer;
}


@media (max-width: 48em) {
    .product-category {
        width: auto;
    }
    .product-category__img {
        width: 100%;
        height: 144rem;
    }
    .swiper_products-category-grid .swiper-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
    }
    .swiper_products-category-grid .swiper-wrapper > .swiper-slide {
        height: fit-content;
    }
    .experts-list__item .btn {
        width: -moz-available;
    }

    .cookies {
        padding: 20rem;
    }
    .cookies .container {
        display: flex;
        flex-direction: column;
        gap: 16rem;
        align-items: center;
        padding: 0;
    }
    .cookies--text {
        font-size: 13rem;
        text-align: center;
    }
    .cookies--btn {
        font-size: 15rem;
        padding: 15rem 75rem;
    }
}

.more_status_info {
	display: none;
	position: absolute;
    width: 95%;
    background: #EFF3F6;
	padding: 25rem;
	cursor: default;
    top: 96rem;
    box-shadow: 10px 5px 5px #42424273;
}
.more_status_info.active {
	display: block;
}
.more_status_info--list {
	display: flex;
    flex-wrap: wrap;
    gap: 20rem;
}
.more_status_info--item {
	display: flex;
    flex-direction: column;
    gap: 5rem;
}
.more_status_info--item_name {
	font-size: 20rem;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
.more_status_info--item_data {
	font-size: 16rem;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
}
@media (max-width: 48em) {
	.more_status_info {
		width: 335rem;
		padding: 10rem;
        top: 0;
        box-shadow: unset;
	}
	.more_status_info--list {
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		gap: 10rem;
		max-height: 200rem;
    	overflow: auto;
	}
	.more_status_info--item_name {
		font-size: 13rem;
	}
	.more_status_info--item_data {
		font-size: 13rem;
	}
}
.form_newpassword {
    max-width: 1003rem;
}
.form__showpassword {
	display: block;
	flex: none;
	width: 26rem;
	height: 26rem;
	margin-right: 10rem;
}
.form__showpassword input {
	display: none;
}
.form__showpassword .form__showpassword_eye {
	width: 100%;
	height: 100%;
	position: relative;
}
.form__showpassword input ~ .form__showpassword_eye::before{
	content: '';
	background: url(../images/icons/eye-black.svg) no-repeat;
	background-size: 24rem 24rem;
	display: block;
	width: 100%;
	height: 100%;
}
.form__showpassword input ~ .form__showpassword_eye::after{
	content: '';
	display: block;
	width: 100%;
	height: 2rem;
	background: #181818;
	position: absolute;
	top: 43%;
  	transform: rotate(-30deg);
}
.form__showpassword input:checked ~ .form__showpassword_eye::after{
	display: none;
}

.provider_requests .tbody .read_more::before {
    content: unset;
}
.provider_requests .tbody .read_more::after {
    border-bottom: 2rem solid #201702;
    border-right: 2rem solid #201702;
    content: '';
    display: block;
    height: 10rem;
    margin-top: -7rem;
    pointer-events: none;
    position: absolute;
    right: -25rem;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10rem;
}
.provider_requests .tbody .read_more.active::after {
    transform: rotate(-135deg);
}
.tbody .swiper_my_orders .read_more {
    cursor: pointer;
}
.tbody .swiper_my_orders .read_more::before {
    content: unset;
}
.tbody .swiper_my_orders .read_more::after {
    border-bottom: 2rem solid #201702;
    border-right: 2rem solid #201702;
    content: '';
    display: block;
    height: 10rem;
    margin-top: -7rem;
    pointer-events: none;
    position: absolute;
    right: -15rem;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 10rem;
}
.tbody .swiper_my_orders .read_more.active::before {
    transform: rotate(-135deg);
}

@media (max-width: 48em) {
    .provider_requests .tbody .read_more {
        padding-right: 20rem;
    }
    .provider_requests .tbody .read_more::after {
        height: 7rem;
        width: 7rem;
        right: 0;
    }
    .tbody .swiper_my_orders .read_more::after {
        height: 7rem;
        width: 7rem;
        right: -20rem;
    }
    .tbody .swiper_my_orders .tr {
        padding-bottom: 10rem;
    }

    .cabinet .container {
        flex-direction: column;
    }
    .sidebar {
        display: block;
        position: static;
        margin-bottom: 50rem;
    }
    .sidebar.active {
        position: static;
        z-index: 1;
    }
    .cabinet__content {
        width: 100%;
    }
    .sidebar .item:not(:last-child) {
        margin-bottom: 0;
    }
}
.swiper_shadow.tbody .swiper-button-next,
.swiper_shadow.tbody .swiper-button-prev,
.swiper_shadow.tbody .swiper-pagination {
    z-index: 1;
}
.icon_text span {
    display: none;
}
@media (max-width: 48em) {
    .icon_text {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 10rem;
    }
    .icon_text span {
        display: block;
        font-size: 15rem;
        line-height: 130%;
        font-weight: 500;
    }
    .sidebar__container {
        width: 100%;
    }
    .sidebar__container.active {
        position: static;
    }
}
.modal-save_search .section__title {
    text-align: center;
}
.modal-save_search .btn {
    margin: auto;
}
.modal-save_search .modal-box__container {
    top: 20vh;
}
.package_container {
    display: none;
}
@media (max-width: 48em) {
    #primButt {
        width: 100% !important;
        margin: auto;
        justify-content: center;
    }
}
/* .swiper_products-category-small .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
}
@media (max-width: 48em) {
    .swiper_products-category-small .swiper-wrapper {
        grid-template-rows: repeat(6, auto);
    }
} */
.products-category .search__filter .nice-select {
    min-width: initial;
    padding-right: 45rem;
}
.search__inner.all-filter .btn{
    width: fit-content;
    padding-right: 55rem;
}
@media (max-width: 48em) {
    .search__inner.all-filter .btn{
        width: 100%;
        padding-right: auto;
    }
}

/* Исправление позиционирования поиска в header */
#search__inner_header .head-search-help.baner-search {
    top: 100%;
    left: 31%;
    margin-top: 10rem;
}

/* Переключатель языка — ссылки */
.localizer {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.localizer__link {
    text-decoration: none;
    color: inherit;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.localizer__link.active {
    opacity: 1;
    font-weight: 700;
    pointer-events: none;
}
.localizer__link:hover {
    opacity: 1;
}
.localizer__sep {
    opacity: 0.3;
}