/**================== ROOT ==================**/
:root {
    --cl-main: rgb(1 99 50);
    --cl-main-hover:#000000;
    --cl-light-hover:#ffeceb;
    --cl-black: rgb(15 30 22);
    --cl-white: #ffffff;
    --cl-gray:#f2f2f2;
    --cl-light-gray:#d9d9d9;
    --cl-dark-gray: #8e8e8e;
    --cl-dark-red:#990a00;
    --cl-red:#c72528;
    --cl-yl:#f9f86c;
    --cl-green:#009739;
    --cl-blue:rgb(1 99 50);
    --cl-light-blue:#dbedf9;
    --cl-orange:#fa6400;
    --cl-dark-orange:#ff3102;
    --font-aws: FontAwesome;
}

body::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

body::-webkit-scrollbar
{
    width: 5px;
    background-color: #cedbff;
}

body::-webkit-scrollbar-thumb
{
    background-color: rgb(15 30 22);
}
body{
    font-family: var(--wd-header-el-font);
    overflow-x: hidden;
}
input, optgroup, select, textarea{
    -webkit-appearance: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0);
    -moz-box-shadow: inset 1px 1px 3px rgba(0,0,0,0);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,.0);
}

/**================== WOOCOMMERCE - MINI CART BOX ==================**/
.CR-mini-cart-box .CR-load-ajax:before{
    background-position: center;
}
.CR-show-mini-cart.hide{
    opacity: 0.5;
    pointer-events: none;
}
.CR-show-mini-cart.hide a{
    pointer-events: none;
}
.CR-show-mini-cart{
    position: relative;
}
.CR-show-mini-cart:hover .CR-mini-cart-box {
    opacity: 1;
    pointer-events: visible;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.CR-mini-cart-box{
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 1.25rem  /* 20/16 */;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.CR-mini-cart-box .CR-mini-cart-content{
    padding: 1rem  /* 16/16 */;
    width: 25rem  /* 400/16 */;
    background-color: var(--cl-white);
    border-radius: 1rem  /* 16/16 */;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 7%);
    border: 1px solid var(--cl-light-gray);
}
.CR-mini-cart-box .empty{
    font-size: 0.875rem  /* 14/16 */;
    font-style: italic;
    font-weight: 700;
    color:var(--cl-black);
    line-height: normal;
    margin: 0 auto;
    display: block;
    text-align: center;
}
.CR-mini-cart-box .mini-cart-head{
    margin-bottom: 1rem  /* 16/16 */;
}
.CR-mini-cart-box .mini-cart-head *{
    font-size: 0.875rem  /* 14/16 */;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}
.CR-mini-cart-box .mini-cart-head .total-mini-cart {
    color: var(--cl-black);
}
.CR-mini-cart-box .mini-cart-head .view-all {
    color: var(--cl-blue);
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
}
.CR-mini-cart-box .mini-cart-list{
    max-height: 28.125rem  /* 450/16 */;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.75rem;
}
.CR-item-mini-cart{
    width: 100%;
}
.CR-item-mini-cart:not(:last-child){
    margin-bottom: 1rem  /* 16/16 */;
}
.CR-item-mini-cart .wrap{
    cursor: pointer;
}
.CR-item-mini-cart .thumb img{
    max-width: 6.25rem  /* 100/16 */;
    border-radius: 1rem  /* 16/16 */;
    border-style: none;
    vertical-align: middle;
    height: auto;
}
.CR-item-mini-cart .cont{
    flex: 1;
    height: 100%;
    position: relative;
    padding: 0 1.5rem 0 1rem;
}
.CR-item-mini-cart .title{
    font-size: 0.875rem /* 14/16 */;
    font-weight: 700;
    line-height: 1.25rem  /* 20/16 */;
    margin: 0;
    color: var(--cl-black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 2.5rem  /* 40/16 */;
    width: 100% !important;
    word-break: break-word;
}
.CR-item-mini-cart .sub-title *{
    font-size: 0.875rem /* 14/16 */;
    font-weight: 400;
    line-height: normal;
    margin: 0;
    color: var(--cl-black);
}
.CR-item-mini-cart .sub-title .variation{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.CR-item-mini-cart .sub-title dd:not(:last-child):after {
    content: '/';
    margin: 0 0.25rem;
}
.CR-item-mini-cart .sub-title dt{
    display: none;
}
.CR-item-mini-cart .qty{
    font-size: 0.875rem  /* 14/16 */;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    color: var(--cl-black);
}
.CR-item-mini-cart .price{
    display: inline-block;
    margin-top: 0.5rem;
}
.CR-item-mini-cart .CR-woo-prices *{
    font-size: 1.1rem;
}
.CR-item-mini-cart .CR-woo-prices .percentage{
    display: none;
}
.CR-item-mini-cart .CR-remove-item-mini-cart-btn:hover {
    background: var(--cl-black);
    color: var(--cl-white);
}
.CR-item-mini-cart .CR-remove-item-mini-cart-btn {
    position: absolute !important;
    top: 0;
    right: 0;
    font-size: 0.875rem /* 14/16 */;
    font-weight: 500;
    line-height: normal;
    margin: 0;
    color: var(--cl-black);
    width: 1.5rem;
    height: 1.5rem;
    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;
    border-radius: 0.15rem;
    background: transparent;
}


.page_news {
    padding: 60px 0;
}

.page_news ul.list_tax {
    justify-content: flex-start;
    margin: 0 0 40px 0;
}

ul.list_tax {
    padding-right: 128px;
}

ul.list_tax a {
    font-size: 18px;
    color: #333333;
    margin-left: 34px;
    display: inline-flex;
    align-items: center;
}

.page_news ul.list_tax a {
    margin: 0 30px 0 0;
}

ul.list_tax a.active {

}

ul.list_tax a span {
    width: 0;
    height: 1px;
    transition: .3s all;
    background-color: #0e882d;
    margin-right: 10px;
    display: inline-block;
}

ul.list_tax a.active span {
    width: 33px;
}
.list_news {
    flex-wrap: wrap;
    display: flex;
    margin: 0 -10px 30px -10px;
}

.item_news {
    position: relative;
    width: calc(calc(100% / 3) - 20px);
    box-shadow: 0 0 20px rgb(0 41 74 / 10%);
    border-radius: 5px;
    background-color: #ffffff;
    padding: 15px 15px 30px 15px;
    box-sizing: border-box;
    margin: 0 10px 20px 10px;
}

.item_news.style_1 {
    width: calc(calc(calc(100% / 3) + calc(100% / 3)) - 20px);
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
}

.item_news a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100%;
    z-index: 3;
}

.item_news>a {
    z-index: 9;
}

.item_news.style_1>* {
    width: 50%;
    margin: 0;
}

.item_news.style_1 .box_img {
    height: 100%;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.item_news .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: .3s all;
}

.item_news.style_1 .box_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item_news:hover .box_img img {
    transform: scale(1.2);
}

.item_news.style_1>*.box_content {
    padding: 0 50px 0 20px;
    box-sizing: border-box;
}

.item_news .box_content {
    display: flex;
    flex-wrap: wrap;
}

.item_news .box_content .date_post {
    position: relative;
    background: transparent;
    width: 60px;
    padding: 0;
    /* border-right: 1px solid #e1e1e1; */
    border-radius: unset;
    text-align: left;
    top: unset;
    left: unset;
}

.item_news .box_content .date_post:before {
    position: absolute;
    width: 2px;
    height: 56px;
    background: #e1e1e1;
    right: 0;
    top: 0;
    content: '';
}

.item_news .box_content .date_post .date {
    font-size: 38px;
    line-height: 1;
}

.item_news .date_post * {
    color: #6f6f6f !important;
}

.text_bold {

}

.item_news .box_content .month_year {
    font-size: 11px;
}

.item_news .box_content .info {
    width: calc(100% - 61px);
    box-sizing: border-box;
    padding-left: 18px;
}

.item_news.style_1>*.box_content h3 {
    margin-bottom: 50px;
}

.item_news .box_content .info h3 {
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;

}

.item_news.style_1>*.box_content .content {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}

.item_news.style_1>*.box_content .content a {
    display: none;
}

.item_news span {
    font-size: 14px;
    display: inline-flex;
    margin-top: 30px;
    align-items: center;
}

.item_news span svg {
    transform: scale(.5);
}

.item_news.style_1>*.box_content h3 {
    margin-bottom: 50px;
}

.item_news .box_img {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

ul.thenativePagination {
    list-style: none;
    margin: 30px 0 0 0;
    display: flex;
    justify-content: center;
}

li.thenativePaginationEnd, li.thenativePaginationStart {
    display: none !important;
}

ul.thenativePagination a {
    width: 38px;
    height: 38px;
    border: 1px solid #e1e1e1;
    display: inline-block;
    border-radius: 50%;
    color: #999999;
    font-size: 16px;
    line-height: 38px;
    margin: 0 5px;
    text-align: center;
}

li.thenativePaginationPrev {
    transform: rotate(180deg);
}

ul.thenativePagination svg {
    width: 12px;
    height: auto;
    fill: #999999;
}

ul.thenativePagination li.active a {
    color: rgb(1 99 50);
    border-color: rgb(1 99 50);
}
.page_news ul.list_tax {
    justify-content: flex-start;
    margin: 0 0 40px 0;
    list-style: none;
}
ul.list_tax {
    padding-right: 128px;
}
.display_flex {
    display: flex;
}
section.section.post_details.news_details {
    overflow: unset;
}

.post_details {
    padding: 60px 0;
}

section.section.post_details.news_details .wrap_content {
    padding: 40px;
    box-shadow: 0 0 13px rgb(0 0 0 / 11%);
    background-color: #ffffff;
    margin-right: 30px;
}

section.section.post_details.news_details .wrap_content .heading_h2 {
    font-size: 40px;
    margin-bottom: 25px;

}

section.section.post_details.news_details .date {
    display: flex;
    font-size: 13px;
    opacity: .8;
    margin-bottom: 10px;
}

section.section.post_details.news_details .date svg {
    width: 12px;
    transform: translateY(-2px);
    margin-right: 5px;
}

.section.post_details .content {
    font-size: 14px;
    color: #333333;
    line-height: 26px;
    font-family: var(--wd-header-el-font);
}

b, strong {

}

ul {
}

.section.post_details .content ul {
    list-style: disc;
    margin: 0 0 1.5em 3em;
}

.nav {
    margin: 30px 0 0 0;
    padding-top: 23px;
    border-top: 1px solid rgba(166, 166, 166, 0.23);
}

.display_flex {
    display: flex;
}

.nav .share {
    align-items: center;
}

.nav .share h3 {
    margin: 0 20px 0 0;
    font-size: 14px;
    color: #3f3f3f;

}

.nav .share a {
    display: inline-block;
    width: 26px;
    height: 26px;
    opacity: .6;
    border-radius: 50%;
    border: 1px solid #333333;
    transition: .5s all;
    text-align: center;
    margin-right: 3px;
}

.nav .share a svg {
    width: 12px;
    fill: #333333;
    transition: .5s all;
}

section.section.post_details .side_bar {
    padding-left: 10px;
}

section.section.post_details .side_bar>*:first-child {
    margin-top: 0;
}

.service_related h3 {
    font-size: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(215, 215, 215, 0.51);
    margin: 0;
    text-transform: uppercase;

}

ul.list_cat {
    list-style: none;
    margin: 15px 0 0 0;
}

ul.list_cat li:not(:last-child) {
    border-bottom: 1px solid #d7d7d7;
}

ul.list_cat li a {
    font-size: 15px;
    color: #333333;
    display: block;
    padding: 15px 0;
    transition: .5s all;
}

.service_related.sroll {
    position: sticky;
    top: 150px;
}

.service_related {
    margin-top: 40px;
}

.service_related h3 {
}

.service_related .item {
    padding: 15px 0;
    border-bottom: 1px solid #d7d7d7;
    position: relative;
    display: flex;
}

.service_related .item .box_img {
    width: 135px;
    height: 90px;
    flex: 0 0 auto;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 12px;
}

section.section.post_details .service_related .item .box_img {
    width: 135px;
    height: 90px;
}

section.section.post_details .service_related .item h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 13px;
    height: 36px;
}

section.section.post_details.news_details .service_related .item h4 {
    margin-bottom: 10px;
}

.service_related .item h4 {
    color: #333333;
    font-size: 13px;
    margin-top: 13px;
    transition: .5s all;
}

section.section.post_details .service_related .date {
    font-size: 12px;
}

section.section.post_details.news_details .service_related .date svg {
    transform: translateY(-3px);
}
h2.heading_h2.text_center {
    text-align: center;
    text-transform: uppercase;
}
.wd-header-nav a {
    position: relative;
    padding: 0 !important;
    margin: 0 10px;
}

.wd-header-nav a:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    background-color: var(--wd-primary-color);
}


.wd-header-nav a:hover:before {
    width: 100%;
}

.wd-nav>li.current-menu-item>a:before {
    width: 100%;
}
.main-page-wrapper {
    max-width: 1240px;
    margin: -40px auto 0;
    /*overflow-x: hidden;*/
}

ul.products.columns-3 {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.woo-variation-swatches .woo-variation-raw-select {
    display: block !important;
    border: none;
    border-bottom: 1px solid var(--wd-form-brd-color);
    padding: 0;
}

.product-grid-item ul.archive-variable-items.wvs-style-squared.variable-items-wrapper.mixed-variable-items-wrapper {
    display: none;
}


a.wvs_archive_reset_variations_link {
    display: block;
    text-align: center;
    width: 100%;
    color: #3f3f3f;
    vertical-align: middle;
    font-size: 12px;
}

a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button.wvs_ajax_add_to_cart,a.button.wp-element-button.product_type_variable.add_to_cart_button.wvs-add-to-cart-button {
    padding: 12px 20px;
    font-size: 13px;
    line-height: 18px;
    background-color: #F3F3F3;
    color: #3E3E3E;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    border-radius: 0;
    box-shadow: none;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: none;
    letter-spacing: .3px;
    font-weight: 600;
    cursor: pointer;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
    border-radius: var(--btn-shop-brd-radius);
    color: var(--btn-shop-color);
    box-shadow: var(--btn-shop-box-shadow);
    background-color: var(--btn-shop-bgcolor);
    margin-bottom: calc(-1 * var(--btn-shop-bottom-active));
    flex: 1 1 auto;
    border-radius: 0 !important;
}
li.filter_image {
    width: 50%;
    float: left;
    height: 55px;
    display: inline-block;
    align-items: center;
    margin-bottom: 10px !important;
}

li.filter_image  img {
    max-height: 45px;
    width: auto;
    margin: auto;
    display: block;
}

.filter_image
a.term-label {
    display: inline-block;
}

.yith-wcan-filters .yith-wcan-filter {
    display: inline-block;
    width: 100%;
}

li.filter_image.checkboxactive {
    opacity: .5;
}

.yith-wcan-filters .yith-wcan-filter .filter-items a {}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item:not(.filter_image) label a {
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-size: 14px;
    align-items: center;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item:not(.filter_image) label input {
    display: none;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item .item-count {
    padding-right: 5px;
    padding-left: 5px;
    min-width: 30px;
    height: 20px;
    border: 1px solid rgba(119,119,119,0.2);
    border-radius: 35px;
    color: #777;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item:hover .item-count {
    color: #FFF;
    background-color: var(--wd-primary-color);
    border-color: var(--wd-primary-color);
}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item .item-count {}

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item:not(.filter_image).checkboxactive label .item-count {
    color: #FFF;
    background-color: var(--wd-primary-color);
    border-color: var(--wd-primary-color);
}
ul.page-numbers a,ul.page-numbers span {
    display: inline-block;
    box-sizing: content-box;
    padding-right: 5px;
    padding-left: 5px;
    min-width: 22px;
    height: 34px;
    color: #2d2a2a;
    font-weight: 600;
    font-size: 14px;
    line-height: 34px;
    transition: all .2s ease;
    font-size: 14px !important;
    box-sizing: border-box;
    line-height: 32px !important;
    padding: 0 14px !important;
    font-weight: 700 !important;
    border: none !important;
}

a.next.page-numbers {
    display: none !important;
}

.woocommerce-pagination li {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
    margin: 0 !important;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
    color: #FFF;
    font-weight: 600;
    background-color: var(--wd-primary-color);
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 50px;
}
.product-grid-item span.price {
    font-size: 14px !important;
    color: var(--wd-primary-color) !important;
}

.product-grid-item {
    margin-bottom: 40px !important;
}
table.variations tr {
    display: flex;
}
ul.products.columns-4 {
    display: flex;
    flex-wrap: wrap;
}

section.related.products {
    padding-top: 40px !important;
    padding-bottom: 40px;
    position: relative;
}

section.related.products .product-grid-item {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 25%;
    max-width: 25%;
}

section.related.product ul.products.columns-4 {
    margin: 0 -20px !important;
}

section.related.products ul.products.columns-4 {
    margin: 0 -20px;
}

section.related.products:before {
    height: 1px;
    width: 100vw;
    background: rgba(119,119,119,0.2);
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.price{
    color: var(--wd-primary-color) !important;
}
.wrap_title {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
}

.wrap_title .right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 70px;
    background-color: #FFF;
    box-shadow: 0 0 2px rgba(0,0,0,0.12);
    transition: all .3s ease;
    width: 110px;
}
.grid-container {
    max-width: 1260px;
}

nav.woocommerce-breadcrumb {
    margin-left: 20px !important;
}
.woocommerce-mini-cart__buttons .btn-cart {
    border-radius: var(--btn-default-brd-radius);
    color: var(--btn-default-color);
    box-shadow: var(--btn-default-box-shadow);
    background-color: var(--btn-default-bgcolor)
}

.woocommerce-mini-cart__buttons a {}

p.woocommerce-mini-cart__buttons.buttons a {
    border-radius: var(--btn-default-brd-radius);
    color: var(--btn-default-color);
    box-shadow: var(--btn-default-box-shadow);
    background-color: var(--btn-default-bgcolor);
    padding: 13px 20px;
}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
    float: left;
}

p.woocommerce-mini-cart__buttons.buttons {
    padding: 0 20px;
}

.cart-widget-side .woocommerce-mini-cart__total {
    padding: 10px 20px !important;
    display: flex;
    border: 1px solid rgba(119,119,119,0.2) !important;
}

.cart-widget-side .woocommerce-mini-cart .mini_cart_item {
    padding: 10px 20px !important;
}

.woocommerce-mini-cart .remove:after {
    display: none;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
    right: 0;
    left: unset;
}
.wd-logo img[src$=".svg"]{
    width: 100%;
}
.woocommerce-account .woocommerce-MyAccount-navigation .view-account-name {
    padding: 20px 20px 0 20px;
    margin: 0;
}
body {
    font-family: sans-serif;
}

.total-price--box.d-flex.align-items-end {
    align-items: center !important;
}
header.entry-header {
    display: none;
}
section#banner_gr {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.wa__cs_info {
    display: none;
}

.wa__sq_button {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.wa__btn_w_icon .wa__btn_txt {
}

.wa__button {
    min-height: 50px;
    width: auto !important;
    border-radius: 0;
}

.wa__btn_w_icon .wa__btn_txt .wa__btn_title {
    font-size: 14px;
    text-transform: uppercase;
}
.wd-add-btn.wd-add-btn-replace {
    width: 100%;
}

.product-grid-item .wa__button {
    width: 100% !important;
}
div#loadpage {
     /*pointer-events: none;*/
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    overflow: hidden;
    background-size: cover;
    transition: 1s all ease-in-out;
}

div#loadpage .mask {
    background-color: #fff;
    transition: 1s all ease-in-out;
    position: absolute;
    width: 100%;
    height: 100%;
}

div#loadpage.hidden .mask {
    background-color: transparent;
}
div#loadpage.hidden{
    pointer-events: none;
}
div#loadpage .mask span {
    display: block;
    width: 100%;
    height: 20%;
    position: absolute;
    left: 0;
    transition: 1s all ease-in-out;
    background-color: rgb(15 30 22);
}

