ul,
ol.pure{
    margin: 0;
    padding: 0;
    list-style: none;
}

a{
    text-decoration: none !important;
}
textarea:focus, input:focus{
    outline:none;
    border-color: var(--primary) !important;
}
a:hover,
a:focus {
    outline: none !important;
}
textarea{
    height: 150px !important;
}
.btn-primary{
    border: 1px solid var(--primary);
    background-color: var(--primary);
    border-radius: 10px;

}
.btn-primary:hover{
    border: 1px solid var(--primary-hover);
    background-color: var(--primary-hover);
    border-radius: 5px;
}
img {
    max-width: 100%;
    height: auto;
}
p{
    line-height: 1.8;
}


.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.wrap,.relative{
    position: relative;
}
.dir_rtl{direction: rtl !important}
.dir_ltr{direction: ltr !important}
.list-ltr > *{
    margin-right: 15px;
}
.list-rtl > *{
    margin-left: 15px;
}
.list-1 li {
    line-height: 2;
    font-weight: 500;
    margin-bottom: 10px;
}
.list-1 li > i{
    margin-left: 5px;

}

.list_rtl > *{margin-left: 10px}
.list_ltr > *{margin-right: 10px}

.title > *{
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}
.title.with-right-border{
    padding-right: 15px;
}
.title.with-right-border:before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}
.title.with-left-border:before {
    right: auto;
    left: 0;
}
.title.with-top-border::before {
    content: '';
    right: auto;
    left: auto;
    position: relative;
    display: block;
    background-color: var(--primary);
    width: 5em;
    height: 6px;
    margin: 0 auto 10px;
}

.animated {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform,opacity;
}

.btn-link {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    outline: none !important;
    padding: 0;
    cursor: pointer;
}


.theme-dropdown .dropdown_list {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    z-index: 380;
    margin: 0;
    padding: 10px 0;
    text-align: right;
    background-color: #FFF;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, -webkit-transform .2s ease;
    -webkit-transform: translateY(15px) translateZ(0);
    transform: translateY(15px) translateZ(0);
    pointer-events: none;
}
.theme-dropdown.on_hover:hover > .dropdown_list ,
.theme-dropdown.opened .dropdown_list {
    visibility: visible;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    pointer-events: visible;
    pointer-events: unset;
}
.theme-dropdown.opened > a,
.theme-dropdown.opened > a > * {
    color: var(--primary-hover) !important;
}

.theme-dropdown .dropdown_list
.dropdown-item{
    padding: 7px 15px;
}
/************ owl carousel - theme ************/
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;

}
.owl-nav .owl-prev i{
    margin-left: 85px;
    font-size: 20px !important;
}
.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 17px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}
.owl-theme .owl-nav [class*=owl-]:hover {

    color: #FFF;
    text-decoration: none
}
.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background:#ffbf86;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary)
}

/************ General ************/

.page-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    background: var(--primary);
    height: 100%;
    width: 250px;
    z-index: 3100;
    box-shadow: none;
    border-left: none;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}
.page-sidebar.left{
    right: auto;
    left: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
}
.page-sidebar.active{
    box-shadow: 0 1px 3px #ccc;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.page-sidebar .sidebar_menu_horizontal{
    padding: 20px 10px;
}
.quantity {
    position: relative;
}

.quantity input[type=number]::-webkit-inner-spin-button,
.quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity input[type=number] {
    -moz-appearance: textfield;
}
.quantity input {
    width: 45px;
    height: 42px;
    line-height: 1.65;
    float: left;
    display: block;
    padding: 0 20px 0 0;
    margin: 0;
    border: 1px solid #eee;
}
.quantity input:focus {
    outline: 0;
}
.quantity-nav {
    float: left;
    position: relative;
    direction: ltr;
    border: 1px solid #eee;
    border-left: 0;
}
.quantity-nav > div {
    background: #fff;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
}
.quantity-nav > div:first-child {
    border-bottom: 1px solid #eee;
}

body.with-sidebar-active > .page-wrap {
    z-index: 2000;
}
body.with-sidebar-active > .page-wrap:before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #22222254;
    z-index: 3000;
}
.page-sidebar_wrap {
    position: relative;
    padding: 15px;
    overflow-y: auto;
    font-size: 14px;
}
.page-sidebar_wrap .title{
    font-size: 17px;
    margin-bottom: 15px;
    display: block;
    width: 100%;
}
.page-sidebar_wrap #btn-close {
    position: absolute;
    cursor: pointer;
    top: 6px;
    left: 15px;
    transition: all 0.5s;
    width: 23px;
    height: 23px;
    background: var(--primary);
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: #fff;
    font-size: 12px;
    align-items: center;
    justify-content: center;
}

#shop_mini_cart.page-sidebar{
    width: 80%;
    max-width: 400px;
    overflow-y: auto;
    z-index: 999999;
    background: var(--white);
}
body #shop_mini_cart .woocommerce-mini-cart {
    margin:0;
    padding-right:0;
    list-style:none
}

#shop_mini_cart .btn-hover-primary{
    background: var(--primary-hover) !important;
    border: 1px solid var(---primary-hover) !important;
    color: var(--white) !important;
}
#shop_mini_cart .current-btn{
    background: var(--back-light) !important;
    border: 1px solid var(--back-dark) !important;
    color: var(--primary-hover) !important;
}

#shop_mini_cart .button{
    font-size: 13px;
    border-radius: 10px;
    
}
#shop_mini_cart .button:hover{
    color: #fff !important;
    background: var(--primary);
}
body #shop_mini_cart .woocommerce-mini-cart li {
    display:flex;
    flex-wrap:wrap;
    margin-bottom:30px;
    padding:0 0 30px;
    border-bottom:1px solid #ebebeb;
}
body #shop_mini_cart .woocommerce-mini-cart li .image {
    flex: 0 0 30%;
    max-width: 60px;
}
body #shop_mini_cart .woocommerce-mini-cart li .image img {
    width: 100%;
    max-width:100px;
    height: auto;
    border-radius: 10px;
    border:2px solid var(--back-dark);
}
@media only screen and (max-width:575px) {
    .woocommerce #shop_mini_cart  .woocommerce-mini-cart li .image {
        flex:1 0 50px
    }
}
body #shop_mini_cart .woocommerce-mini-cart li .content {
    position:relative;
    flex: 0 0 calc(100% - 80px);
    padding-right:15px
}
body #shop_mini_cart .woocommerce-mini-cart li .content .title {
    color:var(--text-dark);
    font-weight:400;
    font-size: 14px;
}
body #shop_mini_cart .woocommerce-mini-cart li .content .title:hover {
    color:#ea1b25
}
body #shop_mini_cart .woocommerce-mini-cart li .content .quantity-price {
    font-size:14px;
    display:block;
    margin-top:10px
}
body #shop_mini_cart .woocommerce-mini-cart li .content .quantity-price .amount {
    color:#ea1b25;
    font-weight:500;
    font-size:18px
}
body #shop_mini_cart .woocommerce-mini-cart li .content .remove {
    line-height:1.5;
    position:absolute;
    top:0;
    left:0;
    padding:0 3px;
    color:var(--primary);
    font-size:18px
}
body #shop_mini_cart .woocommerce-mini-cart li .content .remove:hover {
    color:#eb2606;
}
@media only screen and (max-width:575px) {
    .woocommerce #shop_mini_cart .woocommerce-mini-cart li .content {
        flex:1 0 calc(100% - 75px)
    }
}
body #shop_mini_cart .woocommerce-mini-cart li:last-child {
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:0
}
body #shop_mini_cart .woocommerce-mini-cart__total.total {
    position: relative;
    padding: 15px;
    font-size: 13px;
}
body #shop_mini_cart .foot .buttons{

    align-content: end;
    display: flex;

    float: right;
    width: calc(49% - 10px);
}

body #shop_mini_cart .foot .buttons a {
    display: block;
    text-transform: capitalize;
    font-weight: 500;
    border:2px solid var(--back-light);
    font-size: 13px;
    margin-right: 20px;
    border: none;
    color: var(--primary);
    box-shadow: none;
    padding: 10px 15px;
    line-height: 26px;
    border: none;
    background: var(--back-dark);
    border-radius: 10px;
    margin-bottom: 15px
}
body #shop_mini_cart .foot .buttons .current-btn{
    background: var(--back-dark);
    color: var(--primary);
    border:2px solid var(--back-light);
}
body #shop_mini_cart .foot .buttons .current-btn:hover{
    background: var(--primary);
    color: #fff !important;
}
body #shop_mini_cart .foot .buttons a:hover{
    background: var(--primary);
    color: #fff !important;
}
/************ Header ************/
#page_header {
    position: relative;
    z-index: 2;
}
.header-top .right_message p{
    margin-bottom: 0;
}
.header-top .social_list a {
    font-size: 15px;
    color: #fff;
    padding: 5px 2px;
    line-height: 1;
}
.header-top .social_list a:hover,
.header-top .social_list a:focus{
    color: var(--primary-hover);
}

