.sidebarMenu li a:hover {
    color: #00b770;
}

.sidebarMenu li a {
    position: relative;
}

.sidebarMenu li a b {
    position: relative;
}

.sidebarMenu li a b:after {
    content: ' ';
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgb(51,51,51);
    opacity: 0;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -moz-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -o-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.sidebarMenu li a:hover b:after {
    opacity: 1;
    -moz-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -o-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
}

.sidebarMenu li a:hover svg {
    color: rgb(51,51,51);
}

.sidebarMenu li li a:after {
    display: none;
}

.hrTab {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    margin: 0 0 20px;
    height: 1px;
    background: #dddddd;
}

#tabTitles h4 {
    border-radius: 4px 4px 0 0;
}

.offersWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.offerGrid {
    display: flex;
    gap: 15px;
}

.offerColTitle {
    font-size: 1rem;
    margin: 0 0 7px;
    font-weight: bold;
}

.offerGrid label {
    display: block;
    position: relative;
}

.offerGrid label input {
    position: absolute;
    left: 8px;
    top: 8px;
    opacity: 0;
}

input.offerCheck:checked + .offerImage {
    -webkit-box-shadow: 0 0 0 2px #00b770;
    box-shadow: 0 0 0 2px #00b770;
}

input.offerCheck:checked + .offerImage {
    -moz-transform: translateY(-3px);
    -webkit-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    background: #00b770;
    color: #ffffff;
    -webkit-box-shadow: 0 5px 5px -3px rgba(0,0,0,.2);
    box-shadow: 0 5px 5px -3px rgba(0,0,0,.2);
}

.offerImage:hover {
    cursor: pointer;
}

.offerImage {
    display: flex;
    width: 80px;
    background: #dddddd;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.25s ease;
    border-radius: 3px;
    overflow: hidden;
}

.offerImage i {
    font-size: 11px;
    display: block;
    font-style: normal;
}

.offerImage img {
    display: block;
    object-fit: contain;
}

.offerDoors {
    display: flex;
    gap: 20px;
}

.offerPhoto {
    display: block;
    width: 162px;
}

.offerPhoto img {
    display: block;
    width: 100%;
}

.brandLogo {
    float: right;
}

table.optionsTable {
    border: 1px solid #dddddd;
    width: 100%;
}

table.optionsTable td,
table.optionsTable th {
    border: 1px solid #dddddd;
    padding: 8px 9px;
    text-align: left;
}

table.optionsTable tr:nth-child(2n) {
    background: #fafafa;
}

table.optionsTable tr td:first-child {
    width: 300px;
}

.productGallery {
    width: 650px;
    margin-right: 35px;
}

.rub {
    font-family: 'PT Sans', serif;
}

.pintrotext {
    padding: 1rem 2rem;
    background: #fafafa;
    border-left: 3px solid #00b770;
}


.filterRowTitle {
    display: block;
    border-bottom: 1px solid #dddddd;
    padding: 0 0 4px;
    font-size: 1.2rem;
}