div#loadpage .mask span:nth-child(even) {
    left: unset;
    right: 0;
}

div#loadpage .mask span:nth-child(1) {
    top: 0;
}

div#loadpage .mask span:nth-child(2) {
    top: 20%;
}

div#loadpage .mask span:nth-child(3) {
    top: 40%;
}

div#loadpage .mask span:nth-child(4) {
    top: 60%;
}

div#loadpage .mask span:nth-child(5) {
    top: 80%;
}

#loadpage.hidden {
    opacity: 0;
    visibility: hidden;
}

div#loadpage.hidden .mask span {
    width: 0;
}

.logo-loadpage svg {
    position: absolute;
    max-width: 450px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.logo-loadpage svg .layer1 path {
    fill-opacity: 0;
    stroke-opacity: 0;
    stroke-width: 1;
    stroke-miterlimit: 10;
}

.logo-loadpage svg #layer3 path,
.logo-loadpage svg rect {
    opacity: 0;
}

.logo-loadpage svg #layer3 path {
    stroke: transparent;
}

.logo-loadpage svg.animate .layer1 path {
    stroke-opacity: 1;
}

.logo-loadpage svg.active .layer1 path {
    stroke-dasharray: 8000;
    stroke-dashoffset: 8000;
    fill-opacity: 1;
    stroke-opacity: 0;
    -webkit-transition: all 3s ease;
    transition: all 3s ease;
}

