/**
* Main css whith dmitry
**/
body{
	font-family: Urbanist;
}

.header_mini {
    background: #A59C95;
    height: 50px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_mini_location_left{
	display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.header_mini_location_right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
}

.header_mini a{
	color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
}

.header_mini a:hover{
	opacity: 0.8;
}


a{
    color: black;
    text-decoration: none;
}
a:visited {
    color: inherit;
}

a.mini_location_email {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
}
a.mini_location_email:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/email_mini.png);
    background-size: 22px 22px;
}

a.mini_location_city {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    color:white;
}
a.mini_location_city:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/location_mini.png);
    background-size: 22px 22px;
}

a.mini_location_telephone {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
}
a.mini_location_telephone:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/call_mini.png);
    background-size: 22px 22px;
}

a.mini_location_compare {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    color: white;
}
a.mini_location_compare:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/compare_mini.png);
    background-size: 22px 22px;
}



a.mini_location_whishlist {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    color: white;
}
a.mini_location_whishlist:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/wishlist_mini.png);
    background-size: 22px 22px;
}

a.mini_location_my_account {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    color: white;

}
a.mini_location_my_account:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/user_mini.png);
    background-size: 22px 22px;
}

a.mini_location_cart {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    position: relative;
    color: white;
}
a.mini_location_cart:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/cart_mini.png);
    background-size: 22px 22px;
}
.mini_cart_count{
    position: absolute;
    bottom: -7px;
    left: 11px;
    background: #fffffff2;
    padding: 1px 5px;
    border-radius: 25px;
    color: black;
    font-size: 12px;
}

.mobil_mini{
    display: none;
}

.header_main {
    display: flex;
    height: 100px;
    background: white;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 0 50px;
}

.header_main_logo img{
    max-height: 60px;
    width: auto;
}

.header_main #nav_heder_desk{
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    gap: 15px;
    max-width: 800px;
}

/*.header_main #nav_heder_desk .child_items{
    display: none;
    
}*/

.header_main_menu a {
    color: #54575a;
    font-size: 18px;
    font-weight: 400;
    line-height: 17px;
    text-align: center;
    text-decoration: none;
}

.header_main_menu a:hover{
    opacity: 0.8;
}

.header_main_menu li {
    padding: 10px;
}

.header_main_menu ul {
    list-style-type: none;
}



#nav_heder_desk:after {
    content: '';
    display: table;
    clear: both;
}
#nav_heder_desk > li {
    display: block;
    position: relative;
    float: left;
}
#nav_heder_desk > li a {
    
    white-space: nowrap;
    text-decoration: none;
}

#nav_heder_desk > li ul {
    display: block;
    position: absolute;
    background: #fffffffc;
    top: 100%;
    left: 0;
    width: fit-content;
    list-style: none;
    margin: 0;
    padding: 15px;
    display: none;
    border-top: none;
    margin-top: -1px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 1px 20px 15px 0px #00000026;
}
#nav_heder_desk li:hover > ul {
    opacity: 1;
    visibility: visible;
    display: block;
}

li.has_sub{
    position: relative;
}

#nav_heder_desk li.has_sub ul{
    top: 0;
    left: 100%;
}

.header_main_search{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-width: 400px;
}

.header_main_search .search_item_text{
    box-sizing: border-box;
    border: 1px solid rgba(126, 137, 153, 0.5);
    border-radius: 5px 0px 0px 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px 10px 15px;
    color: #7e8999;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    height: 44px;
    min-width: calc(100% - 44px);
}

.header_main_search .search_item_btn{
    display: flex;
    position: relative;
    padding: 0;
    border: 0;
    height: 44px;
    width: 44px;
    margin-left: -3px;
    cursor: pointer;
}

.header_main_search .search_item_btn:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/search_item_btn.png);
    background-size: 44px 44px;
}

.child_items{
    z-index: 10;
}

.header_sub_menu {
    height: 57px;
    background: #54575a;
    width: 100%;
    padding: 0 50px;
}



ul#nav_header_sub_main {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    height: 57px;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}

ul#nav_header_sub_main a {
    color: rgb(242, 240, 235);
    font-size: 14px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

ul#nav_header_sub_main a:hover {
    opacity: 0.8;
}


a.header-right-links-item_cart {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 6px;
    position: relative;
}
a.header-right-links-item_cart:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/cart_mini_black.png);
    background-size: 22px 22px;
}





.header_main.mobil_flex .header_main_logo{
    max-height: 34px;
}

.header_main.mobil_flex .header_main_logo a{
    max-height: 34px;
}

.header_main.mobil_flex .header_main_logo a img{
    max-height: 34px;
}

.header_main.mobil_flex .menu-btn{
    height: 20px;
}


#masthead{
    position: relative;
}




.box-modal.menu-modal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.box-modal.menu-modal .menu-modal-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 18px;
    width: 100%
}

.box-modal.menu-modal .menu-modal-head .logo {
    margin-top: 0
}

.box-modal.menu-modal .menu-modal-head .logo svg {
    max-width: 156px;
    height: auto
}

.box-modal.menu-modal .menu-modal-head .header-right-links {
    margin-left: auto
}

.box-modal.menu-modal .menu-modal-head .header-right-links-item_cart {
    margin-top: 0;
    margin-right: 10px;
    color: black;
}

.box-modal.menu-modal .menu-modal-head .box-modal_close {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.box-modal.menu-modal .menu-modal-head .box-modal_close path {
    stroke: #1b1b1b
}

.box-modal.menu-modal .modal-search {
    width: calc(100% - 36px);
    margin-bottom: 6px;
    position: relative
}

.box-modal.menu-modal .modal-search .form-input {
    width: 100%;
    height: 40px;
    outline: none;
    padding: 0 15px;
}

.box-modal.menu-modal .modal-search-icon {
    background: transparent url(/wp-content/themes/e-comm-floors/assets/images/search_item_btn.png) no-repeat center;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    outline: 0;
    border: none
}

.box-modal.menu-modal .compare_modal {
    width: calc(100% - 36px);
    margin-bottom: 6px;
    background: #f3f3f3;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 125%;
    border-radius: 8px;
    text-decoration: none;
    gap: 6px;
}

.box-modal.menu-modal .compare_modal:before {
    content: '';
    width: 22px;
    height: 22px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/compare_mini_black.png);
    background-size: 22px 22px;
}



.box-modal.menu-modal .phone svg {
    margin-right: 10px
}

.box-modal.menu-modal .modal-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 36px);
    margin-bottom: 12px
}

.box-modal.menu-modal .modal-links-item {
    width: calc(50% - 3px);
    background: #f3f3f3;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 125%;
    border-radius: 8px;
    color:black;
    text-decoration: none;
}

.box-modal.menu-modal .modal-links-item svg {
    margin-right: 10px
}

.box-modal.menu-modal ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 18px;
    margin: 0;
    padding: 0;
}

.box-modal.menu-modal ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #e2e2e2
}

.box-modal.menu-modal ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    line-height: 125%;
    width: 100%;
    padding: 18px;
    border-radius: 0!important;
    text-decoration: none;
}

.box-modal.menu-modal ul li a.has-submenu::after {
    content: "";
    width: 12px;
    height: 12px;
    min-width: 12px;
    margin-left: 10px;
    margin-left: auto;
    background: url(/wp-content/themes/e-comm-floors/assets/images/dropdown.svg) no-repeat center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.box-modal.menu-modal ul li a.main-btn {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 700;
    font-size: 16px
}

.box-modal.menu-modal ul li a.main-btn::before {
    content: "";
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 10px;
    background: url(/wp-content/themes/e-comm-floors/assets/images/catalog.svg) no-repeat center
}

.box-modal.menu-modal ul li.active .has-menu::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.box-modal.menu-modal ul li .sub-menu {
    display: none;
    width: 100%!important;
    padding: 0!important
}

.box-modal.menu-modal ul li .sub-menu a {
    font-weight: 400;
    padding: 9px 18px
}

.box-modal.menu-modal ul li .sub-menu li {
    border-bottom: none
}

.box-modal.menu-modal .mode-changer {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-left: 18px;
    padding: 2px;
    border-radius: 8px;
    background: #888;
    width: 40px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    position: relative;
    margin-bottom: 18px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.box-modal.menu-modal .mode-changer::after {
    content: "Тёмная тема";
    position: absolute;
    left: 50px;
    top: 3px;
    white-space: nowrap
}

.box-modal.menu-modal .mode-changer-handle {
    border-radius: 6px;
    height: 100%;
    width: 20px;
    background: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.box-modal.menu-modal a {
    color: #1b1b1b;
    margin-top: 0
}


#menu_btn_main, #menu_btn_main_first{
    background: white;
}



#menu_btn_main_first .modal-links{
    flex-wrap: wrap;
    gap: 15px 2px;
}

#menu_btn_main_first .modal-links .modal-links-item span{
    text-align: center;
}


.menu-modal-head .custom-logo-link img{
    max-height: 45px;
    width: auto;
}
    




.header_sub_menu_mobil.mobil_block {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 0;
    margin-bottom: -120px;
}

.header_sub_menu_mobil_img {
    height: 100%;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.header_sub_menu_mobil_crop {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180.00deg, rgba(68, 48, 0, 0.62) 29.274%, rgb(255, 255, 255) 86.774%);
}



ul#nav_header_sub_main_mobil {
    padding: 0;
    position: absolute;
    z-index: 3;
    top: 350px;
    width: calc(100% - 50px);
    margin: 0 25px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 8px;
}

ul#nav_header_sub_main_mobil a {
    color: rgb(35, 39, 42);
    font-family: Urbanist;
    font-size: 12px;
    font-weight: 700;
    line-height: 13px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px;
}

ul#nav_header_sub_main_mobil li {
    box-sizing: border-box;
    border: 1px solid rgb(173, 144, 76);
    border-radius: 3.87px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(3.1px);
    background: rgba(242, 240, 235, 0.85);
}

.title_header_sub_menu {
    position: absolute;
    z-index: 3;
    top: 100px;
    width: calc(100% - 50px);
    margin: 0 25px;
    color: rgb(255, 255, 255);
    font-family: Manrope;
    font-size: 36px;
    font-weight: 700;
    line-height: 130%;
    text-align: left;
}


.arcticmodal-container_i2{
    padding: 2px;
}


.header_main_catalog.mobil_flex {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 5px;
    background: white;
}










.header_main_catalog .title{
    color: rgb(84, 87, 90);
    font-family: Fraunces;
    font-size: 24px;
    font-weight: 300;
    line-height: 100%;
    text-transform: uppercase;
    padding: 6px 0 0 0;
    margin: 0 25px;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cust_breadcrumbs{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}





.cust_breadcrumbs .aioseo-breadcrumbs{
    font-family: Manrope;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    text-align: left;
    margin: 0 25px 6px 25px;
}

.cust_breadcrumbs .aioseo-breadcrumbs a{
    color: rgb(172, 181, 187);
    text-decoration: none;
}

.cust_breadcrumbs .aioseo-breadcrumbs span{
    color: rgb(172, 181, 187);
}



.post, .page {
    margin: 0 !important;
}


.footer_down {
    background: rgb(242, 240, 235);
    padding: 120px 80px 40px 80px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer_down .footer_down_block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer_down_logo img{
    max-height: 60px;
    width: auto;
}

.footer_down_logo .enter_you_email{
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    padding: 10px 50px;
}

.footer_down_block .heading{
    color: rgb(173, 144, 76);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 10px;
}


label.enter_you_email_l{
    position: relative;
}

label.enter_you_email_l:before {
    content: '';
    width: 15px;
    position: absolute;
    height: 15px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/covert.png);
    background-size: 15px 15px;
    top: 14px;
    left: 19px;
}

label.enter_you_email_l:after {
    content: '';
    width: 20px;
    position: absolute;
    height: 20px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/telee.png);
    background-size: 20px 20px;
    top: 14px;
    right: 20px;
}