#page_search_overlay{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}
#page_search_overlay.active{
    display: block;
    z-index: 1;
}
#box-search .search_ajax{
    position: relative;
    z-index: 15;
    width: 750px !important;
    /* gradient shining border */
    border-style: solid;
    border-width: 3px;
    -webkit-border-image: -webkit-linear-gradient(
            left,
            rgba(0,0,0,1) 1%,
            rgba(0,255,255,1) 50%,
            rgba(0,0,0,1) 100%
    ) 0 0 100% 0/0 0 3px 0 stretch;
    -moz-border-image: -moz-linear-gradient(
            left,
            rgba(0,0,0,1) 1%,
            rgba(0,255,255,1) 50%,
            rgba(0,0,0,1) 100%
    ) 0 0 100% 0/0 0 3px 0 stretch;
    -o-border-image: -o-linear-gradient(
            left,
            rgba(0,0,0,1) 1%,
            rgba(0,255,255,1) 50%,
            rgba(0,0,0,1) 100%
    ) 0 0 100% 0/0 0 3px 0 stretch;
    border-image: linear-gradient(
            to left,
            rgba(0,0,0,0) 1%,
            rgba(84,148,33,1) 50%,
            rgba(0,0,0,0) 100%
    ) 0 0 100% 0/0 0 3px 0 stretch;
}
#box-search .wra-search{
    padding-top: 140px;
}
#box-search .search_ajax input[type="text"] {

    min-width: 650px;
    max-width: 100%;
    width: 100%;
    height: 46px;
    font-size: 13px;

    border-radius:var(--radius);
    border: none;
    color: #fff;
    background-color: transparent !important;
    box-shadow: none;
    vertical-align: middle;
    transition: border-color .5s ease;
}
#box-search .search_ajax .theme-dropdown {
    position: absolute;
    top: 2px;
    left: 52px;
    bottom: 2px;

}
#box-search .search_ajax .theme-dropdown > a {
    display: flex;
    align-items: center;
    padding-right: 15px;
    padding-left: 15px;
    width: 172px;
    height: 100%;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    color: #777;
    text-transform: uppercase;
    font-size: 13px;
}
#box-search .search_ajax .theme-dropdown > a > span {
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#box-search .search_ajax .theme-dropdown > a::after {
    margin-right: 8px;
    font-size: 18px;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
}
#box-search .search_ajax .theme-dropdown .dropdown_list {
    width: 190px;
    padding: 12px 20px;
    background-color: #FFF;
    box-shadow: 0 0 3px rgba(0,0,0,0.15);
    scrollbar-width: thin;
}
#box-search .search_ajax .theme-dropdown .dropdown_list li {
    position: relative;
}
#box-search .search_ajax .theme-dropdown .dropdown_list li a {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #848484;
    font-size: 14px;
    line-height: 1.3;
}
#box-search .search_ajax .btn-submit {
    position: absolute;
    top: 0;
    left: 0px;
    bottom: 0;
    padding: 0;
    width: 55px;
    line-height: 45px;
    border: none;
    border-radius: 10px 0px 0px 10px;
    background: transparent !important;
    color: var(--primary-hover);
    font-weight: 400;
    font-size: 0;
    cursor: pointer;
}
#box-search .search_ajax .btn-submit:before {
    position: absolute;
    top: 50%;
    right: 50%;

    margin-top: -9px;
    margin-right: -9px;
    opacity: 0;
    transition: opacity .1s ease;
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1px solid #888;
    border-left-color: #000;
    border-radius: 50%;
    vertical-align: middle;
}
#box-search .search_ajax.processing .btn-submit:before {
    visibility: visible;
    opacity: 1;
    transition: opacity .2s ease,visibility .2s ease;
    -webkit-animation: wd-rotate 450ms infinite linear;
    animation: rotate 450ms infinite linear;
}
#box-search .search_ajax .btn-submit:after{
    content: "\e920";
    font-family: 'icon-site' !important;
    font-size: 30px;
    transition: opacity .2s ease;
}
#box-search .search_ajax.processing .btn-submit:after{
    content: '';
}
#box-search .search_ajax .search_result {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 0;
    border: 0px solid var(--border-color);
    background-color: var(--main-bg) !important;
    border-top: 0;
}
#box-search .search_ajax .search_result.opened {
    height: auto;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
    max-height: 290px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f0f1f7;
    /*! display: none; */

}
#box-search .search_ajax .search_result > p.no-items {
    padding: 15px;
    margin: 0;
    position: relative;
    width: 100%;
    display: block;
    font-size: 15px;
    color: #999;
}
#box-search .search_result{
    overflow: hidden;
}
#box-search .search_result .product {
    border-bottom: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
}
#box-search .search_result .suggestion_wrap {
    padding: 15px;
    cursor: pointer;
    transition:.25s ease;
    border: 1px solid var(--border-color);
    background-color: var(--main-bg);
    position: relative;
    height: 100%;
    width: 100%;
}
#box-search .search_result .suggestion_wrap:hover {
    background-color:var(--primary);
    color: #fff !important;
}
.suggestion_wrap:hover .suggestion-title ,
.suggestion_wrap:hover .suggestion-sku,
.suggestion_wrap:hover .suggestion-price ,
.suggestion_wrap:hover .suggestion-price .amount


{
    color: #fff !important;
}
#box-search .search_result .suggestion-thumb {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 65px;

}
#box-search .search_result .suggestion-thumb img{
    border-radius: 10px;
}

#box-search .search_result .suggestion-title {
    margin-bottom: 0;
    font-size: 14px;
    word-wrap: break-word;
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 300;
    position: relative;
}

#box-search .search_result .suggestion-price,
#box-search .search_result .suggestion-sku {
    margin-top: 10px;
    line-height: 1;
}
#box-search .search_result .suggestion-sku {
    color: #747474;
    font-size: 12px;
}
#box-search .search_result .suggestion-price .amount{

    color: var(--primary);
}
#box-search .search_result .view-all-results {
    text-align: center;
    padding: 15px;
    font-size: 15px;
    cursor: pointer;
}


#page_header .buttons-col .user-login-head a {
    font-size: 13px;
    padding: 10px 10px;
    position: relative;
    color: var(--text-light);

}
#page_header .buttons-col .user-login-head i {
    font-size: 30px;

    padding-left:1px;
    position: relative;
    padding-right: 0px;
    vertical-align: middle;
}
#page_header .buttons-col a i {
    font-size: 30px;
    /*! padding-right: 12px; */

    font-weight: 400;
}
#page_header .buttons-col .user-login-head{
    background: var(--primary) !important;
    display: flex !important;
    align-items: center !important;
    border-radius: var(--radius);
    padding: 0px !important;
    border: none !important;
    height: 45px;
    width: 45px;


}
#page_header .buttons-col .user-login-head:hover{
    background: var(--primary) !important;
}
#page_header .buttons-col .search_wrap:hover{
    background: var(--primary) !important;
    color: #fff !important;
}
#page_header .buttons-col .user-login-head:hover a , #page_header .buttons-col .user-login-head:hover i ,
#page_header .buttons-col .search_wrap:hover i
{
    color: #fff !important;
}
#page_header .cart{
    background: var(--back-light);
    align-items: center;
    display: flex;
    padding: 9px;
    border-radius: var(--radius);
    height: 45px;
    width: 45px;

}
header .cart:before{
    background: var(--primary);
}
header .cart:hover i{
    color: var(--white) !important;
}
#page_header .search_wrap{
    border: 2px solid var(--back-light);
    align-items: center;
    display: flex;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    height: 45px;
    width: 45px;
    border-radius: var(--radius);
}
header .search_wrap:before{
    background: var(--primary);
}
header .phone-header{
    font-size: 18px;
    background: var(--primary) !important;
    padding: 10px 10px;
    border-radius: var(--radius);
    color: #fff !important;

}
header .phone-header:hover{
    background: var(--primary-hover) !important;
}
header .phone-header span strong{
    font-size: 20px;
    padding-left:10px;
}
header .phone-header i{
    vertical-align: middle;
    font-size: 30px;
    transform: rotateY(180deg) !important;
}
header .phone-header .icon-phone-call:before{

}
#page_header .search_wrap i{
    color: var(--primary) !important;
    font-size: 30px !important;
    text-align: center;

    display: flex;
    align-content: center;

}
#page_header .cart-subtotal .amount{
    display: none;
}
#page_header .cart i{
    color: var(--primary);
    font-size: 30px !important;
}
#page_header .buttons-col .user-login-head p{
    display: inline-block;
    margin-bottom: 0px;


}

.account-dropdown {
    position: relative;
    display: inline-block;
}
.account-dropdown button {
    text-shadow: none;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    overflow: hidden;
    font-weight: 400;
    padding: 0;
    background: transparent;
    color: #fff;
    display: block;
    border: 0;
    text-decoration: none;
}
.account-dropdown button button:hover {
    color: #ea1b25;
}
.account-dropdown button i.fa-user {
    font-size: 14px;
    color: #333;
    margin-left: 3px;
}
.account-dropdown button i.fa-angle-down {
    margin-right: 5px;
    color: #999;
}
.account-dropdown ul.dropdown_list {
    position: absolute;
    left: 0;
    top: 100%;
    text-align: right;
    margin: 0;
    border: 0;
    background: #fff;
    border-radius: 0;
    padding: 0 20px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,.1);
    margin-top: 10px;
}
.account-dropdown ul.dropdown_list li {
    border-bottom: 1px solid #eee;
    display: block;
    margin: 0;
}
.account-dropdown ul.dropdown_list li a {
    padding: 9px 0;
    line-height: 28px;
    display: block;
    text-transform: capitalize;
    font-weight: 300;
    height: inherit;
    border-radius: 0;
    font-size: 13px;
    color: #666;
}
.account-dropdown li:after {
    content: "";
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.4);
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: -18px;
}
body.navigation-fixed .header-navigation {
    background-color: #0330b5;
    -webkit-box-shadow: 0 3px 18px rgba(2,21,78,9%);
    -khtml-box-shadow: 0 3px 18px rgba(2,21,78,9%);
    -moz-box-shadow: 0 3px 18px rgba(2,21,78,9%);
    -ms-box-shadow: 0 3px 18px rgba(2,21,78,9%);
    -o-box-shadow: 0 3px 18px rgba(2,21,78,9%);
    box-shadow: 0 3px 18px rgba(2,21,78,9%);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
}