.logo_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 400px;
    height: auto;
}
.logo_footer {
    max-width: 230px !important;
}
a.button.product_type_variable.add_to_cart_button.add-to-cart-loop {
    margin: 0;
    padding: 0.618em 1em;
}
.wd-add-btn-replace .add-to-cart-loop {
    padding: 0.618em 1em;
    margin: 0;
}
.wrap_version .item {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

a.style_center.max {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.wrap_version {
    margin: auto;
    box-shadow: 0px 6px 10px rgba(0,0,0,0.35);
}

.wrap_version .item {
    padding: 10px 40px;
    margin: 0;
    font-size: 18px;
    transition: .3s all;
}

.wrap_version .item:not(:last-child) {
    border-bottom: 1px solid #33333338;
}

.wrap_version .item:not(.title) b {
    color: #016332;
}

.wrap_version .item:not(.title) .num {
    font-size: 14px;
}

.wrap_version .item:hover {
    box-shadow: 0px 0px 10px rgb(1 99 50 / 46%);
}
.product_page .container {
    max-width: 95vw;
}

.product_page {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-top: 40px;
}

.sidebar-container.right {
    order: 3;
}
.yith-wcan-filters .yith-wcan-filter .price-slider .irs-handle {
    border: 4px solid #0f1e16;
    background-color: #0f1e16;
}

.yith-wcan-filters .yith-wcan-filter .price-slider .irs-bar {
    background: #018547;
}

.yith-wcan-filters .yith-wcan-filter .price-slider .irs-from, .yith-wcan-filters .yith-wcan-filter .price-slider .irs-to, .yith-wcan-filters .yith-wcan-filter .price-slider .irs-single {
    background-color: #018547 !important;
}

.yith-wcan-filters .yith-wcan-filter .price-slider .irs-from:before, .yith-wcan-filters .yith-wcan-filter .price-slider .irs-to:before, .yith-wcan-filters .yith-wcan-filter .price-slider .irs-single:before {
    border-top: 5px solid #018547;
}
.top_bar {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background: #018848;
}

.top_bar .content {
    color: white;
    font-size: 14px;
    height: 30px;
    display: flex;
    align-items: center;
}
.whb-main-header {
    padding-top: 30px;
}
.whb-main-header {
    position: fixed !important;
}
.clock-container {
    margin: 0 20px 0 4px;
}
.wpgs-nav>button {
    position: absolute;
    top: unset;
    bottom: 0;
    transform: translateY(calc(100% + 20px));
    left: 20px;
}

.wpgs-nav>button.slick-next {
    left: unset;
    right: 20px;
}
.logo_header {
    max-width: unset !important;
    height: 100px !important;
    width: auto !important;
    max-height: unset !important;
}

.whb-general-header-inner {
    height: 110px !important;
    max-height: 110px !important;
}
.whb-header {
    margin-bottom: 40px;
    padding-top: 140px !important;
}
.wpcf7 form.sent .wpcf7-response-output:before {
    position: unset;
    margin: 10px;
}
.CR-checkout-thankyou--order.outofstock_button {
    display: flex;
    justify-content: flex-start;
}

.CR-checkout-thankyou--order.outofstock_button a {margin: 0;border-radius: 0;}
div#CR-checkout-thankyou-page .socials {
    text-align: center;
}

div#CR-checkout-thankyou-page .socials ul {
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-bottom: 30px;
}