.footer_down_block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer_down_block ul li {
    margin-bottom: 10px;
}

.footer_down_block ul a {
    text-decoration: none;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 500;
}

.footer_down_block ul a:hover{
    opacity: 0.8;
}


.c_span{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
}

.c_span a{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
}

.c_span a:hover{
    opacity: 0.8;
}



ul.social_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 16px;
}

ul.social_list li{
    width: 32px;
    height: 32px;
}


    

ul.social_list a {
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 4px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.social_list a:hover {
    background: #ad904c;
}

ul.social_list a:hover svg path {
    fill: white;
}

.footer_down_reserved {
    background: #f2f0eb;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 80px;
    gap: 25px;
}




.footer_contact_us_crope{
    background: url(/wp-content/themes/e-comm-floors/assets/images/background_call.jpg);
    width: 100%;
    height: 800px;
    background-size: cover;
    opacity: 0.03;
    background-blend-mode: luminosity;
}
.footer_contact_us{
    position: relative;
}
.footer_contact_us_flex {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 160px 50px 70px 50px;
    gap: 10px;
    z-index: 1;
}
.footer_contact_us_title_min{
    font-family: Cormorant;
    font-weight: 700;
    font-size: 24px;
    color: #AD904C;
}
.footer_contact_us_title_full{
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
}
.footer_contact_us_title_content{
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
}


.footer_contact_us_title{
    padding: 70px;
}

form.form_contact_us {
    padding: 80px 60px;
    background: rgb(255, 255, 255);
    box-shadow: 20px 20px 0px 0px #AD904C;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 50%;
}
form.form_contact_us input {
    box-sizing: border-box;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px 20px 50px;
    width: 100%;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    line-height: 0%;
    text-align: left;
}
form.form_contact_us textarea {
    box-sizing: border-box;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px 20px 50px;
    width: 100%;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    min-height: 200px;
}

form.form_contact_us .form_contact_submit {
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}
form.form_contact_us .form_contact_submit:hover{
    background: #ad904c;
    color: white;
}

label.form_contact_name{
    position: relative;
}

label.form_contact_name:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/form_contact_phone_ico.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}

label.form_contact_email{
    position: relative;
}

label.form_contact_email:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/form_contact_email_ico.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}

label.form_contact_phone{
    position: relative;
}

label.form_contact_phone:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/form_contact_phone_ico.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}

label.form_contact_message{
    position: relative;
}

label.form_contact_message:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/form_contact_message_ico.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}







.footer_contact_us_mobil {
    background: #ebe9e4;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 21px;
}


.footer_contact_us_mobil_header {
    font-family: Fraunces;
    font-size: 37px;
    font-weight: 300;
    line-height: 43.66px;
    letter-spacing: -0.03em;
    text-align: center;
}

form.footer_contact_us_mobil_form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

form.footer_contact_us_mobil_form input {
    box-sizing: border-box;
    border: 1px solid #bfb7b0;
    border-radius: 30px;
    background: rgb(255, 255, 255);
    padding: 20px;
    padding-left: 54px;
    width: 100%;
}
form.footer_contact_us_mobil_form input:focus-visible {
    outline: none;
}

form.footer_contact_us_mobil_form input.footer_contact_us_mobil_form_submit {
    padding: 20px;
    background: #bfb7b0;
    color: white;
    font-weight: bold;
}



label.footer_contact_us_mobil_form_email{
    position: relative;
}

label.footer_contact_us_mobil_form_email:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/footer_contact_us_mobil_form_email.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}

label.footer_contact_us_mobil_form_phone{
    position: relative;
}

label.footer_contact_us_mobil_form_phone:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/footer_contact_us_mobil_form_phone.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}

.footer_contact_us_mobil_content {
    font-family: Manrope;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.02em;
    text-align: left;
}


ul.social_list_mobile{
    margin-top: 24px;
}

ul.social_list_mobile li{
    border-radius: 1000px;
    background: rgb(173, 144, 76);
    width: 40px;
    height: 40px;
}

ul.social_list_mobile li a{
    border: none;
    width: 40px;
    height: 40px;
}

ul.social_list_mobile li a svg path{
    fill: white;
}




.footer_questions_mobil {
    background: #ebe9e4;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 21px;
}
.footer_questions_mobil_header {
    font-family: Fraunces;
    font-size: 37px;
    font-weight: 300;
    line-height: 43.66px;
    letter-spacing: -0.03em;
    text-align: left;
}
.footer_questions_mobil_content {
    font-family: Manrope;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.02em;
    text-align: left;
}
.footer_questions_mobil_hrefs{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

a.footer_questions_see_more_href{
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #54575A;
    text-decoration: none;
    padding: 13px 20px;
    box-sizing: border-box;
    border: 1px solid rgb(84, 87, 90);
    border-radius: 70px;
    background: rgb(255, 255, 255);
}
a.footer_questions_see_more_href:hover{
    opacity: 0.8;
}

a.footer_questions_contact_us_href{
    font-family: Manrope;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 13px 24px;
    box-sizing: border-box;
    border-radius: 70px;
    background: rgb(173, 144, 76);
}
a.footer_questions_contact_us_href:hover{
    opacity: 0.8;
}

.footer_questions_mobil_content_ques {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}
.footer_questions_mobil_content_que {
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(173, 144, 76);
    border-top: 1px solid rgb(173, 144, 76);
    background: rgb(255, 251, 242);
}
.footer_questions_mobil_content_que_title {
    font-family: Manrope;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: -0.02em;
    text-align: left;
    box-shadow: 3.69px 3.69px 3.69px 0px #00000000;
    color: #54575A;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.footer_questions_mobil_content_que_content {
    display: none;
    font-family: Manrope;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: -0.02em;
    text-align: left;
    margin-top: 20px;
}
.footer_questions_mobil_content_que_title > span{
    width: calc(100% - 20px);
}
i.list_s {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
}
i.list_s:before {
    content: '';
    background: #AD904C;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
}
i.list_s.show:after {
    content: '';
    background: #AD904C;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 2px;
    height: 20px;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
}

i.list_s_black {
    width: 10px;
    height: 10px;
    display: block;
    position: relative;
}
i.list_s_black:before {
    content: '';
    background: #54575A;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 10px;
    height: 2px;
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
}
i.list_s_black.show:after {
    content: '';
    background: #54575A;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 2px;
    height: 10px;
    display: block;
    position: absolute;
    left: 38%;
    top: 0;
}



.footer_mobile_reghts_reserved{
    background: #ebe9e4;
    padding: 25px;
    box-sizing: border-box;
    border-top: 1px solid rgb(173, 144, 76);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
}



.page_home{
    margin: 0;
}



.main_page_slider_swiper_slide img{
    width: 100%;
} 

.main_page_slider .main_page_slider_swiper_pagination{
    position: absolute;
    bottom: 20px;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_page_slider .main_page_slider_swiper_pagination .swiper-pagination-bullet{
    background: none;
    width: 12px;
    height: 12px;
    border: 2px solid white;
    box-sizing: border-box;
    opacity: 1;
}

.main_page_slider .main_page_slider_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: white;
}


.categories_home {
    padding: 160px 50px;
    display: grid;
    gap: 50px 25px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category_home_title {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    padding: 15px 0 10px 0;
    text-transform: uppercase;
    font-family: Urbanist;
}

.category_home_footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.category_home_footer_href {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.category_home_footer_descr{
    overflow: hidden;
    /*display: -webkit-box;*/
    display: block;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.3em;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    font-family: Urbanist;
}
.category_home_footer_href a{
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #AD904C;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-family: Urbanist;
}
.category_home_footer_href a:hover{
    opacity: 0.8;
}

.category_home_footer_href a:after {
    content: '';
    width: 6px;
    height: 10px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/arrow_brow_right.png);
    background-size: 6px 10px;
}

.categories_home_swiper_footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 20px;
    justify-content: space-between;
    gap: 30px;
}





.categories_home_swiper_footer.pagination{
    position: relative;
    border-radius: 100px;
    background: rgb(237, 235, 230);
}

.categories_home_swiper_footer.pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    border-radius: 25px;
    background: #ad904c;
    box-sizing: unset;
}



.latest_collections_home_crope{
    background: url(/wp-content/themes/e-comm-floors/assets/images/background_call.jpg);
    width: 100%;
    height: 1000px;
    background-size: cover;
    opacity: 0.03;
    background-blend-mode: luminosity;
}
.latest_collections_home{
    position: relative;
}
.latest_collections_home_content{
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 160px 50px 70px 50px;
    gap: 20px;
    z-index: 1;
    flex-direction: column;
}
.latest_collections_home_content_title_block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.latest_collections_home_content_title_block_left p:nth-child(1){
    font-family: Cormorant;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: #AD904C;
    text-align: left;
    margin: 0 10px;
}
.latest_collections_home_content_title_block_left p:nth-child(2){
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 300;
    text-align: left;
    margin: 0;
    color: #54575A;
    text-transform: uppercase;
    line-height: normal;
    max-width: 400px;
}
.latest_collections_home_content_href a{
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 15px;
    color: #AD904C;
    border: 1px solid #AD904C;
    border-radius: 5px;
}
.latest_collections_home_content_href a:hover{
    opacity: 0.8;
}

.latest_collections_home_content_sub_title_block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.latest_collections_home_content_sub_title_block_name {
    font-size: 20px;
    font-weight: 800;
    line-height: 24px;
    text-align: left;
    text-transform: uppercase;
    color: #54575A;
}

.latest_collections_home_content_sub_title_block_href a{
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #AD904C;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}
.latest_collections_home_content_sub_title_block_href a:hover{
    opacity: 0.8;
}

.latest_collections_home_content_sub_title_block_href a:after {
    content: '';
    width: 6px;
    height: 10px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/arrow_brow_right.png);
    background-size: 6px 10px;
}


.latest_collections_home_swiper{
    width: 100%;
}
.wrap_fix_rel{
    position: relative;
    width: 100%;
}

.latest_collections_home_content_product_block a{
    text-decoration: none;
}
.latest_collections_home_content_product_block_title{
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    margin: 0;
    margin-top: 20px;
    color: #54575A;
    text-transform: uppercase;
}