.flower-header{

    margin: 0;
    z-index: 150;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
}
.flower-header img{
    top: 0px;

}

.header_logo_col img{
    width: 100px;
}
.header_logo_col a:before{
    content: "";
    background: url(../img/flower-logo.png);
    top: -91px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 110px;
    height: 45px;
}
.header_logo_col a{
    position: relative;
    text-align: center;
    display: block;
    margin: auto;
}
.header_logo_col .title{
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
    font-weight: 800;
}
.header_logo-wrap img {
    max-height: 80px;
    max-width: inherit;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}
.header-menu {
    display: -ms-flexbox;
    display: flex;
}
.header-menu li {
    position: relative;
    list-style: none;
    margin-left: 15px;
    padding: 8px;
}
.header-menu > li > a {
    font-size: 15px;
    font-weight: 400;
    position: relative;
    padding: 0;

    color: var(--white);
}
.header-menu > li > a:hover {
    color: var(--sec) !important;
}
.header-menu  .sub-menu li a:before {
    content: '';
    width: 24px;
    height: 3px;
    background-color: var(--primary-hover);
    -webkit-transition: .3s cubic-bezier(.24,.74,.58,1);
    -khtml-transition: .3s cubic-bezier(.24,.74,.58,1);
    -moz-transition: .3s cubic-bezier(.24,.74,.58,1);
    -ms-transition: .3s cubic-bezier(.24,.74,.58,1);
    -o-transition: .3s cubic-bezier(.24,.74,.58,1);
    transition: .3s cubic-bezier(.24,.74,.58,1);
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -khtml-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    right: -60px;
    opacity: 0;

}
.header-menu  .sub-menu li a:before{
    width: 10px;
}
.header-menu > li:hover > a:before{
    right:-35px;
    opacity: 1;
}
.header-menu > li.menu-item-has-children > a:after {
    content: "+";
    margin-left: 3px;
    display: inline-block;
    vertical-align: top;
    position: relative;
    top: 1px;
}
.header-menu .sub-menu{
    position: absolute;
    background: #fff;
    padding: 26px 0;
    top: 100%;
    right: 0;
    margin-top: 0;
    margin-bottom: 0;
    min-width: 230px;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 8px 63px rgba(58,66,104,.14);
    -khtml-box-shadow: 0 8px 63px rgba(58,66,104,.14);
    -moz-box-shadow: 0 8px 63px rgba(58,66,104,.14);
    -ms-box-shadow: 0 8px 63px rgba(58,66,104,.14);
    -o-box-shadow: 0 8px 63px rgba(58,66,104,.14);
    box-shadow: 0 8px 63px rgba(58,66,104,.14);
    -webkit-transition: all 220ms linear 0ms;
    -khtml-transition: all 220ms linear 0ms;
    -moz-transition: all 220ms linear 0ms;
    -ms-transition: all 220ms linear 0ms;
    -o-transition: all 220ms linear 0ms;
    transition: all 220ms linear 0ms;
    -webkit-border-radius: 0 0 5px 5px;
    -khtml-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    clip: rect(1px,1px,1px,1px);
    -webkit-transform: scaleY(0);
    -khtml-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    transform-origin: 0 0 0;
    -webkit-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
    -o-transform-origin: 0 0 0;
}
#header_menu_horizontal .sub-menu{
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: var(--main-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);

    text-align: right;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(15px) translateZ(0);
    transform: translateY(15px) translateZ(0);
    transition: opacity .2s ease,visibility .2s ease,-webkit-transform .2s ease;
    transition: opacity .2s ease,visibility .2s ease,transform .2s ease;
    transition: opacity .2s ease,visibility .2s ease,transform .2s ease,-webkit-transform .2s ease;
}
#header_menu_horizontal .sub-menu .sub-menu{
    top: 0;
    right: 100%;
    -webkit-transform: translateX(-15px) translateZ(0);
    transform: translateX(-15px) translateZ(0);
}
#header_menu_horizontal li:hover > ul.sub-menu{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0) translateZ(0);
    transform: translateY(0) translateZ(0);
    pointer-events: initial;
}
.header-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    -webkit-border-radius: 0 3px 3px 3px;
    -khtml-border-radius: 0 3px 3px 3px;
    -moz-border-radius: 0 3px 3px 3px;
    -ms-border-radius: 0 3px 3px 3px;
    -o-border-radius: 0 3px 3px 3px;
    border-radius: 0 3px 3px 3px;
}
.header-menu li:hover > .sub-menu, .header-menu li.focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    clip: inherit;
    -webkit-transform: scaleY(1);
    -khtml-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
.header-menu .sub-menu li {
    display: block;
    padding: 0 32px;
    white-space: nowrap;
    margin: 0;
}
.header-menu  .sub-menu li a {
    display: block;
    color: #3a4268;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    padding: 9px 0;
    position: relative;
    border-bottom: 1px solid rgba(58,66,104,.11);
}
.header-menu  .sub-menu li:hover > a{
    color: #007cfb;
    padding-right: 18px
}
.header-menu  .sub-menu li:hover > a:before{
    right: 0;
    opacity: 1;
}
.header-menu  .sub-menu li.menu-item-has-children > a:after{
    content: "\f104";
    font-family: "font awesome 5 pro";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    -khtml-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    font-size: 18px;
}
.header-menu .sub-menu li:last-child > a {
    border-bottom: none;
}
.header_pages-col li > a {
    color: #333;
    display: block;
}
.header_pages-col li.active > a
.header_pages-col li:hover > a,
.header_pages-col li:focus > a{
    color: var(--primary) !important
}
.header_pages-col li:not(:last-child) > a {
    border-left: 1px solid #ddd;
    padding-left: 10px;
}



.sidebar_menu_tab {
    margin: 0;
    border-bottom: 1px solid rgba(129,129,129,.2);
    background-color: rgba(0,0,0,.04);
}
.sidebar_menu_tab > li {
    position: relative;
    flex: 1 0 50%;
    max-width: 50%;
}
.sidebar_menu_tab > li > a {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    font-size: 13px;
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0;
    font-weight: 900;

    color: #909090
}
.sidebar_menu_tab > li.active > a {
    color: #333;
    background-color: rgba(0,0,0,.05);
    border-color: var(--primary);
}
.sidebar_menu_tab > li a span {
    flex: 1 1 auto;
    padding: 18px 15px;
    text-align: center;
}
.sidebar-menu > ul:not(:first-child):not(.active) {
    display: none;
}
.sidebar-menu ul li{
    position: relative;
    display: block;
    max-width: 100%;
    width: 100%;
    border-bottom: 1px dashed rgba(76,175,80,1);
}
.sidebar-menu ul li > a {
    position: relative;
    display: flex;
    color: var(--white);
    flex: 1 1 0%;
    min-height: 40px;
    align-items: center;
    flex-direction: row;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
.sidebar-menu ul li > a:hover{
    color: var(--sec) !important;
}
.sidebar-menu ul .sub-menu li > a{
    color: var(--white);
}
.sidebar-menu ul .sub-menu li{
    background: var(--primary-hover);
}
.sidebar-menu .opener {
    position: absolute;
    top: 10px;;
    left: 0;
    background:var(--sec);
    border-radius: 5px;
    z-index: 1;
    color: #333;
    display: inline-flex;
    cursor: pointer;
    transition: color .25s ease,background-color .25s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    bottom: 0;
    width: 23px;
    height: 23px;
    align-items: center;
    border-right: 1px solid rgba(129,129,129,.2);
}
.sidebar-menu li.opened > .opener{
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff
}
.sidebar-menu .opener:before {
    content: "\f104";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    margin: 0 auto;
    font-size: 20px;
}
.sidebar-menu li.opened > .opener:before{
    content: "\f107";
}
.sidebar-menu .sub-menu {
    display: none;
    transition: unset !important;
}






/************ Product ************/


.product_details-col > .wrap {
    padding: 0px 65px;

}
.product_details-col .product_title {
    font-size: 35px;
    padding-right: 0;
    margin: 0 0 15px;
    line-height: 1;
    font-weight: 700;
}
.product_details-col .model-product{
    font-size: 20px;
    color: var(--primary-hover);
    font-weight: 700;

}
.product_details-col .product_meta li{
    line-height: 20px;
}
.product_details-col .product_meta p{
    line-height: 20px;
}
.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
    margin: 0 0 15px 0 !important;
    width: 100%;
}
.woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image img{
    width: 100%;

}
.woocommerce-product-gallery__image {
    margin: 0 0 15px 15px;
}
.woocommerce-product-gallery__image:first-child {
    margin-left: 0;
}

.woocommerce-product-gallery__wrapper .owl-nav{
    text-align: center;
}