div#CR-checkout-thankyou-page .socials ul a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cl-blue);
    border-radius: 50%;
    fill: var(--cl-blue);
    margin: 0 5px;
    transition: .5s all;
}

div#CR-checkout-thankyou-page .socials ul a:hover {
    background: var(--cl-blue);
    fill: white;
}

div#CR-checkout-thankyou-page .socials ul a svg {
    max-width: 20px;
}

div#CR-checkout-thankyou-page .socials h3 {
    text-transform: uppercase;
    color: rgb(1 99 50);
    font-size: 18px;
}
#CR-checkout-thankyou-page .download_product{
    text-align: center;
    margin-bottom: 50px;
}
#CR-checkout-thankyou-page .download_product h4{
    text-transform: uppercase;
    color: rgb(1 99 50);
    font-size: 30px;
    margin-bottom: 10px;
}
.download_product a {
    font-weight: 700;
    text-align: center;
    color: var(--cl-black);
    font-size: 18px;
    display: block;
}
.CRitem_cart_pop.cart_item .content {
    display: flex;
    padding: 10px 45px 10px 15px;
    border-bottom: 1px solid #d0d0d0;
}

.CRitem_cart_pop.cart_item .content .thumb {
    width: 65px;
    flex: 0 0 auto;
    margin-right: 10px;
}