.latest_collections_home_content_products_block_pagination{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.latest_collections_home_content_products_block_pagination img{
    height: 32px;
}


.latest_collections_home_content_product_block_color {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.latest_collections_home_content_product_block_color img{
    height: 25px;
    border-radius: 25px;
    opacity: 0.8;
}


.latest_collections_home_content_products_block_pagination_mobil{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.latest_collections_home_content_products_block_pagination_mobil img{
    height: 22px;
}

.latest_collections_home_content_products_block_pagination_mobil.pagination {
    position: relative;
    border-radius: 100px;
    background: rgb(237, 235, 230);
}
.latest_collections_home_content_products_block_pagination_mobil.pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    border-radius: 25px;
    background: #ad904c;
    box-sizing: unset;
}

.latest_collections_home_content_flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.about_us_sections {
    padding: 70px 50px 70px 50px;
}

.about_us_section_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.about_us_section_title_first{
    width: 50%;

}

.about_us_section_title_second{
    width: 50%;
    
}

.about_us_section_title_first img{
    width: 100%;
    box-shadow: -20px 20px 0px 0px #AD904C;
}

.about_us_section_title_second_sub_title{
    font-family: Cormorant;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #AD904C;
}
.about_us_section_title_second_title{
    font-family: Fraunces;
    font-size: 64px;
    font-weight: 300;
    text-align: left;
    margin: 0;
    color: #54575A;
    text-transform: uppercase;
    line-height: normal;
    max-width: 400px;
}
.about_us_section_title_second_content{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    text-align: left;
}
.about_us_section_title_second_content_href {
    margin-top: 40px;
    display: flex;
    gap: 10px;
    flex-direction: row;
}

.about_us_section_title_second_content_href a{
    padding: 16px 24px;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid rgb(173, 144, 76);
    border-radius: 5px;
}

.about_us_section_title_second_content_href a:hover{
    background: rgb(173, 144, 76);
    color: white;
}

.about_us_sections_gallery {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
    align-items: end;
}

.content_brands_sections{
    
    background: rgb(242, 240, 235);
    padding-top: 160px;
    padding-bottom: 200px;
}
.gallery_brands{
    margin-left: 100px;
    margin-right: 100px;
    padding-bottom: 50px;
}
.content_brands_sections_gallery img{
    height: 50px;
}
.content_brands_sections_title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 100px;
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
}
.content_brands_sections_title_first_sub {
    font-family: Cormorant;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #AD904C;
}
.content_brands_sections_title_first_cont {
    font-family: Fraunces;
    font-size: 64px;
    font-weight: 300;
    text-align: left;
    margin: 0;
    color: #54575A;
    text-transform: uppercase;
    line-height: normal;
}
.content_brands_sections_title_second {
    color: rgb(84, 87, 90);
    font-size: 18px;
    font-weight: 500;
    line-height: 160%;
    text-align: left;
}
.content_brands_sections_title_third a{
    padding: 16px 24px;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid rgb(173, 144, 76);
    border-radius: 5px;
    display: block;
    width: fit-content;
}
.content_brands_sections_title_third{
    width: fit-content;
}
.content_brands_sections_title_third a:hover{
    background: rgb(173, 144, 76);
    color: white;
}
.content_brands_sections_desk_container{
    display: flex;
    gap: 10px;
    flex-direction: column;
}









.content_brands_sections_gallery_swiper .content_brands_sections_gallery_swiper_pagination{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content_brands_sections_gallery_swiper .content_brands_sections_gallery_swiper_pagination .swiper-pagination-bullet {
    background: none;
    width: 12px;
    height: 12px;
    border: 2px solid #ad904c;
    box-sizing: border-box;
    opacity: 1;
}
.content_brands_sections_gallery_swiper .content_brands_sections_gallery_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ad904c;
}

.content_visualizer_sections {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0 100px;
    gap: 100px;
}
.content_visualizer_sections_img img {
    max-height: 550px;
    margin-top: -100px;
}
.content_visualizer_sections_title_sub_title {
    font-family: Cormorant;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #AD904C;
}
.content_visualizer_sections_title_title {
    font-family: Fraunces;
    font-size: 64px;
    font-weight: 300;
    text-align: left;
    margin: 0;
    color: #54575A;
    text-transform: uppercase;
    line-height: normal;
    max-width: 400px;
}
.content_visualizer_sections_title_content {
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    text-align: left;
}
.content_visualizer_sections_title_href a {
    padding: 16px 24px;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    text-align: left;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid rgb(173, 144, 76);
    border-radius: 5px;
    display: block;
    width: fit-content;
    margin-top: 15px;
}
.content_visualizer_sections_title_href a:hover{
    color: white;
    background: rgb(173, 144, 76);
}





.title_category_main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 100px;
}
.title_category_main_content {
    margin: 0;
    width: 50%;
}

.title_category_main_content h1 {
    margin: 0;
    margin-bottom: 55px;
    margin-left: 50px;
    margin-top: 55px;
    color: rgb(84, 87, 90);
    text-transform: uppercase;
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 300;
    line-height: 72px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 300px;
    text-indent: -70px;
    padding-left: 70px;

}
p.title_category_main_content_out {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    margin: 0;
    width: 160%;
    padding: 100px 60% 100px 50px;
    background: #F2F0EB;
}
.title_category_main_img {
    border-left: 1px solid #AD904C;
    padding-left: 10px;
    border-bottom: 1px solid #AD904C;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}


.product_loop {
    display: flex;
    margin: 0 50px;
    gap: 50px;
    
}


.product_loop_filter {
    width: 350px;
}
.product_loop_content {
    width: calc(100% - 350px);
    position: relative;
}

.before_shop_loop_dg{
    margin-bottom: 50px;
    padding: 10px 0;
}

.before_shop_loop_dg {
    margin-bottom: 50px;
    padding: 10px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.before_shop_loop_dg_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    text-align: left;
}
.before_shop_loop_dg_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 50px;
}
.before_shop_loop_dg_content_count {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
}
select.before_shop_loop_dg_content_sort {
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    border: none;
    cursor: pointer;
}
select.before_shop_loop_dg_content_sort:focus-visible {
    outline: none;
}



.product_loop_filter_mobil_href {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.product_loop_filter_mobil_content {
    display: none;
    margin-bottom: 50px;
}


.btn{
    width: 100%;

}

.btn_view_loop {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 24px;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    color: #ad904c;
}



a.page-numbers:visited {
    color: #ad904c;
}




.woocommerce ul.products li.product a img {
    margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #444444;
    text-transform: uppercase;
}

.woocommerce ul.products li.product .price{
    font-size: 16.88px;
    font-weight: 400;
    line-height: 17.85px;
    text-align: left;
    color: #2D2D2D;
}

.compare_loop {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

span.compare_loop_art {
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
    color: #212529;
}

label.compare_loop_content {
    font-size: 14px;
    font-weight: 400;
    line-height: 14.4px;
    text-align: left;
    border-radius: 25.6px;
    background: rgb(242, 240, 235);
    color: #212529;
    cursor: pointer;
    font-weight: bold;
}






.checkbox_compare_label > input[type="checkbox"] {
  display: none;
}
.checkbox_compare_label > input[type="checkbox"] + *::after {
    content: "";
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: #646464;
    flex-shrink: 0;
}
.checkbox_compare_label > input[type="checkbox"]:checked + * {
  color: #ad904c;
}
.checkbox_compare_label > input[type="checkbox"]:checked + *::after {
  content: "✓";
  color: white;
  text-align: center;
  background: #ad904c;
  border-color: #ad904c;
  padding-top: 2px;
}


.checkbox_compare_label > input[type="checkbox"] + * {
    display: inline-flex;
    padding: 0.5rem 1rem;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}




.checkbox_attributes > input[type="checkbox"] {
  display: none;
}
.checkbox_attributes > input[type="checkbox"] + *::before {
    content: "";
    display: inline-block;
    vertical-align: bottom;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border-style: solid;
    border-width: 1px;
    border-color: #646464;
    flex-shrink: 0;
}
.checkbox_attributes > input[type="checkbox"]:checked + * {
  color: #ad904c;
}
.checkbox_attributes > input[type="checkbox"]:checked + *::before {
    content: "✓";
    color: white;
    text-align: center;
    background: #ad904c;
    border-color: #ad904c;
    display: flex;
    justify-content: center;
    align-items: center;
}


.checkbox_attributes > input[type="checkbox"] + * {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 4px;
}









.woocommerce ul.products li.product .onsale{
    position: absolute;
    left: -10px;
    right: auto;
    top: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
    border-radius: 0;
    padding: 10px 20px;
    margin: 0;
    min-width: auto;
    min-height: auto;
    line-height: normal;
    background: #54575a;
    z-index: 5;
}

span.whish_click_ico {
    position: absolute;
    right: 10px;
    top: 30px;
    padding: 8px;
    background: #bdb8ac;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 0.5px solid #ada89c;
}
span.whish_click_ico:hover {
    background: #ad904c;
    border: 0.5px solid #ad904c;
}
span.whish_click_ico.remove {
    background: #ad904c;
    border: 0.5px solid #ad904c;
}

.woocommerce nav.woocommerce-pagination ul {
    white-space: nowrap;
    padding: 0;
    clear: both;
    border: none;
    border-right: 0;
    gap: 5px;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
    padding: 0;
    margin: 0;
    float: left;
    overflow: hidden;
    border-radius: 8px;
    width: 40px;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
    margin: 0;
    text-decoration: none;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    min-width: 1em;
    display: block;
    padding: 10px;
    color: #ad904c;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #ad904c;
    color: #ffffff;
}
.woocommerce nav.woocommerce-pagination ul li a:hover{
    background: #ad904c;
    color: white;
}







.preloader {
    display: flex;
    position: absolute;
    left: -15px;
    top: 0;
    width: calc(100% + 30px);
    height: 100%;
    background: #ffffffad;
    justify-content: center;
    align-items: center;
    z-index: 10;
    display: none;
}

.loader_dg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #54575a;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.loader_dg::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #a59c95;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 




.list_product_dg a:visited {
    color: #ad904c;
}



.list_product_dg .btn_view_loop:hover{
    background: #ad904c;
    color: white;
}




.footer_visualization .content_visualizer_sections_img img{
    margin-top: 0;
}





.product_view_section {
    margin: 100px 50px;
    display: flex;
    position: relative;
    gap: 40px;
    flex-wrap: wrap;
}


















.product-wrap-left{
    width: 53%;
    display: flex;
    flex-direction: row;
    position: relative;
}

.woocommerce-page div.product div.summary{
    width: 43%;
}



.product_gallery_wrap{
    position: relative;
    height: fit-content;
    width: 100%;
}
.product_gallery_wrap .swiper-wrapper{
    /*gap: 15px;*/
}
.product_gallery_wrap .swiper-gallery{
    margin-left: 100px;
}
/*.product_gallery_wrap .swiper-gallery img{
    width: 100%;
}*/
.product_gallery_wrap .swiper-gallery22 {
    margin-left: 100px;
}
.product_gallery_wrap .swiper-gallery22 a{
    display: block;
    
}

.product_gallery_wrap .swiper-thumb{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 70px;
}


span.whish_click_ico_single{
    z-index: 100;
}

.woocommerce span.onsale.onsale_single{
    position: absolute;
    left: 90px;
    right: auto;
    top: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: white;
    border-radius: 0;
    padding: 10px 20px;
    margin: 0;
    min-width: auto;
    min-height: auto;
    line-height: normal;
    background: #54575a;
}




.woocommerce div.product div.summary{
    margin: 0;
}

.single_product_top_subtitle a {
    font-size: 16px;
    font-weight: 400;
    line-height: 15.6px;
    text-align: left;
    color: #54575A;
    text-decoration: none;
}

.single_product_top_title {
    padding: 25px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    text-align: left;
    color: #54575A;
}


.single_product_top_after_title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
    padding: 15px 0;
}

.single_product_top_after_title_sku {
    
    font-size: 14px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
    color: #54575A;
}

.woocommerce div.product .woocommerce-product-rating {
    margin: 0;
    margin-top: -5px;
}
.woocommerce .woocommerce-product-rating .star-rating {
    margin: 0;
}

.woocommerce .star-rating span{
    color: #AD904C;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price{
    color: #54575A;
}



.product_view_section form.cart{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.form_single_qual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info_block_form_add{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    padding: 10px 15px;
    background: rgb(191, 183, 176);
    color: white;
}

.form_single_qual input.qty{
    width: 100% !important;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(84, 87, 90, 0.5);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    color: #54575a;
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 400;
}


.form_single_qual input:focus-visible{
    outline: none;
}

.product_view_section .summary.entry-summary form.cart button{
    font-family: Urbanist;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    background: white;
    color: #54575A;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-transform: uppercase;
}
.product_view_section .summary.entry-summary form.cart button:hover{
    background: #ad904c;
    color: white;
}



.dg_checkbox_y_n-switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 30px;
  user-select: none;
}

.dg_checkbox_y_n-switch input {
  display: none;
}

.dg_checkbox_y_n-slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background-color 0.3s;
}

.dg_checkbox_y_n-slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.dg_checkbox_y_n-switch input:checked + .dg_checkbox_y_n-slider {
  background-color: #bfb7b0;
}

.dg_checkbox_y_n-switch input:checked + .dg_checkbox_y_n-slider::before {
  transform: translateX(28px);
}