.product .owl-nav .owl-next i:before , .product .owl-nav .owl-prev i:before{
    font-size: 40px !important;
}
.product .owl-nav .owl-next{
    left:-10px !important;
}
.product .owl-nav .owl-prev{
    right:-20px !important;
}
.product_meta .posted_in > a {
    position: relative;
    color: #082948;
    line-height: 1.5;
}
.product_meta .posted_in a:after {
    content: '';
    width: 2px;
    height: 6px;
    display: inline-block;
    background: var(--orange);
    margin-right: 7px;
    margin-left: 4px;
}
.woocommerce-product-details__short-description {
    margin: 15px auto;

}
.product_details .signweb-price-section{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: var(--back-light);
    padding: 14px 30px;
    margin: 0px;
    font-size: 22px;
    padding: 20px 30px 7px;
    border-radius: 10px 10px 0 0;
}
.product_details .cart{
    order: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--back-light);
    border-radius: 0px 0px 10px 10px;
    padding: 7px 30px 20px;
}
.woocommerce-product-details__short-description .title{
    color: var(--text-dark);
    font-weight: 600;
    padding-bottom: 5px;
}
.woocommerce-product-details__short-description li{
    line-height: 45px;
    display: flex;
}
.woocommerce-product-details__short-description li:before ,
.woocommerce-product-details__short-description p:before
{
    content: "\f1ce";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    font-size: 11px;
    color: var(--primary);
    padding-left:7px;
    vertical-align: middle;

}
.woocommerce-product-details__short-description p{
    line-height: 35px;
}

form.variations_form .variations{
   width: 50%;
    /*! margin-bottom: 20px; */
    /*! border-bottom: 1px solid #ddd; */
    /*! padding-bottom: 20px; */
    
}
form.variations_form .variations tr,
form.variations_form .variations tbody{
    width: 100%;
    display: block;
}
form.variations_form .variations tr .label:before{
    content: '';
    width: 5px;
    height: 5px;

    margin-left: 10px;
    display: inline-block;
}
form.variations_form .variations tr .value{
    position: relative;
    display: block;
}
form.variations_form .select.swatch-control,
form.variations_form .variations tr .value select{
    border: none;
    display: block;
    box-sizing: border-box;
    font-family: inherit;
    padding: 10px 20px;
    background: var(--back-light);
    border: 2px solid var(--back-dark);
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
}
form.variations_form .variations tr .label{
    position: relative;
    padding-right: 10px;
    display: block;
    font-family: inherit;
    margin-bottom: 10px;
    margin-top: 20px;
}
.single-product .product:not(.sale) .product_details-col .price,
.product_details-col .price ins{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-product .product:not(.sale) .product_details-col .price:before{
    content: 'قیمت نهایی:';
    color: #222;
    font-size: 14px;
}
/* .product_details-col .price ins:before{
    content: 'قیمت مصرف کننده:';
    color: #222;
    font-size: 14px;
} */
.product_details-col .stock.in-stock:before {
    content: 'موجودی : ';
}
.single-product .reset_variations {
    display: none !important;
}

.single_variation_wrap {
    position: relative;
    margin-top: 20px;   
}

.product_details-col .quantity::before {
    content: 'تعداد:';
    color: #222;
    font-size: 15px;
    margin-left: 10px;
    font-weight: 700;
}
.product_details-col .quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-right: 10%;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    word-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}





.socials-share > .title{

    font-size: 15px;
    font-weight: 300;
}
.meta-top-product .socials-share .list {
    position: relative;
    display: inline-block;
    float: right;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.socials-share:hover .list,
.socials-share:focus .list {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.meta-top-product a {

}
.meta-top-product a:hover,
.meta-top-product a:focus {
    color: var(--primary-hover);
}

#related-product .col-12 , #related-product .col-lg-4 ,
#related-product .col-md-6 , #related-product .col-sm-6{
    width: 100% !important;
    max-width: 100%;
}

.woocommerce-tabs > ul{
    list-style:none;
    padding:0 30px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background:var(--back-light);
    width:100%;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient:horizontal;
    -webkit-box-direction:normal;
    -ms-flex-direction:row;
    flex-direction:row;
    -ms-flex-wrap:nowrap;
    flex-wrap:nowrap;
    -webkit-box-pack:start;
    -ms-flex-pack:start;
    justify-content:flex-start;
    -webkit-box-align:stretch;
    -ms-flex-align:stretch;
    align-items:stretch;
    -ms-flex-line-pack:stretch;
    align-content:stretch
}


.woocommerce-tabs ul.wc-tabs li a:after{
    content: '';
    width: 0;
    height: 3px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    opacity: 0;
    left: 0;
    margin: auto;
    visibility: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.woocommerce-tabs ul.wc-tabs li.active a::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.woocommerce-tabs ul.wc-tabs li a:hover::after {
    width: 100%;
    opacity: 1;
    visibility: visible;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

#tab-description{
    font-size: 14px;
    line-height: 35px;
}


.wc-tabs > li a:hover:before{
    height: 100%;
}
.wc-tabs > li a:hover{
    color: var(--primary) !important;
}
.wc-tabs > li a {
    display: block;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    position: relative;
    margin: 0 15px;
    color: var(--text-dark);
}
.wc-tabs .description_tab a:before , .wc-tabs .additional_information_tab a:before{
    content: "\e90f";
    font-family: 'icon-site' !important;
    font-size: 25px;
    font-weight: normal !important;
    color: var(--primary) !important;
    padding-left: 10px;
    vertical-align: middle;
}
.wc-tabs .reviews_tab a:before{
    content: "\e90e";
    font-family: 'icon-site' !important;
    font-size: 25px;
    font-weight: normal !important;
    color: var(--primary) !important;
    padding-left: 10px;
    vertical-align: middle;
}
.product_thumbnails .owl-nav button.owl-next {
    right: auto;
    left: 0;
}

#review_form_wrapper #reply-title,
.comment-notes,
#review_form .required{
    display: none;
}
.comment-form-email,
.comment-form-author {
    flex: 0 0 50%;
    max-width: 50%;
}
.form-submit,
.comment-form-rating,
.comment-form-comment {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 10px;
}

.comment-form-author{
    padding-left: 15px
}
.comment-form-email{
    padding-right: 15px
}

#review_form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]),
#review_form textarea,
.editor-content select {
    display: block;
    margin: 5px auto 10px auto;
    height: 45px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid  var(--back-light);
    background-color: var(--back-dark);
    font-family: inherit;
    width: 100%;
    transition: 0.3s;
    font-size: 13px;
    text-align: right;
}
#review_form textarea {
    min-height: 100px !important;
    height: auto;
    border: 1px solid  var(--back-light);
    background-color: var(--back-dark);
    border-radius: 10px;
}

.sku_wrapper {
    border-bottom: 1px solid #ddd;
    display: block;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.summary .posted_in span {
    margin-left: 5px;
    display: inline-block;
}
.summary .posted_in span::after {
    content: ':';
}
.summary .posted_in a:after {
    content: '';
    width: 2px;
    height: 6px;
    display: inline-block;
    background: var(--primary);
    margin-right: 7px;
    margin-left: 4px;
}


.comment-form-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #fff;
    border: 1px solid #ededed;
}
.woocommerce .stars span {
    display: -ms-flexbox;
    display: flex;
    direction: ltr;
    text-align: left;
}
.comment-form-rating .stars, .comment-form-rating label {
    margin-bottom: 0;
}
.woocommerce p.stars a {
    position: relative;
    height: 1em;
    width: 1em;
    text-indent: -999em;
    display: inline-block;
    text-decoration: none;
    margin-right: 1px;
    color: #ffc107;
    font-size: 16px;
}
.woocommerce p.stars a:before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    content: "\f005";
    font-weight: 300;
    font-family: "Font Awesome 5 Pro";
    text-indent: 0;
    transition: all 0.3s;
}
.woocommerce p.stars a.active ~ a::before {
    font-weight: 300;
}
.woocommerce p.stars a:not(.active):before,
.woocommerce p.stars a.active:before {
    font-weight: bold;
}





/************ Page ************/
#page_main {
    position: relative;
    z-index: 1;
}
.title_404{
    font-size: 20em;
    font-weight: bold;
}

/** Home **/
.header_title-wrap .header-area{
    padding: 150px 0 150px;
    background-color: #000;
    background-position: center;
    background-size: cover;
    position: relative;
}
.header_title-wrap .header-area .title {
    font-size: 60px;
    line-height: 70px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.header_title-wrap .header-slider-one .owl-item.active .title {
    -webkit-animation: slideInDown 2s both;
    animation: slideInDown 2s both;
}
.header_title-wrap .header-area .header-inner {
    overflow: hidden;
}
.header_title-wrap .header-area p {
    font-size: 18px;
    line-height: 28px;
    color: rgba(255,255,255,.8);
}
.header_title-wrap .header-slider-one .owl-item.active .description {
    -webkit-animation: slideInLeft 2s 1s both;
    animation: slideInLeft 2s 1s both;
}
.header_title-wrap .header-slider-one .owl-item.active .header-area.style-03 .description {
    -webkit-animation: slideInDown 2s 1s both;
    animation: slideInDown 2s 1s both;
}
.header_title-wrap .header-slider-one.owl-carousel .owl-nav button.owl-prev,
.header_title-wrap .header-slider-one.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40px;
    height: 50px;
    text-align: center;
    color: rgba(255,255,255,.6);
    line-height: 50px;
    border: 1px solid rgba(255,255,255,.6);
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    visibility: hidden;
    opacity: 0;
}
.header_title-wrap .header-slider-one.owl-carousel .owl-nav button.owl-next {
    left: 20px;
    right: auto;
}
.header_title-wrap .header-slider-one.owl-carousel:hover .owl-nav button.owl-prev,
.header_title-wrap .header-slider-one.owl-carousel:hover .owl-nav button.owl-next {
    visibility: visible;
    opacity: 1;
}
.header_title-wrap .header-slider-one.owl-carousel .owl-nav button:hover {
    color: var(--primary);
    border-color: var(--primary);
    outline: none;
}


.image_carousel .owl-prev,
.image_carousel .owl-next {
    position: absolute;
    top: 50%;
    font-size: 3em !important;
    cursor: pointer;
    right: 10px;
}
.image_carousel .owl-next {
    left: 10px;
    right: auto;
}