.box_qty_price {
    display: flex;
    align-items: center;
}

.box_qty_price p {
    margin: 0;
}

.box_qty_price p:nth-child(2) {
    margin: 0 5px;
}

.CRitem_cart_pop.cart_item .content h4.product_name {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: 500;
}

.CRbtn_remove_pd {
    position: absolute;
    top: 6px;
    right: 10px;
}

.CRbtn_remove_pd svg {
    width: 11px;
    height: auto;
}

.CRitem_cart_pop.cart_item {
    position: relative;
}

.total_pop_cart {
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.total_pop_cart span.woocommerce-Price-amount.amount {
    font-weight: 600;
    font-size: 20px;
}

.total_pop_cart strong {
    color: #2d2a2a;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
}
.product-wrapper .single_add_to_cart_button {
    box-sizing: border-box;
    width: 100% !important;
    flex: unset;
    margin: 0 12px;
}
.product-wrapper .woocommerce-variation-description{
    display: none;
}
.product-wrapper .variations_form .nta-woo-products-button{
    display: none;
}
.slick-prev,
.slick-next{
    z-index: 9 !important;
}.clock-container {
     text-transform: uppercase;
 }
.site-content {
    margin: 0 !important;
}
.woocommerce nav.woocommerce-pagination {
    position: relative;
    z-index: 9;
}
.empt {
    padding: 20px;
}

.empt h4 {
    font-size: 15px;
}
.cart-widget-side .widget_shopping_cart{
    margin: 0;
}
.CR-update-row.CR-update-pass-account-box {
    margin-top: 20px;
}
.woocommerce-lost-password .woocommerce {
    justify-content: center;
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.woocommerce-lost-password .woocommerce-message {
    height: auto;
    border-radius: 20px;
}


.woocommerce-edit-address .woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-edit-address p#billing_address_1_field {
    width: 100%;
}

.woocommerce-edit-address p#billing_address_2_field {
    width: 100%;
}