.dg_checkbox_y_n-labels {
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 14px;
  font-family: sans-serif;
  pointer-events: none;
}

.dg_checkbox_y_n-switch input:checked ~ .dg_checkbox_y_n-labels::before {
  content: attr(data-on);
}

.dg_checkbox_y_n-switch input:not(:checked) ~ .dg_checkbox_y_n-labels::before {
  content: attr(data-off);
}













.dg_carpet_tile_qui_hide {
    display: none;
}
.dg_carpet_tile_qui_sections {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.form_carpet_tile_qual_section a.calculate_my_href{
    width: 100%;
}
.dg_carpet_tile_qui_sections input{
    width: 100% !important;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(84, 87, 90, 0.5);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    color: #54575a;
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
    text-align: center;
}
.dg_carpet_tile_qui_sections select{
    height: 46px;
    padding: 5px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: unset !important;
}
.form_carpet_tile_qual_section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form_single_qual_checkbox_section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}


.single_add_to_cart_button.disable{
    cursor: no-drop !important;
}

















.dg_sheet_vinyl_qui_hide {
    display: none;
}
.dg_sheet_vinyl_qui_sections {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}
.form_sheet_vinyl_qual_section a.calculate_my_href{
    width: 100%;
}
.dg_sheet_vinyl_qui_sections input{
    width: 100% !important;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid rgba(84, 87, 90, 0.5);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    color: #54575a;
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
    text-align: center;
}
.dg_sheet_vinyl_qui_sections select{
    height: 46px;
    padding: 5px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    outline: unset !important;
}
.form_sheet_vinyl_qual_section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form_single_qual_checkbox {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}



.form_single_qual_section_messagense {
    display: inline-block;
    font-size: 12px;
}

.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_carpet_title_qui button{
    font-family: Urbanist;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    background: white;
    color: #54575A;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-transform: uppercase;
    width: 100%;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin: 0;
}
.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_carpet_title_qui button input{
    width: 55px;
    font-family: Urbanist;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    background: white;
    color: #54575A;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-transform: uppercase;
}

.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_carpet_title_qui button:hover{
    color: #54575A;
}

.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_carpet_title_qui button:not(.disable){
    color: white;
    background: #ad904c;
    border: 1px solid #ad904c;
    cursor: pointer;
}




.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_actions_section button{
    font-family: Urbanist;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    background: white;
    color: #54575A;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-transform: uppercase;
    width: 100%;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    margin: 0;
}
.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_actions_section button input{
    width: 55px;
    font-family: Urbanist;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    background: white;
    color: #54575A;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-transform: uppercase;
}

.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_actions_section button:hover{
    color: #54575A;
}

.product_view_section .summary.entry-summary form.cart .qt_dg_boxes_actions_section button:not(.disable){
    color: white;
    background: #ad904c;
    border: 1px solid #ad904c;
    cursor: pointer;
}




.form_single_accessories_content {
    display: flex;
    flex-direction: column;
    margin: 20px;
    position: relative;
}
.form_single_accessories_content_title {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    text-align: left;
    color: #54575A;
}

.form_single_accessories_content_ p {
    font-size: 13px;
    font-weight: 700;
    line-height: 15.6px;
    text-align: left;
    color: #54575A;
    margin: 0;
    margin-top: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.form_single_accessories_content_ div{
    cursor: pointer;
}

.form_single_accessories_content_ > div:hover img{
    box-sizing: border-box;
    border: 2px solid #ad904c;
    padding: 3px;
}


.form_single_accessories_content_pagination > div{
    position: absolute;
    
    top: calc(50% - 15px);
    height: 30px;
    width: 30px;
    color: white;
    display: flex;
    justify-content: center;
    background: #00000057;
    z-index: 2;
    border-radius: 50%;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
}
.form_single_accessories_content_pagination > div.form_single_accessories_content_pagination_prev{
    left: 0;
}
.form_single_accessories_content_pagination > div.form_single_accessories_content_pagination_next{
    right: 0;
}
.form_single_accessories_content_pagination > div svg{
    height: 18px;
    width: 18px;
}

.form_single_accessories_content_pagination > div:hover{
    background: black;
}


.section_want_it_installed {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    /*gap: 25px;*/
}
.section_want_it_installed_top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.section_want_it_installed_top_content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section_want_it_installed_top_content_subtitle {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
}
.section_want_it_installed_top_content_title {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}
.section_want_it_installed_a {
    font-family: Urbanist !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 19.2px;
    text-align: center;
    text-decoration: none;
    padding: 15px !important;
    border-radius: 5px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15) !important;
    background: rgb(84, 87, 90) !important;
    color: white !important;
    width: 100% !important;
}
.section_want_it_installed_a:hover{
    opacity: 0.8;
}


.related.products{
    margin: 0 50px;
}
.related.products h2{
    text-transform: uppercase;
}