/** Cart **/
.signweb-cart-section .woocommerce-cart-form {
    margin-bottom: 30px;
    flex: 0 0 70%;
    max-width: 70%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}


.product_details-col input:not([type="radio"]):not([type="checkbox"]):not(.form-control),
textarea:not(.form-control){


}


.woocommerce-checkout .shop_table .cart_item td{
    padding: 10px 12px !important;
}

.woocommerce table.shop_table {
    margin-bottom: 35px;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    line-height: 1.4;
    border: none;
    border-radius: 0;
    padding: 0px 12px;
}
.woocommerce table.shop_table thead{
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    background: var(--main-bg) !important;
}
.woocommerce .woocommerce-cart-form th {
    font-size: 14px;
    padding: 15px 0;
    text-align: center;

    color: var(--text-light);
}

.signweb-cart-section .quantity button.plus, .signweb-cart-section .quantity button.minus{
    width: 35px !important;
    height: 35px !important;
}
.signweb-cart-section .actions{
    text-align:  right !important;
}
.signweb-cart-section .actions label{
    display: none;
}
.woocommerce table.shop_table td {
    padding: 10px 0px;
    border-bottom: 1px solid var(--back-dark);
}
.signweb-cart-section .product-quantity{
    padding: 0px !important;
}
.woocommerce table.shop_table td.product-remove a, .woocommerce-remove-coupon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: var(--primary) !important;
}
.woocommerce table.shop_table td.product-remove a:hover, .woocommerce-remove-coupon:hover {
    background: transparent !important;
    color: rgba(51,51,51,0.6);
}
.woocommerce table.shop_table td.product-thumbnail > a {
    display: block;
    overflow: hidden;
}
.woocommerce table.shop_table td.product-thumbnail img {
    min-width: 80px;
    max-width: 80px;
    border: 2px solid var(--border-color);
    padding: 5px;
    border-radius: var(--radius);
}
.woocommerce table.shop_table td.product-name a {
    display: inline-block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    word-wrap: break-word;
    line-height: 1.4;
}


.signweb-cart-section button[name='update_cart'] {

    display: none !important;

}
.signweb-cart-section button[name='apply_coupon'] {

    box-shadow: none !important;
    line-height: 1.1 !important;
    padding: 10px 10px 10px 10px;
    border: none;

}
.woocommerce table.shop_table td.product-price .amount {
    color: var(--text-light);
    font-weight: 400;
    font-size: 18px;
}
.woocommerce  .amount .woocommerce-Price-currencySymbol{
    font-size: 14px;
    padding-right:5px;
    color: var(--text-light);
}
.woocommerce table.shop_table td.product-subtotal .amount {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.signweb-cart-section .quantity input{
    height: 34px !important;
}
.cart-actions .coupon {
    display: flex;
    align-items: center;
    flex-direction: row;
}
.cart-actions .coupon label {
    display: none;
}
.cart-actions .coupon .input-text {
    margin-left: 10px;
    max-width: 230px;
}
.cart-actions .button[name="apply_coupon"] {
    flex: 0 0 auto;
    padding: 13px 15px;
    border-radius: 0;
    color: #fff;
    box-shadow: inset 0 -2px 0 rgba( 0,0,0,.15);

}
.cart-actions .button[name="update_cart"] {
    border-radius: 0;
    color: #333;
    box-shadow: none;
    background-color: #f7f7f7;
}
.signweb-cart-section .cart_totals{
    position: relative;
    background-color: var(--main-bg);
    border: 2px solid var(--border-color);
    padding: 25px 25px 30px;
    text-align: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.signweb-cart-section .cart_totals h2{
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 16px;
    text-align: right;
    font-weight: 800;
}
.signweb-cart-section .cart-collaterals{
    flex: 0 0 30%;
    max-width: 30%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
}

.woocommerce .cart_totals .amount{
    color: var(--primary);
}

.cart-totals-inner {
    position: relative;
    background-color: var(--back-light);
    border: 2px solid var(--back-dark);
    padding: 25px 25px 30px;
    text-align: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.cart-totals-inner .cart-subtotal{
    background:var(--back-dark);
}

.cart-totals-inner h2 {
    color: var(--text-light);
    margin-bottom: 20px;
    margin-top: 0;
    font-size: 16px;
    text-align: right;
}

.cart-totals-inner table {
    margin-bottom: 10px;
}

table tbody th, table tfoot th {
    border-bottom: 1px solid #E6E6E6;
    text-transform: none;
    font-size: 14px;
    color: var(--text-light);
}
.shop_table tr td:last-child, .shop_table tr th:last-child {
    text-align: left;
}
#coupon_code {
    max-width: 280px;
}
.woocommerce a.remove {
    display: block;
    font-size: 1.5em;
    height: 1em;
    width: 1em;
    text-align: center;
    line-height: 1;
    border-radius: 100%;
    color: red;
    text-decoration: none;
    font-weight: 700;
    border: 0;
}

#add_payment_method .cart-collaterals .cart_totals table,
.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table {
    border-collapse: separate;
    margin: 0 0 6px;
    padding: 0;
}

.amount {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary)
}

/** Checkout **/

.woocommerce form .form-row:after,
.woocommerce form .form-row:before,
.woocommerce-page form .form-row:after,
.woocommerce-page form .form-row:before {
    content: ' ';
    display: table;
}
.woocommerce form .form-row:after,
.woocommerce-page form .form-row:after {
    clear: both;
}
.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first {
    float: right;
    width: 50%;
}

.signweb-checkout-section #billing_state_field , .signweb-address-section #billing_state_field{
    float: right;
    width: 50%;
}
.signweb-checkout-section #billing_state_field .select2-container--default .select2-selection--single ,
.signweb-checkout-section #billing_city_field .select2-container--default .select2-selection--single ,
.signweb-checkout-section #shipping_state_field .select2-container--default .select2-selection--single ,
.signweb-checkout-section #shipping_city_field .select2-container--default .select2-selection--single ,
.signweb-address-section #billing_state_field .select2-container--default .select2-selection--single ,
.signweb-address-section #billing_city_field .select2-container--default .select2-selection--single ,
.signweb-address-section #shipping_state_field .select2-container--default .select2-selection--single ,
.signweb-address-section #shipping_city_field .select2-container--default .select2-selection--single

{
    background:var(--back-dark);
    border: none;
    height: 41px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 10px;
}

.signweb-checkout-section #billing_state_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-checkout-section #billing_city_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-checkout-section #shipping_state_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-checkout-section #shipping_city_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-address-section #billing_state_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-address-section #billing_city_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-address-section #shipping_state_field .select2-container--default .select2-selection--single .select2-selection__arrow b ,
.signweb-address-section #shipping_city_field .select2-container--default .select2-selection--single .select2-selection__arrow b
{

    margin-top: 4px;

}
.signweb-checkout-section #billing_state_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-checkout-section #billing_city_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-checkout-section #shipping_city_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-checkout-section #shipping_state_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-address-section #billing_state_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-address-section #billing_city_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-address-section #shipping_city_field .select2-container--default .select2-selection--single .select2-selection__rendered ,
.signweb-address-section #shipping_state_field .select2-container--default .select2-selection--single .select2-selection__rendered
{
    line-height: 41px !important;
    color: #6E777F !important;
}

.signweb-checkout-section #billing_city_field{
    float: left;
    width: 50%;
}
.signweb-checkout-section #shipping_state_field{
    float: right;
    width: 50%;
}
.signweb-checkout-section #shipping_city_field{
    float: left;
    width: 50%;
}
.signweb-address-section #billing_city_field{
    float: left;
    width: 50%;
}
.signweb-address-section #shipping_state_field{
    float: right;
    width: 50%;
}
.signweb-address-section #shipping_city_field{
    float: left;
    width: 50%;
}
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
    float: left;
    width: 50%;
}
.woocommerce form .form-row-wide, .woocommerce-page form .form-row-wide {
    clear: both;
}

.signweb-cart-section .checkout-button{
    display: inline-block;
    width: 100% !important;
}




#customer_details h3 {
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
    color: var(--text-light);
    font-weight: 800;
}
.woocommerce-billing-fields label {
    display: block !important;
    width: 100%;
    font-size: 14px;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    color:var(--text-light);
}
.woocommerce-checkout .required{
    color:#797977;

}
.woocommerce-input-wrapper {
    width: 100%;
}
.woocommerce-additional-fields {
    margin-top: 130px;
}
.order_review-col > .wrap {
    background-color: var(--main-bg);
    border: 2px solid var(--border-color);
    padding: 15px;
    border-radius: 15px;

}
.order_review-col {
    background-color: var(--main-bg);
    border: 2px solid var(--border-color);
    padding: 20px;
    border-radius: 15px;

}
.order_review-col .button{
    border: none;
}
.shop_table thead tr, .cart-collaterals .shop_table tr.cart-subtotal {
    background: var(--main-bg);
    line-height: 35px;
    color: var(--text-dark);
    padding: 0px !important;

}
.woocommerce table.shop_table th {
    padding: 0px 12px;

}
/************ Woocommerce ************/
.woocommerce-no-js form.woocommerce-form-coupon,
.woocommerce-no-js form.woocommerce-form-login {
    display:block!important
}
.woocommerce-no-js .showcoupon,
.woocommerce-no-js .woocommerce-form-coupon-toggle,
.woocommerce-no-js .woocommerce-form-login-toggle {
    display:none!important
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding:1em 3.5em 1em 2em;
    margin:0 0 2em;
    font-size: 14px;
    position:relative;
    background-color:var(--back-dark);
    color:var(--text-dark); !important;
    font-weight: 400;
    border:2px solid var(--back-light);
    border-radius: var(--radius);

    list-style:none outside;
    width:auto;
    word-wrap:break-word
}
.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
    content:' ';
    display:table
}
.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
    clear:both
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
    content:"\f0f3";
    font-family: "Font Awesome 5 Pro";
    display:inline-block;
    position:absolute;
    top:1em;
    right:1.5em
}
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
    float:left
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
    list-style:none outside!important;
    padding-right:0!important;
    margin-right:0!important
}
.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
    direction:ltr;
    unicode-bidi:embed
}
.woocommerce-message {
    border-top-color:var(--back-light);
}
.woocommerce-message::before {
    content:"\f0f3";
    color:var(--primary-hover);
}
.woocommerce-error::before {
    color:var(--primary-hover);
}