.filterRowTitle svg {
    width: 18px;
    height: 18px;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.filterRowTitle.active {
    color: #00b770;
}

.filterRowTitle.active svg {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.filterRowIn {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.itemFilter input {
    display: none;
}

.itemFilter {
    position: relative;
    padding: 0 0 0 26px;
    line-height: 1;
}

.itemFilter:hover {
    cursor: pointer;
    color: #00b770;
}

.itemFilter span {
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #dddddd;
    border-radius: 2px;
    display: block;
    height: 16px;
    width: 16px;
}

.itemFilter span svg {
    width: 13px;
    height: 13px;
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffff;
    opacity: 0;
}

.itemFilter input:checked + span {
    background: #00b770;
    border-color: #00b770;
}

.itemFilter input:checked + span svg {
    opacity: 1;
}

.sidebarNav {
    border-color: #00b770;
    font-size: 1.2rem;
    
    overflow: hidden;
}

.sidebarNav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebarNav ul ul {
    margin-left: 25px;
    font-size: 1rem;
    padding: 5px 0;
    gap: 0;
}

.sidebarNav ul ul ul {
    list-style: disc;
}

a.parentLi {
    align-items: center;
}

a.parentLi svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    color: #00b770;
}

.productsPreview a, .productsPreview a img {
    display: block;
}

.productsPreview a {
    /* -webkit-box-shadow: 8px 8px 0 0 #787878;
    box-shadow: 8px 8px 0 0 #787878; */
}

.productsPreview a img {
    height: 380px;
    width: auto;
}

.offerSmall img {
    display: block;
    border-radius: 3px;
}

.sortBox a {

}

.sortBox a:hover {
    color: #00b770;
}

.productSizes b {
    font-size: 1rem;
}

.slidesArr {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    display: flex;
    opacity: 0;
}

.slidesArr button {
    display: block;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,.8);
    margin-left: 10px;
    padding: 8px;
}

.slidesArr button:hover {
    background: rgba(255,255,255,1);
    color: #00b770;
}


.colorCheck label:hover {
    cursor: pointer;
}

.colorCheck input:checked + label {
    border-color: #00b770;
}

.colorCheck label svg {
    display: none;
}

.colorCheck input:checked + label svg {
    display: block;
}

.fieldset-colors {
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 1rem 1rem;
}

.fieldset-colors legend {
    padding: 0 1rem;
}

.interiorImage {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

#wrapOffers.load {
    position: relative;
}

#wrapOffers.load:after {
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(255,255,255,.8);
    display: block;
    top: 0;
    left: 0;
    background-image: url(../themes/tmp/assets/images/load.svg);
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: center;
}

.f_doorPreview {
    width: 400px;
}

.f_doorInfo {
    width: calc(100% - 400px);
}

.f_doorColor {
    width: 110px;
}

.f_doorColor img {
    width: auto;
    height: 190px;
}

.f_doorColor h3 {
    width: 100%;
    font-size: .8rem;
    text-align: center;
}

#main.loading {
    position: relative;    
}

#main.loading::after {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.5);
    width: 100%;
    height: 100%;
    background-image: url(../themes/tmp/assets/images/load.svg);
    background-position: center;
    background-size: 90px;
    background-repeat: no-repeat;
}

#models {overflow: hidden;}
#models .slick-track {
    display: flex;
    gap: 20px;
}

.fcolor img {
    border: 2px solid #ffffff;
}
.fcolor input:checked + img {
    border-color: #00b770;
}

.f_doorColor input:checked + label {
    border: 2px solid #00b770;
    background: #ffffff;
}

.f_glass_icon {
    display: block;
    width: 44px;
    height: 44px;
    border: 2px solid #ddd;
}

.f_glass input:checked + label .f_glass_icon {
    border-color: #00b770;
}

#glass_999 {
    background-image: url(../themes/tmp/assets/images/remove.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
}

#glass_2 {
    background-color: black;
}

#glass_1 {
    background-color: #dcf9fa;
}

.text-door-filter {
    padding-right: 2rem;
}

.text-door-filter h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.text-door-filter table {
    width: 100%;
    margin-bottom: 1.2rem;
}

.text-door-filter table td,
.text-door-filter table th {
    border: 1px solid #dddddd;
    padding: 8px 10px;
}

.text-door-filter p {
    margin-bottom: 1rem;
}

.small_catalog {
    width: 400px;
    padding: 2rem;
    top: calc(100% + 10px);
    left: 10px;
    -webkit-box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.2);
    
}

.small_catalog ul {
    font-size: 1.2rem;
}

.small_catalog ul ul {
    margin-left: 24px;
}

.small_catalog a:hover {
    color: #00b770;
}

.dropdownMenu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #ffffff;
    padding: 15px;
    border-radius: 6px;
    -webkit-box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.2);
    font-size: 1rem;
}

.dropdownMenu a {
    color: #333;
}

.dropdownMenu a:hover {
    color: #00b770;
}

#wrapOffers {
    overflow: hidden;
}