.woocommerce div.product .woocommerce-tabs .panel{
    margin: 0 100px;
    margin-bottom: 100px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs{
    padding: 0 100px;
    border-bottom: 1px solid rgb(226, 228, 229);
}


.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: none;
    background-color: unset;
    position: initial;
    margin: 0;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: unset;
    border-bottom-color: unset;
    color: #AD904C;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:focus-visible{
    outline: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before, .woocommerce div.product .woocommerce-tabs ul.tabs:after{
    content: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before, .woocommerce div.product .woocommerce-tabs ul.tabs li:after{
    content: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:focus-visible{
    outline: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:focus {
    outline: none;
}


.woocommerce table.shop_attributes{
    border: none;
    background: white !important;
}
.woocommerce table.shop_attributes table{
    border: none;
    background: white !important;
}
.woocommerce table.shop_attributes th{
    border: none;
    background: white !important;
    text-align: left;
}
.woocommerce table.shop_attributes tr{
    border: none;
    background: white !important;
}
.woocommerce table.shop_attributes td{
    border: none;
    background: white !important;
}

.rewiev_title_h_section {
    margin-bottom: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rewiev_title_h {
    font-size: 24px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    color: #54575A;
}
.rewiev_title_h_section_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}
.rewiev_title_h_section_content_count {
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    text-align: left;
    color: #54575A;
}
select.rewiev_title_h_section_content_sort {
    border: none;
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    cursor: pointer;
}

.acerage_review_section {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
}
.acerage_review_section_title {
    font-size: 22px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    color: #54575A;
}
.acerage_review_section_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    color: #54575A;
}
.acerage_review_section_content_val {
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 900;
    line-height: 72px;
    text-align: left;
}
.acerage_review_section_content_val.dg{
    font-weight: 400;
}
.acerage_review_section_content_ {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.comments_table_list {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    padding-bottom: 60px;
    margin-bottom: 60px;
    box-sizing: border-box;
    border-bottom: 1px solid rgb(226, 228, 229);
    flex-wrap: wrap;
}
.dg_review_avatar_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.dg_review_avatar_section_image {
    max-width: 48px;
}
.dg_review_avatar_section_image img {
    border-radius: 50%;
}
.dg_review_avatar_section_content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #54575A;
}
.dg_review_avatar_section_content_title {
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}
.dg_comments_table_list .dg_review_avatar_section_content_title {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    padding: 5px;
    text-overflow: ellipsis;
}
.comments_table_list_content > p{
    margin-top: 0;
    margin-bottom: 25px;
}
.comments_table_list_content_images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
a.comments_table_list_content_images_a {
    display: block;
    max-height: 120px;
}
img.comments_table_list_content_images_img {
    max-height: 120px;
}
.dg_review_avatar_section_content_date {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
}
.dg_review_avatar_section_content_rating .star-rating {
    float: left;
}
.comments_table_list_content {
    color: #54575A;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    max-width: 40%;
}

#review_form #reply-title{
    font-size: 22px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    color: #54575A;
}
#review_form .comment-form-rating{
    padding: 25px 0;
}
#review_form label{
    font-size: 14px;
    font-weight: 600;
    line-height: 28.8px;
    text-align: left;
    color: #54575A;
}
#review_form textarea{
    border: 1px solid rgb(226, 228, 229);
    border-radius: 10px;
    padding: 10px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit{
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.2px;
    text-align: center;
    text-decoration: none;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
    background: rgb(84, 87, 90);
    color: white;
    width: 100%;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover{
    color: white;
    background-color: black;
}
.product_view_section .summary.entry-summary form.cart button.order_samples_btn.remove{
    background: #ad904c;
    color: white;
}
.box-modal.modal_arctic{
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 15px;
    border-radius: 5px;
}
.box-modal.modal_arctic .menu-modal-head{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
form.form_contact_us.arcticmodal_form{
    padding: 30px;
    box-shadow: none;
}
.modal_arctic_title{
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 38.4px;
    text-align: center;
    color: #54575A;
}

.form_single_accessories_content_single.added img{
    box-sizing: border-box;
    border: 2px solid #ad904c;
    padding: 3px;
}

.section_contractors {
    margin: 100px 50px;
    font-family: Fraunces;
}

.section_contractors > h1 {
    font-size: 72px;
    font-weight: 300;
    line-height: 72px;
    color: #54575A;
    text-align: left;
}

.section_contractors_search {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
form.section_contractors_search_form input {
    height: 50px;
    padding: 5px 15px;
}
form.section_contractors_search_form {
    position: relative;
    max-width: 800px;
    width: 100%;
}
form.section_contractors_search_form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(126, 137, 153, 0.5);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
}
form.section_contractors_search_form input[type="submit"] {
    position: absolute;
    right: 0;
    width: 50px;
    border-radius: 0px 5px 5px 0px;
    background: rgb(173, 144, 76);
}
/*form.section_contractors_search_form input[type="submit"]:before{
    content:url(/wp-content/themes/e-comm-floors/assets/images/icons-search.png);
}*/
.section_contractors_search_text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}
form.section_contractors_search_form input[type="text"]:focus-visible{

    outline: none;
}

form.section_contractors_search_form input[type="submit"].search-btn {
    background: url(/wp-content/themes/e-comm-floors/assets/images/icons-search.png) no-repeat center / contain;
    border: none;
    height: 20px;
    width: 20px;
    cursor: pointer;
    background-color: #ad904c;
    padding: 25px;
    background-size: 25px 25px;
    position: absolute;
    right: 0;
    border-radius: 0px 5px 5px 0px;
}
select.section_contractors_search_text_sort {
    border: none;
    cursor: pointer;
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    color: #54575A;
}
.section_contractors_search_text_count {
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    color: #54575A;
}
.section_contractors_search_result_content {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.section_contractors_search_item {
    width: calc(25% - 25px);
    padding: 20px 25px;
    box-sizing: border-box;
    border: 1px solid rgb(191, 183, 176);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.section_contractors_search_item_image img {
    border-radius: 80px;
    background: white;
    border: 1px solid #ad904c8c;
    max-width: 100px;
    padding: 3px;
}

.section_contractors_search_item_name {
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
    color: #444444;
    text-transform: uppercase;
    margin: 15px 0;
}

.section_contractors_search_item_license_price {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    color: #2D2D2D;
    margin-bottom: 20px;
}

.section_contractors_search_item_license_price .price {
    font-weight: 700;
}

.section_contractors_search_item_description {
    font-family: Urbanist;
    font-size: 14.88px;
    font-weight: 400;
    line-height: 22.31px;
    text-align: left;
    color: #2D2D2D;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.section_contractors_search_item_actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.section_contractors_search_item_actions a {
    text-decoration: none;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #54575A;
    text-transform: uppercase;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    padding: 15px 0;
}

.section_contractors_search_item_actions a:hover{
    color: white;
    background: #ad904c;
}

.section_contractors_search_result {
    position: relative;
}

.search_not_found {
    width: 100%;
    padding: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    line-height: 72px;
    color: #54575A;
    text-transform: uppercase;
}

.modal_contractor{
    position: relative;
}

.modal_contractor .preloader {
    left: 0;
    width: 100%;
}

.modal_arctic_content.contactor_content_modal {
    padding: 25px;
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 400;
}
.modal_arctic_content.contactor_content_modal p{
    margin-bottom: 10px;
    margin-top: 10px;
}
.modal_arctic_content.contactor_content_modal p span{
    font-weight: 700;
}

.section_contractors_single_content {
    margin: 50px 0;
    display: flex;
    padding: 50px;
    box-sizing: border-box;
    border: 1px solid rgb(191, 183, 176);
    gap: 120px;
    justify-content: center;
}
.section_contractors_single_content_image img {
    max-height: 320px;
}
.section_contractors_single_content_information_license {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    text-align: left;
    color: #54575A;
    margin-bottom: 10px;
}
.section_contractors_single_content_information_description {
    font-family: Urbanist;
    font-size: 14.88px;
    font-weight: 400;
    line-height: 22.31px;
    text-align: left;
    color: #54575A;
    margin-bottom: 25px;
}
.section_contractors_single_content_information_price {
    font-family: Urbanist;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    color: #54575A;
    margin-bottom: 25px;
}
.section_contractors_single_content_information_actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.section_contractors_single_content_information_actions a {
    text-decoration: none;
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #54575A;
    text-transform: uppercase;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: 100%;
    text-align: center;
    padding: 15px 0;
}
.section_contractors_single_content_information_actions a:hover{
    color: white;
    background: #ad904c;
}

.contractors_single_tab_controls {
    display: flex;
    flex-direction: row;
    overflow: auto;
    gap: 15px;
    padding: 5px;
    cursor: pointer;
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    margin-bottom: 25px;
}

.contractors_single_tab_control {
    cursor: pointer;
    padding: 5px 15px;
}

.contractors_single_tab_control.active{
    color: #AD904C;
}
.contractors_single_tab_control:hover{
    color: #AD904C;
}
.contractors_single_tab_contents {
    padding: 15px;
}
.contractors_single_tab_content {
    display: none;
}
.contractors_single_tab_content:nth-child(1){
    display: block;
}

.section_contractors_search_result_single {
    margin-bottom: 150px;
}

.section_contractors_search_result_single_heading, .section_contractors_single_projects_title{
    font-family: Fraunces;
    font-size: 64px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    color: #54575A;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section_contractors_single_projects {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 100px;
}

.section_contractors_single_project {
    width: calc(25% - 15px);
    cursor: pointer;
}


.header_main_catalog.mobil_flex.fixeble_mobile {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: white;
    transition: top 0.25s linear;
    box-shadow: 0px 4px 15px 0px #00000026;

}

.header_main_catalog.mobil_flex.fixeble_mobile .title, .header_main_catalog.mobil_flex.fixeble_mobile .cust_breadcrumbs{
    display: none;
}



.arcticmodal-container{
    z-index: 999999999999999;
}

.section_page_template {
    margin: 100px 50px;
}

.template_about_content {
    margin: 50px 0 100px 0;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    flex-direction: row;
}

.template_about_content > img {
    max-width: 50%;
}
.template_about_content_left > img {
    box-shadow: -12px -2px 1px #AD904C;
}
.template_about_content_right > img {
    box-shadow: 13px 3px 1px #AD904C;
}
.template_about_content_ {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;
    color: #54575A;
}
.template_about_title.desktop_block {
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    color: #54575A;
    text-transform: uppercase;
}


.template_about_heading_img.mobil_block {
    margin: 0 -25px;
    margin-top: -50px;
    width: calc(100% + 50px);
    max-width: initial;
    margin-bottom: 50px;
}

.template_about_subtitle {
    font-family: Cormorant;
    font-size: 12.73px;
    font-style: italic;
    font-weight: 700;
    line-height: 15.27px;
    text-align: left;
    
    color: rgb(173, 144, 76);
}

.template_about_title {
    font-family: Fraunces;
    font-size: 38.18px;
    font-weight: 300;
    line-height: 38.18px;
    text-align: left;
    color: rgb(84, 87, 90);
}


.template_about_content_footer_btn {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
    gap: 25px;
}

.template_about_content_footer_btn a {
    font-family: Manrope;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #54575A;
    text-decoration: none;
    padding: 13px 20px;
    box-sizing: border-box;
    background: rgb(255, 255, 255);
    border: 1px solid #AD904C;
    box-shadow: 0px 4px 15px 0px #00000026;
    border-radius: 5px;
}

.template_about_content_footer_gallery {
    margin: 55px 0;
}

.template_about_content_footer_gallery_swipe_pagination{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.template_about_content_footer_gallery .template_about_content_footer_gallery_swipe_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #ad904c;
}
.template_about_content_footer_gallery .template_about_content_footer_gallery_swipe_pagination .swiper-pagination-bullet {
    background: none;
    width: 12px;
    height: 12px;
    border: 2px solid #ad904c;
    box-sizing: border-box;
    opacity: 1;
}

.template_about_content_footer_gallery_images {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px;
}
.template_about_content_footer_gallery_images a{
    max-width: 45%;
}

.template_about_content_ .form_contact_us{
    box-shadow:none;
    padding: 0;
}


article{
    padding: 100px 50px;
}


.category_home_img{
    height:280px;
    background-position: center !important;
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
}



.choose_floor_form_header_second {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
.choose_floor_form_header_second a {
    font-size: 16px;
    font-weight: 700;
    color: #54575A;
    display: flex;
    align-items: center;
    gap: 6px;
}
.choose_floor_form_header_second a:hover {
    color: #AD904C;
}
.choose_floor_form_header_second a:hover > svg{
   transform: rotate(-360deg);
   transition: 0.4s;
}

.choose_floor_form_header_second a:hover > svg path{
    stroke: #AD904C;
}




a:focus {
    outline: none;
}

.template_title{
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    color: #54575A;
    text-transform: uppercase;
}

.template_content.content_flex.woocommerce {
    margin: 50px 150px;
}


.header_main_search.search_tamplate{
    margin-block: 40px;
}

.header_main_search.search_tamplate input{
    width: 100%;
}

.wc-block-cart__submit-container a{
    padding: 15px 25px;
    border: 1px solid;
}


.woocommerce-account .woocommerce-MyAccount-navigation{
    width: 100%;
    margin-bottom: 50px;
    float: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul{
    list-style: none;
    display: flex;
    margin: 0;
    gap: 35px;
    flex-direction: row;
    overflow: auto;
    padding: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a{
    display: block;
    width: max-content;
    padding-bottom: 15px;
}

.woocommerce-account .woocommerce-MyAccount-content{
    width: 100%;
    float: none;
}

.section_orders_all_head {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 60px;
    overflow: auto;
    padding-bottom: 15px;
    border-bottom: 1px solid #E2E4E5;
}

.section_order_head_action {
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 400;
    line-height: 18.15px;
    text-align: left;
    text-transform: capitalize;
    cursor: pointer;
    white-space: nowrap;
    padding-bottom: 10px;
}
.section_order_head_action:hover{
   color: #AD904C;
}
.section_order_head_action.active{
   color: #AD904C;
}
.section_order_body_content{
    display: none;
}
.section_order_body_content.active{
    display: block;
}


.section_orders_all_content {
    gap: 30px;
    display: flex;
    flex-direction: column;
}

.section_order_content {
    box-sizing: border-box;
    border: 1px solid rgb(191, 183, 176);
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.section_order_content_image {
    height: 160px;
    width: 160px;
    background-size: auto 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.section_order_content_title {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section_order_content_first {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.section_order_content_second {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    align-items: center;
}
.section_order_content_title_name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
}

.section_order_content_title_product_code, .section_order_content_title_price , .section_order_content_shipping_details {
    font-size: 14px;
    font-weight: 400;
    line-height: 16.8px;
    text-align: left;
}
.section_order_content_title_price mark, ins{
    background: none;
}
.section_order_content_title_product_code span, .section_order_content_shipping_details span, .section_order_content_title_price > span{
    font-weight: 700;
}
.section_order_content_actions a{
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 600;
    line-height: 25.6px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    box-sizing: border-box;
    border: 1px solid rgb(84, 87, 90);
    border-radius: 5px;
}

.section_order_content_actions a:hover{
    background: #AD904C;
    color: white;
    border: 1px solid #AD904C;
}


#masthead{
    z-index: 9;
}


.section_order_content_price_for_all{
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 700;
}
.section_order_content_qty {
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 700;
}




form.section_order_body_content_search_form {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}
form.section_order_body_content_search_form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(126, 137, 153, 0.5);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.8);
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
}
form.section_order_body_content_search_form input {
    height: 50px;
    padding: 5px 15px;
}
form.section_order_body_content_search_form input[type="submit"].search-btn {
    background: url(/wp-content/themes/e-comm-floors/assets/images/icons-search.png) no-repeat center / contain;
    border: none;
    height: 20px;
    width: 20px;
    cursor: pointer;
    background-color: #ad904c;
    padding: 25px;
    background-size: 25px 25px;
    position: absolute;
    right: 0;
    border-radius: 0px 5px 5px 0px;
}
form.section_order_body_content_search_form input[type="text"]:focus-visible {
    outline: none;
}

h1.entry-title.title_my_account {
    font-family: Fraunces;
    font-size: 72px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    margin-top: 0;
}

.section_order_content_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    align-items: center;
    justify-content: center;
}

.form_review_section{
    position: relative;
}
form.form_review.arcticmodal_form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    box-shadow: none;
}
label.form_review_message {
    position: relative;
    display: block;
}
label.form_review_message:before {
    content: '';
    width: 18px;
    position: absolute;
    height: 19px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/form_contact_message_ico.png);
    background-size: 18px 19px;
    top: 21px;
    left: 19px;
}
form.form_review textarea {
    box-sizing: border-box;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px 20px 50px;
    width: 100%;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    min-height: 200px;
}
form.form_review .form_review_submit {
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}
form.form_review .form_review_submit:hover {
    background: #ad904c;
    color: white;
}

form.form_review textarea:focus-visible {
    outline: none;
}

#leave_a_review .modal_arctic_title{
    font-family: Fraunces;
    font-size: 48px;
    font-weight: 300;
    line-height: normal;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 25px;
}


#leave_a_review.box-modal.modal_arctic{
    padding: 35px;
}

.form_review_section{
    min-height: 300px;
}



.rating_review {
    overflow: hidden;
    width: fit-content;
}
.rating_review:not(:checked) > input {
    display: none;
}
.rating_review:not(:checked) > label {
    float: right;
    width: 42px;
    padding: 0;
    cursor: pointer;
    font-size: 32px;
    line-height: 32px;
    color: lightgrey;
    text-shadow: 1px 1px #bbb;
}
.rating_review:not(:checked) > label:before {
    content: '★';
}
.rating_review > input:checked ~ label {
    color: #AD904C;
    text-shadow: 1px 1px #AD904C;
}
.rating_review:not(:checked) > label:hover,
.rating_review:not(:checked) > label:hover ~ label {
    color: #AD904C;
}
.rating_review > input:checked + label:hover,
.rating_review > input:checked + label:hover ~ label,
.rating_review > input:checked ~ label:hover,
.rating_review > input:checked ~ label:hover ~ label,
.rating_review > label:hover ~ input:checked ~ label {
    color: #AD904C;
    text-shadow: 1px 1px #AD904C;
}
.rating_review > label:active {
    position: relative;
}

.rating_review_title {
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #54575A;
}
.rating_review_title span{
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
    color: #54575A;
}
.rating_review_images_content {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.rating_review_images_content_new {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    border: 1px solid #AD904C;
    height: 140px;
    padding: 25px 15px;
    border-radius: 8px;
    cursor: pointer;
    gap: 10px;
}
span.rating_review_images_content_new_head {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}
.rating_review_images_content_new img {
    width: 36px;
    height: 36px;
}
span.rating_review_images_content_new_foot {
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: center;
}
.rating_review_images_content_view {
    width: 180px;
    height: 140px;
    display: flex;
    position: relative;
    border-radius: 8px;
}
span.rating_review_images_content_view_delete {
    position: absolute;
    top: 5px;
    right: 8px;
    line-height: normal;
    padding: 4px 7px;
    background: #0000004D;
    color: white;
    font-size: 10px;
    border-radius: 50%;
    cursor: pointer;
}
.rating_review_images_content_view img {
    width: 180px;
    height: auto;
    border-radius: 8px;
}



.box-modal.modal_arctic#leave_a_review{
    max-width: 820px;
}


#thanksmodalreview {
    max-width: 450px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
}
#thanksmodalreview .box-modal_close {
    text-align: right;
}