.woocommerce-edit-address p#billing_city_field {
    width: 50% !important;
}



button.button[name="save_address"] {
    padding: 11px 28px;
    font-size: 14px;
    line-height: 20px;
    background-color: #018446;
    border-color: #018446;
    color: #fff;
    border-radius: 100px;
    margin-top: 30px;
}
.woocommerce-Address {
    padding: 20px;
    border: 1px solid #333;
    margin: 0 10px;
    width: calc(50% - 20px) !important;
    box-sizing: border-box !important;
    flex: unset !important;
    border-radius: 20px;
}
.woocommerce-account:not(.logged-in) .woocommerce {
    display: block;
    min-height: unset;
}
.woocommerce-account:not(.logged-in) .woocommerce>*
{
    width: 100%;
    text-align: center;
}

.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form.woocommerce-form-login.login {
    max-width: 600px;
    margin: auto;

}

.woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form.woocommerce-form-login.login>* {
    width: 100% !important;
}
.u-column2.col-2.woocommerce-Address:last-child {
    display: none;
}
.woocommerce-MyAccount-content .form-row {
    width: 100% !important;
}

button.woocommerce-Button.button[name="save_account_details"] {
    border-radius: 1rem /* 16/16 */;
    height: 3.4375rem /* 55/16 */;
    width: 100%;
    padding: 0 1.25rem /* 20/16 */;
    background-color: var(--cl-black) !important;
    color: var(--cl-white) !important;
    border: none !important;
    cursor: pointer;
    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;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    outline: none !important;
}
form.woocommerce-ResetPassword.lost_reset_password p.woocommerce-form-row.woocommerce-form-row--first.form-row.form-row-first {
    width: 100%;
}