#wrapOffers .slick-arrow {
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 10;
    background-color: #ffffff;
    border-radius: 4px;
    font-size: 0;
    display: block;
    width: 25px;
    height: 25px;
    -webkit-box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.2);
    box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.2);
    background-image: url(../themes/tmp/assets/images/arrNext.svg);
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
}

#wrapOffers .slick-arrow:hover {
    background-color: #00b770;
}

#wrapOffers .slick-prev {
    right: 30px;
    background-image: url(../themes/tmp/assets/images/arrPrev.svg);
}

.shadows-sm {
    -webkit-box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.5);
    box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.5);
}

.adwantageIcon {
    width: 60px;
}

.adwantageTitle {
    width: calc(100% - 60px);
    padding-left: 2rem;
}

.adwantageIcon svg {
    width: 100%;
}

img.fr-dii.fr-fir {
    float: right;
    margin: 5px 0 5px 5px;
    max-width: calc(95%);
}

.text-content p {
    margin-bottom: 1rem;
}

.bgGreen {
    background: #00b770;
    color: #ffffff;
    display: inline-block;
    padding: 1rem;
}


.categoryProducts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.categoryProductsImage {
    margin-bottom: 1rem;
}

.categoryProductsImage img {
    display: block;
    width: 100%;
    height: auto;
}

.btn-white {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 1rem 2rem;
    font-weight: bold;
}

.btn-white:hover {
    background: #00b770;
    color: #ffffff;
}

.oc-text-uppercase {
    text-transform: uppercase;
}

.advantageGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.advantageGridRow {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.2rem;
}

.advantageGridRowIcon img {
    display: block;
    width: 60px;
    height: auto;
}

@media (max-width: 632px) {
    .advantageGrid {
        grid-template-columns: 100%;
    }
    .categoryProducts {
        max-width: 500px;
        margin: 0 auto 3rem;
        grid-template-columns: 100%;
    }
    .categoryProductsItem {
        max-width: 320px;
        margin: 0 auto;
    }
}


.categoryBG {
    height: 330px;
}

.categoryBG img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: cover;
}

#categoryText {
    display: flex;
    gap: 40px;
}

.categoryProductsGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.categoryProductsItemImage {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.categoryProductsItemName {
    text-align: center;
    font-size: 1.2rem;
}

@media (max-width: 632px) {
    #categoryText {
        flex-direction: column;
    }
    .categoryProductsItemImage img {
        height: 220px;
        width: auto;
    }
    .categoryLogo img {
        max-height: 60px;
    }
    .categoryBG {
        height: 200px;
    }
}

@media (max-width: 420px) {
    .categoryProductsItemImage img {
        height: 180px;
    }
    .categoryBG {
        height: 100px;
    }
}

.recordFancybox .fancybox__content {
    width: 100%;
    max-width: 450px;
}

.recordForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recordFormRow label,
.recordFormRow input,
.recordFormRow textarea {display: block; width: 100%}

.recordFormRow input,
.recordFormRow textarea {
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 6px 12px;
}

.recordFormTitle {
    margin: 0 0 15px;
    font-size: 1.5rem;
}

button.recordFormBtn {
    background: #00b770;
    color: #ffffff;
    border-radius: 4px;
    padding: 5px 20px;
    font-size: 1.2rem;
}

.error {
    font-size: .8rem;
    color: #ae0900;
}

.recordSuccess {
    font-size: 2rem;
    text-align: center;
}

.parketTextIntro {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    background: #00b770;
    padding: 2px 4px;
    color: #ffffff;
    text-align: center;
}

.coatingsTitle {
    font-size: 2rem;
    text-transform: uppercase;
}

.coatingsPrice {
    font-size: 2rem;
    color: #00b770;
}

@media (max-width: 620px) {
    .coatingsTitle {
        font-size: 1rem;
    }
    .coatingsGallery {flex-wrap: wrap;}
}

.coatingsGallery {
    display: flex;
    gap: 1.5rem;
}

.parketPrices {
    font-size: 1.5rem; 
    color: #00b770;
    display: flex;
    flex-direction: column;
}

.parketPrices strike {font-size: 1.2rem;}