.dg_review_avatar_section_galleries {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dg_review_avatar_section_gallery_img{
    display: block;
    max-height: 120px;
}
.dg_review_avatar_section_gallery_img img{
    
    max-height: 120px;
}




.mini_location_my_account_{
    position: relative;
}



.mini_location_my_account_child{
    display: block;
    position: absolute;
    background: #fffffffc;
    top: 23px;
    left: 0;
    width: max-content;
    list-style: none;
    margin: 0;
    padding: 15px;
    display: none;
    border-top: none;
    margin-top: -1px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 1px 20px 15px 0px #00000026;
}

ul.mini_location_my_account_child li a {
    color: black;
    padding: 8px 5px;
    display: block;
}

.mini_location_my_account_:hover .mini_location_my_account_child{
    opacity: 1;
    visibility: visible;
    display: block;
}


.edit-link{
    display: none;
}




.u-column1.col-1.woocommerce-Address, .u-column2.col-2.woocommerce-Address{
    padding: 80px 60px;
    background: #00000005;
    box-shadow: 20px 20px 0px 0px #AD904C;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
}

.u-column1.col-1.woocommerce-Address .edit, .u-column2.col-2.woocommerce-Address .edit{
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;

}
.u-column1.col-1.woocommerce-Address .edit:hover, .u-column2.col-2.woocommerce-Address .edit:hover{
    background: #ad904c;
    color: white;
}


.woocommerce-address-fields__field-wrapper label {
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
.woocommerce-address-fields__field-wrapper input {
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px;
    display: block;
}

.woocommerce-address-fields__field-wrapper .select2-container{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px;
}

.woocommerce-address-fields__field-wrapper .select2-selection--single{
    border: none !important;
}

.woocommerce-address-fields__field-wrapper .woocommerce-input-wrapper .select2-container{
    background: white;
}



.woocommerce-address-fields__field-wrapper .select2-selection__arrow{
    height: 64px !important;
}

.woocommerce-MyAccount-content form.dg_this .woocommerce-address-fields p .save_adress_dg{
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}
.woocommerce-MyAccount-content form.dg_this .woocommerce-address-fields p .save_adress_dg:hover{
    background: #ad904c;
    color: white;
}

.woocommerce-MyAccount-content form.dg_this h3{
    font-family: Fraunces;
    font-size: 48px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    margin-top: 0;
}

.woocommerce-MyAccount-content form.dg_this{
    padding: 20px 60px 80px 20px;
    box-shadow: 20px 20px 0px 0px #AD904C;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #00000005;

}



h2.form_login_dg{
    font-family: Fraunces;
    font-size: 48px;
    font-weight: 300;
    line-height: 72px;
    text-align: left;
    margin-top: 0;
}
.woocommerce form.login, .woocommerce form.register{
    padding: 20px 60px 80px 20px;
    box-shadow: 20px 20px 0px 0px #AD904C;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
    background: #00000005;
}

.woocommerce form.login label, .woocommerce form.register label{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
.woocommerce form.login .woocommerce-form-login__rememberme,  .woocommerce form.register .woocommerce-form-login__rememberme{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
.woocommerce form.login input, .woocommerce form.register input{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px;
    display: block;
}

.woocommerce form.login .form-row, .woocommerce form.register .form-row{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.woocommerce form.login .form-row .woocommerce-button, .woocommerce form.register .form-row .woocommerce-button{
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}

.woocommerce form.login .form-row .woocommerce-button:hover, .woocommerce form.register .form-row .woocommerce-button:hover{
    background: #ad904c;
    color: white;
}


.woocommerce form.login .show-password-input, .woocommerce form.register  .show-password-input{
    top: 1.5em;
}


.woocommerce form.woocommerce-ResetPassword.lost_reset_password{
    padding: 20px 60px 80px 0;
    background: rgb(255, 255, 255);
    box-shadow: 20px 20px 0px 0px #AD904C;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: none;
}

.woocommerce form.woocommerce-ResetPassword.lost_reset_password .lost_pass{
    font-family: Fraunces;
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    text-align: left;
    margin-top: 0;
}

.woocommerce form.woocommerce-ResetPassword.lost_reset_password label{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}
.woocommerce form.woocommerce-ResetPassword.lost_reset_password input{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px;
    display: block;
}
.woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button.button{
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}

.woocommerce form.woocommerce-ResetPassword.lost_reset_password .woocommerce-Button.button:hover{
    background: #ad904c;
    color: white;
}


form.woocommerce-EditAccountForm label{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

form.woocommerce-EditAccountForm input{
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    border: 1px solid rgb(217, 217, 217);
    border-radius: 5px;
    padding: 20px 10px;
    display: block;
}

form.woocommerce-EditAccountForm .show-password-input{
    top: 1.5em;
}

form.woocommerce-EditAccountForm .woocommerce-Button.button{
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    width: fit-content;
    padding: 16px 24px;
    line-height: normal;
    cursor: pointer;
    background: no-repeat;
    color: rgb(84, 87, 90);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}
form.woocommerce-EditAccountForm .woocommerce-Button.button:hover{
    background: #ad904c;
    color: white;
}




.choose_floor_form_header {
    display: flex;
    margin: 40px 0;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.choose_floor_form_header_first span {
    font-size: 18px;
    font-weight: 400;
    color: #54575A;
}
.choose_floor_form_header_first p {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #54575A;
}

span.choose_floor_form_step {
    font-size: 16px;
    font-weight: 700;
}
.choose_floor_form_sub_header {
    margin-bottom: 20px;
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 700;
}


.choose_floor_form_content {
    display: flex;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

.choose_floor_form_content > a {
    width: calc(33% - 35px);
    position: relative;
}
.choose_floor_form_content > a {
    width: calc(33% - 35px);
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid rgb(191, 183, 176);
    border-radius: 5px;
    cursor: pointer;
}

.choose_floor_form_content > div {
    width: calc(33% - 35px);
    position: relative;
}
.choose_floor_form_content > div {
    width: calc(33% - 35px);
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid rgb(191, 183, 176);
    border-radius: 5px;
    cursor: pointer;
}
.choose_floor_input:hover {
    background: #AD904C;
}
.choose_floor_input:hover .choose_floor_input_img{
   border: 1px solid white;
}
.choose_floor_input:hover p{
   color: white;
}
span.choose_floor_input_img {
    position: absolute;
    width: 75px;
    height: 75px;
    top: 13px;
    left: 20px;
    border-radius: 50%;
    background-position: center !important;
    background-size: 100% auto !important;
    background-repeat: no-repeat !important;
}
.choose_floor_input p {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    width: 100%;
    padding-left: 115px;
}


.choose_floor_input.choose {
    background: #AD904C;
}
.choose_floor_input.choose .choose_floor_input_img{
   border: 1px solid white;
}
.choose_floor_input.choose p{
   color: white;
}

.choose_floor_form_actions {
    display: flex;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}


a.choose_floor_form_step{
    border: 1px solid #bfb7b0;
    padding: 10px 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    color: #54575A;
}

a.choose_floor_form_step.prev svg{
    transform: rotate(180deg);
}

a.choose_floor_form_step:hover{
    background: #AD904C;
    color: white;
}
a.choose_floor_form_step:hover path{
    fill: white;
}

.choose_floor_content_form{
    position: relative; 
}

.choose_floor_content_form {
    min-height: 400px;
}



.item_description_m_t{
    margin-top: 15px;
}


.items_hover:hover{
    opacity: 0.7;
}












.mobil_flex{
    display: none;
}
.desktop_flex{
    display: flex;
}
.mobil_block{
    display: none;
}
.desktop_block{
    display: block;
}

.mobil_grid{
    display: none;
}
.desktop_grid{
    display: grid;
}

.relative{
    position: relative;
}


#thanksmodal{
    max-width: 450px;
    margin: auto;
    background: white;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
}
#thanksmodal .box-modal_close{
    text-align: right;
}



.main_page_slider_swiper_btn_prev{
    position: absolute;
    top: calc(50% - 10px);
    left: 25px;
    z-index: 2;
    background: #ffffff;
    line-height: normal;
    padding: 10px;
    border-radius: 11px;
    cursor: pointer;
    opacity: 0.8;
} 
.main_page_slider_swiper_btn_next{
    position: absolute;
    top: calc(50% - 10px);
    right: 25px;
    z-index: 2;
    background: #ffffff;
    line-height: normal;
    padding: 10px;
    border-radius: 11px;
    cursor: pointer;
    opacity: 0.8;
}
.main_page_slider_swiper_btn_prev:hover, .main_page_slider_swiper_btn_next:hover{
    opacity: 1;
}

.catalog-filter-item-inner{
    display: none;
    margin-top: 25px;
    margin-left: 5px;
    max-height: 450px;
    overflow: auto;
}

.catalog-filter-item {
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    background: rgb(255, 255, 255);
    padding: 15px 20px;
    margin-bottom: 15px;
}
.catalog-filter-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

label.checkbox-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}
.checkbox-item-label {
    line-height: normal;
}

.form_single_qual_section {
    display: flex;
    gap: 5px;
    align-items: center;
}

.form_single_qual_section > span{

    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
    color: #54575A;
}
a.calculate_my_href {
    font-family: Urbanist;
    font-size: 16px;
    font-weight: 400;
    color: #54575A;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    line-height: 1.5;
    width: 80%;
    background: white;
}
a.calculate_my_href:hover{
    color: white;
    background: #ad904c;
}





#masthead.fixeble_desktop{
    position: fixed;
    z-index: 9999;
    width: 100%;
    top: 0;
    box-shadow: 0px 4px 15px 0px #00000026;
}

#masthead.fixeble_desktop .header_sub_menu.desktop_block{
   display: none;
}
#masthead.fixeble_desktop .header_mini.desktop_mini{
   display: none;
}






.section_contractors_content_text_flex {
    margin-bottom: 55px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.section_contractors_content_ {
    padding-left: 35px;
    padding-right: 35px;
}

.section_contractors_content_zagalovok {
    color: #54575A;
    font-size: 18px;
    font-weight: 600;
    font-family: urbanist;
    padding-bottom: 25px;
}

.section_contractors_content_text {
    color: #54575A;
    font-size: 18px;
    font-weight: 400;
    font-family: urbanist;
    padding-bottom: 25px;
}
.section_contractors_content_text_flex img {
    max-height: 140px;
}
.section_contractors_content_text_flex_section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.section_contractors_content_text_flex_section_zagol {
    font-size: 24px;
    color: #54575A;
    font-weight: 600;
    font-family: urbanist;
}
a.btn_contractors_content {
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-align: center;
    background: #ad904c;
    color: white;
    box-sizing: border-box;
    border: 1px solid #ad904c;
    border-radius: 5px;
    text-transform: uppercase;
    display: block;
    padding: 8px 35px;
    width: fit-content;
}
a.btn_contractors_content:hover{
    opacity: 0.8;
}
.section_contractors_content_text_flex span {
    color: #54575A;
    font-size: 18px;
    font-weight: 400;
    font-family: urbanist;
}

.section_info_, .categories_ {
    margin: 55px 0;
}
.section_info_single {
    margin-bottom: 20px;
}
.section_info_single_title {
    font-size: 24px;
    font-weight: 600;
}
ul.section_info_single_list {
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 30px;
    margin-top: 15px;
}
ul.section_info_single_list li {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.8;
}
.categories_single{
    margin-bottom: 66px;
}
.categories_single_title {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 600;
}
.categories_single_content {
    margin-bottom: 25px;
}
.categories_single_pros_and_cons {
    margin-left: 25px;
    display: flex;
    padding: 25px;
    border: 1px solid #AD904C;
    flex-wrap: wrap;
    justify-content: space-between;
}
.categories_single_pros_and_cons > div {
    width: 45%;
}
.categories_single_pros_and_cons_title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
}
ul.categories_single_list {
    margin-left: 0;
    margin-bottom: 0;
    opacity: 0.8;
}
ul.categories_single_list li {
    margin-bottom: 10px;
    font-size: 18px;
}
.categories_single_subtitle {
    margin: 35px 0;
    font-size: 24px;
    font-weight: 500;
}


.dg_tabs {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 80px;
}
.dg_tab_title {
    font-size: 32px;
    font-weight: bold;
    color: #54575A;
    padding-bottom: 25px;
    border-bottom: 1px solid #D1D1D1;
}
.dg_tab_content {
    padding: 55px 0;
}

.section_contractors_content_text.dg_tab_t {
    padding-bottom: 55px;
}
.section_contractors_content_zagalovok.dg_tab_z {
    padding-bottom: 10px;
}


.section_faq_search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px 250px;
}

form.faq_search_form {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}


.temp_search {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
button.search_item_btn {
    display: flex;
    position: relative;
    padding: 0;
    border: 0;
    height: 44px;
    width: 44px;
    margin-left: -3px;
    cursor: pointer;
}
button.search_item_btn:before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/search_item_btn.png);
    background-size: 44px 44px;
}
input.search_faq {
    box-sizing: border-box;
    border: 1px solid rgba(126, 137, 153, 0.5);
    border-radius: 5px 0px 0px 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px 10px 15px;
    color: #7e8999;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    height: 44px;
    min-width: calc(300px - 44px);
}
select.category_faq_select {
    box-sizing: border-box;
    border: 1px solid rgba(126, 137, 153, 0.5);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 15px 10px 15px;
    color: #7e8999;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    text-align: left;
    height: 44px;
    min-width: 300px;
}