#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
    padding: 1em;
    margin: 0 0 20px 0;
    list-style: none outside;
    background: var(--back-dark);
    border-radius: 4px;
}
#add_payment_method #payment ul.payment_methods li, .woocommerce-cart #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li {
    line-height: 2;
    text-align: right;
    margin: 0;
    font-weight: 400;
    color: var(--text-dark) !important;
}
.woocommerce-checkout #payment ul.payment_methods li label{
    color: var(--text-dark) !important;
}
#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
    margin: 0 0 0 1em;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    padding: 1em;
    margin: 1em 0;
    font-size: .92em;
    border-radius: 2px;
    line-height: 1.5;
    background: var(--back-light);
    color: var(--text-dark);
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    content: "";
    display: block;
    border: 1em solid var(--back-light);
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    position: absolute;
    top: -.75em;
    right: 0;
    margin: -1em 2em 0 0;
}

/************ account ************/

/* body.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
} */
.signweb-password-section{
    background: var(--back-light);
    padding: 100px 15px;
    border-radius: 20px;
    border: 1px solid #eeebe6;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--back-dark);
}
.signweb-password-section label , p{
    font-weight: 400;
}
.signweb-password-section .woocommerce form .form-row-first, .woocommerce-page form .form-row-first{
    float: none;
    width: 60%;
}
.signweb-password-section::before {
    content: "";
    position: absolute;

    width: 149px;
    height: 103px;
    transition: all .3s;
    left: 0px;
    top: -15px;
}
.signweb-navigation-section{
    position: relative;
}
.signweb-orders-section{
    position: relative;
}
.signweb-navigation-section ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 10px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--back-light);
    border-radius: 2px;
    border: 1px solid var(--back-dark);
    border-bottom: 3px solid var(--back-dark);
    overflow: hidden;
    margin: 0;
    margin-bottom: 0px;
    margin-bottom: 15px;
    padding: 0;

}
.signweb-navigation-section ul li {
    list-style: none !important;
    display: block;
    width: 100%;
    text-align: center;
}
.signweb-navigation-section ul li a {
    display: block;
    padding: 15px 0;
    color: #a98040;
    border-bottom: 2px solid transparent;
    font-weight: 400;
    text-align: center;
    font-size: 15px;
}
.signweb-navigation-section ul li.is-active a {
    background:var(--primary);
    color: #fff;
}
.signweb-navigation-section .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--primary);
    color: #fff !important;
}
.signweb-address-section{
    position: relative;
}
.signweb-address-section .col-1 ,
.signweb-address-section .col-2{
    max-width: 50%;
    flex: 50%;


}
.signweb-address-section .woocommerce-Addresses{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.signweb-address-section .woocommerce-Addresses h3{
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}
.signweb-address-section .woocommerce form .form-row-first, .woocommerce-page form .form-row-first{
    float: right;
    width: 50%;
}
/************ Widgets ************/
.sidebar .widget {
    background: #fff;
    border: 1px solid #ddd;
    margin-bottom: 25px;
    padding: 10px;
}
.sidebar .widget .widget-title .title {
    margin: 10px 0 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sidebar .widget ul{
    margin: 0 0 15px 0;
    padding: 0;
}
.sidebar .widget ul li {
    display: block;
    line-height: 2;
}

.products.row span.product-category {
    display: none;
}
.sidebar .prdctfltr-widget .prdctfltr_wc .prdctfltr_buttons .prdctfltr_sale ,
.sidebar .prdctfltr-widget .prdctfltr_wc .prdctfltr_buttons .prdctfltr_instock
{
    display: none;
}
.sidebar .widget.prdctfltr-widget {
    background: transparent;
    border: none;
    margin-bottom: 0;
}
.sidebar .widget.prdctfltr-widget .prdctfltr_wc .prdctfltr_woocommerce_ordering .prdctfltr_filter {
    background: var(--main-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 10px;
    text-align: right;
    box-shadow: 1px 11px 28px -18px rgba(0, 0, 0, 0.2);


    box-sizing: border-box;

}

.sidebar .prdctfltr_wc.prdctfltr_round .prdctfltr_filter label > span:hover::before {
    border: 1px double var(--primary) !important;
    background: var(--primary) !important;
}
.sidebar .prdctfltr_customize{
    background: var(--back-dark);
    border-radius: 10px;
    color: var(--text-dark);

    font-weight: 400 !important;
    border: 1px solid var(--back-light) !important;
}
.sidebar .prdctfltr_customize:hover{
    background: var(--primary);

    color: #fff;

}
.sidebar .prdctfltr_filter label{
    font-size: 16px;
}
.sidebar .prdctfltr_wc .prdctfltr_filter label.prdctfltr_active > span {
    font-weight: 600;
    color: var(--primary);
}

.sidebar .prdctfltr_checkboxes .prdctfltr_active > span{
    background: transparent;
    color: var(--primary);
    border-color: var(--primary) !important;
}
.sidebar .prdctfltr_product_cat .prdctfltr_active > span{
    background: transparent !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.prdctfltr_wc.prdctfltr_round .prdctfltr_filter label.prdctfltr_active > span::before{
    border-color: var(--primary) !important;
}
.sidebar .prdctfltr_filter label:hover{
    color: var(--primary);
}
.sidebar .prdctfltr_customization_search {
    display: block;
}
.sidebar .widget.prdctfltr-widget .pf-help-title .widget-title {
    position: relative;
    cursor: pointer;
}
.sidebar .widget.prdctfltr-widget .pf-help-title .widget-title .title {
    background: var(--back-dark);
    font-size: 16px;
    border: 1px solid var(--border-color);
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    padding:5px;
    border-radius: 7px;
    position: relative;
    line-height: 40px;
}
.sidebar .widget.prdctfltr-widget .pf-help-title .widget-title .title:before{
    content: "\e900";
    font-family: 'icon-site' !important;
    font-size: 15px;
    font-weight: normal !important;
    color: var(--primary) !important;
    padding-left: 10px;
    margin-top: 10px;


}
.sidebar .prdctfltr_customize_block .prdctfltr_customize_color {
    display: block;
    width: 42px;
    height: 42px;
    margin-right: 13px;
}
/*.sidebar .prdctfltr_wc .prdctfltr_woocommerce_ordering .prdctfltr_filter label > span {*/
/*    position: relative;*/
/*    line-height: 24px;*/
/*    border-radius: 50% !important;*/
/*    display: block;*/
/*    width: 39px;*/
/*}*/

/*.sidebar .prdctfltr_customize_block {*/
/*    padding: 3px;*/
/*    border: 1px solid #ccc;*/
/*    border-radius: 50%;*/
/*}*/

.sidebar .widget.prdctfltr-widget .pf-help-title .widget-title .title:after {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    border-radius: 10px;
    z-index: 1;
}
.sidebar .widget.prdctfltr-widget .pf-help-title .widget-title:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: absolute;
    left: 30px;
    top: 13px;
    font-size: 30px;
    transition: 0.3s;
    z-index: 1;
    color: var(--primary);
}
.sidebar .widget.prdctfltr-widget .opened .pf-help-title .widget-title:after {
    color: var(--primary);
    transform: rotate(180deg);
}
.sidebar .widget.prdctfltr-widget .prdctfltr_filter > div:not(.pf-help-title) {
    display: none !important;
}
.sidebar .widget.prdctfltr-widget .prdctfltr_filter.opened > div:not(.pf-help-title) {
    display: block !important;
}


.woocommerce-MyAccount-navigation ul {
    list-style:none;
    --li-pl: 0;
    --list-mb: 0;
    --li-mb: 0
}
.woocommerce-my-account-wrapper {
    margin-right:-30px;
    margin-left:-30px;
    display:flex;
    flex-direction:row;
    align-items:stretch
}

.wd-my-account-sidebar {
    flex:1 0 25%;
    max-width:25%;
    width:25%;
    border-left:1px solid rgba(119,119,119,0.2)
}
.wd-my-account-sidebar .sidebar-container {
    margin-bottom:30px;
    padding-top:30px;
    border-top:1px solid rgba(119,119,119,0.2)
}
.global-color-scheme-light .wd-my-account-sidebar {
    border-color:rgba(255,255,255,0.15)
}
.global-color-scheme-light .wd-my-account-sidebar .sidebar-container {
    border-color:rgba(255,255,255,0.15)
}

.woocommerce-MyAccount-content>.button:hover {

}
.woocommerce-MyAccount-content>.button:active {

}
.woocommerce-MyAccount-content>.col-1 {
    max-width:100%;
    padding:0
}
.global-color-scheme-light .woocommerce-MyAccount-content>p:not(.woocommerce-Message):first-child {
    border-color:rgba(255,255,255,0.15)
}
.global-color-scheme-light .woocommerce-MyAccount-content>p:not(.woocommerce-Message):first-child strong {
    color:#fff
}
.order-info mark {
    color:#FFF;
    background-color:var(--primary)
}
.woocommerce-EditAccountForm fieldset {
    margin-top:40px
}
.woocommerce-MyAccount-title {
    font-size:18px;
    padding-right:15px;
    padding-left:10px;
    padding-bottom:10px;
    margin-bottom:15px;
    text-transform:uppercase;
    border-bottom:1px solid rgba(119,119,119,0.2)
}
.global-color-scheme-light .woocommerce-MyAccount-title {
    border-color:rgba(255,255,255,0.15)
}



.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom:none
}
.global-color-scheme-light .woocommerce-MyAccount-navigation ul li a {
    color:#fff
}
.global-color-scheme-light .woocommerce-MyAccount-navigation ul li a:hover,
.global-color-scheme-light .woocommerce-MyAccount-navigation ul li a:focus {
    color:#fff;
    background-color:rgba(0,0,0,0.3)
}
.global-color-scheme-light .woocommerce-MyAccount-navigation ul li.is-active>a {
    color:#fff;
    background-color:rgba(0,0,0,0.3)
}
.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions {
    padding-bottom:5px
}
.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions>a {
    margin-bottom:10px
}
.order-again {
    margin-bottom:30px
}
.order-again .button {
    border-radius:0;
    color:#333;
    box-shadow:none;
    background-color:var(--secondary)
}
.order-again .button:hover {
    color:var(--primary);
    box-shadow:none;
    background-color:green
}
.order-again .button:active {
    box-shadow:none;
    bottom:0
}
.account-links {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    margin-top:30px;
    margin-right:-10px;
    margin-left:-10px
}
.account-links>div {
    flex:1 1 33%;
    max-width:33%;
    width:33%;
    padding-right:10px;
    padding-left:10px;
    margin-bottom:20px
}
.account-links a {
    display:block;
    padding:20px;
    box-shadow:0 0 4px rgba(0,0,0,0.18);
    font-size:14px;
    font-weight:600;
    text-align:center;
    text-transform:uppercase;
    color:#3f3f3f
}
.account-links a:before {
    content:"\f015";
    font-family:"Font Awesome 5 Pro";
    display:block;
    color:#d0d0d0;
    margin-bottom:10px;
    font-size:50px;
    font-weight:400;
    line-height:50px;
    transition:color .25s ease
}
.account-links a:hover {
    color:#3f3f3f;
    background-color:rgba(0,0,0,0.03)
}
.account-links a:hover:before {
    color:var(--primary)
}
.account-links .dashboard-link {
    display:none
}
.account-links .wishlist-link a:before {
    content: "\f004";
    font-family: "Font Awesome 5 Pro";
}
.account-links .edit-account-link a:before {
    content:"\f007";
    font-family:"Font Awesome 5 Pro"
}
.account-links .orders-link a:before {
    content:"\f015";
    font-family:"Font Awesome 5 Pro"
}
.account-links .downloads-link a:before {
    content:"\f019";
    font-family:"Font Awesome 5 Pro"
}
.account-links .payment-methods-link a:before {
    content:"\f142";
    font-family:"Font Awesome 5 Pro"
}
.account-links .edit-address-link a:before {
    content:"\f279";
    font-family:"Font Awesome 5 Pro"
}
.account-links .customer-logout-link a:before {
    content:"\f08b";
    font-family:"Font Awesome 5 Pro"
}
.global-color-scheme-light .account-links a {
    background-color:rgba(0,0,0,0.3);
    color:rgba(255,255,255,0.9)
}
.global-color-scheme-light .account-links a:before {
    color:rgba(255,255,255,0.3)
}
.global-color-scheme-light .account-links a:hover {
    background-color:rgba(0,0,0,0.3)
}
.woocommerce-pagination .button {
    border-radius:0;
    color:#333;
    box-shadow:none;
    background-color:var(--secondary)
}
.woocommerce-pagination .button:hover {
    color:#fff;
    box-shadow:none;
    background-color:green
}
.woocommerce-pagination .button:active {
    box-shadow:none;
    bottom:0
}
.woocommerce-MyAccount-downloads-file {
    border-radius:0;
    color:#333;
    box-shadow:none;
    background-color:var(--secondary)
}
.woocommerce-MyAccount-downloads-file:hover {
    color:#fff;
    box-shadow:none;
    background-color:green
}
.woocommerce-MyAccount-downloads-file:active {
    box-shadow:none;
    bottom:0
}
.account-payment-methods-table .button {
    border-radius:0;
    color:#333;
    box-shadow:none;
    background-color:var(--secondary)
}
.account-payment-methods-table .button:hover {
    color:#fff;
    box-shadow:none;
    background-color:green
}
.account-payment-methods-table .button:active {
    box-shadow:none;
    bottom:0
}
header.title {
    margin-bottom:10px
}
header.title>h3 {
    text-transform:uppercase;
    font-size:22px
}
.signweb-address-section .woocommerce-Address-title .edit,
.signweb-address-section .woocommerce-Address-title>h3 {
    display:inline-block;
    margin-bottom:5px;
    vertical-align:middle
}
.signweb-address-section .woocommerce-Address-title a{
    padding-left:5px;
    padding-right:5px;
    color:var(--primary) !important;
    font-weight:600;
    font-size:12px
}

.woocommerce-column__title {
    text-transform:uppercase;
    font-size:22px
}
.woocommerce-form__label {
    cursor:pointer
}
button[name="save_account_details"],
button[name="save_address"],
button[name="track"] {

}
button[name="save_account_details"]:hover,
button[name="save_address"]:hover,
button[name="track"]:hover {

}
button[name="save_account_details"]:active,
button[name="save_address"]:active,
button[name="track"]:active {

}
.signweb-account-edit-section .woocommerce-MyAccount-content .woocommerce-Input {
    padding: 0 15px 0 230px;
    min-width: 290px;
    max-width: 100%;
    width: 100%;
    height: 46px;
    font-size: 15px;
    border: 2px solid rgba(132, 132, 132, 0.2);
    border-radius: 0;
    color: #777;
    background-color: transparent;
    box-shadow: none;
    vertical-align: middle;
    transition: border-color .5s ease;
}
.woocommerce-MyAccount-content fieldset {
    margin-bottom: 20px !important;
    padding: 20px 40px !important;

    background: var(--back-light);
    border: 2px solid var(--back-dark);
}
.woocommerce-MyAccount-content fieldset legend {
    margin-bottom: 0;
    padding-right: 15px;
    padding-left: 15px;
    color: var(--text-dark);
    font-weight: 600;
    width: auto;
}
.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    margin-top: 40px;
}
.woocommerce-MyAccount-content .form-row label {
    display: block;
    width: 100%;
}


.woocommerce-MyAccount-content header {
    width: 100%;
    height: auto;
    position: relative;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#login_register label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
    color: #242424;
    vertical-align: middle;
    font-weight: 400;
}
.required {
    border: none;
    color: #E01020;
    font-size: 16px;
    line-height: 1;
}
.password-input {
    width: 100%;
}


#login_register .col-information {
    text-align: center;
    padding: 25px 40px;
    border-right: 1px solid rgba(119,119,119,0.2)
}
#login_register .col-information  .title {
    color: #242424;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    font-size: 22px;
}
.registration-info, .login-info {
    margin-bottom: 20px;
}
.btn-login_register {
    border-radius: 0;
    color: #333;
    box-shadow: #f7f7f7;
    background-color: #f7f7f7;
}
.btn-login_register:hover,
.btn-login_register:focus{
    color: #333;
    box-shadow: none;
    background-color: #efefef;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 0 !important;;
    padding: 0 !important;;
    margin: 2em 0;
    text-align: right;
    border-radius: 0 !important;
}
.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
    top: 50%;
    margin-top: -8px;
}