form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button.button {
    border-radius: 1rem /* 16/16 */;
    height: 3.4375rem /* 55/16 */;
    width: 100%;
    padding: 0 1.25rem /* 20/16 */;
    background-color: var(--cl-black) !important;
    color: var(--cl-white) !important;
    border: none !important;
    cursor: pointer;
    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;
    -webkit-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    outline: none !important;
    width: 100%;
}

form.woocommerce-ResetPassword.lost_reset_password .form-row {
    width: 100% !important;
}
.page-template-contact form br {
    display: none;
}

.page-template-contact form p {
    margin: 0;
}
span.wpcf7-spinner {
    position: absolute;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: var(--btn-shop-bgcolor);
}
.elementor-17994 .elementor-element.elementor-element-736fccbe .elementor-icon-list-item:hover .elementor-icon-list-text {
    color: #017f43 !important;
}

.elementor-17994 .elementor-element.elementor-element-736fccbe .elementor-icon-list-item:hover .elementor-icon-list-icon i {
    color: #017f43 !important;
}
footer .elementor-widget.elementor-list-item-link-full_width a{
    transition: .3s all !important;
}
footer .elementor-widget.elementor-list-item-link-full_width a:hover {
    color: #017f43;
}
footer .elementor-heading-title {
    color: #018748 !important;
}
.CR-box-input .icon {
    font-family: sans-serif, FontAwesome, sans-serif;
    opacity: .5;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    padding-left: 1rem;
}
.CRdef-form-wrap .CR-def-input {
    padding-left: 2.4rem;
}
.single_add_to_cart_button:after {
    position: absolute !important;
    top: 50% !important;
}
@media only screen and (min-width: 991px){
    .yith-wcan-filters-opener{
        display: none !important;
    }
}
@media only screen and (max-width: 1600px){
    .archive.woocommerce div.product{
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
@media only screen and (max-width: 767px) {
    section {
        overflow: hidden;
    }

    .main-page-wrapper {
        overflow-x: hidden;
        padding-top: 0 !important;

    }
    .logo_center {
        max-width: 250px;
    }
    .logo_footer{
        margin-bottom: 20px;
    }
    .Banner-Element {
        height: auto;
    }

    .elementor-heading-title {
        font-size: 30px !important;
    }



    .elementor-10935 .elementor-element.elementor-element-157ebdb5 > .elementor-widget-container,
    .elementor-10935 .elementor-element.elementor-element-15a7c318 > .elementor-widget-container{
        margin: 0 !important;
    }
    button.btn.btn-primary.yith-wcan-filters-opener.enhanced {
        width: 100%;
        margin: 20px 0;
    }

    nav.woocommerce-breadcrumb {
        margin-top: 10px !important;
    }
    .yith-wcan-filters-opener:hover ,
    .yith-wcan-filters.filters-modal .main-modal-button{
        background: #0f1e16 !important;
        border-color: #0f1e16 !important;
        color: white !important;
    }
    .wa__btn_w_icon .wa__btn_txt .wa__btn_title {
        font-size: 12px;
    }

    .wa__btn_w_icon .wa__btn_icon {
        width: 25px;
    }

    .wa__btn_w_icon .wa__btn_txt {
        font-size: 12px;
        padding: 16px 20px 15px 48px;
    }
    .woocommerce span.onsale{
        display: none;
    }
    .wpgs-nav .slick-prev,.wpgs-nav .slick-next{
        display: none !important;
    }
    h1.product_title.entry-title {
        font-size: 25px;
    }
    h1.product_title.entry-title {
        font-size: 25px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        justify-content: flex-start;
        overflow: auto;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        font-size: 14px;
        width: max-content;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        margin: 0 10px;
    }

    section.related.products .product-grid-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .list_news>* {
        width: 100% !important;
    }

    .page_news ul.list_tax a {
        width: max-content;
    }

    .page_news ul.list_tax {
        overflow: auto;
    }

    .item_news.style_1 {
        flex-wrap: wrap;
    }

    .item_news.style_1>* {
        border-radius: 0 !important;
        width: 100% !important;
        height: auto !important;
    }

    .item_news.style_1 {
        border-radius: 0 !important;
    }

    .item_news.style_1>*.box_content {
        padding: 20px;
    }
    section#banner_gr {
        margin-top: 0 !important;
    }
    section.section.post_details.news_details .wrap_content .heading_h2 {
        font-size: 23px;
    }

    section.section.post_details.news_details .wrap_content {
        margin-right: 0;
        padding: 20px;
    }

    .section.post_details .content {
        text-align: justify;
    }

    .service_related {
        margin-top: 30px !important;
    }
    ul.list_cat {
        padding-left: 0;
    }
    .Banner-Element {
        height: auto !important;
    }

    .product-grid-item .product-wrapper:hover .fade-in-block {
        display: none !important;
    }
    .wd-hover-base .content-product-imagin {
        margin-bottom: 0 !important;
    }
    .archive.woocommerce div.product {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .product_page{
        padding-top: 0;
    }
    .top_bar .content {
        font-size: 12px;
    }
    .clock-container {
        margin-right: 10px;
        background: #0000008f;
        padding: 0 10px;
        border-radius: 8px;
        color: white;
        border: 1px solid #0000008f;
    }
    .top_bar .content>span{
        display: none;
    }
    .whb-general-header-inner {
        height: 60px !important;
        max-height: 60px !important;
    }
    .whb-header{
        padding-top: 90px !important;
    }
    .CR-checkout-thankyou--order .content--box {
        padding: 20px;
        font-size: 20px;
        line-height: 1.5;
    }
    .CR-custom-checkout--content.d-flex.flex-wrap>* {
        width: 100% !important;
        padding: 0 20px !important;
    }
    .CR-custom-cart--form.d-flex.flex-wrap>* {
        width: 100% !important;
        padding: 0 20px;
    }

    .CR-custom-cart-page .CR-custom-cart--heading .main-title {
        text-align: center;
    }
    .total-price--box.d-flex.align-items-end {
        width: 100%;
    }

    .total-price-qty--box.d-flex.align-items-center.justify-content-between {
        flex-wrap: wrap;
    }
    .woocommerce-account .woocommerce>* {
        width: 100%;
        margin: 0 20px !important;
    }
    .CR-item-order .CR-item-product-order {
        width: 100%;
    }
    .woocommerce form .form-rowp,#billing_postcode_field, p#billing_phone_field {
        width: 100% !important;
    }


    p#billing_postcode_field, p#billing_phone_field {
        width: 100% !important;
    }

    .woocommerce form .form-row {
        width: 100% !important;
    }
    .woocommerce-account:not(.logged-in) .woocommerce form.woocommerce-form.woocommerce-form-login.login {
        max-width: 100% !important;
        box-sizing: border-box;
        margin: 0 35px !important;
        width: auto !important;
    }

    .woocommerce-account:not(.logged-in) .woocommerce>* {
        margin: 0 0 20px !important;
    }

    .woocommerce form .form-row label {
        text-align: left !important;
    }
    .woocommerce-Address {
        width: 100% !important;
        margin: 0 0 20px !important;
    }

    .woocommerce .col2-set, .woocommerce-page .col2-set {
        margin: 0 !important;
    }
}