.dg_tab.disable{
    display: none;
}


.header_main_image{
    width: 100%;
}

.dg_section_resources {
    display: flex;
    gap: 50px;
    position: relative;
    padding-top: 90px;
    flex-direction: row;
}
.dg_section_resources_navigation {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 130px;
    height: fit-content;
}

.dg_section_resources_navigation a {
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.13);
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    min-width: 350px;
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 15px;
    font-weight: 400;
}

.dg_section_resources_navigation a.active {
    background: rgb(173, 144, 76);
    color: white;
}

.dg_section_resources_navigation a:hover{
    background: rgb(173, 144, 76);
    color: white;
}


.dg_section_resources_navigation a:after {
    content: "";
    width: 9px;
    height: 16px;
    background: url('data:image/svg+xml,<svg width="9" height="17" viewBox="0 0 9 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.894406 16.5785C0.778514 16.5785 0.665231 16.5441 0.568885 16.4797C0.472539 16.4153 0.397458 16.3238 0.353136 16.2167C0.308814 16.1096 0.297243 15.9918 0.319886 15.8781C0.342529 15.7645 0.398369 15.6601 0.480344 15.5782L7.28855 8.76995L0.480344 1.96175C0.37361 1.85124 0.314551 1.70323 0.315886 1.5496C0.317221 1.39597 0.378844 1.249 0.487481 1.14037C0.596119 1.03173 0.743079 0.970107 0.89671 0.968772C1.05034 0.967437 1.19835 1.0265 1.30886 1.13323L8.53152 8.35589C8.64136 8.46577 8.70307 8.61477 8.70307 8.77014C8.70307 8.92551 8.64136 9.07452 8.53152 9.1844L1.30886 16.4071C1.25442 16.4615 1.1898 16.5046 1.11869 16.534C1.04758 16.5635 0.971366 16.5786 0.894406 16.5785Z" fill="black"/></svg>');
    background-size: 9px 16px;
    display: inline-block;
}
.dg_section_resources_navigation a:hover:after{
    background: url('data:image/svg+xml,<svg width="9" height="17" viewBox="0 0 9 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.894406 16.5785C0.778514 16.5785 0.665231 16.5441 0.568885 16.4797C0.472539 16.4153 0.397458 16.3238 0.353136 16.2167C0.308814 16.1096 0.297243 15.9918 0.319886 15.8781C0.342529 15.7645 0.398369 15.6601 0.480344 15.5782L7.28855 8.76995L0.480344 1.96175C0.37361 1.85124 0.314551 1.70323 0.315886 1.5496C0.317221 1.39597 0.378844 1.249 0.487481 1.14037C0.596119 1.03173 0.743079 0.970107 0.89671 0.968772C1.05034 0.967437 1.19835 1.0265 1.30886 1.13323L8.53152 8.35589C8.64136 8.46577 8.70307 8.61477 8.70307 8.77014C8.70307 8.92551 8.64136 9.07452 8.53152 9.1844L1.30886 16.4071C1.25442 16.4615 1.1898 16.5046 1.11869 16.534C1.04758 16.5635 0.971366 16.5786 0.894406 16.5785Z" fill="white"/></svg>');
}

.dg_section_resources_navigation a.active:after{
    background: url('data:image/svg+xml,<svg width="9" height="17" viewBox="0 0 9 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.894406 16.5785C0.778514 16.5785 0.665231 16.5441 0.568885 16.4797C0.472539 16.4153 0.397458 16.3238 0.353136 16.2167C0.308814 16.1096 0.297243 15.9918 0.319886 15.8781C0.342529 15.7645 0.398369 15.6601 0.480344 15.5782L7.28855 8.76995L0.480344 1.96175C0.37361 1.85124 0.314551 1.70323 0.315886 1.5496C0.317221 1.39597 0.378844 1.249 0.487481 1.14037C0.596119 1.03173 0.743079 0.970107 0.89671 0.968772C1.05034 0.967437 1.19835 1.0265 1.30886 1.13323L8.53152 8.35589C8.64136 8.46577 8.70307 8.61477 8.70307 8.77014C8.70307 8.92551 8.64136 9.07452 8.53152 9.1844L1.30886 16.4071C1.25442 16.4615 1.1898 16.5046 1.11869 16.534C1.04758 16.5635 0.971366 16.5786 0.894406 16.5785Z" fill="white"/></svg>');
}


.dg_section_resources_content_main {
    padding-left: 50px;
    border-left: 10px solid rgb(173, 144, 76);
}
.dg_section_resources_content_title {
    color: rgb(84, 87, 90);
    font-family: Fraunces;
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
}
.dg_section_resources_content_subtitle {
    color: rgb(84, 87, 90);
    font-family: Urbanist;
    font-size: 18px;
    font-weight: 400;
}

.dg_section_resources_content_anchor p {
    margin-bottom: 0;
}
.dg_section_resources_content_sub_main{
    padding-left: 50px;
}
.dg_section_resources_content_anchor {
    margin-bottom: 50px;
    padding-top: 100px;
    margin-top: -100px;
    -webkit-background-clip: content-box;
    background-clip: content-box;
}

.dg_section_resources_content_sub_main ul{
    margin: 0;
}

.dg_section_resources_content_sub_main ul li ul{
    margin: 0;
}


.section_title_blog_title {
    font-family: Cormorant;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 28.8px;
    text-align: left;
    color: #AD904C;
    width: fit-content;
}

.section_title_blog {
    margin-bottom: 55px;
}

.section_title_blog_subtitle {
    font-family: Fraunces;
    font-size: 64px;
    font-weight: 300;
    text-align: left;
    margin: 0;
    color: #54575A;
    text-transform: uppercase;
    line-height: normal;
}
.section_content_blog_list {
    display: flex;
    flex-wrap: wrap;
    gap: 55px 25px;
}

.section_content_blog_list_content {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section_content_blog_list_content_img{
    width: 400px;
    height: 280px;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.section_content_blog_list_content .title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #54575A;
    margin-top: 10px;
    margin-bottom: 0;
}

.section_content_blog_list_content .content {
    font-family: Urbanist;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}

.section_content_blog_list_content a.more {
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    color: #AD904C;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-family: Urbanist;
}

.section_content_blog_list_content a.more:after{
    content: '';
    width: 6px;
    height: 10px;
    background-image: url(/wp-content/themes/e-comm-floors/assets/images/arrow_brow_right.png);
    background-size: 6px 10px;
}

.section_content_blog_list_content a.more:hover{
    opacity: 0.8;
}




.vide_content_setion {
    margin: 25px 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    gap: 25px;
}

.vide_content_setion_line {
    min-width: calc(33% - 25px);
}
.vide_content_setion_line_frame {
    height: 313px;
}


.section_page_template_loads{
    position: relative;
}


.brands_list_loop {
    margin-bottom: 15px;
}
.brands_list_loop span {
    color: #444444;
}
.brands_list_loop span st {
    font-weight: bold;
}



.widthquantcarton_sections_prices {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.widthquantcarton_sections_prices > p.price{
    margin: 0 !important;
}



.widthquantcarton_sections_prices p {
    margin: 0;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
    gap: 6px;
}


.widthquantcarton_sections_prices > p > .woocommerce-Price-amount {
    font-weight: bold;
    font-size: 1.25rem;
}






@media screen and (max-width: 1390px) {
    .header_main #nav_heder_desk {
        max-width: 600px;
    }
    .latest_collections_home_crope{
        height: 920px;
    }
    .content_visualizer_sections{
        margin: 0 30px;
    }


    .title_category_main_content h1{
        line-height: normal;
        font-size: 56px;
    }


}

@media screen and (max-width: 1300px) {
    .header_main #nav_heder_desk {
        max-width: 400px;
    }
    .section_contractors_search_item {
        width: calc(33% - 25px);
    }
    .section_contractors_single_project {
        width: calc(33% - 15px);
    }
}