/**** Account ****/

.signweb-panel-section{
    position: relative;
}
.signweb-panel-section .u-columns{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.signweb-panel-section .col-1 ,
.signweb-panel-section .col-2
{
    max-width: 48%;
    flex: 48%;
    background: var(--main-bg);
    padding: 53px 15px;
    border-radius: var(--radius);

    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    margin-right: 20px;
}
.signweb-panel-section .col-1:before ,
.signweb-panel-section .col-2:before
{
    content: "";
    background: url(../img/left-footer.png) bottom no-repeat;
    display: inline-block;
    position: absolute;
    left: 0px;
    width: 200px;
    opacity: 0.6;
    bottom: 0px;
    height: 201px;
}
.signweb-panel-section .woocommerce-form__label{
    width: 100%;
}
.signweb-panel-section .lost_password a{
    color: var(--text-light);
    font-weight: 400;
}
.signweb-panel-section  .woocommerce-form-login__submit ,
.signweb-panel-section  .woocommerce-form-register__submit
{

    margin: auto;
    display: block;
    text-align: center;

    min-height: 30px;
    align-items: center;
    padding: 5px 15px 7px;


    min-width: 115px;
    background: var(--primary);
    box-shadow: none !important;
    border: none !important;
    border-radius: 10px;
    font-weight: 400 !important;
    font-size: 18px !important;
    color: #fff;
}
.signweb-panel-section  .woocommerce-form-login__submit:hover ,
.signweb-panel-section  .woocommerce-form-register__submit:hover
{
    background: var(--primary-hover);

}
.signweb-panel-section .col-1 h2 ,
.signweb-panel-section .col-2 h2
{
    font-size: 22px !important;
    display: flex;
    line-height: 45px;
    color: var(--text-dark);
    font-weight: 600;
}
.signweb-panel-section .col-1 h2:before ,
.signweb-panel-section .col-2 h2:before
{
    content: "\e900";
    font-family: 'icon-site' !important;
    font-size: 26px;
    font-weight: normal !important;
    color: var(--primary) !important;
    padding-left: 10px;
}

.woocommerce-orders-table td.woocommerce-orders-table__cell-order-actions > a {
    margin-bottom: 10px;
    display: inline-block;
    padding: 0 2px;
}
.woocommerce-order-details {
    position: relative;
    background: #fff;
    padding: 10px;
    border: 1px solid #eee;
    margin-bottom: 20px;
}
.signweb-address-section .woocommerce-Address address,
.signweb-address-section .woocommerce-customer-details address{
    background: #fff;
    position: relative;
    border: 1px solid #eee;
    padding: 15px;
    line-height: 1.8;
    font-weight: 400;
}
address .title_label::before {
    content: attr(title) ":";
    display: inline-block;
    font-size: 13px;
    color: #777;
    margin-left: 10px;
}


mark.order_pending,
mark.order_completed,
mark.order_cancelled,
mark.order_on-hold,
mark.order_refunded
{
    background: orange;
    color: #fff;
    line-height: 1;
    padding: 0 5px;
    border-radius: 3px;
}
mark.order_completed {background: green}
mark.order_cancelled,mark.order_failed {background: red}
mark.order_processing {background: #51de18
}
mark.order_on-hold {background: #eee;color: #333}
mark.order_refunded {background: grey}

[data-depend].show{
    display: block;
    -webkit-animation: theme-fadeIn .7s ease;
    animation: theme-fadeIn .7s ease;
}
[data-depend]:not(.show){
    display: none;
}
@-webkit-keyframes theme-fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
@keyframes theme-fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
@-webkit-keyframes theme-fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

input[type="email"], input[type="date"], input[type="search"], input[type="number"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    padding: 0 15px;
    max-width: 100%;
    width: 100%;
    height: 45px;
    border: 2px solid var(--border-color);

    border-radius: 10px;;
    color: inherit;
    background-color: #fff !important;
    box-shadow: none;
    vertical-align: middle;
    font-size: 14px;
    transition: border-color .5s ease;
}


@-webkit-keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
@keyframes rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}

@media(max-width:768px){

    .signweb-panel-section .col-1 {
        max-width: 100%;
        flex: 100%;
    }
    .signweb-panel-section .col-1{
        margin-bottom: 30px;
    }
    .signweb-panel-section .col-2 {
        max-width: 100%;
        flex: 100%;
    }

    .dwspecs-product-table table tr th, .dwspecs-product-table table tr td{
        font-size: 14px !important;
    }



    .woocommerce-tabs > ul {
        margin-right: 0 !important;
        margin-left: 0 !important;
        display: block;
        margin-bottom: 100px;
    }
    .tabs.wc-tabs > li {
        display: flex !important;
        width: 100%;
        margin-bottom: 10px;
    }
    .wc-tabs > li a{
        font-size: 13px !important;
    }
    .woocommerce-tabs.wc-tabs-wrapper {
        padding: 15px 25px 10px 50px;
        margin-top: 25px;
    }
    .section-last-product .owl-item{
        padding-right: 35px;
        padding-left: 5px;
    }
    #coupon_code {
        margin-top: 0px !important;
    }
    .woocommerce .cart-actions .btn-primary{
        margin-right: 10px;


    }
    table.shop_table.woocommerce-cart-form__contents tr {
        padding: 0;
    }
    table.shop_table.woocommerce-cart-form__contents tr td.actions .coupon{
        width:100%;
        padding:0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    table.shop_table.woocommerce-cart-form__contents {
        white-space: nowrap;
    }
    .shop_table .quantity {
        width: 150px;
    }

    .woocommerce .cart-actions{
        background-color: var(--back-light);
        border: 2px solid var(--back-dark);
        border-radius: 15px;
        padding: 10px;
    }

    .shop_table.cart tr,
    .shop_table.cart td,
    .shop_table.cart th,
    .shop_table.cart tbody,
    .shop_table.cart thead,
    .shop_table.cart {
        display: block;
        width: 100%;
    }

    .woocommerce-cart table.cart .product-thumbnail {
        width: 100%;
    }
    .shop_table.cart td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 10px!important;

    }
    .woocommerce table.shop_table td.product-thumbnail > a{
        display: block;
        text-align: center;
        width: 100%;
    }
    .shop_table.cart thead {
        display: none;
    }
    .shop_table.cart td:before {
        content: attr(data-title);
        display: inline-block;

        background: var(--back-dark);
        padding: 2px 10px;
        border-radius: 5px;
        min-width: 80px;
        text-align: center;
        font-size: 13px;
        color: var(--text-dark);
    }
    .signweb-cart-section .woocommerce-cart-form {

        flex: 0 0 100%;
        max-width: 100%;

    }
    .signweb-cart-section .cart-collaterals {
        flex: 0 0 100%;
        max-width: 100%;

    }
    .shop_table.cart .product-thumbnail:before,
    .shop_table.cart .product-remove:before{
        display: none !important;
    }
    .shop_table.cart .product-remove {
        width: 50%;
    }
    .product-remove {
        position: absolute;
        right: 20px;
        border: none !important;
    }
    .shop_table.cart .product-thumbnail img {
        margin: 0 auto;
        max-width: 80px !important;
        text-align: center;
        display: block;
    }
    .page-footer .copyright {
        padding-bottom: 70px;

    }
    #box-search .search_ajax {
        width: 100% !important;
        margin-top: 12px;
    }
    #box-search .search_ajax .theme-dropdown{
        display: none !important;
    }
    #scrollUp{
        bottom: 60px;
    }
    .logo-col img{
        max-width: 150px;
    }
    .menu-icon{
        position: absolute;
        top: 7px;
        right: 17px;
        width: 37px;
        background: none;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: 5px;
        box-shadow: none;
        outline: none;
        padding: 0;
        font-weight: 400;
        cursor: pointer;
        text-transform: capitalize;
        height: 35px;
    }
    .menu-icon .menu-icon-inner {
        width: 13px;
        height: 2px;
        border-radius: 5px;
        background:#fff;
        cursor: pointer;
        -webkit-transition: .6s;
        transition: .6s;
        position: absolute;
        top: 1px;
        bottom: 0;
        margin: auto;
        left: 15px;
        right: auto;
    }

    .menu-icon .menu-icon-inner::before {
        content: "";
        width: 20px;
        height: 2px;
        background:#fff;
        position: absolute;
        transform: translateY(-30px);
        -webkit-transform: translateY(-6px);
        border-radius: 5px;
        -webkit-transition: .6s;
        transition: .6s;
    }
    .menu-icon .menu-icon-inner::after {
        content: "";
        width: 20px;
        height: 2px;
        background:#fff;
        position: absolute;
        transform: translateY(30px);
        -webkit-transform: translateY(6px);
        border-radius: 5px;
        transition: .6s;
        -webkit-transition: .6s;
    }
    .header-menu_wrap .menu_horizontal-col{
        display: none !important;
    }
    #box-search .search_ajax input[type="text"]{
        padding: 0 15px 0 95px;
        min-width:auto;
        max-width: 100%;
        width: 100%;
    }
}
@media (min-width: 1366px){
    .container{
        max-width: 1250px;
    }
}
.product-item .sale-flash{

    position: absolute;
    display:inline;
    right: 25px;
    z-index: 3;
    color: #fff;
    top: 10px;
    display: none;
}
.product-item .sale-flash .sale-perc{
    background: var(--primary);
    font-weight: 600;
    padding: 2px;
    border-radius: 5px;
}
.product-item .signweb-price-section{
    margin-bottom: 5px;
    display: block;
    text-align: left;
}
.product-item .signweb-price-section span{
    font-size: 22px;
}
.product-item .signweb-price-section bdi .woocommerce-Price-currencySymbol{
    font-size: 14px;
    padding-right: 5px;
}
.product-item .signweb-price-section del span{
    color: #acacac;
    font-size: 15px;

}
.product-item .signweb-price-section del{
    display: block;
}
.product-item .signweb-price-section ins{
    text-decoration: none;

}
.product-item .signweb-price-section
.product-item .signweb-price-section .woocommerce-Price-currencySymbol{
    font-size: 16px;
    padding-right:5px;
}
.product-item .woocommerce-variation-price .amount{
    font-size: 24px;
    color: var(--primary);

}
.product-item .woocommerce-variation-price{
    margin-bottom: 10px;
    display: block;
    text-align: left;
}
.woocommerce-product-gallery .flex-control-thumbs{
    display: flex;
    margin: 20px 0px 0px 0px !important;
    padding: 0px;
}
.woocommerce-product-gallery .flex-control-thumbs .flex-active{
    border: 2px solid var(--primary);
}
.woocommerce-product-gallery .flex-control-thumbs img{
    margin-right: 10px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid var(--border-color);
}
.product-content .woocommerce-product-gallery__trigger {
    position: absolute;
    right: 70px;
    z-index: 1;
    top: 20px;
    font-size: 0;
    width: 35px;
    height: 35px;
    display: flex;
    border: 2px solid var(--border-color);
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--main-bg);
    transition: 0.3s;
}
.product-content .woocommerce-product-gallery__trigger::before {
    content: "\e920";
    font-family: 'icon-site' !important;
    font-size: 24px;
    transition: opacity .2s ease;
    line-height: 45px;
    color: var(--primary);
}
.product-content .woocommerce-product-gallery__trigger:hover {
    background: var(--primary);
}
.product-content .woocommerce-product-gallery__trigger:hover::before {
    color: #fff;
}
