.main-cat-item_hg {
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-services-row>.main-services-item:nth-child(2) {
    color: #000;
}

.breadcrumb {
    display: flex;
    gap: 5px;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
}

.breadcrumb .breadcrumb-item a {
    color: var(--txt-grey, #8E8E8E);
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb .breadcrumb-item {
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.breadcrumb .breadcrumb-item a {
    color: var(--txt-grey, #8E8E8E);
}

.breadcrumb .breadcrumb-item a::after {
    content: '';
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    background-image: url(../img/stel/chevron-right.svg);
    display: flex;
}

.cat .container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cat .container .cat-cont {
    width: calc(100% - 300px);
}

.overflow {
    position: fixed;
    z-index: 100;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-family: Montserrat;
    display: none;
    visibility: hidden;
    opacity: 0;
}

.overflow.fade {
    display: block;
    transition: 0.5s;
}

.overflow.fade.in {
    visibility: visible;
    opacity: 1;
}

.overflow .modal-shop-cart {
    position: fixed;
    z-index: 101;
    top: 0;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 32%;
    transform: translateX(100%);
    opacity: 0;
    transition: 0.5s;
}

.overflow.fade.in .modal-shop-cart {
    transform: translateX(0%);
    opacity: 1;
}

.close-container .close {
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 30px;
    text-align: center;
    line-height: 40px;
    background: #E8630A;
    display: block;
}

.overflow .modal-shop-cart .modal-header .title {
    font-size: 18px;
    padding: 10px;
}

.overflow .modal-shop-cart .body-modal {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 20px;
}

.inners-class {
    margin-top: 40px;
    margin-bottom: 40px;
}

.inners-class .cart-order-new .image {
    width: 60px;
    height: 60px;
}

.inners-class .cart-order-new .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.inners-class .cart-order-new .name {
    width: 45%;
    padding: 5px 10px;
}

.inners-class .cart-order-new+.cart-order-new {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
}


.inners-class .cart-order-new .name a {
    font-size: 12px;
    color: #000;
}

.inners-class .cart-order-new>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

.inners-class .cart-order-new .count-list .shk-count {
    border: none;
    width: 30px;
    outline: none;
}

.inners-class .cart-order-new .delete-block .shk-del {
    display: block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    background: #E8630A;
    text-decoration: none;
    text-align: center;
}

.shop-cart .clear-block {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.shop-cart .clear-block a {
    color: #8E8E8E;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration: underline;
}

.inners-class .cart-order-new .price {
    font-weight: bold;
    color: #e8630a;
}

.shop-cart .all-summ {
    font-size: 22px;
    text-align: right;

}

.shop-cart .cart-order .main-pop-item-bot-btn {
    display: block;
    margin-top: 40px;
    width: auto;
}

#shk_prodHelper {
    font-family: Montserrat;
}

.header-nav-row ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-nav-row>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.header-nav-row>ul>li.parent {

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.header-nav-row>ul>li.parent::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(../img/header/arrow.svg);
    background-size: 100% 100%;
    margin-top: 3px;
}

.header-nav-row>ul>li>ul {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 2;
    width: fit-content;
    padding: 10px;
    ;
}

.header-nav-row>ul>li.parent:hover>ul {
    opacity: 1;
    visibility: visible;
}

.header-nav-row>ul>li>ul {
    top: 45px;
    transform: translateX(-33%);
    background: #fff;
    padding: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.loaded {
    position: relative;
}

@keyframes rotate-center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loaded::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.6);
    backdrop-filter: blur(2px);
    z-index: 2;
}

.loaded::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;

    border-radius: 1000px;
    border-left: 3px solid transparent;
    border-right: 3px solid #F75929;
    border-top: 3px solid #F75929;
    border-bottom: 3px solid #F75929;
    -webkit-animation: rotate-center 1s linear infinite both;
    animation: rotate-center 1s linear infinite both;
    z-index: 3;
}

.alert-success {
    padding: 10px;
    background: #c8f5d2;
    border-radius: 10px;
    font-family: Manrope;
}

.alert-danger {
    padding: 10px;
    background: #f2dede;
    border-radius: 10px;
    color: red;
    font-family: Manrope;
}

.main-req_dis {
    cursor: default;
    pointer-events: none;
}

.msg {
    font-size: 12px;
}

.shop-cart-wrap {
    gap: 20px;
    font-family: Manrope;
}

.shop-cart-wrap .left {
    width: 75%;
}

.shop-cart-wrap .right {
    width: calc(25% - 20px);

}

.shop-cart-wrap .right .styky-block {
    background: rgba(245, 245, 245, 1);
    padding: 20px;
    gap: 15px;
    position: sticky;
    top: 10px;
}

.shop-cart-wrap .right .styky-block .title {
    color: rgba(18, 18, 18, 1);
    font-family: Montserrat;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;

}

.shop-cart-wrap .right .styky-block .item-list {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    letter-spacing: 0%;
    color: rgba(18, 18, 18, 1);
}

.shop-cart-wrap .right .styky-block .item-list .all-cart-summ {
    font-family: Montserrat;
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0%;
    color: (18, 18, 18, 1);
}

.orange {
    color: #e8630a;
}

.inners-class .big-cart.cart-order-new .name a {
    font-size: 15px;
}

.inners-class .big-cart.cart-order-new .price {
    font-weight: bold;
    color: #000;
    font-size: 18px;
}

.inners-class .big-cart.cart-order-new+.cart-order-new {}

.inners-class .big-cart.cart-order-new {
    border: 1px solid rgba(233, 233, 233, 1);
    padding: 15px;
}

.item-oform .title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0%;
    color: rgba(18, 18, 18, 1);
}

.input-block label {
    display: block;
    font-size: 15px;
}

.input-block input[type="text"],

.input-block input[type="tel"],
.input-block input[type="email"],
.input-block input[type="password"],
.input-block textarea {
    width: 100%;
    padding: 15px;
    background: rgba(248, 248, 248, 1);
    border: 1px solid transparent;
    transition: 0.5s;
    outline: none;
    font-size: 15px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-30 {
    padding-top: 30px;
}

.input-block input[type="text"]:focus,

.input-block input[type="tel"]:focus,
.input-block input[type="email"]:focus,
.input-block input[type="password"]:focus,
.input-block textarea:focus,
.input-block input[type="text"]:hover,

.input-block input[type="tel"]:hover,
.input-block input[type="email"]:hover,
.input-block input[type="password"]:hover,
.input-block textarea:hover {
    border: 1px solid #e8630a;
}

.w-80 {
    width: 80%;
}

.btn-orange {
    color: var(--white, #FFF);
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    background-color: var(--orange, #E8630A);
    border: 0;
    outline: 0;
    width: 100%;
    height: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.success-purshase {
    margin-top: 40px;
    padding: 30px;
    background: #ff8c00;
    font-size: 18px;
    color: #fff;
}

.success-purshase .h2 {
    font-size: 24px;
    font-family: Montserrat;
}

.success-append {
    padding: 6px 10px;
    text-align: center;
    background: #e9e6e6;
    font-family: Montserrat;
}

.overflow .modal-container {
    width: 30%;
    background: #fff;
    margin: auto;
    margin-top: 5vh;
    transition: 0.5s;
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
}

.overflow.fade.in .modal-container {
    transform: translateY(0vh);
    visibility: visible;
    opacity: 1;
}

.overflow .modal-container * {
    box-sizing: border-box;
}

.modal-container .modal-header .title {
    font-weight: bold;
    padding: 13px 40px;
    font-size: 18px;
}

.modal-container .modal-body {
    padding: 40px;
}

.tabs-calc .titles-calc {
    width: calc(100% / 4);
}

.tabs-calc .titles-calc a {
    padding: 15px 5px;
    box-sizing: border-box;
    gap: 5px;
    border: 1px solid var(--grey-icon, #C9C9C9);
    background: var(--light-grey, #F5F5F5);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: -webkit-fill-available;
    color: var(--txt-black, #121212);
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
}

.tabs-calc .titles-calc a .desc {
    font-weight: 400;
}

.tabs-calc .titles-calc a.active,
.tabs-calc .titles-calc a:hover {
    background: var(--orange, #E8630A);
    border-color: #E8630A;
    color: #fff;
}

.tabs-wrap .tab-wrap .left {
    width: calc(50% - 10px);
}

.tabs-wrap .tab-wrap .right {
    width: calc(50% - 10px);
}

.tabs-container {
    position: relative;
    font-family: Montserrat;
}

.tabs-container .tab-container {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
}

.tabs-container .tab-container.active {
    visibility: visible;
    opacity: 1;
    position: relative;
}

.tabs-container .tab-container .params-wrap-item {
    margin-top: 40px;
}

.tabs-container .tab-container .params-wrap-item .title {
    color: var(--txt-black, #121212);

    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.tabs-container .tab-container .params-wrap-item .params .options-calc {
    padding: 5px 10px;
    box-sizing: border-box;
    width: 70px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--txt-black, #121212);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition: 0.3s;
    cursor: pointer;
    background: var(--light-grey, #F5F5F5);
}

.tabs-container .tab-container .params-wrap-item .params .options-calc:hover,
.tabs-container .tab-container .params-wrap-item .params .options-calc.active {
    background: var(--orange, #E8630A);
    color: #fff;
}

.pt-20 {
    padding-top: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.gap-20 {
    gap: 20px;
}

.list-plus-minus button {
    color: var(--txt-black, #121212);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    width: 21px;
    height: 100%;

    cursor: pointer;
    transition: 0.3s;
}

.list-plus-minus button:hover {
    color: var(--orange, #E8630A);
}

.list-plus-minus input[type=text] {
    width: 30px;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    background: none;
}

.list-options .title {
    font-size: 15px;
    font-weight: 500;
    color: var(--txt-black, #121212);
    padding-bottom: 10px;
}

.tabs-container .tab-container .right-image {
    height: 100%;
}

.tabs-container .tab-container .right-image .image-container {
    width: 48%;
    padding-top: 40px;
}

.tabs-container .tab-container .right-image .image-container img {
    width: 100%;
    height: 70%;
    object-fit: contain;
}

.tabs-container .tab-container .right-image .options-container {
    padding-top: 40px;
    width: 26%;
}

.gap-40 {
    gap: 40px;
}

.gap-60 {
    gap: 60px;
}

.tabs-container .tab-container .right-image .options-container .visoptions-tpl .icon {
    width: 45px;
    margin: auto;
}

.tabs-container .tab-container .right-image .options-container .visoptions-tpl .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tabs-container .tab-container .right-image .options-container .visoptions-tpl .text {

    font-weight: 400;
    font-size: 13px;

    text-align: center;

}

.main-sel {
    margin-top: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #E8E8E8;
}

.header-menu-side ul>li>a {
    color: #000;
    flex-grow: 1;
}

.inners-class .cart-order-new .image a {
    height: 100%;
    display: block;
}

.inners-class .cart-order-new .image a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}



.header-menu-side ul>li>ul {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 0%;
    margin-left: 280px;
    /* width: calc(100% - 280px); */
    right: 0;
    width: max-content;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 900px;
}

.header-menu-side ul>li>ul>li {
    width: calc(100% / 2);
    border: none;
    min-height: 90px;
}

.header-menu-side ul>li>ul>li:hover,
.header-menu-side ul>li>ul>li:hover>a {
    background: #fff;
    color: #e8630a;
    border: transparent;
}

.header-menu-side ul>li img {
    height: 100%;
    object-fit: contain;

}

.header-menu-side ul>li .image-block {
    height: 100%;
    display: block;
}

.header-menu-side ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    background: #fff;
}

.header-menu-side ul>li::after {
    display: none;
}

.header-menu-block {
    position: relative;
}

.header-menu-side {

    position: relative;
}

.header-menu-side ul>li.parent-stel::after {
    content: '';
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    background-image: url(../img/header-menu/chevron.svg);
    background-size: 100% 100%;
    display: flex;
    transition: 0.3s;
}

.header-menu-side ul>li>a:hover {
    color: #fff;
}

.AutoTagFilter .title {
    border-bottom: 1px solid var(--grey-border, #E9E9E9);
    background: var(--light-grey, #F5F5F5);
    padding: 10px 15px;
    box-sizing: border-box;
    color: var(--txt-black, #121212);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.AutoTagFilter .inputs-filter {
    border-right: 1px solid var(--grey-border, #E9E9E9);
    border-bottom: 1px solid var(--grey-border, #E9E9E9);
    border-left: 1px solid var(--grey-border, #E9E9E9);
    padding: 15px;
    box-sizing: border-box;
    font-family: Montserrat;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.custom-checkbox {
    display: none;
}

.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    border: 1px solid var(--grey-border, #E9E9E9);
    border-radius: 2px;
    background: #fff;
    vertical-align: middle;
    cursor: pointer;
}

.custom-checkbox:checked+label::before {
    background-image: url(../img/main-req/check_active.svg);
    background-color: #E8630A;
}

.pagination {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: Manrope;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.pagination .page-link {
    border: none;
    color: var(--txt-black, #202125);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    transition: 0.3s;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a.page-link:hover {
    background-color: #E8630A;
    color: #fff;
}

.pagination .active .page-link {
    background-color: #E8630A;
    color: #fff;
}

.item-search {
    border: 1px solid var(--grey-border, #E9E9E9);
    background: var(--white, #FFF);
    box-sizing: border-box;
    padding: 15px;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    transition: 0.3s;
    font-family: Montserrat;
    width: calc(100% / 3 - 13.4px);

}

.content {
    font-family: Montserrat;
}

.content * {
    box-sizing: border-box;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-weight: 600;

    color: var(--txt-black, #121212);
    margin-bottom: 20px;
}

.content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: var(--txt-black, #121212);
    margin: 0;
}

.content a {
    color: var(--txt-black, #121212);
    font-weight: 500;
}

.item-search a {
    color: var(--txt-black, #121212);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    height: 63px;
    display: flex;
    transition: 0.3s;
}

.overflow .modal-container .image-wrap {
    height: 200px;
    margin: auto;
    margin-bottom: 20px;
}

.overflow .modal-container .image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover
}

.main-pop-item-fav.active {
    background-image: url(../img/header/fav_hov.svg);
}

.gal-wrap img {
    height: 250px;
    object-fit: cover;
}

.news-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.news-item {
    width: calc(100% / 4 - 15px);
}

.news-item-pic {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 10px;
}

.news-item-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-date {
    color: var(--txt-grey, #8E8E8E);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 5px;
}

.news-item-name {
    color: var(--txt-black, #121212);
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

.news-single {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.news-single-cont {
    width: 50%;
}

.news-single-date {
    color: var(--txt-grey, #8E8E8E);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 21px */
    margin-bottom: 20px;
}

.news-single-text {
    color: var(--txt-black, #121212);
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 21px */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-single-pic {
    width: 50%;
}

.news-single-pic img {
    width: 100%;
}

.content img {
    max-width: 100%;
}

.serv-order-cont {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    font-family: Montserrat;
}

.serv-order-cont .main-req-form label {
    color: var(--txt-black, #121212);
}

.stoimost-dost {
    color: #ff8c00;
    font-size: 18px;
    background: rgba(248, 248, 248, 1);
    padding: 10px;
    min-height: 47px;
}

.oform-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.oform-tabs>li {
    width: calc(100% / 3 - 7px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

.oform-tabs>li>a {

    gap: 15px;
    padding: 20px;
    height: 100%;
    background: rgba(245, 245, 245, 1);

}

.oform-tabs>li>a.active,
.oform-tabs>li>a:hover {
    background: #E8630A;
    color: #fff;
}

ul.options-wrap li .optons {
    width: 100%;
    display: block;
}

.oform-tabs>li>a.active svg *,
.oform-tabs>li>a:hover svg * {
    stroke: #fff;
}

.oform-tabs>li>a.fill-fff:hover svg * {
    fill: #fff;
}

.oform-tabs>li>a span.title-tab {
    font-size: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

.oform-tabs li a[disabled] {
    pointer-events: none;
    cursor: default;
}

.item-oform .min-title {
    font-weight: 600;
    font-size: 22px;

}

.item-oform .min-desc {
    font-size: 14px;
    color: rgba(142, 142, 142, 1);
}

ul.options-wrap {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

ul.options-wrap li {
    width: calc(100% / 3 - 7px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

ul.options-wrap li .optons input[type="radio"] {
    display: none;
}

ul.options-wrap li .optons label:hover,
ul.options-wrap li .optons input[type="radio"]:checked+label {
    background: #E8630A;
    color: #fff;

}

ul.options-wrap li .optons label:hover svg *,
ul.options-wrap li .optons input[type="radio"]:checked+label svg * {
    fill: #fff;
}

ul.options-wrap li .optons label {
    display: flex;

    gap: 10px;
    padding: 20px;
    background: rgba(245, 245, 245, 1);
    cursor: pointer;
    transition: 0.5s;
    height: 80px;
}

ul.options-wrap li .optons label .title-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
}

ul.options-wrap li .optons .desc {
    font-weight: 400;
    font-size: 13px;
    padding-top: 10px;
    color: rgba(142, 142, 142, 1);
}

.item-oform .access {
    font-weight: 400;
    font-size: 13px;
    padding-top: 10px;
    color: rgba(142, 142, 142, 1);
}

.item-oform .access a {
    color: #E8630A;
}

.item-oform .flex-contacts .title {
    font-size: 16px;
}

.item-oform .flex-contacts .value {
    font-weight: 100;
    color: rgba(142, 142, 142, 1);
    font-size: 14px;
}

.input-flex-2 {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.input-flex-2 .input-block {
    width: calc(100% / 2 - 10px);
}

.main-pop-item-name {

    height: auto;
}

.serv-order-cont {
    padding-top: 50px;
}

.main-req-form {
    margin-top: 0px;
}

.main-banner-pic {
    width: 280px;
    height: 100%;

}

.main-banner-pic img {
    object-fit: contain;
    object-position: bottom;
    height: 100%;
}

.files-wrap a.files-link {
    padding: 10px 20px;
    gap: 10px;
}

.files-wrap a.files-link .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-direction: column;
    font-family: Montserrat;
    color: rgba(18, 18, 18, 1);
    font-size: 16px;
    transition: 0.5s;
}

.files-wrap a.files-link .icon {
    width: 28px;
}

.files-wrap a.files-link .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.files-wrap a.files-link:hover .title {

    color: #E8630A;
}

.card-slider {

    position: relative;
}

.card-slider .main-pop-item-pic-nav {
    top: 10px;
    right: 10px;
}

.tabs-container .checkbox-custom {
    margin-top: 20px;
}

.checkbox-custom input[type=checkbox] {
    display: none;
}

.checkbox-custom input[type=checkbox]+label {
    color: var(--txt-black, #121212);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.checkbox-custom input[type=checkbox]+label::before {
    content: '';
    height: 22px;
    width: 22px;
    transform: translateY(5px);
    display: inline-block;
    background-image: url(../img/main-req/check.svg);
    background-size: 100% 100%;
    margin-right: 10px;
    transition: 0.3s;
}

[disabled] {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.error-alert {
    background: #eeaeae;
    margin-top: 20px;
    padding: 20px;
    color: red;
    border: 1px solid red;
}

.checkbox-custom input[type=checkbox]:checked+label::before {
    background-image: url(../img/main-req/check_active.svg);
    background-color: #E8630A;
}

@media only screen and (max-width: 1200px),
only screen and (max-device-width: 1200px) {
    .cat .container .cat-cont {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px),
only screen and (max-device-width: 1000px) {
    .header-nav-row>ul>li.parent::after {
        display: none;
    }

    .header-nav-row>ul {

        flex-direction: column;
    }

    .header-menu-side ul>li>ul>li {

        min-height: 0px;
    }


    .cat-side {
        display: none;
        gap: 20px;
    }

    .cat-side.cat-side_active {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        max-width: none;
        background-color: #fff;
        z-index: 3;
        padding: 0 20px;
        box-sizing: border-box;
        padding-top: 94px;
        overflow-y: scroll;
    }

    .cat .container .cat-cont {
        width: 100%;
    }

    .header-menu-side ul>li>ul,
    .header-nav-row>ul>li>ul {
        top: 0px;
        transform: translateX(-0%);
        background: #fff;
        padding: 10px;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        overflow: hidden;
        max-height: 0;

        width: 100%;
        transition: 1s;
    }

    .header-menu-side ul>li.parent-stel::after {
        display: none;
    }

    .header-menu-side ul>li>ul.active,
    .header-nav-row>ul>li>ul.active {
        display: flex;
        max-height: 3000px;
        visibility: visible;
        opacity: 1;
    }

    .header-menu-side ul>li>ul {
        margin-left: 0;
    }

    .header-menu-side ul>li>ul>li .image-block {
        display: none;
    }



    .tabs-wrap .tab-wrap .right,
    .tabs-wrap .tab-wrap .left {
        width: 100%;
    }

    .tabs-wrap .tab-wrap .right {
        order: -1;
    }

    .tabs-container .tab-container .right-image .image-container img {

        height: auto;

    }

    .params.flex-start {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .shop-cart-wrap .left {
        width: 100%;
    }

    .shop-cart-wrap .right {
        width: 100%;
        margin-bottom: 40px;
    }

    .w-80 {
        width: 100%;
    }

    .serv-order-cont {
        padding-top: 30px;
    }
}

@media only screen and (max-width: 600px),
only screen and (max-device-width: 600px) {
    .tabs-calc .titles-calc {
        width: calc(100% / 2);
    }

    .news-item {
        width: 100%;
    }

    .oform-tabs>li {
        width: 100%;
    }

    .input-flex-2 .input-block {
        width: 100%;
    }

    ul.options-wrap li {
        width: 100%;
        margin-bottom: 20px;
    }

    .oform-tabs>li>a {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 1800px),
only screen and (max-device-width: 1800px) {
    .overflow .modal-shop-cart {
        width: 50%;
    }
}

@media only screen and (max-width: 1000px),
only screen and (max-device-width: 1000px) {
    .overflow .modal-shop-cart {
        width: 90%;
    }

    .news-single {
        flex-direction: column;
    }

    .news-single-cont {
        width: 100%;
    }

    .news-single-pic {
        width: 100%;
    }

    .news-item {
        width: 100%;
    }

    .header {
        padding-bottom: 10px;
        border-bottom: 1px solid var(--grey-border, #E9E9E9);
        margin-bottom: 20px;
        position: sticky;
        z-index: 2;
        top: 0;
        padding-top: 10px;
        margin-top: 0;
        background: #fff;
    }

    .header-nav-row>ul>li.parent {
        flex-wrap: wrap;
    }

    .header-menu-side ul>li.parent-stel,
    .header-nav-row>ul>li.parent,
    .header-nav-row>ul {
        /* display: block; */
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header-menu-side ul>li.parent-stel .toogle-menu,
    .header-nav-row>ul>li.parent .toogle-menu {
        display: block;
        width: 24px;
        height: 24px;
        cursor: pointer;
        background-image: url(../img/header/arrow.svg);
        background-size: 100% 100%;
    }

    .main-pop-item-name {

        height: auto;
    }
}

@media only screen and (max-width: 400px),
only screen and (max-device-width: 400px) {
    .overflow .modal-shop-cart .cart-order-new {}

    .overflow .modal-shop-cart .cart-order-new>div {
        width: 100%;
        flex-direction: row;
    }

    .inners-class .cart-order-new .image {
        height: auto;
    }

    .inners-class .cart-order-new .name {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .overflow .modal-shop-cart .cart-order-new>.delete-block,
    .overflow .modal-shop-cart .cart-order-new>.count-list,
    .overflow .modal-shop-cart .cart-order-new>.price {
        width: 33%;
    }

    .overflow .modal-shop-cart .cart-order-new>.delete-block {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .overflow .modal-shop-cart .cart-order-new>.count-list {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .w-80 {
        width: 100%;
    }

    .shop-cart-wrap .right,
    .shop-cart-wrap .left {
        width: 100%;
    }

    /* .shop-cart-wrap .right {
        order: -1;
    } */

    .header-menu-side ul>li.parent-stel,
    .header-nav-row>ul>li.parent,
    .header-nav-row>ul {
        /* display: block; */
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header-menu-side ul>li.parent-stel .toogle-menu,
    .header-nav-row>ul>li.parent .toogle-menu {
        display: block;
        width: 24px;
        height: 24px;
        cursor: pointer;
        background-image: url(../img/header/arrow.svg);
        background-size: 100% 100%;
    }



    .tabs-calc .titles-calc {
        width: 100%;
    }

    .params.flex-start {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .news-item {
        width: 100%;
    }
}