@media screen and (max-width:1000px) {

    .form_carpet_tile_qual_section{
        margin: 0 25px;
        flex-direction: column;
    }
    .form_single_qual_checkbox_section {
        margin: 0 25px;
    }
    .form_single_qual_section_messagense{
        margin: 0 25px;
    }
    .form_sheet_vinyl_qual_section {
        margin: 0 25px;
        flex-direction: column;
    }

    .qt_dg_boxes_actions_section{
        margin: 0 25px;
    }

    /*.product_gallery_wrap{
        height: 100%;
    }*/

    .widthquantcarton_sections_prices {
        margin: 0 25px;
    }

    .comments_table_list{
        flex-direction: column;
    }

    .header_main_search {
        min-width: auto;
    }
    .section_page_template_loads {
        height: 150px;
    }


    .choose_floor_form_header_second{
        margin: 55px 0;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }

    .categories_single_pros_and_cons {
        margin-left: 0;
        padding: 10px;
    }
    .categories_single_pros_and_cons > div {
        width: 100%;
    }

    select.category_faq_select, .temp_search{
        min-width: 100%;
    }
    input.search_faq{
        min-width: calc(100% - 44px);
    }
    

    .category_home_img {
        background-size: auto 100% !important;
    }

    article{
        padding: 50px 25px;
    }


    .template_about_content {
        display: block;
    }

    .template_about_content form.form_contact_us input, .template_about_content form.form_contact_us textarea{
     
        border-radius: 30px;
    }

    .template_about_content form.form_contact_us .form_contact_submit{
        width: 100%;
        text-align: center;
        border-radius: 5px;
    }

    .template_contact_us_content_{
        display: flex;
        flex-direction: column-reverse;
    }


    .section_contractors_single_project {
        width: calc(50% - 15px);
    }

    .section_contractors_search_result_single {
        margin-bottom: 85px;
    }

    .section_contractors_single_content{
        display: flex;
        justify-content: flex-start;
        gap: 20px;
        padding: 10px;
        border: none;
        flex-wrap: wrap;
    }
    .section_contractors_single_content_image img {
        border-radius: 80px;
        background: white;
        border: 1px solid #ad904c8c;
        max-width: 100px;
        padding: 3px;
    }

    .section_contractors_search_item {
        width: calc(50% - 25px);
        padding: 20px 15px;
    }
    .section_page_template {
        margin: 50px 25px;
    }

    .section_contractors {
        margin: 50px 25px;
    }

    .comments_table_list_content {
        max-width: 100%;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs{
        padding: 0 25px;
        overflow: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        
    }
    
    .woocommerce div.product .woocommerce-tabs ul.tabs a{
        width: max-content;
    }
    .woocommerce div.product .woocommerce-tabs .panel{
        margin: 0 25px;
        margin-bottom: 50px;
    }


    .related.products{
        margin: 0 25px;
    }


    .section_contractors_search_result_single_heading, .section_contractors_single_projects_title{
        font-size: 24px;
        line-height: normal;
    }


    .single_product_top_subtitle, .single_product_top_title, .single_product_top_after_title, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .product_view_section .summary.entry-summary form.cart button, .form_single_qual_section{
        margin: 0 25px;
    }
    .section_want_it_installed{
        margin-top: 50px;
        margin-left: 25px;
        margin-right: 25px;
    }



    .title_category_main_content{
        width: 100%;
    }
    p.title_category_main_content_out{
        padding: 50px 25px;
        width: 100%;
        background: none;
    }

    span.whish_click_ico:hover {
        background: #bdb8ac;
        border: 0.5px solid #bdb8ac;
    }
    span.whish_click_ico.remove {
        background: #ad904c;
        border: 0.5px solid #ad904c;
    }

    .woocommerce span.onsale.onsale_single{
        left: 0;
    }

    .content_brands_sections {
        padding-bottom: 50px;
    }
    .content_visualizer_sections {
        position: relative;
        height: 450px;
        margin: 0;
        padding: 0 25px;
    }

    .content_visualizer_sections_imgs_crop {
        height: 220px;
        width: 100%;
        background-position: top;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
    }

    .content_visualizer_sections_img {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        position: relative;
        gap: 30px;
        width: 100%;
    }
    .content_visualizer_sections_img img {
        max-height: 550px;
        margin-top: -10px;
    }
    .content_visualizer_sections_title_title{
        font-size: 34px;
    }
    .content_visualizer_sections_title_sub_title{
        font-size: 16px;
    }

    .content_visualizer_sections_app {
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 25px;
    }


    .woocommerce-page div.product div.summary {
        width: 100%;
    }
    
    .section_contractors > h1 {
        font-size: 34px;
        line-height: normal;
    }




    .mobil_mini{
        display: flex;
    }
    .desktop_mini{
        display: none;
    }
    .header_mini {
        padding: 0 25px;
        flex-wrap: wrap;
    }

    .mobil_flex{
        display: flex;
    }
    .desktop_flex{
        display: none;
    }
    .mobil_block{
        display: block;
    }
    .desktop_block{
        display: none;
    }

    .mobil_grid{
        display: grid;
    }
    .desktop_grid{
        display: none;
    }

    .header_main.mobil_flex {
        height: 46px;
        padding: 6px 16px;
        top: 80px;
        position: absolute;
        width: calc(100% - 50px);
        margin: 0 25px;
        border-radius: 1000px;
        backdrop-filter: blur(44px);
        display: flex;
        align-items: center;
        background: #fefefe;
        z-index: 5;
    }

    .header_main.header_main_no_first {
        position: relative;
        margin: 0;
        width: 100%;
        border-radius: 0;
        top: 0;
        padding: 10px 40px;
        padding-top: 35px;
        height: auto;
    }



    .header_main .header_main_logo{
        max-height: 34px;
    }

    .header_main .header_main_logo a{
        max-height: 34px;
    }

    .header_main .header_main_logo a img{
        max-height: 34px;
    }
    .footer_down{
        background: #ebe9e4;
        padding: 25px;
    }
    .footer_down > div {
        width: 40%;
    }
    .footer_down_block .heading{
        margin-bottom: 5px;
    }
    .footer_down_block ul li {
        margin-bottom: 2px;
    }
    .footer_down_block ul a {
        font-size: 14px;
    }


    .categories_home{
        padding: 0;
        margin: 20px 24px;
    }

    .categories_home img{
        width: 100%;
        box-sizing: border-box;
        border: 1px solid rgb(255, 255, 255);
        border-radius: 5px;
    }

    .categories_home_swiper_footer > img{
        width: 22px;
    }

    .category_home_footer_descr{
        -webkit-line-clamp: 3;
        width: 100%;
        font-size: 12px;
        font-weight: 400;
        text-align: left;
        color: #ACB5BB;
    }

    .latest_collections_home_content{
        padding: 26px 24px;
    }


    .latest_collections_home_content_title_block{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .latest_collections_home_content_title_block_left p:nth-child(1){
        font-size: 12px;
    }

    .latest_collections_home_content_title_block_left p:nth-child(2){
        font-size: 38px;
    }
    .latest_collections_home_content_href{
        width: 100%;
    }

    .latest_collections_home_content_href a{
        display: block;
        background: white;
        color: black;
    }


    /*.latest_collections_home_crope {
        height: 700px;
    } */

    .about_us_sections{
        padding: 26px 24px;
    }
    .about_us_section_title_first {
        display: none;
    }
    .about_us_section_title_second {
        width: 100%;
    }
    .about_us_section_title_second_sub_title{
        font-size: 18px;
    }
    .about_us_section_title_second_title{
        font-size: 45px;
    }
    .about_us_section_title_second_content{
        font-size: 14px;
    }
    .about_us_section_title_second_content_href a{
        font-size: 14px;
        padding: 15px 30px;
    }
    .about_us_sections_gallery{
        display: none;
    }

    .content_brands_sections_gallery img{
        height: auto;
    }
    .gallery_brands {
        margin-left: 25px;
        margin-right: 25px;
    }
    .content_brands_sections {
        padding-top: 50px;
    }



    .before_shop_loop_dg_content{
        justify-content: space-between;
        width: 100%;
    }
    
    .product_loop {
        margin: 0 25px;
        flex-wrap: wrap;
    }
    .before_shop_loop_dg {
        margin-bottom: 25px;
    }

    .product_loop_filter {
        width: 100%;
    }
    .product_loop_content {
        width: 100%;
    }



    .catalog-filter-item{
        box-shadow: 0px 4px 15px 0px #00000026;
        background: #F2F0EB;
    }



    .product-wrap-left{
        width: 100%;
        display: flex;
        flex-direction: row;
        position: relative;
    }

    .product-wrap-left .swiper-thumb .swiper-wrapper{
        display: flex;
        flex-direction: row;
        gap: 20px;
        transition-delay: 0ms;
    }
    .product_gallery_wrap .swiper-gallery {
        margin-left: 0;
    }
    .product_gallery_wrap .swiper-gallery22 {
        margin-left: 0;
    }
    .product_gallery_wrap .swiper-thumb{
        bottom: 0;
        top: auto;
        height: 50px;
    }
    .product_gallery_wrap .swiper-thumb{
        display: none;

    }

    .product_view_section{
        margin: 0;
    }




    .dg_section_resources{
        flex-direction: column;
    }

    .dg_section_resources_navigation{
        position: relative;
        top: auto;
    }
    .dg_section_resources_navigation a {
        width: 100%;
        min-width: auto;
        padding: 10px;
        text-align: center;
        display: block;
    }
    .dg_section_resources_navigation a:after{
        display: none;
    }

    .dg_section_resources_content_sub_main{
        padding-left: 5px;
    }
    .dg_section_resources_content_main{
        padding-left: 20px;
    }



    .dg_section_resources_content_title{
        font-size: 30px;
    }







    .category_home_footer{
        flex-direction: row;
        gap: 0;
    }


    .category_home_footer_href {
        width: auto;
    }



    .choose_floor_form_content > a {
        width: 100%;
        height: 65px;
    }
    .choose_floor_form_content > div {
        width: 100%;
        height: 65px;
    }
    span.choose_floor_input_img {
        top:-6px;
    }

    .u-column1.col-1.woocommerce-Address, .u-column2.col-2.woocommerce-Address{
        padding: 40px 30px;
       
    }
    .woocommerce-MyAccount-content form.dg_this{
        padding: 10px 30px 40px 10px;
        

    }

    .woocommerce form.login, .woocommerce form.register{
        padding: 10px 30px 40px 10px;
    }




    #leave_a_review .modal_arctic_title{
        font-size: 24px;
    }

    #leave_a_review.box-modal.modal_arctic{
        padding: 15px;
    }

    .template_title{
        font-size: 38.18px;
        font-weight: 300;
        line-height: 38.18px;
    }

    .template_content.content_flex.woocommerce {
        margin: 50px 25px;
    }

    .section_order_content_second{
        width: 100%;
        justify-content: center;

    }
    .section_order_content_first{
        width: 100%;
    }
    .section_order_content_image{
        width: 100%;
    }






    .section_contractors_content_text_flex span {
        font-size: 14px;
    }
    .section_contractors_content_text {
        font-size: 14px;
    }
    .section_contractors_content_zagalovok{
        font-size: 16px;
    }   
    .section_contractors_content_{
        padding-left: 0;
        padding-right: 0;
    }
    .section_contractors_content_text_flex{
        flex-wrap: wrap;
    }


    .dg_tab_title{
        font-size: 24px;
    }
    .dg_tabs {
        gap: 10px;
    }









    .woocommerce nav.woocommerce-pagination ul li span.current {
        background: none;
        color: #876e35;
    }
    .woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span{
        padding: 0;
    }
}

@media screen and (max-width:860px) {
    .section_contractors_search_text {
        width: 100%;
    }
    .section_contractors_search_item {
        width: 100%;
    }
    .section_contractors_single_project {
        width: 100%;
    }
    .section_title_blog_subtitle {
        font-size: 46px;
    }
    .section_title_blog_title {
        font-size: 20px;
    }
    .section_content_blog_list_content {
        width: 100%;
    }
    .section_content_blog_list_content_img{
        width: calc(100vw - 50px);
        height: 350px;
    }
}

@media screen and (max-width:500px) {
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product{
        width: 100%;
    }












}

@media screen and (max-width:500px) {
    .latest_collections_home_crope{
        height: 750px;
    }

    .content_visualizer_sections_title_sub_title {
        font-size: 12px;
    }
    .content_visualizer_sections_title_title {
        font-size: 24px;
    }



    .rating_review_images_content_new{
        width: 150px;
        height: 110px;
        padding: 16px 5px;
        justify-content: space-between;
    }
    span.rating_review_images_content_new_head{
        font-size: 14px;
    }
    .rating_review_images_content_new img{
        width: 25px;
        height: 25px;
    }
    span.rating_review_images_content_new_foot{
        font-size: 12px;
    }
    .rating_review_images_content_view{
        width: 150px;
        height: 110px;
    }
    .rating_review_images_content_view img{
        width: 150px;
        height: auto;
    }

    .choose_floor_input p{
        padding-left: 110px;
        text-align: left;
    }
    .template_title {
        font-size: 28px;
        font-weight: 300;
        line-height: 38.18px;
    }










    
    

}

