/*===========================
BODY DATAS
===========================*/
/*--------------------------/*
[Table of contents]
[Color codes]
Background: #ffffff
Body Color : #222222
[Typography]
Body:       14px/20px Poppins, sans-serif;
Heading:    Poppins, sans-serif;
Input, textarea: 14px/20px Open Sans, sans-serif;

1.COMPONENT STYLES
2.HEADER
2.1 General
2.2 Header Skin
3.MAIN
4.BLOG
4.1 Blog page
4.2 Blog single
5. SIDEBAR
5.1 Left Sidebar
5.2 Right Sidebar
6.SHOP
6.1 Shop Page
6.2 Shop Single
6.3 Product style
7.INNER PAGES
8.SHORT CODE
9.FOOTER
10.RESPONSIVE
/*--------------------------*/
html {
    font-size: 14px;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #222222;
    font-weight: 400;
    overflow-x: hidden;
}
/*==================BACKEND CSS=============================*/
/*==========================================================================
BANNER EFFECT
===========================================================================*/
.effect:not(.loading-lazy) {
    position: relative;
}
.effect:not(.loading-lazy):not(.wpb_row):not(.wpb_column) {
    display: inline-block;
}
.effect:not(.loading-lazy) > *:not(img) {
    position: relative;
}
/*----- NORMAL -----*/
.normal-effect::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.normal-effect:hover::before {
    opacity: 0.3;
}
.normal-effect.dark-bg::before {
    background-color: #000;
}
.normal-effect.light-bg::before {
    background-color: #fff;
}
.folding-effect {
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.folding-effect:before {
    width: 100%;
    height: 100%;
    content: "";
    background: #ffffff;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0;
}
.folding-effect:hover:before {
    left: 50%;
    width: 0;
    opacity: 0.5;
}
.folding-effect:after {
    width: 100%;
    height: 100%;
    content: "";
    background: #ffffff;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
}
.folding-effect:hover:after {
    top: 50%;
    height: 0;
    opacity: 0.5;
}
.zoom-in-effect {
    position: relative;
}
.zoom-in-effect::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    opacity: 0.5;
    visibility: visible;
}
.zoom-in-effect:hover::before {
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    -webkit-transition: 0.6s ease 0s;
    -moz-transition: 0.6s ease 0s;
    -ms-transition: 0.6s ease 0s;
    -o-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
}
.zoom-out-effect {
    position: relative;
}
.zoom-out-effect::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    opacity: 0.3;
    visibility: visible;
}
.zoom-out-effect:hover::before {
    width: 140%;
    height: 140%;
    left: -20%;
    top: -20%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    -webkit-transition: 0.6s ease 0s;
    -moz-transition: 0.6s ease 0s;
    -ms-transition: 0.6s ease 0s;
    -o-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
}
.line-run-effect {
    position: relative;
    overflow: hidden;
}
.line-run-effect::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100px;
    height: 300%;
    top: -100%;
    left: 0;
    background-color: transparent;
    opacity: 0.6;
    visibility: visible;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.line-run-effect:hover::before {
    left: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    -webkit-transition: 0.6s ease 0s;
    -moz-transition: 0.6s ease 0s;
    -ms-transition: 0.6s ease 0s;
    -o-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
}
.solid-effect {
    position: relative;
    overflow: hidden;
}
.solid-effect::before {
    border-top: solid 3px #fff;
    border-bottom: solid 3px #fff;
    content: '';
    position: absolute;
    z-index: 1;
    top: 15px;
    left: 50%;
    width: 0;
    height: calc(100% - 30px);
}
.solid-effect::after {
    border-left: solid 3px #fff;
    border-right: solid 3px #fff;
    content: '';
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 15px;
    width: calc(100% - 30px);
    height: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.solid-effect:hover::before {
    width: calc(100% - 30px);
    left: 15px;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.solid-effect:hover::after {
    height: calc(100% - 30px);
    top: 15px;
}
/*----- PLUS ZOOM -----*/
.plus-zoom::before,
.plus-zoom:not(.loading-lazy)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 1;
}
.plus-zoom:hover::before {
    right: 50%;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}
.plus-zoom:not(.loading-lazy):hover::after {
    top: 50%;
    bottom: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}
/*----- BOUNCE IN -----*/
.bounce-in:hover img {
    -webkit-animation: bounceIn 0.5s ease;
    -o-animation: bounceIn 0.5s ease;
    animation: bounceIn 0.5s ease;
}
/*----- BORDER ZOOM -----*/
.border-zoom::before,
.border-zoom::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 1;
    opacity: 0;
}
.border-zoom::before {
    background-color: #c61a32;
}
.border-zoom::after {
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    border: 3px solid #c61a32;
}
.border-zoom:hover::before {
    opacity: 0.1;
}
.border-zoom:hover::after {
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    opacity: 1;
}
/*----- BORDER SCALE -----*/
.border-scale,
.border-scale > * {
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.border-scale:hover > * {
    opacity: 0.9;
}
.border-scale::before,
.border-scale:not(.loading-lazy)::after {
    content: '';
    position: absolute;
    z-index: 1;
    border: solid #c61a32;
}
.border-scale::before {
    left: 50%;
    right: 50%;
    top: 10px;
    bottom: 10px;
    border-width: 3px 0 3px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.border-scale:not(.loading-lazy)::after {
    top: 50%;
    bottom: 50%;
    left: 10px;
    right: 10px;
    border-width: 0 3px 0 3px;
    -webkit-transition: top 0.3s ease, bottom 0.3s ease;
    -moz-transition: top 0.3s ease, bottom 0.3s ease;
    -o-transition: top 0.3s ease, bottom 0.3s ease;
    transition: top 0.3s ease, bottom 0.3s ease;
}
.border-scale:hover::before {
    left: 10px;
    right: 10px;
}
.border-scale:not(.loading-lazy):hover::after {
    top: 10px;
    bottom: 10px;
}
/*==========================================================================
ANIMATION
===========================================================================*/
/*----- ROTATE PLACE -----*/
@-webkit-keyframes rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}
@keyframes rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}
/*==========================================================================
WOOCOMMERCE DATAS
===========================================================================*/
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    padding: 1em 2em 1em 2em;
    margin: 0 0 30px;
    position: relative;
    background-color: #fafafa;
    color: #515151;
    border-top: 3px solid #337ab7;
    list-style: none !important;
    width: auto;
    word-wrap: break-word;
}
.woocommerce .woocommerce-error:after,
.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:after,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:after,
.woocommerce .woocommerce-message:before {
    content: " ";
    display: table;
}
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-message .button {
    float: right;
    font-size: 13px;
    display: inline-block;
    padding: 0 15px;
    margin: 0;
}
.woocommerce .woocommerce-error {
    border-color: #fafafa;
    background-color: #fcd6e9;
}
.woocommerce .woocommerce-info {
    border-color: #dff0d8;
}
.woocommerce #content div.product div.thumbnails a,
.woocommerce div.product div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a,
.woocommerce-page div.product div.thumbnails a {
    float: none;
    width: 100%;
    margin: 0;
}
.woocommerce-checkout-payment .payment_methods {
    margin: 0;
    padding: 0;
}
.woocommerce-checkout-payment .payment_methods .wc_payment_method {
    list-style: none;
}
.woocommerce-checkout-payment .payment_methods .wc_payment_method:not(:last-child) {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
}
.woocommerce-checkout-payment .payment_methods .wc_payment_method > input[type="radio"],
.woocommerce-checkout-payment .payment_methods .wc_payment_method > input[type="checkbox"] {
    vertical-align: middle;
    margin-top: -3px;
}
.woocommerce-checkout-payment .payment_methods label {
    display: inline;
    cursor: pointer;
}
.woocommerce-checkout-payment .payment_methods .stripe-pf-right {
    float: none;
}
.woocommerce-checkout-payment .payment_methods .payment_method_paypal img {
    margin-right: 5px;
}
#add_payment_method #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;
    line-height: 1.5;
    color: #515151;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
    content: "";
    display: block;
    border: 1em solid;
    border-color: transparent transparent #dfdcde transparent;
    position: absolute;
    top: -.75em;
    left: 0;
    margin: -1em 0 0 2em;
}
.woocommerce-checkout-payment .payment_box p:last-child {
    margin: 0;
}
.woocommerce form .form-row,
.woocommerce-page form .form-row {
    margin-bottom: 14px;
}
.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
    display: inline-block;
    width: calc(50% - 15px);
    overflow: visible;
}
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
    float: right;
}
.woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce form .form-row-wide,
.woocommerce form .form-row::after,
.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after,
.woocommerce-page .cart-collaterals .shipping_calculator::after,
.woocommerce-page form .form-row-wide,
.woocommerce-page form .form-row::after,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.product_list_widget li::after {
    clear: both;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
    box-sizing: border-box;
    width: 100%;
}
.woocommerce form .form-row select {
    padding: 10px 20px;
}
.woocommerce form .form-row textarea.input-text,
.woocommerce-page form .form-row textarea.input-text {
    height: 145px;
}
.woocommerce .col2-set, .woocommerce-page .col2-set {
    width: 100%;
}
.woocommerce .col2-set:before,
.woocommerce-page .col2-set:before,
.woocommerce .col2-set:after,
.woocommerce-page .col2-set:after {
    content: '';
    display: table;
}
.woocommerce .col2-set:after,
.woocommerce-page .col2-set:after {
    clear: both;
}
.woocommerce-thankyou-order-details {
    padding: 0;
    margin-bottom: 30px;
}
.woocommerce-thankyou-order-received {
    font-size: 20px;
    color: #000;
}
.woocommerce-thankyou-order-details li {
    list-style: none;
    line-height: 35px;
}
.woocommerce-account-fields {
    padding-bottom: 10px;
}
.woocommerce-account-fields .create-account {
    margin-bottom: 0;
}
.woocommerce-account-fields .create-account > label {
    display: inline-block !important;
    clear: none;
    cursor: pointer;
    font-weight: 600;
}
.woocommerce-account-fields .create-account #account_password::-webkit-input-placeholder {
    opacity: 0.6;
}
.woocommerce-account-fields .create-account #account_password:-moz-placeholder {
    opacity: 0.6;
}
.woocommerce-account-fields .create-account #account_password::-moz-placeholder {
    opacity: 0.6;
}
.woocommerce-account-fields .create-account #account_password:-ms-input-placeholder {
    opacity: 0.6;
}
.woocommerce-account-fields .create-account label input[type="checkbox"],
#ship-to-different-address label input {
    position: static;
    vertical-align: top;
    width: 14px;
    height: 14px;
    margin: 4px 0 0;
    cursor: inherit;
}
.woocommerce form.lost_reset_password .form-row-first,
.woocommerce form.lost_reset_password .form-row-last,
.woocommerce-page form.lost_reset_password .form-row-first,
.woocommerce-page form.lost_reset_password .form-row-last {
    float: none;
    width: 100%;
    max-width: 585px;
}
.woocommerce .woocommerce-MyAccount-navigation {
    width: 270px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    padding: 10px 20px;
    background-color: #f1f1f1;
}
.woocommerce .woocommerce-MyAccount-navigation a {
    display: block;
    padding: 8px 0;
}
.woocommerce .woocommerce-MyAccount-content {
    overflow: hidden;
}
.woocommerce #shipping_method {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 0;
    margin: 17px 0 0 35px;
    cursor: pointer;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    cursor: inherit;
    margin-top: -2px;
}
.woocommerce-form-login .woocommerce-LostPassword {
    margin-top: 13px;
}
.return-to-shop .button,
.woocommerce-MyAccount-content > .button,
.woocommerce-MyAccount-content .woocommerce-address-fields .button,
#customer_login input[type="submit"],
.woocommerce-ResetPassword input[type="submit"] {
    vertical-align: middle;
    min-width: 180px;
    margin-top: 10px;
}
body .select2-drop {
    border: 1px solid #e6e6e6;
    border-radius: 0;
}
body .select2-dropdown {
    border-color: #e6e6e6;
}
body .select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #e6e6e6;
}
body .select2-container .select2-choice,
body .select2-container--default .select2-selection--single {
    border: 1px solid #e6e6e6;
    padding: 5px 20px;
    border-radius: 20px;
}
body .select2-container .select2-selection--single {
    height: auto;
    color: inherit;
    margin: 0;
}
body .select2-container--default .select2-selection--single .select2-selection__rende#c61a32 {
    padding: 0;
    color: inherit;
    line-height: inherit;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -13px;
}
body .select2-container .select2-choice .select2-arrow b:after {
    border: none;
    font-family: 'FontAwesome', sans-serif;
    content: "\f107";
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    margin-left: -15px;
}
body .select2.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #e6e6e6;
}
body .select2.select2-container .select2-selection--multiple {
    border-radius: 0;
    border: 1px solid #e6e6e6;
}
body .select2.select2-container .select2-selection--multiple .select2-selection__rende#c61a32 {
    padding: 0;
    display: block;
}
body .select2.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    padding: 0 10px;
}
body .select2-drop.select2-drop-above .select2-search input {
    width: 100%;
}
body .select2-container--default .select2-selection--single .select2-selection__clear {
    float: none;
}
.woocommerce-checkout-review-order-table .cart_item dl:last-child,
.woocommerce-checkout-review-order-table .cart_item dl p:last-child {
    margin-bottom: 0;
}
.col2-set .col-1 > h2,
.col2-set .col-2 > h2,
.woocommerce-billing-fields > h3,
.woocommerce-shipping-fields > h3,
.woocommerce-additional-fields > h3,
#order_review_heading {
    font-size: 19px;
    line-height: 24px;
    color: #000;
    margin-bottom: 13px;
    text-transform: capitalize;
}
#ship-to-different-address {
    overflow: hidden;
}
#ship-to-different-address label input[type="checkbox"] {
    display: none;
}
#ship-to-different-address label span {
    position: relative;
    display: block;
    margin: 0;
    padding-right: 43px;
}
#ship-to-different-address label {
    font-weight: inherit;
    cursor: pointer;
    color: inherit;
    margin: 0;
}
#ship-to-different-address label input[type="checkbox"]:checked + span::after {
    right: 3px;
}
#ship-to-different-address label span::before {
    content: "";
    display: block;
    height: 20px;
    width: 36px;
    background: #bbb;
    border-radius: 20px;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
    position: absolute;
    top: 2px;
    right: 0;
}
#ship-to-different-address label span::after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: #fff;
    position: absolute;
    top: 5px;
    right: 18px;
    border-radius: 13em;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}
.woocommerce .wishlist_table td.product-name > * {
    display: inline-block;
    vertical-align: middle;
}
.woocommerce .wishlist_table td.product-name a:not(.yith-wcqv-button) {
    padding: 4px 15px 4px 0;
}
.woocommerce .wishlist_table .product-price,
.woocommerce .wishlist_table .product-stock-status {
    text-align: center;
}
.woocommerce .user-role > .radio {
    margin-left: 20px;
    cursor: pointer;
}
.woocommerce .user-role > .radio > input {
    cursor: inherit;
}
.woocommerce form #billing_phone_field,
.woocommerce form #billing_email_field,
.woocommerce-page form #billing_phone_field,
.woocommerce-page form #billing_email_field {
    width: 100%;
}
/*----------------------------
WordPress Gallery
-----------------------------*/
.gallery {
    margin-left: -8px;
    margin-right: -8px;
}
.gallery:after {
    display: table;
    content: "";
    clear: both;
}
.gallery-item {
    margin: 0;
    padding: 8px;
    font-size: 0.8125rem;
    font-style: italic;
    color: #666;
    float: left;
}
.gallery-columns-1 .gallery-item {
    width: 100%;
    float: none;
}
.gallery-columns-2 .gallery-item {
    width: 50%
}
.gallery-columns-3 .gallery-item {
    width: 33.3333%
}
.gallery-columns-4 .gallery-item {
    width: 25%
}
.gallery-columns-5 .gallery-item {
    width: 20%
}
.gallery-columns-6 .gallery-item {
    width: 16.6667%
}
.gallery-columns-7 .gallery-item {
    width: 14.2857%
}
.gallery-columns-8 .gallery-item {
    width: 12.5%
}
.gallery-columns-9 .gallery-item {
    width: 11.1111%
}
.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
    clear: left;
}
/*==========================================================================
DEFAULT DATAS
===========================================================================*/
/*----- MAKE CLASS -----*/
.sticky {
    color: inherit;
}
.bypostauthor {
    color: inherit;
}
.screen-reader-text {
    color: inherit;
}
.text-center {
    text-align: center;
}
.wpb_single_image {
    font-size: 0;
    line-height: 0;
}
:focus {
    outline: none;
}
.return-message {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 15px;
    max-width: 600px;
    margin: 10px auto 0;
    text-align: center;
    border-radius: 20px;
}
.popover.bottom > .arrow:after {
    left: 0;
}
/*----- ALIGN IMAGE -----*/
.alignnone,
.wp-caption.alignnone,
a img.alignnone {
    margin: 5px 20px 20px 0;
}
div.aligncenter,
.aligncenter,
.wp-caption.aligncenter,
a img.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignleft,
.wp-caption.alignleft,
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.alignright,
.wp-caption.alignright,
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
img.alignnone {
    margin: 0;
}
/*----- POST PASSWORD -----*/
.post-password-form label[for="pwbox-1168"] {
    margin-bottom: 10px;
}
/*----- WP CAPTION -----*/
.wp-caption {
    background-color: #fff;
    max-width: 100%;
    padding: 5px 3px 5px;
    text-align: center;
    margin: 0;
}
.wp-caption.alignnone {
    clear: both;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto;
}
.wp-caption p:not(.wp-caption-text) {
    display: none;
}
.wp-caption p.wp-caption-text {
    line-height: 17px;
    padding: 5px 4px 15px;
    margin: 0 !important;
    font-weight: bold;
    text-align: left;
    font-size: 18px;
}
/*----- GALLERY CAPTION -----*/
.gallery-caption {
    color: #707070;
    color: rgba(51, 51, 51, 0.7);
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    padding: 0.5em 0;
}
.vc_parallax .vc_parallax-inner {
    background-attachment: fixed !important;
}
/*----- FONT AWESOME -----*/
span.fa,
i.fa {
    line-height: inherit;
    text-decoration: inherit;
}
span.fa::before,
i.fa::before {
    display: block;
}
/*----- FLATICON -----*/
[class^="flaticon-"],
[class*=" flaticon-"],
[class^="flaticon-"],
[class*=" flaticon-"] {
    display: inline-block;
}
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    display: block;
    font-size: inherit;
    margin-left: 0;
}
/*----- PE 7 STROKE -----*/
[class^="pe-7s-"]::before,
[class*=" pe-7s-"]::before {
    display: block;
}
/*----- SLICK SLIDER -----*/
.slick-slider {
    overflow: visible;
}
.slick-list {
    padding: 0;
    margin: 0;
}
.slick-track {
    margin-left: 0;
}
.slick-slider.slick-vertical .slick-slide {
    border: none;
}
.slick-slider .slick-arrow {
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    color: #777777;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.slick-slider .slick-arrow::before {
    content: '\e9a7';
    font-family: 'abcicon';
}
.slick-slider .slick-arrow.next::before {
    content: '\e9a8';
}
.slick-slider .slick-arrow::after {
    width: 50px;
    height: 300%;
    top: -100%;
    content: '';
    position: absolute;
    z-index: 2;
    left: 100%;
}
.slick-slider:hover .slick-arrow {
    left: -52px;
    opacity: 1;
    visibility: visible;
}
.slick-slider .slick-arrow.next {
    left: auto;
    right: 0;
}
.slick-slider:hover .slick-arrow.next {
    left: auto;
    right: -52px;
    opacity: 1;
    visibility: visible;
}
.slick-slider .slick-arrow.next::after {
    right: 100%;
    left: auto;
}
.slick-slider .slick-arrow:hover {
    color: #222;
}
.slick-slide > .row-item > * {
    display: block !important;
}
.slick-dots {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 0;
    line-height: 0;
    margin: 10px -5px -10px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 3px;
}
.slick-dots li button {
    opacity: 1;
    background-color: #c4c4c4;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
}
.slick-dots .slick-slide img {
    cursor: pointer;
    margin: auto;
}
.slick-vertical .slick-arrow {
    top: -20px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.slick-vertical .slick-arrow.next {
    top: auto;
    left: 0;
    right: 0;
    bottom: -20px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.slick-vertical .slick-arrow.prev::before {
    content: "\e9a9";
}
.slick-vertical .slick-arrow.next::before {
    content: "\e9a6";
}
/*----- CHOSEN -----*/
.chosen-container {
    vertical-align: top;
    font-size: inherit;
    line-height: inherit;
    text-align: left;
    width: auto !important;
    max-width: 100%;
}
.chosen-container-single .chosen-single {
    padding: 7px 22px;
    height: auto;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    line-height: 24px;
    color: #888;
}
.chosen-container-single .chosen-single::after {
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f0d7";
    font-style: normal;
}
.chosen-container-single .chosen-single span {
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    width: calc(100% - 16px);
}
.chosen-container-single .chosen-single div {
    display: none;
}
.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #e6e6e6;
    background: transparent;
    box-shadow: none;
}
.chosen-container-single .chosen-drop {
    top: calc(100% + 5px);
    left: 0;
    clip: auto;
    border: none;
    border-radius: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width: auto;
    min-width: 100%;
    white-space: nowrap;
    margin: 0;
    padding: 13px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.chosen-container:not(.chosen-with-drop) .chosen-drop {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}
.chosen-container-single .chosen-drop .chosen-search {
    display: none;
}
.chosen-container-single .chosen-results {
    color: #666;
    padding: 0;
    margin: 0;
}
.chosen-container .chosen-results li {
    font-size: inherit;
    line-height: 16px;
    padding: 4px 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.chosen-container .chosen-results li[class^="level-"]::before,
.chosen-container .chosen-results li[class*=" level-"]::before {
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 1px;
    margin-right: 6px;
    content: '';
}
.chosen-container .chosen-results li.level-0::before {
    background-color: #000;
}
.chosen-container .chosen-results li.result-selected {
    background-color: #f0f2f5;
    color: #222;
}
.chosen-container .chosen-results li.highlighted {
    background-image: none;
    color: #fff;
    background-color: #aaaaaa;
}
/*----- OVIC LIVE SEARCH -----*/
.ovic-live-search-form .products-search,
.ovic-live-search-form .not-results-search {
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.ovic-live-search-form .keyword-current {
    padding: 0;
    display: inline;
}
.ovic-live-search-form .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    overflow: hidden;
}
.ovic-live-search-form .product-price ins {
    float: left;
    text-decoration: none;
}
.ovic-live-search-form .product-price del {
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    line-height: 20px;
    color: #888;
    font-weight: normal;
    margin-left: 5px;
}
.ovic-live-search-form .view-all {
    cursor: pointer;
    color: #fff;
    padding: 6px 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 20px 0 5px;
}
.ovic-live-search-form .view-all:hover {
    opacity: 0.7;
}
/*----- OVIC MENU MOBILE -----*/
.ovic-menu-panels-actions-wrap {
    background-color: #fff;
}
.ovic-menu-panels li a > img,
.ovic-menu-panels li a.loading-lazy::after {
    display: none;
}
.ovic-menu-clone-wrap.open::before {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
}
body .ovic-menu-clone-wrap {
    max-width: 90%;
    left: -340px;
}
body .ovic-menu-clone-wrap.open {
    left: 0;
}
.ovic-menu-clone-wrap .megamenu {
    background-image: none !important;
}
.ovic-menu-clone-wrap .megamenu .widget_nav_menu {
    margin-bottom: 30px;
}
.ovic-menu-clone-wrap .megamenu [class^="vc_col-"],
.ovic-menu-clone-wrap .megamenu [class*=" vc_col-"] {
    width: 100% !important;
    float: none;
}
.ovic-menu-clone-wrap .megamenu [class^="vc_col-"] > .vc_column-inner,
.ovic-menu-clone-wrap .megamenu [class*=" vc_col-"] > .vc_column-inner {
    padding: 0;
}
.ovic-menu-clone-wrap .shop-button.style-5 {
    line-height: 42px;
    padding: 0 30px;
}
.ovic-menu-clone-wrap .slick-slider:hover .slick-arrow {
    left: 0;
}
.ovic-menu-clone-wrap .slick-slider .slick-arrow::after {
    display: none;
}
.ovic-menu-clone-wrap .slick-slider:hover .slick-arrow.next {
    right: 0;
    left: auto;
}
.ovic-menu-clone-wrap .ovic-custommenu .widgettitle {
    color: #222;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 15px;
    text-transform: capitalize;
}
.ovic-menu-clone-wrap .menu li a {
    font-size: 13px;
    color: #999999;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
}
.ovic-menu-clone-wrap .menu li a:hover {
    color: #222;
}
.ovic-menu-panel-main {
    padding-bottom: 50px;
}
.ovic-menu-panel-main .ovic-menu-item-title {
    text-transform: uppercase;
}
/*----- WPML -----*/

/*==========================================================================
BODY DATAS
===========================================================================*/
html {
    font-size: 14px;
}
/*----- HEADING -----*/
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.4;
    margin: 0 0 20px;
    color: #222;
    font-weight: normal;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 32px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 20px;
}
h6 {
    font-size: 16px;
}
p {
    margin-bottom: 20px;
}
/*----- A -----*/
a {
    color: inherit;
    text-decoration: none;
    line-height: inherit;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}
/*----- IMAGE -----*/
img {
    height: auto;
    max-width: 100%;
}
iframe {
    display: block;
    max-width: 100% !important;
}
/*----- UL, OL -----*/
ul,
ol {
    padding: 0 0 0 18px;
}
/*----- TABLE -----*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: auto;
    width: 100%;
    margin-bottom: 20px;
}
th,
td {
    border: 1px solid #e6e6e6;
    padding: 5px;
    font-weight: normal;
    text-align: inherit;
}
/*----- LABEL -----*/
label {
    font-weight: normal;
    color: #222;
    margin: 0;
}
label .requi#c61a32 {
    border-bottom: none;
    text-decoration: none;
    color: #ff3f3f;
}
/*----- INPUT, TEXTAREA, SELECT -----*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
select,
textarea {
    border: 1px solid #e6e6e6;
    padding: 5px 20px;
    font-size: 14px;
    line-height: 24px;
    max-width: 100%;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    color: #666;
}
/* input */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"] {
    height: 40px;
}
/* textarea */
textarea {
    display: block;
    min-height: 124px;
}
textarea:-ms-input-placeholder {
    color: #888;
}
/* select */
select {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxNjkwREJFMUE0MUNFNDExOTgzOEM0NTcwQzRERENCMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpGRURCODBBRTFBQTkxMUU4QTk5Q0IzODg4MkIyMTRGNiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpGRURCODBBRDFBQTkxMUU4QTk5Q0IzODg4MkIyMTRGNiIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M1IFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCNjk1MERGRUU3MEFFODExQTE4QUNDRTlGODdCMDRDNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxNjkwREJFMUE0MUNFNDExOTgzOEM0NTcwQzRERENCMyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv9lMv8AAABlSURBVHjaYvz//z8DIcDEQARgWb16dSiQLgfisNDQ0HswCaC4EpBaBcSdIJPOArEgEO+GSsAU7IaKn2UEuQlJEATSgXgmlO0KMh3sJqg1rlCJ3cgKUByOpHAWsgIQYKRaEAAEGADbsSi0+3rpqQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: center right 18px;
    padding-left: 18px;
    padding-right: 35px;
}
select::-ms-expand {
    display: none;
}
/* checkbox, radio */
input[type="radio"],
input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}
/* placeholder */
::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
:-moz-placeholder {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
::-moz-placeholder {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
    filter: alpha(opacity=100);
}
/*----- BUTTON -----*/
a.button,
button,
input[type="submit"] {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 24px;
    padding: 8px 22px;
    border: none;
    background-color: #aaaaaa;
    color: #fff;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
input[type="submit"]:hover {
    opacity: 0.7;
}
/* STARS RATING*/
p.stars {
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}
p.stars a {
    display: inline-block;
    font-size: 0;
}
p.stars a:before {
    display: block;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0.1em;
    color: #bbbaba;
    font-family: 'abcicon';
    content: "\e93b";
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
p.stars:hover a:before,
p.stars.selected:not(:hover) a:before {
    color: #f3cd1e;
}
p.stars a:hover ~ a:before,
p.stars.selected:not(:hover) a.active ~ a:before {
    color: #ccc;
}
.woocommerce-product-rating .rating-wapper {
    display: table;
    float: left;
}
.rating-wapper {
    display: block;
    line-height: 18px;
}
.star-rating {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    color: #bbbaba;
    line-height: 24px;
}
.rating-wapper .review,
.rating-wapper .woocommerce-review-link {
    display: inline-block;
    vertical-align: top;
    margin-left: 4px;
    font-size: 12px;
    color: #898989;
    font-style: italic;
    line-height: 24px;
}
.star-rating::before,
.star-rating > span::before {
    font-size: 20px;
    display: inline-block;
    float: left;
    font-family: 'abcicon';
    content: "\e93b" "\e93b" "\e93b" "\e93b" "\e93b";
    letter-spacing: -4px;
    line-height: 20px;
}
.star-rating > span {
    position: absolute;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    line-height: 16px;
}
.star-rating > span::before,
p.stars:hover a:before,
p.stars.selected:not(:hover) a:before {
    color: #222222;
}
/*----- CUSTOM FOR THEME -----*/
.page-404 {
    padding: 80px 0 90px;
}
.page-404 .heading {
    font-size: 120px;
    font-weight: 700;
}
.page-404 .button {
    text-align: center;
    line-height: 40px;
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 20px;
    font-weight: 600;
    padding: 0 25px;
    width: auto;
    margin: 0;
}
.page-404 .button:hover {
    background-color: #222;
}
.homepage-slider .slick-list {
    padding: 0 5px 5px;
    margin: 0 -5px -5px;
}
.hover-zoom-img > .vc_column-inner,
.hover-zoom-img .wpb_single_image {
    position: relative;
    overflow: hidden;
}
.hover-zoom-img img {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.hover-zoom-img:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    
}
/*THEME CHECK + UNIT TEST*/
.gallery-caption {
    color: #707070;
    color: rgba(51, 51, 51, 0.7);
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    padding: 0.5em 0;
}
.sticky {
    color: inherit;
}
.bypostauthor {
    color: inherit;
}
.post-item.sticky .post-title a {
    position: relative;
}
.post-item.sticky .post-title a::before {
    content: '\f024';
    color: #ff2328;
    font-family: 'FontAwesome';
    margin-right: 10px;
    display: inline-block;
}
.post-item .post-title a {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
figure .wp-caption-text {
    padding: 10px 0 5px;
}
.widget_rss ul li {
    margin-bottom: 15px;
}
.post-item .post-content p a {
    font-style: italic;
    text-decoration: underline;
}
.post-item .post-content p a:hover {
    font-style: normal;
}
.hebe .tp-bullet {
    background-color: transparent;
    margin: 0;
    width: 5px;
    height: 5px;
    border: solid 4px transparent;
}
.hebe .tp-bullet::before {
    position: absolute;
    z-index: 1;
    left: -1px;
    right: 0;
    top: -1px;
    width: 7px;
    height: 7px;
    border-radius: 100%;
    background-color: #b8b8b8;
    content: '';
}
.hebe .tp-bullet:hover, .hebe .tp-bullet.selected {
    border-color: #222;
    background-color: transparent;
}
.hebe .tp-bullet:hover::before,
.hebe .tp-bullet.selected::before {
    background-color: #fff;
}
/*NO TOOLKIT*/
body.no-toolkit .widget ul li,
body.no-toolkit .widget ol li {
    list-style: inherit;
    display: list-item;
}
body.no-toolkit .widget ul,
body.no-toolkit .widget ol {
    padding-left: 16px;
    margin: 0 0 10px;
}
body.no-toolkit .post-item .post-thumb {
    overflow: inherit;
}
body.no-toolkit .widget_archive ul {
    padding: 0;
}
body.no-toolkit .widget_archive ul li {
    width: 100%;
    list-style: none;
}
body.no-toolkit .summary .cart .single_add_to_cart_button {
    margin: 0;
    float: none;
    clear: none;
}
body.no-toolkit .summary .product_meta {
    clear: both;
    margin: 20px 0 35px;
}
body.no-toolkit .related.products {
    margin-top: 30px;
}
body.no-toolkit #primary .woocommerce-breadcrumb {
    text-align: center;
    background-color: transparent;
    border-top: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    padding: 12px 15px 11px;
    margin: 0 auto 40px;
    max-width: 1800px;
    border-radius: 0;
    margin-top: 60px;
}
body.no-toolkit > #primary {
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto 60px;
}
body.no-toolkit > #widget-area {
    padding: 0 15px 70px;
    max-width: 100%;
    margin: auto;
}
body.no-toolkit .shop-control .per-page-form::after,
body.no-toolkit .woocommerce-ordering {
    display: none;
}
body.no-toolkit .single-post .post-content {
    text-align: left;
}
body.no-toolkit .widget .product_list_widget {
    padding-left: 0;
}
@media (min-width: 768px) {
    body.no-toolkit > #primary, body.no-toolkit > #widget-area {
        width: 750px;
    }
}
@media (min-width: 992px) {
    body.no-toolkit > #primary, body.no-toolkit > #widget-area {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    body.no-toolkit > #primary, body.no-toolkit > #widget-area {
        width: 1170px;
    }
    .container {
        width: 1200px;
    }
    .col-bg-1 {
        width: 8.33333333%;
    }
}
@media (min-width: 1230px) {
    body.no-toolkit > #primary, body.no-toolkit > #widget-area {
        width: 1200px;
    }
}
/*Product default*/
body.no-toolkit .woocommerce-result-count {
    margin-bottom: 10px;
}
body.no-toolkit .woocommerce-ordering {
    margin-bottom: 20px;
}
body.no-toolkit ul.products {
    list-style: none;
    padding: 0;
    margin: 0 -15px;
}
body.no-toolkit ul.products::before,
body.no-toolkit ul.products::after {
    display: table;
    content: '';
    clear: both;
}
body.no-toolkit ul.products > .product {
    display: inline-block;
    float: left;
    padding: 0 15px;
    margin: 0 0 30px;
    font-size: 14px;
    line-height: 24px;
}
body.no-toolkit ul.products.columns-4 > .product {
    width: 25%;
}
body.no-toolkit ul.products > .product a .woocommerce-loop-product__title {
    font-family: 'Merriweather', serif;
    font-style: italic;
    margin: 12px 0 5px;
    line-height: 16px;
    font-size: 15px;
    color: #222;
    display: inline-block;
    font-weight: 500;
}
body.no-toolkit ul.products > .product a .woocommerce-loop-product__title:hover {
    color: #c61a32;
}
body.no-toolkit ul.products .star-rating {
    margin-right: 10px;
}
body.no-toolkit ul.products > .product .price {
    font-size: 12px;
    color: #222;
    text-decoration: none;
    text-align: left;
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: top;
}
body.no-toolkit ul.products > .product a {
    display: block;
    position: relative;
    max-width: 270px;
}
body.no-toolkit ul.products li.product .onsale {
    width: 52px;
    height: 52px;
    border-radius: 100%;
    color: #ececec;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 52px;
    background-color: #222;
    display: block;
    margin-bottom: 5px;
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
}
.single-product.no-toolkit .product {
    position: relative;
}
.single-product.no-toolkit .product .onsale {
    display: inline-block;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    color: #ececec;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 52px;
    background-color: #222;
    display: block;
}
body.no-toolkit .woocommerce-product-gallery__trigger {
    right: 10px;
    left: auto;
}
body.no-toolkit ul.products .button.loading::before {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    content: "\f111" !important;
    position: absolute;
    z-index: 2;
    width: 100%;
    line-height: 40px;
    left: 0;
    top: 0;
    text-align: center;
    color: #000;
    font-family: 'Flaticon';
    font-size: 22px;
    border-radius: 100%;
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
}
body.no-toolkit ul.products > .product .added_to_cart,
body.no-toolkit ul.products > .product .add_to_cart_button,
body.no-toolkit ul.products > .product .compare,
body.no-toolkit ul.products > .product .product_type_simple {
    position: relative;
    display: block;
    vertical-align: top;
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    border: none;
    background-color: #aaaaaa;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    max-width: 300px;
}
body.no-toolkit ul.products > .product .add_to_cart_button:hover,
body.no-toolkit ul.products > .product .added_to_cart:hover,
body.no-toolkit ul.products > .product .compare:hover,
body.no-toolkit ul.products > .product .product_type_simple:hover {
    background-color: #222;
}
body.no-toolkit ul.products > .product .add_to_cart_button.added {
    display: none;
}
.single-product.no-toolkit .woocommerce-product-gallery {
    width: 45%;
    float: left;
    margin-bottom: 30px;
    position: relative;
}
.single-product.no-toolkit .woocommerce-product-gallery .flex-viewport {
    margin-bottom: 10px;
}
.single-product.no-toolkit .woocommerce-product-gallery .flex-control-nav {
    width: 100%;
    padding: 0;
    list-style: none;
}
.single-product.no-toolkit .woocommerce-product-gallery .flex-control-nav li {
    display: inline-block;
    margin-right: 10px;
    max-height: 125px;
    max-width: 100px;
    margin-bottom: 10px;
}
.single-product.no-toolkit .woocommerce-product-gallery .flex-control-nav li:last-child {
    margin-right: 0;
}
.single-product.no-toolkit .summary {
    float: right;
    width: 55%;
    padding-left: 30px;
    margin-bottom: 50px;
}
body.no-toolkit ul.products.columns-4 > .product:nth-child(4n+1) {
    clear: left;
}
body.no-toolkit .widget_shopping_cart_content .cart_list {
    max-height: 223px !important;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}
body.no-toolkit .widget_top_rated_products > ul,
body.no-toolkit .widget_product_categories > ul {
    padding: 0;
}
body.no-toolkit .widget_top_rated_products ul li,
body.no-toolkit .widget_products ul li {
    list-style: none;
    margin-bottom: 20px;
}
body.no-toolkit .sidebar .widget_top_rated_products ul li .product-title {
    margin: 12px 0 -3px;
    font-size: 13px;
    color: #888888;
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-weight: normal;
}
body.no-toolkit .sidebar .widget_top_rated_products li > a::after {
    display: none;
}
body.no-toolkit .sidebar .widget_top_rated_products ul li .woocommerce-Price-amount {
    font-size: 14px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
}
body.no-toolkit .header .block-search {
    display: none;
}
body.no-toolkit .main-content,
body.no-toolkit .sidebar {
    padding-top: 40px;
}
@media (max-width: 1199px) {
    .single-product.no-toolkit .woocommerce-product-gallery .flex-control-nav li {
        max-width: 98px;
    }
}
@media (max-width: 991px) {
    body.no-toolkit ul.products.columns-4 > .product {
        width: 33.333333%;
    }
    body.no-toolkit ul.products.columns-4 > .product:nth-child(4n+1) {
        clear: none;
    }
    body.no-toolkit ul.products.columns-4 > .product:nth-child(3n+1) {
        clear: left;
    }
}
@media (max-width: 639px) {
    body.no-toolkit ul.products.columns-4 > .product {
        width: 50%;
    }
    body.no-toolkit ul.products.columns-4 > .product:nth-child(3n+1) {
        clear: none;
    }
    body.no-toolkit ul.products.columns-4 > .product:nth-child(2n+1) {
        clear: left;
    }
    .single-product.no-toolkit .woocommerce-product-gallery,
    .single-product.no-toolkit .summary {
        width: 100%;
        float: none;
        padding: 0;
    }
    .woocommerce-tabs .wc-tabs,
    .woocommerce-tabs .panel {
        width: 100%;
        display: block;
    }
    .single-product.no-toolkit .woocommerce-product-gallery,
    .single-product.no-toolkit .summary {
        width: 100%;
        float: none;
    }
    
}
@media (max-width: 479px) {
    body.no-toolkit ul.products.columns-4 > .product {
        width: 100%;
    }
    body.no-toolkit ul.products.columns-4 > .product:nth-child(2n+1) {
        clear: none;
    }
    body.no-toolkit ul.products.columns-4 > .product:nth-child(1n+1) {
        clear: left;
    }
    .single-product.no-toolkit .woocommerce-product-gallery .flex-control-nav li {
        max-width: 70px;
    }
    .single-product.no-toolkit .woocommerce-product-gallery .flex-control-nav li {
        max-width: 60px;
    }
}
.widget ul,
.widget ol {
    padding: 0;
    margin: 0;
}
.widget ul ul,
.widget ol ul,
.widget ul ol,
.widget ol ol,
.widget ul .children,
.widget ol .children {
    padding-left: 10px;
}
.widget ul li,
.widget ol li {
    list-style: none;
}
.widget ul,
.widget ol {
    padding: 0;
}
.widget .screen-reader-text {
    display: none;
}
/*CHECKOUT PAGE*/
.woocommerce form .form-row .required {
    border: none;
    text-decoration: none;
}
.woocommerce .woocommerce-billing-fields > h3,
.woocommerce .woocommerce-shipping-fields > h3 {
    font-size: 14px;
    color: #ffffff;
    background-color: #262626;
    display: block;
    text-transform: capitalize;
    padding: 9px;
    text-align: center;
}
.woocommerce-customer-details {
    margin-bottom: 60px;
}
#order_review_heading {
    display: none;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label {
    font-size: 14px;
    color: #222;
    margin-bottom: 2px;
    display: block;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
    font-size: 13px;
    color: #666666;
    padding: 5px 24px;
}
#add_payment_method #payment div.payment_box:before,
.woocommerce-checkout #payment div.payment_box:before {
    display: none;
}
.woocommerce-checkout-payment .payment_methods label {
    font-size: 14px;
    color: #222;
}
#add_payment_method #payment div.payment_box p,
.woocommerce-checkout #payment div.payment_box p {
    font-size: 13px;
    color: #666666;
    line-height: 24px;
}
.place-order .button {
    float: left;
    background-color: #fff;
    line-height: 50px;
    height: 50px;
    padding: 0 20px;
    border: solid 1px #222;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
    border-radius: 25px;
    text-transform: capitalize;
    min-width: 250px;
    margin-top: 30px;
}
.place-order .button:hover {
    color: #fff;
    background-color: #222;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tbody.product-name,
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table td.product-total {
    font-size: 14px;
    color: #666666;
}
.woocommerce-checkout-review-order .order-total td strong {
    font-weight: 600;
    text-decoration: underline;
}
.woocommerce-checkout-review-order .shop_table thead tr th {
    color: #fff;
}
.woocommerce form.woocommerce-checkout {
    overflow: hidden;
    margin-bottom: 60px;
}
/*MY ACCOUNT*/
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] {
    display: none;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] + span {
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 26px;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] + span:hover {
    color: #000;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] + span:hover::before {
    border-color: #000;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"] + span::before {
    width: 16px;
    height: 16px;
    border: solid 1px #dedede;
    border-radius: 100%;
    content: '';
    display: inline-block;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    position: absolute;
    z-index: 1;
}
.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox input[type="checkbox"]:checked + span::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 100%;
    position: absolute;
    z-index: 2;
    background-color: #aaa;
    left: 6px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.woocommerce-account .lost_password a {
    font-size: 14px;
    display: inline-block;
    position: relative;
}
.woocommerce-account .lost_password a:after {
    content: '';
    height: 1px;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
}
.product-grid {
    clear: both;
    margin-bottom: 75px;
    padding: 0;
}
.product-grid .product-grid-title {
    font-size: 24px;
    color: #222;
    font-weight: 400;
    position: relative;
    padding: 0 0 22px;
    margin-bottom: 30px;
    border-bottom: solid 1px #e5e5e5;
    display: block;
}
a.backtotop {
    width: 50px;
    height: 50px;
    line-height: 48px;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    background-color: #222;
    overflow: hidden;
    position: fixed;
    bottom: 56px;
    right: 30px;
    margin-left: -25px;
    text-align: center;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999;
}
a.backtotop:not(.show) {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
a.backtotop i {
    color: #fff;
}
a.backtotop::before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-45deg);
    -moz-transform: skewX(-45deg);
    -o-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
}
a.backtotop:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
/*----------------
AUTO CLEAR
----------------*/
@media (min-width: 1500px) {
    .auto-clear .col-bg-1:nth-child(12n+1) {
        clear: left;
    }
    .auto-clear .col-bg-2:nth-child(6n+1) {
        clear: left;
    }
    .auto-clear .col-bg-15:nth-child(5n+1) {
        clear: left;
    }
    .auto-clear .col-bg-3:nth-child(4n+1) {
        clear: left;
    }
    .auto-clear .col-bg-4:nth-child(3n+1) {
        clear: left;
    }
    .auto-clear .col-bg-6:nth-child(odd) {
        clear: left;
    }
    .vc_row .vc_col-bg-1:nth-child(12n+1) {
        clear: left;
    }
    .vc_row .vc_col-bg-2:nth-child(6n+1) {
        clear: left;
    }
    .vc_row .vc_col-bg-3:nth-child(5n+1) {
        clear: left;
    }
    .vc_row .vc_col-bg-4:nth-child(4n+1) {
        clear: left;
    }
    .vc_row .vc_col-bg-5:nth-child(3n+1) {
        clear: left;
    }
    .vc_row .vc_col-bg-6:nth-child(odd) {
        clear: left;
    }
    .col-bg-0 {
        width: 0;
        margin: 0;
        padding: 0;
    }
}
@media (min-width: 1200px) and (max-width: 1499px) {
    .auto-clear .col-lg-1:nth-child(12n+1) {
        clear: left;
    }
    .auto-clear .col-lg-2:nth-child(6n+1) {
        clear: left;
    }
    .auto-clear .col-lg-15:nth-child(5n+1) {
        clear: left;
    }
    .auto-clear .col-lg-3:nth-child(4n+1) {
        clear: left;
    }
    .auto-clear .col-lg-4:nth-child(3n+1) {
        clear: left;
    }
    .auto-clear .col-lg-6:nth-child(odd) {
        clear: left;
    }
    .vc_row .vc_col-lg-1:nth-child(12n+1) {
        clear: left;
    }
    .vc_row .vc_col-lg-2:nth-child(6n+1) {
        clear: left;
    }
    .vc_row .vc_col-lg-3:nth-child(5n+1) {
        clear: left;
    }
    .vc_row .vc_col-lg-4:nth-child(4n+1) {
        clear: left;
    }
    .vc_row .vc_col-lg-5:nth-child(3n+1) {
        clear: left;
    }
    .vc_row .vc_col-lg-6:nth-child(odd) {
        clear: left;
    }
    .col-lg-0 {
        width: 0;
        margin: 0;
        padding: 0;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .auto-clear .col-md-1:nth-child(12n+1) {
        clear: left;
    }
    .auto-clear .col-md-2:nth-child(6n+1) {
        clear: left;
    }
    .auto-clear .col-md-15:nth-child(5n+1) {
        clear: left;
    }
    .auto-clear .col-md-3:nth-child(4n+1) {
        clear: left;
    }
    .auto-clear .col-md-4:nth-child(3n+1) {
        clear: left;
    }
    .auto-clear .col-md-6:nth-child(odd) {
        clear: left;
    }
    .vc_row .vc_col-md-1:nth-child(12n+1) {
        clear: left;
    }
    .vc_row .vc_col-md-2:nth-child(6n+1) {
        clear: left;
    }
    .vc_row .vc_col-md-3:nth-child(5n+1) {
        clear: left;
    }
    .vc_row .vc_col-md-4:nth-child(4n+1) {
        clear: left;
    }
    .vc_row .vc_col-md-5:nth-child(3n+1) {
        clear: left;
    }
    .vc_row .vc_col-md-6:nth-child(odd) {
        clear: left;
    }
    .col-md-0 {
        width: 0;
        margin: 0;
        padding: 0;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .auto-clear .col-sm-1:nth-child(12n+1) {
        clear: left;
    }
    .auto-clear .col-sm-2:nth-child(6n+1) {
        clear: left;
    }
    .auto-clear .col-sm-15:nth-child(5n+1) {
        clear: left;
    }
    .auto-clear .col-sm-3:nth-child(4n+1) {
        clear: left;
    }
    .auto-clear .col-sm-4:nth-child(3n+1) {
        clear: left;
    }
    .auto-clear .col-sm-6:nth-child(odd) {
        clear: left;
    }
    .vc_row .vc_col-sm-1:nth-child(12n+1) {
        clear: left;
    }
    .vc_row .vc_col-sm-2:nth-child(6n+1) {
        clear: left;
    }
    .vc_row .vc_col-sm-3:nth-child(5n+1) {
        clear: left;
    }
    .vc_row .vc_col-sm-4:nth-child(4n+1) {
        clear: left;
    }
    .vc_row .vc_col-sm-5:nth-child(3n+1) {
        clear: left;
    }
    .vc_row .vc_col-sm-6:nth-child(odd) {
        clear: left;
    }
    .col-sm-0 {
        width: 0;
        margin: 0;
        padding: 0;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .auto-clear .col-xs-1:nth-child(12n+1) {
        clear: left;
    }
    .auto-clear .col-xs-2:nth-child(6n+1) {
        clear: left;
    }
    .auto-clear .col-xs-15:nth-child(5n+1) {
        clear: left;
    }
    .auto-clear .col-xs-3:nth-child(4n+1) {
        clear: left;
    }
    .auto-clear .col-xs-4:nth-child(3n+1) {
        clear: left;
    }
    .auto-clear .col-xs-6:nth-child(odd) {
        clear: left;
    }
    .vc_row .vc_col-xs-1:nth-child(12n+1) {
        clear: left;
    }
    .vc_row .vc_col-xs-2:nth-child(6n+1) {
        clear: left;
    }
    .vc_row .vc_col-xs-3:nth-child(5n+1) {
        clear: left;
    }
    .vc_row .vc_col-xs-4:nth-child(4n+1) {
        clear: left;
    }
    .vc_row .vc_col-xs-5:nth-child(3n+1) {
        clear: left;
    }
    .vc_row .vc_col-xs-6:nth-child(odd) {
        clear: left;
    }
    .col-xs-0 {
        width: 0;
        margin: 0;
        padding: 0;
    }
}
@media (max-width: 479px) {
    .auto-clear .col-ts-1:nth-child(12n+1) {
        clear: left;
    }
    .auto-clear .col-ts-2:nth-child(6n+1) {
        clear: left;
    }
    .auto-clear .col-ts-15:nth-child(5n+1) {
        clear: left;
    }
    .auto-clear .col-ts-3:nth-child(4n+1) {
        clear: left;
    }
    .auto-clear .col-ts-4:nth-child(3n+1) {
        clear: left;
    }
    .auto-clear .col-ts-6:nth-child(odd) {
        clear: left;
    }
    .col-ts-0 {
        width: 0;
        margin: 0;
    }
}
/*===========================================*/
/*TEMPLATE*/
.home .woocommerce-breadcrumb,
.home .breadcrumbs,
.home .breadcrumb,
.breadcrumbs .trail-browse,
.list-order,
    /*.home .page-title,*/
    /*.woocommerce-page .page-title,*/
.page-template-fullwidth-no-title .breadcrumbs {
    display: none;
}
.search-no-results.woocommerce .page-title {
    display: block;
    margin-top: 20px;
    font-size: 18px;
    margin-bottom: 0;
}
.page-title {
    font-size: 80px;
    line-height: 80px;
    margin: 50px auto;
    text-transform: capitalize;
    color: #222;
    font-weight: 300;
    text-align: center;
}
.page .page-title {
    margin: 95px auto 88px;
}
.home.blog .page-title {
    display: block;
}
.post-type-archive-portfolio .page-title {
    display: none;
}
.blog .page-title {
    margin-bottom: 48px;
}
@media (min-width: 992px) {
    .left-sidebar .sidebar,
    .right-sidebar .main-content {
        float: left;
    }
    .left-sidebar .main-content,
    .right-sidebar .sidebar {
        float: right;
    }
}
.theme-container {
    max-width: 1830px;
    margin: 0 auto;
    padding: 0 15px;
}
.theme-container::before,
.theme-container::after {
    content: '';
    display: table;
}
.theme-container::after {
    clear: both;
}
.theme-container .blog-masonry {
    margin: 0 -30px;
}
.theme-container .blog-masonry .pagination {
    padding: 0 30px;
}
.theme-container .blog-masonry .isotope-item {
    padding: 0 30px;
    margin-bottom: 100px;
    display: inline-block;
}
.blog-masonry {
    margin: 0 -15px;
}
.blog-masonry .isotope-item {
    width: 25%;
    display: inline-block;
    padding: 0 15px;
    margin-bottom: 30px;
}
.blog-masonry .isotope-item.width-2 {
    width: 50%;
}
.blog-masonry .isotope-item.width-2 .post-thumb {
    padding-bottom: 44px;
}
.left-sidebar .blog-standard {
    padding-left: 70px;
}
.right-sidebar .blog-standard {
    padding-right: 70px;
}
.blog-standard .post-item {
    margin-bottom: 100px;
    display: block;
    position: relative;
}
.blog-standard .post-item:last-child {
    margin-bottom: 40px;
}
.theme-container .blog-standard .post-item .post-thumb {
    display: inline-block;
    max-width: 100%;
    margin: 0 auto;
    vertical-align: top;
}
.blog-standard .post-item .post-title,
.blog-masonry .isotope-item.width-2 .post-item .post-title {
    margin-bottom: 30px;
    font-size: 28px;
}
.blog-standard .post-item .post-thumb {
    padding-bottom: 0;
}
.blog-standard .post-item .post-info {
    padding-top: 50px;
    padding-bottom: 50px;
}
.blog-masonry .post-item .post-info {
    padding: 0 15px 38px;
}
.blog-default .post-item {
    text-align: left;
    border: solid 1px #e5e5e5;
    box-shadow: none;
    margin-bottom: 60px;
}
.blog-default .post-item .post-title {
    font-size: 28px;
}
.blog-default .post-item .post-thumb {
    padding-bottom: 0;
}
.blog-default .post-item .post-info {
    padding: 28px 30px 30px;
}
/*========BLOG STYLE======*/
.blog .loadmore {
    text-align: center;
    margin: 30px 0 100px;
}
.blog .blog-standard .loadmore {
    margin-top: -56px;
    margin-bottom: 90px;
}
.blog .blog-masonry .loadmore {
    margin-top: -66px;
}
.loadmore {
    display: block;
    text-align: center;
}
.loadmore .view-more-button {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 0 46px;
    line-height: 46px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto;
    text-transform: capitalize;
    background-color: #fff;
    border: solid 1px #222;
}
.loadmore .view-more-button:hover {
    background-color: #222;
    color: #fff;
}
.loadmore .view-more-button.loading::after {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    content: "\e9ae";
    display: inline-block;
    font-family: 'abcicon';
    margin-left: 10px;
}
.post-item {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.post-item .post-thumb {
    position: relative;
    overflow: hidden;
    padding-bottom: 28px;
}
.post-item .post-thumb .thumb {
    display: inline-block;
    max-width: 100%;
    vertical-align: top;
}
.post-item .post-thumb a {
    position: relative;
    overflow: hidden;
    display: block;
}
.post-item:not(.portfolio) .post-thumb a:not(.loading-lazy)::before {
    width: 0;
    height: 0;
    left: 10px;
    bottom: 10px;
    content: '';
    position: absolute;
    z-index: 2;
    border-left: solid 2px #fff;
    border-bottom: solid 2px #fff;
    -webkit-transition: 0.6s ease 0s;
    -moz-transition: 0.6s ease 0s;
    -ms-transition: 0.6s ease 0s;
    -o-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
    opacity: 0;
}
.post-item:not(.portfolio) .post-thumb a:not(.loading-lazy)::after {
    width: 0;
    height: 0;
    top: 10px;
    right: 10px;
    content: '';
    position: absolute;
    z-index: 1;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    background-color: rgba(0, 0, 0, .2);
    opacity: 0;
}
.post-item:not(.portfolio):hover .post-thumb a:not(.loading-lazy)::before {
    width: 50px;
    height: 50px;
    opacity: 1;
}
.post-item:not(.portfolio):hover .post-thumb a:not(.loading-lazy)::after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 1;
}
.post-item:not(.portfolio) .post-thumb a img {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.post-item:not(.portfolio) .post-thumb:hover a img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.post-item .post-thumb .post-date,
.blog-standard .post-item .post-date {
    position: absolute;
    z-index: 3;
    right: 10px;
    top: 10px;
    color: #777777;
    font-weight: 400;
    display: inline-block;
    background-color: #fff;
    font-size: 14px;
    text-align: center;
    min-width: 120px;
    line-height: 40px;
    padding: 0 20px;
}
.post-item .post-thumb .post-date.style-2 {
    min-width: 52px;
    min-height: 52px;
    border-radius: 100%;
    padding-top: 10px;
}
.post-item .post-thumb .post-date.style-2 span {
    display: block;
    line-height: 16px;
}
.post-item .post-info {
    padding: 0 30px 30px
}
.post-item .post-title {
    font-size: 18px;
    color: #222;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 16px;
}
.post-item .post-metas {
    margin-bottom: 10px;
}
.post-item .post-metas > span {
    display: inline-block;
    margin: 0 8px;
}
.post-item .post-metas > span:first-child {
    margin-left: 0;
}
.post-item .post-metas > span:last-child {
    margin-right: 0;
}
.post-item .post-metas .post-author {
    font-size: 13px;
    color: #777;
    font-style: italic;
}
.post-item .post-metas .post-author img {
    max-width: 30px;
    border-radius: 100%;
    margin-right: 6px;
    display: inline-block;
}
.post-item .post-metas .post-author span {
    font-style: normal;
    color: #222;
    margin-left: 5px;
}
.post-item .post-metas .post-date,
.post-item .post-metas .post-comment {
    font-size: 13px;
    color: #777;
}
.post-item .post-metas .post-comment .icon {
    font-size: 20px;
    color: #999;
    display: inline-block;
    vertical-align: top;
}
.post-item .post-content {
    font-size: 14px;
    color: #777;
    line-height: 30px;
    margin-bottom: 23px;
}
.post-item .readmore-button {
    display: inline-block;
    font-size: 13px;
    color: #c61a32;
    font-weight: 600;
}
.post-item .readmore-button i {
    font-weight: normal;
}
.post-item .readmore-button:hover {
    color: #222;
}
.post-item .readmore-button i {
    font-size: 20px;
    margin-left: 12px;
    display: inline-block;
    vertical-align: top;
}
.post-item .readmore-button:hover i {
    -webkit-animation: fadeInRight 1s ease;
    -o-animation: fadeInRight 1s ease;
    animation: fadeInRight 1s ease;
}
.post-item.style-2 {
    text-align: left;
    overflow: hidden;
    padding: 0 0 15px;
    margin-bottom: 15px;
    border-bottom: solid 1px #e5e5e5;
    box-shadow: none;
}
.row-item:last-child .post-item.style-2 {
    padding-bottom: 0;
    border: none;
    margin-bottom: 0;
}
.post-item.style-2 .post-thumb {
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
    max-width: 70px;
    padding-bottom: 0;
}
.post-item.style-2:not(.portfolio) .post-thumb a:not(.loading-lazy)::before,
.post-item.style-2:not(.portfolio) .post-thumb a:not(.loading-lazy)::after {
    border: none;
}
.post-item.style-2 .post-info {
    padding: 0;
    overflow: hidden;
}
.post-item.style-2 .post-title {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 8px;
}
.post-item.style-2 .post-date {
    font-size: 12px;
    color: #898989;
    display: inline-block;
    vertical-align: top;
}
.post-item.style-2 .post-comment {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    color: #222;
}
.post-item.style-3,
.post-item.style-3:hover {
    box-shadow: none;
}
.post-item.style-3 .post-thumb {
    float: left;
    max-width: 50%;
    padding-bottom: 0;
}
.post-item.style-3 .post-thumb a {
    display: block;
}
.blog-item.right .post-item.style-3 .post-thumb,
.blog-item.position_right .post-item.style-3 .post-thumb {
    float: right;
}
.post-item.style-3 .post-info {
    padding: 52px 20px 20px 60px;
    text-align: left;
    overflow: hidden;
    height: 100%;
    background-color: #fff;
}
.post-item.style-3 .post-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
}
.post-item.style-3 .post-metas {
    margin-bottom: 20px;
}
.post-item.style-3 .readmore-button {
    color: #999999;
    font-weight: 600;
}
.post-item.style-3 .readmore-button:hover {
    color: #222;
}
/*SINGLE BLOG*/
.single .page-title,
.category .page-title {
    display: none;
}
body.no-toolkit .single .page-title,
body.no-toolkit .category .page-title {
    display: block;
}
.single-post .blog-single .head {
    margin: 40px 5px 100px 0;
    text-align: center;
}
.single-post .breadcrumbs .breadcrumb {
    margin-bottom: 58px;
}
.single-post .modern .main-content .post-item .post-thumb {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 0 50px 60px;
}
.single-post .modern .main-content .post-item .post-thumb figure img {
    width: 100%;
}
.blog-single .post-item {
    box-shadow: none;
    text-align: inherit;
}
.blog-single .post-item .post-thumb {
    padding-bottom: 50px;
}
.blog-single .post-item .post-info {
    padding: 0;
}
.blog-single .post-item .post-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}
.blog-single .post-item .post-metas {
    margin-bottom: 45px;
    font-size: 13px;
    color: #777;
}
.blog-single .post-content {
    margin-bottom: 55px;
    overflow: hidden;
}
.blog-single .post-content p {
    font-size: 16px;
    color: #777;
    line-height: 34px;
    margin-bottom: 30px;
}
.blog-single .group-bottom {
    border-top: solid 1px #e5e5e5;
    padding: 37px 0 93px;
    text-align: center;
    clear: both;
}
.single .classic .blog-single .group-bottom {
    padding-top: 57px;
}
.blog-single .group-bottom .text,
.blog-single .ovic-share-socials .title {
    font-size: 13px;
    font-weight: 600;
    color: #555555;
    display: inline-block;
}
.blog-single .group-bottom a {
    font-size: 13px;
    color: #555;
}
.blog-single .group-bottom .categories a::after {
    content: ',';
    display: inline-block;
    margin-right: 3px;
    color: #555;
}
.blog-single .group-bottom .categories a:last-child::after {
    display: none;
}
.blog-single .ovic-share-socials .list-social {
    display: inline-block;
}
.blog-single .ovic-share-socials .title::after {
    content: ':';
    display: inline-block;
    margin-right: 15px;
}
.blog-single .ovic-share-socials .list-social a {
    font-size: 18px;
    display: inline-block;
    margin-right: 12px;
}
.blog-single .post-content blockquote {
    padding: 0;
    margin: 0;
    border: none;
}
.blog-single .post-content blockquote p {
    font-size: 20px;
    color: #222;
    font-style: italic;
    border: none;
    position: relative;
    margin-bottom: 32px;
    line-height: 30px;
}
.single-post .comments-area {
    padding: 90px 0px 86px;
    position: relative;
}
.single-post .comments-area::after {
    position: absolute;
    z-index: -1;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background-color: #f2f2f2;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
}
.single-post .comments-area .comment-respond {
    max-width: 1170px;
    margin: 0 auto;
}
.single-post .comments-area > *,
.single-post .comments-area .comment-respond > * {
    max-width: 870px;
}
.single-post .comments-area .no-comments::before {
    content: "\e877";
    font-family: 'abcicon';
    margin-right: 5px;
}
.widget-recent-post .post-item,
.widget-recent-post .post-item:hover {
    box-shadow: none;
}
.widget-recent-post .post-item {
    border-bottom: solid 1px #e5e5e5;
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: left;
}
.widget-recent-post .post-item:last-child {
    border: none;
}
.widget-recent-post .post-item .post-thumb {
    float: left;
}
.widget-recent-post .post-item:not(.portfolio) .post-thumb a:not(.loading-lazy)::before,
.widget-recent-post .post-item:not(.portfolio) .post-thumb a:not(.loading-lazy)::after {
    border: none;
}
.widget-recent-post .post-item .post-info {
    overflow: hidden;
    padding: 0 0 0 20px;
}
.widget-recent-post .post-item .post-title {
    font-size: 15px;
    line-height: 20px;
    margin: 0 0 6px;
}
.widget-recent-post .post-item .post-metas .post-date {
    float: left;
}
.widget-recent-post .post-item .post-metas .post-date,
.widget-recent-post .post-item .post-metas .post-comment {
    font-size: 12px;
    color: #777;
}
/*PORTFOLIO*/
.blog .pagination,
.archive .pagination {
    display: block;
    clear: both;
}
.blog .pagination .screen-reader-text,
.archive .pagination .screen-reader-text {
    display: none;
}
.archive .pagination .nav-links {
    text-align: center;
}
.pagination {
    font-size: 0;
    line-height: 0;
    margin: 0 auto 100px;
    max-width: 1830px;
    padding: 0 15px;
}
.pagination > * {
    font-size: 14px;
    line-height: 24px;
}
.page-links {
    margin: 40px 0;
    clear: both;
    font-size: 13px;
    padding: 0 10px;
    position: relative;
    min-width: 38px;
    line-height: 38px;
    color: #555;
}
.blog .pagination .nav-links > span,
.blog .pagination .nav-links > a,
.archive .pagination .nav-links > span,
.archive .pagination .nav-links > a,
.woocommerce-pagination .page-numbers,
.page-links > span,
.page-links a {
    font-size: 13px;
    color: #999;
    display: inline-block;
    padding: 0 10px;
    position: relative;
    min-width: 38px;
    line-height: 38px;
    text-align: center;
    margin: 0;
}
.woocommerce-pagination .page-numbers li {
    display: inline-block;
    list-style: none;
    vertical-align: top;
}
.blog .pagination .nav-links > a:hover,
.archive .pagination .nav-links > a:hover,
.woocommerce-pagination .page-numbers:hover,
.page-links a:hover {
    color: #555;
}
.archive .pagination .nav-links > span,
.blog .pagination .nav-links > span,
.woocommerce-pagination span.page-numbers,
.page-links > span {
    color: #555;
    font-weight: 600;
    background-color: #f6f6f6;
}
.archive .pagination .nav-links > span.dots,
.blog .pagination .nav-links > span.dots,
.woocommerce-pagination span.page-numbers.dots,
.page-links > span.dots {
    background-color: transparent;
}
.blog .pagination {
    margin-bottom: 90px;
}
.blog-standard .pagination {
    margin-top: -60px;
}
.blog-portfolio .pagination {
    margin: 100px 0;
}
.blog-portfolio .post-item {
    box-shadow: none;
    text-align: left;
}
.blog-portfolio .post-item .post-thumb {
    position: relative;
    margin: 0;
}
.blog-portfolio .post-item .post-thumb .thumb {
    line-height: 0;
    font-size: 0;
}
.blog-portfolio .post-item .post-thumb .thumb > * {
    font-size: 14px;
    line-height: 24px;
}
.blog-portfolio .post-item .post-thumb .thumb a {
    position: relative;
    z-index: 1;
    display: inline-block;
}
.blog-portfolio .post-item .post-thumb .thumb a::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.portfolio-masonry .ayvo-isotope {
    margin: 0 -15px;
}
.portfolio-masonry .ayvo-isotope .post-item {
    padding: 0 15px;
    margin-bottom: 30px;
}
.portfolio-masonry .post-item .categories {
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.portfolio-masonry .post-item .categories .head {
    display: none;
}
.blog-portfolio .post-item .categories a {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    display: inline-block;
    margin-right: 2px;
    text-transform: capitalize;
}
.blog-portfolio .post-item .categories a:not(:last-child)::after {
    display: inline-block;
    content: ',';
}
.blog-portfolio .post-item .view-more {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    margin: 0 auto;
    text-align: center;
}
.blog-portfolio .post-item .view-more .view-button {
    font-size: 16px;
    color: #222;
    background-color: #fff;
    line-height: 54px;
    padding: 0 34px;
    display: inline-block;
    font-weight: 500;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.blog-portfolio .post-item .view-more .view-button:hover {
    color: #fff;
}
.portfolio-masonry .post-item .post-title {
    margin: 0;
    position: absolute;
    z-index: 2;
    left: 30px;
    bottom: 25px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.blog-portfolio .post-item .post-title a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.blog-portfolio .post-item:hover .post-title,
.blog-portfolio .post-item:hover .view-more,
.blog-portfolio .post-item:hover .categories,
.blog-portfolio .post-item:hover .post-thumb .thumb a::before {
    opacity: 1;
    visibility: visible;
}
.portfolio-grid {
    margin: 0 -15px;
}
.portfolio-grid .post-item {
    margin-bottom: 75px;
    box-shadow: none;
    padding: 0 15px;
    text-align: left;
}
.portfolio-grid .post-item .post-info {
    padding: 22px 0 0;
}
.portfolio-grid .post-item .post-title a {
    color: #222;
}
.portfolio-grid .post-item .categories {
    margin-bottom: 5px;
    padding: 0;
}
.portfolio-grid .post-item .categories,
.portfolio-grid .post-item .categories a {
    color: #777;
}
.popup-gallery {
    position: absolute;
    top: 100px;
    z-index: 11;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    max-width: 780px;
    max-height: 950px;
    opacity: 0;
    visibility: hidden;
    padding: 70px 0;
    margin: 0 auto;
}
.popup-gallery.active {
    opacity: 1;
    visibility: visible;
}
.popup-gallery.loading {
    display: block;
}
.popup-gallery.loading::before {
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 3px solid #e6e6e6;
    border-top-color: red;
    border-radius: 50%;
    -webkit-animation: fa-spin 2s infinite linear;
    -o-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    content: '';
    position: absolute;
    z-index: 12;
}
.overlay-body.active {
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}
.popup-gallery .close {
    width: 110px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    background-color: #222;
    text-align: center;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 1;
}
.list-gallery .slick-slider {
    margin-bottom: 55px;
}
.list-gallery .slick-slider .slick-arrow {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #fff;
    color: #777;
    font-size: 30px;
    left: 10px;
}
.list-gallery .slick-slider .slick-arrow.next {
    left: auto;
    right: 10px;
}
.popup-gallery .title-gallery {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    display: block;
}
.filter-button-group .filter-list {
    text-align: center;
    margin: 60px 0 100px;
}
.filter-button-group .filter-list a {
    display: inline-block;
    line-height: 33px;
    border-radius: 18px;
    padding: 0 15px;
    font-size: 15px;
    color: #555;
    background-color: #fff;
    text-align: center;
    text-transform: uppercase;
    margin: 0 30px;
    position: relative;
}
.filter-button-group .filter-list a::after {
    content: '-';
    font-size: 15px;
    color: #555;
    display: inline-block;
    position: absolute;
    z-index: 2;
    right: -36px;
}
.filter-button-group .filter-list a:last-child::after {
    display: none;
}
.filter-button-group .filter-list a:hover {
    color: #fff;
    background-color: #777;
}
.filter-button-group .filter-list a.active {
    color: #fff;
    background-color: #c61a32;
}
/*SINGLE PORTFOLIO*/
.font-light {
    font-weight: 300;
}
.font-semibold {
    font-weight: 600;
}
.single-portfolio .breadcrumbs .breadcrumb {
    margin-bottom: 98px;
}
.portfolio-single .post-item {
    box-shadow: none;
}
.portfolio-single .post-item .post-title {
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 95px;
    line-height: 40px;
    text-align: center;
}
.portfolio-single .post-item .post-thumb {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    margin-bottom: 95px;
    padding: 0 60px;
}
.portfolio-single .post-item .post-thumb .thumb-portfolio {
    text-align: center;
}
.portfolio-single .post-thumb .slick-slider .slick-arrow {
    left: calc(29% + 4px);
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #222;
    font-size: 34px;
    text-align: center;
    background-color: #fff;
    border-radius: 0;
}
.portfolio-single .post-thumb .slick-slider .slick-arrow::after {
    display: none;
}
.portfolio-single .post-thumb .slick-slider .slick-arrow:hover {
    color: #fff;
    background-color: #222;
}
.portfolio-single .post-thumb .slick-slider .slick-arrow.next {
    left: auto;
    right: calc(29% + 4px);
}
.portfolio-single.blog-single .post-item .post-info {
    padding: 0;
}
.portfolio-single .post-item .post-content {
    font-size: 16px;
    color: #777;
    margin-bottom: 0;
}
.portfolio-single .post-item .post-content p {
    font-size: 16px;
    color: #777;
    line-height: 34px;
    margin-bottom: 38px;
}
.portfolio-single .post-item .post-content blockquote,
.portfolio-single .post-item .post-content blockquote p {
    padding: 0;
    font-size: 20px;
    color: #222;
    font-weight: 500;
    line-height: 40px;
    border: none;
    font-style: normal;
}
.portfolio-single .post-item .post-content blockquote p {
    margin-bottom: 25px;
}
.portfolio-single .post-item .post-info .group-bottom {
    border-top: solid 1px #e5e5e5;
    padding: 60px 0 25px;
}
.portfolio-single .group-bottom .text,
.portfolio-single .ovic-share-socials .title {
    text-transform: uppercase;
    font-size: 16px;
}
.single-portfolio .comments-area {
    margin-bottom: 85px;
}
.portfolio-single .post-thumb .thumb-portfolio > .gallery-item {
    float: none;
    margin: 0 auto;
    padding: 0;
}
/*COMMENTS*/
.comments-title,
.comment-respond .comment-reply-title,
.woocommerce-Reviews-title{
    font-size: 28px;
    color: #222;
    font-weight: 500;
    margin-bottom: 12px;
}
.comments-title {
    margin-bottom: 52px;
    font-size: 28px;
    color: #222;
    font-weight: 500;
}
.comment-list {
    padding: 0;
    margin: 0 0 90px;
    clear: both;
    list-style: none;
}
.comment-list .comment {
    list-style: none;
}
.comments-area .comment-body .author-comment {
    float: left;
    margin-right: 30px;
    border-radius: 100%;
    max-width: 70px;
}
.comments-area .comment-body .author-comment img {
    border-radius: 100%;
}
.post-comments {
    clear: both;
}
.block-comment-title {
    margin-bottom: 55px;
}
.post-comments .comments {
    padding-left: 10px;
    margin-bottom: 62px;
}
.post-comments .comments li {
    list-style: none;
    overflow: hidden;
}
.comment .comment-body .comment-avatar {
    width: 80px;
    border-radius: 100%;
    float: left;
    margin-right: 30px;
    overflow: hidden;
    display: none;
}
.comment-body .comment-info {
    overflow: hidden;
    padding: 15px 0 30px;
}
.comment-body .comment-info .comment-meta {
    font-size: 16px;
    color: #666666;
}
.comment-body .comment-info .comment-meta .comment-edit-link {
    font-size: 0;
    display: inline-block;
    position: relative;
    margin-left: 5px;
}
.comment-body .comment-info .comment-meta .comment-edit-link::before {
    content: '\f044';
    font-family: 'FontAwesome', sans-serif;
    font-size: 14px;
    color: #666;
}
.comment-body .comment-info .comment-meta .comment-edit-link:hover::before {
    color: #222;
}
.comment-body .comment-name {
    margin-bottom: 6px;
}
.comment-body .comment-name .name {
    font-size: 15px;
    color: #222;
    font-weight: 600;
    text-transform: capitalize;
}
.comment-body .comment-date {
    text-transform: capitalize;
    color: #777;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 15px;
    display: inline-block;
}
.comment-body .comment-content .comment-text p {
    font-size: 13px;
    color: #777;
    line-height: 24px;
    margin: 0 0 18px;
}
.comment-body .comment-content .reply {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: solid 1px #d9d9d9;
}
.comment-body .comment-content .reply a {
    font-size: 12px;
    color: #fff;
    background-color: #c61a32;
    border-radius: 20px;
    line-height: 20px;
    padding: 0 15px;
    text-transform: uppercase;
    font-weight: 600;
}
.comment-body .comment-content .reply a:hover {
    background-color: #222;
}
.comment-respond {
    margin-top: 84px;
}
.comment-respond .comment-form {
    clear: both;
}
.comment-respond .comment-form label {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    margin: 0 0 8px;
    display: block;
}
.comment-respond .comment-form .comment-form-rating label {
    display: inline-block;
}
.comment-respond .comment-form p {
    margin-bottom: 10px;
}
.comments-area .comment-form .comment-form-comment {
    margin-bottom: 20px;
}
.comment-respond .comment-reply-title {
    font-size: 24px;
    color: #222;
    font-weight: 400;
    margin-bottom: 10px;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
    font-size: 12px;
    color: #777;
    margin-bottom: 32px;
}
.comment-respond .comment-form p {
    margin-bottom: 14px;
}
.comment-respond .comment-form span.label {
    font-size: 13px;
    color: #555;
    text-align: left;
    display: block;
    font-weight: 500;
    padding-left: 0;
    margin-bottom: 5px;
}
.comment-respond .comment-form input,
.comments-area .comment-form-comment textarea {
    padding: 0 25px;
    border: solid 1px #dad9d9;
    width: 100%;
    font-size: 12px;
    color: #999;
    border-radius: 20px;
    line-height: 30px;
    height: 36px;
    background-color: #fff;
}
.comments-area .comment-form-comment textarea {
    border-radius: 0;
    padding: 20px 25px;
}
.comments-area .form-submit input[type="submit"] {
    min-width: 295px;
    height: 52px;
    line-height: 52px;
    padding: 0 20px;
    text-align: center;
    background-color: #c61a32;
    border-radius: 26px;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    width: auto;
    color: #fff;
}
.comments-area .form-submit input[type="submit"]:hover {
    background-color: #222;
}
#comments .commentlist {
    padding: 0;
}
.comment_container .avatar {
    float: left;
}
/*======PRODUCT STYLE========*/
.product-item .product-inner {
    font-size: 0;
    line-height: 0;
}
.product-item .product-inner > * {
    font-size: 14px;
    line-height: 24px;
}
.product-item .product-thumb {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}
.product-item .product-thumb img {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.product-item .product-thumb figure.second-image {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
}
.product-item .product-thumb:hover figure.second-image {
    height: 100%;
    opacity: 1;
    visibility: visible;
}
.product-item .flash,
#yith-quick-view-content .onsale {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
}
.product-item .flash > span,
#yith-quick-view-content .onsale > span {
    height: 52px;
    color: #ececec;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 54px;
    background-color: #222;
    display: block;
    margin-bottom: 5px;
    min-width: 52px;
    padding: 0 10px;
    border-radius: 26px;
}
.product-item .product-thumb .group-button {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 10px;
}
.product-item .group-button > div {
    margin: 0 0 10px;
    position: relative;
    -webkit-transition: 0.4s ease 0s;
    -moz-transition: 0.4s ease 0s;
    -ms-transition: 0.4s ease 0s;
    -o-transition: 0.4s ease 0s;
    transition: 0.4s ease 0s;
}
.product-item:hover .product-thumb .group-button .quickview {
    -webkit-transition: 0.7s ease 0s;
    -moz-transition: 0.7s ease 0s;
    -ms-transition: 0.7s ease 0s;
    -o-transition: 0.7s ease 0s;
    transition: 0.7s ease 0s;
}
.product-item .product-thumb .group-button .compare-button {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
}
.product-item .product-thumb .group-button .quickview {
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
}
.product-item:hover .product-thumb .group-button .compare-button,
.product-item:hover .product-thumb .group-button .quickview {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.product-item .group-button .yith-wcwl-add-to-wishlist a,
.product-item .group-button .compare-button .compare,
.product-item .group-button .quickview a {
    position: relative;
    display: block;
    vertical-align: top;
    list-style: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-weight: normal;
    font-size: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    opacity: 1;
    border: 0;
    border-radius: 100%;
}
.product-item .group-button .compare-button .compare,
.product-item .group-button .quickview a {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.product-item:hover .group-button .compare-button .compare,
.product-item:hover .group-button .quickview a {
    opacity: 1;
    visibility: visible;
}
.product-item .group-button .yith-wcwl-add-to-wishlist a::before,
.product-item .group-button .compare-button .compare::before,
.product-item .group-button .quickview a::before {
    position: absolute;
    z-index: 2;
    width: 100%;
    line-height: 40px;
    left: 0;
    top: 0;
    text-align: center;
    background-color: #fff;
    color: #999999;
    font-family: 'abcicon';
    font-size: 16px;
    border-radius: 100%;
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
}
.product-item .group-button .yith-wcwl-add-to-wishlist a:hover::before,
.product-item .group-button .compare-button .compare:hover::before,
.product-item .group-button .quickview a:hover::before {
    color: #fff;
    background-color: #222;
}
.product-item .group-button .yith-wcwl-add-to-wishlist a::before {
    content: "\e949";
}
.product-item .group-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a::before,
.product-item .group-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a::before {
    content: "\e915";
}
.yith-wcwl-add-to-wishlist .ajax-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3;
    margin: auto;
}
.yith-wcwl-add-to-wishlist .feedback {
    display: none;
}
.product-item .compare-button .compare::before {
    content: "\e95d";
}
.product-item .group-button .quickview a::before {
    content: "\e965";
}
.product-item .product-thumb .add-to-cart {
    position: absolute;
    z-index: 3;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
    transform: translateY(80px);
}
.product-item:hover .product-thumb .add-to-cart {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.product-item .add-to-cart a {
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    display: block;
    line-height: 48px;
    background-color: #fff;
    text-align: center;
    padding: 0;
    text-transform: uppercase;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.product-item .add-to-cart a:hover {
    background-color: #222;
    color: #fff;
    opacity: 1;
}
.product-item .add-to-cart a::before {
    content: "\e982";
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    font-family: 'abcicon';
}
.product-item .add-to-cart a.add_to_cart_button.product_type_simple::before,
.product-item .add-to-cart a.product_type_simple::before {
    content: "\e982";
}
.product-item .add-to-cart a.product_type_grouped::before,
.product-item .add-to-cart a.product_type_variable::before,
.product-item .add-to-cart a.product_type_external::before {
    content: "\e9d0";
}
.product-item .add-to-cart a.add_to_cart_button.product_type_simple.loading::before,
.product-item .add-to-cart a.product_type_simple.loading::before,
.product-item .add-to-cart a.loading::before {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    content: "\f110";
    font-family: 'FontAwesome';
}
.product-item .add-to-cart .added_to_cart.wc-forward::before {
    content: '\e990';
}
.product-item .add-to-cart a.added {
    display: none;
}
.product-item .product-attr .variations .label {
    display: inline-block;
    vertical-align: top;
    min-width: 1px;
}
.product-item .product-attr .variations .label::after {
    display: none;
}
.product-item .product-attr .variations select {
    display: none;
}
.product-item .product-item .product-thumb .product-attr .variations .data-val.attribute-pa_color,
.product-item .product-select-color .variations .data-val.attribute-pa_size {
    display: none;
}
.product-item .product-thumb .product-attr {
    position: absolute;
    z-index: 1;
    left: 10px;
    right: 10px;
    text-align: center;
    bottom: 10px;
    background-color: #fff;
    display: none;
}
.product-item .product-thumb .product-attr .variations .attribute {
    font-size: 13px;
    color: #777777;
    width: 40px;
    height: 40px;
    font-weight: normal;
    line-height: 40px;
    border: none;
    margin: 4px 0;
    padding: 0;
    display: inline-block;
    text-align: center;
}
.product-attr .variations .data-val a::before {
    display: none;
}
.product-item .product-thumb .product-attr .variations .data-val a.active,
.product-item .product-thumb .product-attr .variations .data-val a:hover {
    color: #222222;
    background-color: #f6f6f6;
}
.product-item .product-thumb .product-attr .variations_form {
    background-color: #fff;
    padding: 4px 0;
    height: 48px;
    text-align: center;
}
.product-item .product-metas {
    overflow: hidden;
    display: none;
}
.product-item .product-metas .product-attr {
    float: right;
    margin-right: 3px;
}
.product-item .product-metas .product-attr .variations .reset_variations {
    position: absolute;
    z-index: 2;
}
.product-item .product-metas .product-attr .variations .attribute {
    border-radius: 100%;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 10px;
    text-align: center;
    min-width: 0;
    padding: 0;
    border: solid 1px #cccccc;
    margin: 2px;
    display: inline-block;
    vertical-align: top;
    float: right;
}
.product-item .product-info {
    padding: 15px 4px 12px;
}
.product-item .product-metas .category {
    float: left;
    line-height: 16px;
    color: #898989;
    font-size: 12px;
    font-style: italic;
}
.product-item .product-metas .category a {
    font-size: inherit;
    color: inherit;
    display: inline-block;
    padding: 2px;
}
.product-item .product-metas .category a:hover {
    color: #222;
}
.product-item .product-name {
    margin: 0 0 4px;
    font-weight: normal;
    line-height: 16px;
}
.product-item .product-name a {
    font-size: 15px;
    color: #222;
    display: inline-block;
    font-weight: 500;
}
.product-item .price {
    display: block;
    margin-bottom: 0;
}
.product-item .price,
.product-item .price ins,
.product-item .price .amount {
    font-size: 12px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
}
.product-item .price del,
.product-item .price del .amount {
    color: #898989;
}
.product-item .rating-wapper {
    position: relative;
}
.product-item .rating-wapper .review {
    position: absolute;
    z-index: 2;
    left: 0;
    margin: 3px 0 0;
    font-size: 12px;
    color: #898989;
    font-style: italic;
}
.product-item:not(:hover) .rating-wapper .star-rating,
.product-item:hover .rating-wapper .review {
    opacity: 0;
    visibility: hidden;
}
.product-item.list {
    display: block;
    margin-bottom: 40px;
    overflow: hidden;
}
.product-item.list .product-thumb {
    max-width: 370px;
    float: left;
}
.has-sidebar .product-item.list .product-thumb {
    max-width: 270px;
}
.product-item.list .product-info {
    padding: 35px 0 20px 32px;
    overflow: hidden;
}
.product-item.list .product-info .top-info .rating-wapper,
.product-item.list .product-info .bottom-info .product-name,
.product-item.list .product-info .bottom-info .price {
    display: none;
}
.product-item.list .product-metas .product-attr {
    float: none;
    display: block;
    margin: 0 0 15px;
    border-bottom: solid 1px #e5e5e5;
    padding: 18px 5px 10px;
}
.product-item.list .product-metas .product-attr .variations .attribute {
    float: none;
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
    position: relative;
}
.product-item.list .product-metas .product-attr .variations .attribute::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    position: absolute;
    z-index: 1;
    left: -5px;
    top: -5px;
    border: solid 1px #222;
    border-radius: 100%;
    content: "";
    opacity: 0;
    visibility: hidden;
}
.product-item.list .product-metas .product-attr .variations .attribute:hover::before {
    opacity: 1;
    visibility: visible;
}
.product-item.list .rating-wapper .star-rating {
    opacity: 1;
    visibility: visible;
}
.product-item.list .rating-wapper .review {
    position: static;
    margin-left: 20px;
    opacity: 1;
    visibility: visible;
}
.product-item.list .product-name {
    margin-bottom: 14px;
}
.product-item.list .product-name a {
    font-size: 15px;
}
.product-item.list .price {
    border-bottom: solid 1px #e5e5e5;
    padding-bottom: 12px;
}
.product-item.list .product-des {
    font-size: 13px;
    color: #777777;
    line-height: 24px;
    margin-bottom: 20px;
}
.product-item.style-2 {
    overflow: hidden;
}
.product-item.style-2 .product-thumb {
    width: 80px;
    display: table-cell;
    vertical-align: middle;
}
.product-item.style-2 .flash {
    display: none;
}
.product-item.style-2 .product-info {
    overflow: hidden;
    padding: 0 0 0 20px;
    display: table-cell;
    vertical-align: middle;
}
.product-item.style-2 .product-metas .category {
    float: none;
    max-width: 100%;
}
.loadmore-product {
    text-align: center;
}
.loadmore-product .loadmore-btn {
    font-size: 15px;
    border: solid 1px #222;
    color: #222;
    font-weight: 600;
    padding: 0 50px;
    line-height: 46px;
    border-radius: 25px;
    display: inline-block;
    margin: 22px 0 25px;
}
.loading .loadmore-product .loadmore-btn::before {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    content: "\f110";
    font-family: 'FontAwesome';
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
    display: inline-block;
}
.loadmore-product .loadmore-btn:hover {
    background-color: #222;
    color: #fff;
}
.product-item.style-3 .flash {
    display: none;
}
.product-item.style-3 .product-info {
    text-align: center;
    padding-bottom: 66px;
}
.product-item.style-3 .product-metas .category {
    float: none;
    max-width: 100%;
}
.product-item.style-3 .rating-wapper {
    margin-bottom: 10px;
}
.product-item.style-3 .rating-wapper .review {
    right: 0;
    margin: 0 auto;
}
.product-item.style-3 .product-metas .product-attr {
    float: none;
    width: 100%;
    text-align: center;
}
.product-item.style-3 .product-metas .product-attr .variations .attribute {
    float: none;
}
.product-item.style-4 .product-thumb {
    float: left;
    max-width: 470px;
}
.product-item.style-4 .product-info {
    padding: 0 0 0 30px;
    width: calc(100% - 470px);
    overflow: inherit;
    float: right;
}
.product-item.style-4 .summary .cart {
    border: none;
}
.product-item.style-4 .summary .product-name {
    margin-bottom: 20px;
}
.product-item.style-4 .product-name a {
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    margin-top: -8px;
}
.product-item.style-4:not(:hover) .rating-wapper .star-rating,
.product-item.style-4:hover .rating-wapper .review {
    opacity: 1;
    visibility: visible;
}
.product-item.style-4 .rating-wapper .review {
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-left: 10px;
    margin-left: 0;
    margin-top: 0;
}
.product-item.style-4 .rating-wapper .review::before {
    width: 1px;
    height: 11px;
    background: #898989;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.product-item.style-4 .summary .woocommerce-product-rating {
    padding-bottom: 24px;
}
.product-item.style-4 .summary .quantity .qty-label {
    display: none;
}
.product-item.style-4 .summary .price,
.product-item.style-4 .summary .price ins {
    font-size: 50px;
    color: #222;
    font-weight: 300;
}
.product-item.style-4 .summary .price del {
    font-size: 28px;
    color: #898989;
    font-weight: 300;
}
.product-item.style-4 .price,
.product-item.style-4 .price ins,
.product-item.style-4 .price .amount {
    font-size: inherit;
}
.product-item.style-4 .ovic-countdown > span {
    margin: 0 20px 20px 0;
    min-height: 100px;
    min-width: 102px;
    padding-top: 25px;
}
.product-item.style-4 .ovic-countdown > span:last-child {
    margin-right: 0;
}
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a:before {
    display: none;
}
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a {
    font-size: 13px;
    color: #555;
    width: 40px;
    height: 40px !important;
    line-height: 40px !important;
    text-align: center;
    padding: 0;
    margin: 0 10px 10px 0;
    background-color: #f6f6f6 !important;
    border-radius: 0;
    border: none;
    background-image: none !important;
}
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a:hover,
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a.active {
    color: #fff;
    background-color: #a7a7a7 !important;
}
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a:hover span,
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a.active span {
    color: #fff;
}
.product-item.style-4 .product-info .variations .data-val.attribute-pa_size a span {
    position: static;
    font-style: normal;
    padding: 0;
    font-size: 13px;
    color: #555;
    line-height: 40px;
    opacity: 1;
    visibility: visible;
}
.product-item.style-4 .summary .cart .quantity {
    display: none !important;
}
.product-item.style-4 .summary .cart .single_variation {
    border-bottom: none;
    padding: 35px 0 26px;
    margin-bottom: 0;
}
/*======SINGLE PRODUCT====*/
.woocommerce-product-gallery__trigger {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 110px;
    height: 24px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    font-size: 0;
}
.woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.woocommerce-product-gallery__trigger::before {
    content: '\e9c4';
    font-size: 24px;
    color: #222;
    font-family: 'abcicon';
}
.single-product .woocommerce-product-gallery__trigger img,
.single-product .woocommerce-product-gallery__trigger img.emoji {
    display: none !important;
}
/*SINGLE PRODUCT VETICAL AND DEFAULT*/
.woocommerce-product-gallery {
    width: 670px;
    float: left;
    position: relative;
}
.has-sidebar .woocommerce-product-gallery {
    width: 470px;
}
/*----*/
/*SINGLE PRODUCT HORIZONTAL */
.single-thumb-horizontal .woocommerce-product-gallery__trigger {
    left: 15px;
}
.single-thumb-horizontal .woocommerce-product-gallery {
    width: 570px;
}
.single-thumb-horizontal .has-sidebar .woocommerce-product-gallery {
    width: 470px;
}
/*----*/
/*SINGLE PRODUCT STICKY*/
.single-thumb-sticky .woocommerce-product-gallery {
    width: 670px;
}
.single-thumb-sticky .has-sidebar .woocommerce-product-gallery {
    width: 470px;
}
.single-thumb-sticky .sticky-product-wrap {
    display: inline-block;
    width: calc(100% - 670px);
}
.single-thumb-sticky .has-sidebar .sticky-product-wrap {
    width: calc(100% - 470px);
}
.single-thumb-sticky .wrapper-single-product {
    position: relative;
}
/*----*/
/*SINGLE PRODUCT SLIDE*/
.single-thumb-slide .woocommerce-product-gallery {
    width: 770px;
}
.single-thumb-slide .has-sidebar .woocommerce-product-gallery {
    width: 550px;
}
/*----*/
.flex-viewport {
    margin-bottom: 10px;
}
.flex-control-nav {
    padding: 0;
}
.flex-control-nav.slick-slider .slick-slide {
    margin-right: 2px !important;
    max-width: 80px;
}
.flex-control-nav.slick-slider .slick-slide img {
    border: solid 1px transparent;
}
.flex-control-nav.slick-slider .slick-slide:hover img,
.flex-control-nav.slick-slider .slick-slide img.flex-active {
    border-color: #9e9e9e;
}
.single-thumb-vertical .flex-control-nav,
.single-thumb-sticky .flex-control-nav {
    max-width: 80px;
    padding: 0;
    margin: 0;
    display: inline-block;
}
.single-thumb-sticky .flex-control-nav .slick-track {
    width: 80px !important;
}
.single-thumb-vertical .flex-control-nav .slick-arrow,
.single-thumb-sticky .flex-control-nav .slick-arrow,
.flex-control-nav .slick-arrow {
    display: none !important;
}
.single-thumb-sticky .woocommerce-product-gallery .woocommerce-product-gallery__image {
    float: none !important;
    margin-bottom: 10px;
}
.single-thumb-sticky .woocommerce-product-gallery .flex-viewport,
.single-thumb-vertical .woocommerce-product-gallery .flex-viewport {
    height: auto !important;
    width: calc(100% - 100px);
    float: right;
}
.single-thumb-sticky .woocommerce-product-gallery .slick-slide {
    display: inline-block !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 10px;
}
.single-thumb-sticky .woocommerce-product-gallery .slick-track,
.single-thumb-sticky .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    transform: none !important;
}
.single-thumb-sticky .woocommerce-product-gallery .zoomImg {
    display: none !important;
}
.single-thumb-sticky .wrapper-single-product {
    display: inline-block;
}
.wrapper-single-product {
    overflow: hidden;
    margin-bottom: 72px;
    width: 100%;
}
.single-product .breadcrumbs .breadcrumb {
    margin-bottom: 100px;
}
.single-product .woocommerce-product-gallery .slick-slider .slick-arrow,
.single-product .woocommerce-product-gallery .slick-slider:hover .slick-arrow {
    left: 0;
    top: calc(50% - 20px);
    font-size: 34px;
}
.single-product .slick-slider:hover .slick-arrow.next,
.single-product .slick-slider:hover .slick-arrow.next {
    left: auto;
    right: 0;
}
.single-product .slick-slider .slick-dots {
    margin: 30px 0 10px;
}
.single-product .slick-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    background-color: #b8b8b8;
    position: relative;
}
.single-product .slick-slider .slick-dots li.slick-active button::before {
    width: 13px;
    height: 13px;
    border-radius: 100%;
    background-color: #fff;
    border: solid 4px #222;
    position: absolute;
    z-index: 1;
    left: -3px;
    top: -3px;
    content: '';
}
.summary {
    overflow: hidden;
    padding-left: 30px;
}
.summary .product_title {
    font-size: 28px;
    color: #222;
    line-height: 32px;
    margin: 0 0 10px;
}
.summary .price {
    display: block;
}
.summary .price,
.summary .price ins {
    font-size: 15px;
    color: #222;
    text-decoration: none;
}
.summary .price del {
    color: #898989;
    font-size: 12px;
}
.summary .flash {
    display: none;
}
.summary .flash > span {
    height: 42px;
    padding: 0 15px;
    color: #ececec;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 42px;
    background-color: #222;
    margin-bottom: 5px;
    display: inline-block;
}
.summary .star-rating::before,
.summary .star-rating > span::before {
    font-size: 18px;
    letter-spacing: 6px;
}
.summary .woocommerce-product-rating {
    overflow: hidden;
}
.summary .woocommerce-product-rating .woocommerce-review-link {
    display: none;
}
.summary .rating-wapper .review {
    margin-left: 10px;
    font-size: 14px;
    line-height: 22px;
}
.summary .product_meta > span {
    display: block;
    font-size: 13px;
    color: #555;
    font-weight: 600;
}
.summary .product_meta > span span,
.summary .product_meta > span a {
    font-weight: normal;
}
.woocommerce-product-details__short-description {
    border-top: solid 1px #e5e5e5;
    padding: 20px 0 12px;
}
.woocommerce-product-details__short-description ul {
    padding: 0;
}
.woocommerce-product-details__short-description ul li {
    list-style: none;
    font-size: 13px;
    color: #777;
    position: relative;
}
.woocommerce-product-details__short-description ul li::before {
    width: 4px;
    height: 4px;
    content: '';
    display: inline-block;
    margin-right: 16px;
    background-color: #777;
}
.woocommerce-product-details__short-description p {
    font-size: 13px;
    color: #777;
    line-height: 24px;
    margin-bottom: 10px;
}
.product .summary .cart .variations {
    border-top: solid 1px #e5e5e5;
    padding: 12px 0 0;
    margin: 0;
}
.summary .variations .reset_variations {
    float: right;
}
.summary .variations td {
    border: none;
}
.summary .cart .single_variation {
    border-top: solid 1px #e5e5e5;
    padding: 15px 0 0;
    margin-bottom: 10px;
}
.summary .quantity .qty-label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    font-size: 13px;
    color: #999;
    font-style: italic;
}
.summary .quantity .control {
    max-width: 105px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.summary .quantity .control input {
    width: 74px;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    background-color: #f6f6f6;
    line-height: 38px;
    padding: 0;
    float: left;
    text-align: center;
    padding-right: 15px;
}
.summary .quantity .control a {
    display: inline-block;
    width: 16px;
    height: 18px;
    line-height: 18px;
    font-size: 16px;
    color: #fff;
    background-color: #999;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}
.summary .quantity .control a.quantity-minus {
    top: auto;
    bottom: 0;
}
.summary .quantity .control a:hover {
    color: #fff;
    background-color: #222;
}
.product .summary .quantity {
    padding: 20px 0;
    border-top: solid 1px #e5e5e5;
    margin: 0;
}
.summary .woocommerce-grouped-product-list.group_table .quantity .qty-label {
    display: none;
}
.summary .woocommerce-grouped-product-list.group_table .quantity {
    border: none;
}
.summary .woocommerce-grouped-product-list.group_table td {
    padding: 5px 10px;
    text-align: center;
}
.entry-summary.summary .cart {
    padding: 0;
}
.summary .single_add_to_cart_button {
    display: block;
    width: 100%;
    max-width: 470px;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
    background-color: #222222;
    padding: 0 20px;
    line-height: 47px;
    text-align: center;
    border: solid 1px #222;
}
.summary .single_add_to_cart_button:hover {
    color: #222;
    background-color: #fff;
    border-color: #222;
}
.summary .single_add_to_cart_button::before,
.summary .yith-wcwl-add-to-wishlist a::before,
.summary .compare::before {
    content: "\e982";
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    font-family: 'abcicon';
}
.summary .single_add_to_cart_button.product_type_grouped::before,
.summary .single_add_to_cart_button.product_type_variable::before,
.summary .single_add_to_cart_button.product_type_external::before {
    content: "\e9d0";
}
.summary .single_add_to_cart_button.loading::before {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    content: "\f110";
    font-family: 'FontAwesome';
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
}
.summary .yith-wcwl-add-to-wishlist {
    position: relative;
    margin: 0;
}
.summary .yith-wcwl-add-to-wishlist a,
.summary .compare,
.summary .woocommerce-variation-add-to-cart a.added_to_cart,
.summary form.cart a.added_to_cart a.added_to_cart {
    border: solid 1px #999999;
    padding: 0 20px;
    text-align: center;
    line-height: 47px;
    display: block;
    width: 100%;
    max-width: 470px;
    text-transform: capitalize;
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
    border-radius: 0;
    font-weight: 400;
}
.summary .woocommerce-variation-add-to-cart a.added_to_cart::before,
.summary form.cart a.added_to_cart a.added_to_cart::before {
    content: "\e9de";
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    font-family: 'abcicon';
}
.summary .woocommerce-variation-add-to-cart a.added_to_cart:hover,
.summary form.cart a.added_to_cart a.added_to_cart:hover {
    background-color: #222;
    color: #fff;
}
.summary .yith-wcwl-add-to-wishlist a:hover,
.summary .compare:hover {
    color: #fff;
    background-color: #222;
    border-color: #222;
}
.summary .yith-wcwl-add-to-wishlist a::before {
    content: "\e949";
}
.summary .compare::before {
    content: "\e95d";
}
.summary .ovic-share-socials {
    margin-bottom: 10px;
}
.summary .ovic-share-socials span {
    font-size: 13px;
    color: #555;
    font-weight: 600;
    line-height: 24px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}
.summary .ovic-share-socials a {
    display: inline-block;
    font-size: 18px;
    color: #555;
    margin-right: 12px;
}
.summary .ovic-share-socials a:last-child {
    margin-right: 0;
}
.summary .ovic-share-socials a:hover {
    color: #222;
}
.summary .variations .label label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    font-size: 13px;
    color: #999;
    font-style: italic;
    font-weight: normal;
}
.summary .variations .data-val a {
    border-radius: 100%;
    margin: 0 10px 0 0;
}
.summary .variations .data-val a::before {
    border: solid 1px #222;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
}
.summary .variations .data-val a.active::before,
.summary .variations .data-val a:hover::before {
    opacity: 1;
    visibility: visible;
    border-color: #222;
}
.summary .variations {
    display: table;
    width: 100%;
}
.summary .variations tr {
    border: none;
    display: table-row;
    border-bottom: solid 1px #e5e5e5;
}
.summary .variations tr:last-child {
    border: none;
}
.summary .variations td {
    padding: 26px 0 18px;
}
body.no-toolkit .summary .variations td {
    padding: 25px 15px;
}
.summary .variations .data-val a span {
    font-size: 13px;
    color: #999999;
    font-style: italic;
    position: absolute;
    z-index: 1;
    top: -30px;
    left: -10px;
    right: 0;
    margin: 0 auto;
    display: inline-block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    padding: 0 10px;
}
.summary .variations .data-val .change-value span.name {
    display: inline-block;
}
.summary .variations .data-val a:hover span,
.summary .variations .data-val a.active span {
    opacity: 1;
    visibility: visible;
}
#yith-quick-view-modal .yith-wcqv-wrapper .woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger {
    display: none;
}
#yith-quick-view-modal .yith-wcqv-main {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    max-height: 510px;
    overflow-y: auto;
}
#yith-quick-view-modal .woocommerce-product-gallery__image {
    max-height: 510px;
}
.woocommerce-tabs {
    clear: both;
    margin: 0 0 60px;
}
.woocommerce-tabs .wc-tabs {
    padding: 0;
    margin: 0 0 24px;
}
.woocommerce-tabs .wc-tabs li {
    display: inline-block;
    margin-right: 50px;
}
.woocommerce-tabs .wc-tabs li a {
    font-size: 15px;
    color: #999;
}
.woocommerce-tabs .wc-tabs li.active a {
    color: #222;
}
.woocommerce-tabs .wc-tabs li a::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-right: 6px;
    display: inline-block;
    background-color: #999;
    vertical-align: middle;
}
.woocommerce-tabs .wc-tabs li a:hover::before,
.woocommerce-tabs .wc-tabs li.active a::before {
    background-color: #222;
}
.woocommerce-tabs .woocommerce-Tabs-panel {
    border-top: solid 1px #e5e5e5;
    padding: 25px 0 0;
    box-shadow: none;
}
.woocommerce-tabs .woocommerce-Tabs-panel p {
    font-size: 13px;
    color: #777;
    line-height: 24px;
    margin-bottom: 25px;
}
.woocommerce-tabs .woocommerce-Tabs-panel ul,
.woocommerce-tabs .woocommerce-Tabs-panel ol {
    list-style: none;
}
.woocommerce-tabs .woocommerce-Tabs-panel .comment-form {
    margin-top: 15px;
}
.woocommerce-tabs .woocommerce-Tabs-panel .shop_attributes p {
    margin-bottom: 0;
}
#reviews .comment-form .comment-form-author {
    width: calc(50% - 15px);
    float: left;
}
#reviews .comment-form .comment-form-email {
    width: calc(50% - 15px);
    float: right;
}
#reviews .comment-form .comment-form-rating {
    margin: 0;
}
#reviews .comment-form .comment-form-comment {
    margin-bottom: 20px;
}
#reviews .comment-form .comment-form-comment textarea {
    width: 100%;
}
#reviews .comment-form .form-submit input {
    width: auto;
    height: 36px;
    line-height: 36px;
    padding: 0 25px;
}
#reviews .comment-form .form-submit input:hover {
    color: #fff;
    background-color: #222;
    border-color: #222;
}
#reviews #comments > .commentlist {
    padding: 0;
    margin: 0 0 20px;
}
.commentlist .comment_container .avatar {
    width: 50px;
    border-radius: 100%;
    float: left;
    margin-right: 20px;
}
.commentlist .comment_container .comment-text {
    overflow: hidden;
}
/*=======SHOP PAGE========*/
.breadcrumbs .trail-browse {
    display: none;
}
.breadcrumbs {
    display: block;
    clear: both;
}
.breadcrumbs .breadcrumb {
    text-align: center;
    background-color: transparent;
    border-top: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    padding: 12px 15px 11px;
    margin: 0 auto 40px;
    max-width: 1800px;
    border-radius: 0;
}
.breadcrumbs .breadcrumb li,
.breadcrumbs .breadcrumb li > a {
    font-size: 12px;
    color: #777;
}
.breadcrumbs .breadcrumb li {
    color: #222;
}
.archive .banner-shop-page {
    position: relative;
    overflow: hidden;
}
.archive .banner-shop-page::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.archive .banner-shop-page:hover::before {
    opacity: 1;
    visibility: visible;
}
.archive .banner-shop-page .page-title {
    display: block;
    position: absolute;
    z-index: 2;
    left: 110px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 50px;
    line-height: 50px;
    color: #222;
    font-weight: 300;
    text-transform: capitalize;
    margin: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.archive .banner-shop-page:hover .page-title {
    left: 160px;
}
/*.archive .banner-shop-page .page-title::before {*/
/*left: 500%;*/
/*top: -10px;*/
/*width: 1000%;*/
/*height: 2px;*/
/*border-top: solid 4px #222;*/
/*position: absolute;*/
/*z-index: 1;*/
/*content: '';*/
/*}*/
/*.archive .banner-shop-page:hover .page-title::before {*/
/*left: 0;*/
/*opacity: 1;*/
/*visibility: visible;*/
/*}*/
/*.archive .banner-shop-page .page-title::after {*/
/*right: 500%;*/
/*bottom: -10px;*/
/*width: 1000%;*/
/*height: 2px;*/
/*border-bottom: solid 4px #222;*/
/*position: absolute;*/
/*z-index: 1;*/
/*content: '';*/
/*}*/
/*.archive .banner-shop-page:hover .page-title::after {*/
/*right: 0;*/
/*opacity: 1;*/
/*visibility: visible;*/
/*}*/
/*.archive .banner-shop-page .page-title span::before {*/
/*left: -10px;*/
/*bottom: 500%;*/
/*width: 2px;*/
/*height: 1000%;*/
/*border-left: solid 4px #222;*/
/*position: absolute;*/
/*z-index: 1;*/
/*content: '';*/
/*}*/
/*.archive .banner-shop-page:hover .page-title span::before {*/
/*bottom: 0;*/
/*opacity: 1;*/
/*visibility: visible;*/
/*}*/
/*.archive .banner-shop-page .page-title span::after {*/
/*right: -10px;*/
/*top: 500%;*/
/*width: 2px;*/
/*height: 1000%;*/
/*border-right: solid 4px #222;*/
/*position: absolute;*/
/*z-index: 1;*/
/*content: '';*/
/*}*/
/*.archive .banner-shop-page:hover .page-title span::after {*/
/*top: 0;*/
/*opacity: 1;*/
/*visibility: visible;*/
/*}*/
/*.archive .banner-shop-page .page-title::before,*/
/*.archive .banner-shop-page .page-title span::before,*/
/*.archive .banner-shop-page .page-title::after,*/
/*.archive .banner-shop-page .page-title span::after {*/
/*-webkit-transition: 0.6s ease 0s;*/
/*-moz-transition: 0.6s ease 0s;*/
/*-ms-transition: 0.6s ease 0s;*/
/*-o-transition: 0.6s ease 0s;*/
/*transition: 0.6s ease 0s;*/
/*opacity: 0;*/
/*visibility: hidden;*/
/*}*/
.archive .pagination,
.woocommerce .pagination {
    margin: 22px 0 100px;
}
.archive .loadmore,
.woocommerce .loadmore {
    margin: 42px 0 100px;
}
.woocommerce .theme-container .banner-shop-page {
    display: none;
}
.woocommerce .theme-container .shop-control.shop-before-control {
    margin-top: -40px;
}
.shop-page .page-title {
    display: none;
}
.shop-control.shop-before-control {
    text-align: right;
    padding: 27px 0 24px;
}
.shop-control.shop-before-control::before,
.shop-control.shop-before-control::after {
    display: table;
    content: '';
}
.shop-control.shop-before-control::after {
    clear: both;
}
.shop-control.shop-before-control > div {
    display: inline-block;
    vertical-align: top;
    margin-left: 70px;
}
.shop-control.shop-before-control > div:first-child {
    margin-left: 0;
    float: left;
}
.shop-control.shop-before-control > div:last-child {
    float: right;
}
.wrapper-catalog-ordering > *,
.grid-view-mode form > * {
    vertical-align: middle;
    display: inline-block;
}
.shop-control span.title {
    font-size: 13px;
    color: #555;
    margin-right: 20px;
}
.wrapper-catalog-ordering select {
    border: none;
    font-size: 13px;
    color: #555;
    font-weight: 600;
    padding: 7px 20px;
}
/*.wrapper-catalog-ordering form.woocommerce-ordering {*/
/*border: solid 1px #dedede;*/
/*}*/
.wrap-display-mode {
    line-height: 0;
    font-size: 0;
}
.wrap-display-mode > * {
    line-height: 24px;
    font-size: 14px;
}
.grid-view-mode button {
    font-size: 13px;
    color: #999;
    padding: 0 15px;
    line-height: 38px;
    display: inline-block;
    min-width: 38px;
    font-weight: 400;
    text-transform: capitalize;
    background-color: transparent;
    opacity: 1;
}
.grid-view-mode button:hover {
    color: #555;
}
.grid-view-mode button.active {
    color: #555;
    font-weight: 600;
    background-color: #f6f6f6;
}
.shop-page .grid-view-mode button.item-5,
.shop-page .grid-view-mode button.item-6 {
    display: none;
}
.shop-page .theme-container .grid-view-mode button.item-5,
.shop-page .theme-container .grid-view-mode button.item-6 {
    display: inline-block;
}
ul.products {
    padding: 0;
    margin: 0;
    list-style: none;
}
.shop-control {
    position: relative;
}
.shop-control .filter-sidebar-content {
    float: left;
}
.shop-control .filter-sidebar-content .shop-sidebar {
    position: absolute;
    z-index: 10;
    width: 100%;
    top: 100%;
    background-color: #fff;
    -webkit-transform: scaleY(0);
    -moz-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    padding: 50px 30px;
    text-align: left;
    transform-origin: top;
}
.shop-control .filter-sidebar-content.open .shop-sidebar {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
}
.shop-control .action-filter-sidebar {
    font-size: 15px;
    color: #222;
    font-weight: 600;
    display: inline-block;
    line-height: 38px;
}
.shop-control .action-filter-sidebar::after {
    display: inline-block;
    content: "\e9a3";
    font-family: 'abcicon';
    margin-left: 5px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    float: right;
}
.shop-control .filter-sidebar-content.open .action-filter-sidebar::after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.shop-control .filter-sidebar-content .shop-sidebar > div.widget {
    width: 25%;
    float: left;
    padding: 0 30px;
    margin-bottom: 40px;
}
.shop-control .filter-sidebar-content .shop-sidebar > div.widget .widgettitle {
    font-size: 13px;
    color: #222;
    font-weight: 600;
    border: none;
    padding: 0;
    margin-bottom: 15px;
}
.shop-page .products .product-item:not(.list) {
    margin-bottom: 22px;
}
.single-product .shop-page .products .product-item:not(.list) {
    margin-bottom: 0;
}
/*======CART=========*/
.woocommerce-cart:not(.no-toolkit) .page-title,
.woocommerce-checkout:not(.no-toolkit) .page-title {
    display: none;
}
.woocommerce-cart-form {
    width: 57.57%;
    float: left;
    margin-bottom: 100px;
    margin-top: 5px;
}
.cart-collaterals {
    float: right;
    max-width: 370px;
    width: calc(100% - 61.57%);
    margin-top: 5px;
    margin-bottom: 100px;
    padding: 30px 20px;
    background-color: #f2f2f2;
}
.shop_table thead tr th {
    display: none;
}
.shop_table,
.shop_table tr {
    border: none;
    margin: 0;
}
.woocommerce table.wishlist_table tbody td,
.shop_table tr td {
    padding: 0;
    display: inline-block;
    vertical-align: top;
    border: none;
}
.wishlist-empty {
    font-size: 16px;
    color: #222;
}
.shop_table tr {
    border-bottom: solid 1px #e5e5e5;
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}
.shop_table tr:first-child {
    padding-top: 0;
}
.shop_table tr:last-child {
    border: none;
    padding: 18px 0;
}
.shop_table td.product-remove,
.woocommerce table.wishlist_table tr td.product-remove {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 36px;
    padding: 0;
}
.woocommerce table.wishlist_table tr td.product-remove {
    top: 17px;
}
.shop_table td.product-remove a {
    font-size: 0;
}
.shop_table td.product-remove a::before {
    content: '\e99f';
    font-family: 'abcicon';
    display: inline-block;
    font-size: 16px;
    color: #999;
}
.shop_table td.product-remove a:hover::before {
    color: #222;
}
.shop_table td.product-name {
    padding-top: 12px;
}
.shop_table td.product-name a {
    font-size: 15px;
    color: #222;
}
.shop_table td .yith-wcqv-button,
.woocommerce .wishlist_table td.product-name > .yith-wcqv-button {
    display: none;
}
.shop_table td.product-price,
.shop_table td.product-quantity,
.shop_table td.product-stock-status {
    position: absolute;
    z-index: 1;
    left: 120px;
    top: 52px;
    padding: 0;
    display: inline-block;
}
.shop_table td.product-price {
    font-size: 12px;
    color: #898989;
}
.shop_table td.product-quantity {
    top: 82px;
}
.shop_table td.product-stock-status {
    top: 72px;
}
.shop_table .product-quantity .control {
    max-width: 60px;
    margin: 0 auto;
}
.shop_table .product-quantity .control .btn-number {
    height: 24px;
    line-height: 24px;
    color: #a1a1a1;
    font-size: 14px;
    display: inline-block;
}
.shop_table .product-quantity .control .btn-number.quantity-minus i::before {
    content: '\e977';
}
.shop_table .product-quantity .control .btn-number.quantity-plus i::before {
    content: '\e982';
}
.shop_table .product-quantity .control .btn-number:hover {
    color: #222;
}
.shop_table .product-quantity .control .quantity-minus {
    float: left;
}
.shop_table .product-quantity .control input {
    width: 26px;
    height: 24px;
    line-height: 24px;
    padding: 0;
    text-align: center;
    border: none;
    font-size: 13px;
    color: #777;
}
.shop_table td.product-thumbnail {
    width: 117px;
}
.wishlist_table tr td.product-thumbnail a,
.shop_table .product-thumbnail img {
    max-width: 100px;
}
.shop_table td.product-subtotal {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 84px;
    font-size: 13px;
    color: #222;
}
.shop_table .product-quantity .qty-label {
    display: none;
}
.shop_table thead {
    display: none;
}
.shop_table .actions {
    text-align: left;
    padding: 0;
}
.woocommerce table.wishlist_table tbody td.product-add-to-cart {
    float: right;
    margin-right: 50px;
}
.woocommerce table.wishlist_table tbody td.product-add-to-cart a {
    color: #777777;
    font-size: 13px;
    font-weight: 400;
    display: block;
    line-height: 36px;
    background-color: #fff;
    text-align: center;
    padding: 0 30px;
    border: solid 1px #777;
    text-transform: uppercase;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    border-radius: 0;
}
.woocommerce table.wishlist_table tbody td.product-add-to-cart a::before {
    content: "\e982";
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    font-family: 'abcicon';
}
.woocommerce table.wishlist_table tbody td.product-add-to-cart a:hover {
    background-color: #222;
    color: #fff;
    opacity: 1;
}
.woocommerce .wishlist_table td.product-add-to-cart a.loading::before {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    content: "\f110";
    font-family: 'FontAwesome';
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
}
.shop_table .actions::before,
.shop_table .actions::after {
    content: '';
    display: table;
    clear: both;
}
.shop_table .actions,
.shop_table .actions .coupon {
    display: block;
    width: 100%;
}
.shop_table .actions .coupon label {
    font-size: 13px;
    color: #222;
    display: block;
    margin-bottom: 10px;
}
.shop_table .actions .coupon .input-text {
    font-size: 12px;
    color: #999;
    border: solid 1px #e6e5e5;
    padding: 0 30px;
    height: 38px;
    line-height: 38px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
}
.shop_table .actions .coupon .button {
    line-height: 38px;
    padding: 0 30px;
    border-radius: 20px;
    color: #fff;
    background: #555555;
    font-size: 13px;
    margin-bottom: 30px;
}
.shop_table .actions > .button {
    float: left;
    background-color: #fff;
    line-height: 50px;
    height: 50px;
    padding: 0 20px;
    border: solid 1px #222;
    font-weight: 600;
    font-size: 16px;
    color: #222;
    -webkit-transition: background-color 0.5s ease 0s;
    -moz-transition: background-color 0.5s ease 0s;
    -ms-transition: background-color 0.5s ease 0s;
    -o-transition: background-color 0.5s ease 0s;
    transition: background-color 0.5s ease 0s;
    border-radius: 25px;
    text-transform: capitalize;
    min-width: 250px;
}
.shop_table .actions .button:hover,
.shop_table .actions > .button[disabled]:hover {
    background-color: #222;
    color: #fff;
}
.cart-collaterals h2 {
    font-size: 24px;
    margin: 0 0 26px;
    text-transform: capitalize;
    color: #222;
    font-weight: 400;
}
.cart-collaterals .shop_table tr th {
    padding: 0;
    border: 0;
    display: inline-block;
    font-size: 18px;
    color: #222;
}
.cart-collaterals .shop_table tr td {
    float: right;
    font-size: 18px;
    color: #222;
}
.woocommerce-shipping-calculator {
    margin-top: 15px;
}
.shipping-calculator-form .button {
    line-height: 38px;
    padding: 0 30px;
    border-radius: 20px;
    color: #fff;
    background: #555555;
    font-size: 13px;
    margin-bottom: 30px;
}
.shipping-calculator-form .button:hover {
    background-color: #222;
    color: #fff;
}
.wc-proceed-to-checkout a {
    display: block;
    width: 100%;
    height: 52px;
    line-height: 52px;
    padding: 0 30px;
    border-radius: 28px;
    background-color: #c61a32;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 5px;
}
.wc-proceed-to-checkout a:hover,
.wc-proceed-to-checkout a:focus {
    background-color: #222;
    color: #fff;
    opacity: 1;
}
.woocommerce-cart .breadcrumbs .breadcrumb {
    margin-bottom: 92px;
}
.woocommerce-cart .page-main-content {
    clear: left;
}
.woocommerce-cart .return-to-shop {
    margin-bottom: 100px;
}
.woocommerce-cart .return-to-shop a {
    padding: 0 35px;
    min-width: 148px;
    text-align: center;
    line-height: 40px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 40px;
    color: #fff;
    background-color: #212121;
}
.woocommerce-cart .return-to-shop a:hover {
    color: #fff;
    background-color: #c61a32;
}
.wishlist-title {
    display: none;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table,
.woocommerce-checkout-review-order .woocommerce-checkout-payment {
    width: 100%;
    float: none;
    border-top: solid 1px #222;
    padding-top: 20px;
    margin-top: 30px;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tr,
.woocommerce-checkout-review-order .woocommerce-checkout-payment tr {
    display: table-row;
    padding: 0;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order .woocommerce-checkout-payment th {
    border: none;
    padding: 10px 0;
    text-align: left;
}
.woocommerce-checkout-review-order .woocommerce-checkout-review-order-table tr .product-total,
.woocommerce-checkout-review-order .woocommerce-checkout-payment tr .product-total {
    text-align: right;
}
.woocommerce-checkout-review-order-table .cart_item td {
    display: table-cell;
    padding: 10px 0;
}
.woocommerce-checkout-review-order-table .cart-subtotal {
    border-top: solid 1px #222;
}
.woocommerce-checkout-review-order-table .cart-subtotal td,
.woocommerce-checkout-review-order-table .shipping td,
.woocommerce-checkout-review-order-table .order-total td {
    text-align: right;
    font-weight: 600;
    padding: 10px 0;
    float: right;
}
/*/CHECKOUT*/
/*CONTACT US*/
.wpcf7-form {
    max-width: 370px;
}
.wpcf7-form .contact-title {
    font-size: 24px;
    color: #222;
    margin: 0 0 5px;
}
.wpcf7-form label {
    font-size: 13px;
    color: #555;
    display: block;
}
.wpcf7-form p {
    margin-bottom: 12px;
}
.wpcf7-form label input {
    width: 100%;
    height: 36px;
    border-radius: 20px;
    font-size: 12px;
    color: #999;
    background-color: #fff;
    padding: 0 25px;
    border: solid 1px #e5e5e5;
}
.wpcf7-form label textarea {
    width: 100%;
    border-radius: 0;
    background-color: #fff;
    padding: 10px 20px;
    height: 90px;
    min-height: 90px;
    margin-bottom: 20px;
}
.wpcf7-form input[type="submit"] {
    font-size: 16px;
    color: #fff;
    text-transform: capitalize;
    min-width: 296px;
    text-align: center;
    padding: 0 25px;
    height: 52px;
    background-color:#2c2c36;
}
/*ACCOUNT page*/

/*======HEADER STYLE=========*/
.header {
    position: relative;
    z-index: 12;
}
.header-mobile,
.menu-mobile {
    display: none;
}
.menu-mobile .icon {
    font-size: 24px;
    color: #222222;
    vertical-align: middle;
    display: inline-block;
    margin-right: 4px;
}
.menu-mobile .icon i {
    line-height: 24px;
}
.menu-mobile .text {
    vertical-align: middle;
    display: inline-block;
    font-size: 15px;
    color: #222;
    font-weight: 600;
}
.header.style-1 .middle-main-header {
    text-align: center;
    width: 60%;
    display: inline-block;
    vertical-align: top;
    float: left;
}
.header.style-1 .middle-main-header > * {
    display: inline-block;
    vertical-align: top;
}
.header.style-1 .logo {
    padding: 0 50px;
    line-height: 50px;
}
.header.style-1 .main-header {
    padding: 40px 0 20px;
    position: relative;
}
.header.style-1 .main-header::before,
.header.style-1 .main-header::after {
    content: '';
    display: table;
}
.header.style-1 .main-header::after {
    clear: both;
}
.header.style-1 .main-header .left-main-header {
    padding: 7px 0;
    width: 20%;
    display: inline-block;
    vertical-align: top;
    float: left;
}
.header.style-1 .main-header .right-main-header {
    position: static;
    padding: 13px 0 20px;
    width: 20%;
    display: inline-block;
    vertical-align: top;
    float: left;
    text-align: right;
}
.header.style-1 .main-header .right-main-header > * {
    text-align: left;
}
.header.style-1.header-innerpage {
    position: absolute;
    z-index: 1;
    top: 0;
    width: 100%;
}
.admin-bar .header.style-1.header-innerpage {
    top: 32px;
}
.header.style-1.header-innerpage .main-header {
    margin-bottom: 20px;
}
body .header.style-1.header-innerpage .breadcrumbs {
    display: block;
}
.main-header .right-main-header > div {
    display: inline-block;
    margin-right: 24px;
}
.main-header .right-main-header > div:last-child {
    margin-right: 0;
}
.block-user {
    position: relative;
    padding-right: 30px;
    margin-right: 20px;
}
.block-user.open .woocommerce-error,
.block-user .woocommerce-error.hidden {
    opacity: 0;
    visibility: hidden;
}
.block-user .woocommerce-error {
    position: absolute;
    z-index: 2;
    top: 100%;
    left: -50%;
    list-style: none;
    margin: 0;
    background-color: #c383a1;
    width: 300px;
    text-align: center;
    padding: 5px 10px;
    color: #fff;
}
.block-user::after {
    width: 1px;
    top: 0;
    bottom: 0;
    content: '';
    position: absolute;
    z-index: 1;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    height: 18px;
    margin: auto 0;
}
.block-user .user-link {
    color: #777;
    font-size: 13px;
    font-style: italic;
    display: inline-block;
    vertical-align: top;
}
.block-user .user-link .text {
    color: #222;
    font-style: normal;
    vertical-align: top;
    display: inline-block;
    font-weight: 600;
}
.block-user .user-link .icon {
    font-size: 20px;
    color: #222;
    vertical-align: top;
    display: inline-block;
}
.header .block-user .sub-menu {
    margin-top: 21px;
    min-width: 186px;
    background-color: #222;
}
.block-user.open .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.header .block-user .ayvo-loginform {
    position: fixed;
    z-index: 99;
    max-width: 600px;
    width: 100%;
    background-color: #fff;
    padding: 50px 90px;
    top: 200px;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    min-width: 186px;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    width: 100%;
    padding: 0;
    border: none;
    margin: 0;
}
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
    display: none;
}
.woocommerce-checkout .woocommerce .col2-set .col-2, .woocommerce-checkout .woocommerce-page .col2-set .col-2 {
    display: block;
}
.col2-set .col-1 > h2, .col2-set .col-2 > h2,
.woocommerce-billing-fields > h3,
.woocommerce-shipping-fields > h3,
.woocommerce-additional-fields > h3, #order_review_heading {
    font-size: 24px;
    color: #222;
    line-height: 34px;
    margin: 0 0 30px;
}
.woocommerce .col2-set .col-1 form .woocommerce-form-row,
.woocommerce-page .col2-set .col-1 form .woocommerce-form-row,
.woocommerce .col2-set .col-2 form .woocommerce-form-row,
.woocommerce-page .col2-set .col-2 form .woocommerce-form-row {
    text-align: left;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    font-size: 13px;
    color: #555;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
    border-radius: 20px;
    height: 36px;
    border: solid 1px #e6e5e5;
    background-color: #fff;
}
.woocommerce .col2-set .col-1 form .woocommerce-Button,
.woocommerce-page .col2-set .col-1 form .woocommerce-Button,
.woocommerce .col2-set .col-2 form .woocommerce-Button,
.woocommerce-page .col2-set .col-2 form .woocommerce-Button {
    font-size: 16px;
    border-radius: 25px;
    min-width: 295px;
    padding: 0 30px;
    text-align: center;
    line-height: 50px;
    border: solid 1px #222;
    color: #222;
    margin-top: 16px;
    background-color: #fff;
}
.woocommerce .col2-set .col-1 form .woocommerce-Button:hover,
.woocommerce-page .col2-set .col-1 form .woocommerce-Button:hover,
.woocommerce .col2-set .col-2 form .woocommerce-Button:hover,
.woocommerce-page .col2-set .col-2 form .woocommerce-Button:hover {
    color: #fff;
    background-color: #222;
}
.woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox {
    display: block;
    margin: 20px 0 0;
    font-size: 13px;
    color: #555;
    padding: 0;
}
.woocommerce-form-login .woocommerce-LostPassword {
    margin: 0 0 10px;
}
.woocommerce-form-login .woocommerce-LostPassword a {
    font-size: 13px;
    color: #999;
}
.ayvo-footer-account a,
.ayvo-footer-account a:hover {
    color: #222;
}
.woocommerce-page .col2-set .col-2 form .woocommerce-privacy-policy-text {
    font-size: 13px;
    color: #999;
    line-height: 24px;
}
.woocommerce-account .fullwidth-template .woocommerce {
    max-width: 600px;
    text-align: center;
    margin: 100px auto;
    padding: 50px 90px;
    border: solid 1px #e5e5e5;
}
.logged-in.woocommerce-account .fullwidth-template .woocommerce {
    max-width: 100%;
    text-align: left;
}
.woocommerce-account .fullwidth-template .woocommerce::before,
.woocommerce-account .fullwidth-template .woocommerce::after {
    display: table;
    content: '';
}
.woocommerce-account .fullwidth-template .woocommerce::after {
    clear: both;
}
.woocommerce-account .fullwidth-template .woocommerce .ayvo-footer-account {
    text-align: center;
}
.block-minicart {
    position: relative;
    vertical-align: top;
    display: inline-block;
}
.block-minicart .cart-link {
    display: inline-block;
    vertical-align: top;
    position: relative;
    font-size: 20px;
    color: #222;
    padding-right: 35px;
    line-height: 0;
}
.block-minicart .cart-link::after {
    display: inline-block;
    font-family: 'FontAwesome';
    content: '\f107';
    margin-left: 5px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    float: right;
    position: absolute;
    z-index: 2;
    right: 0;
    font-size: 16px;
    color: #999;
    top: 0;
    bottom: 0;
    line-height: 20px;
}
.block-minicart .cart-link .text {
    display: none;
}
.block-minicart .cart-link .count {
    font-size: 14px;
    color: #fff;
    border-radius: 10px;
    height: 20px;
    line-height: 20px;
    min-width: 20px;
    padding: 0 5px;
    font-weight: 500;
    background-color: #222;
    position: absolute;
    z-index: 2;
    text-align: center;
    top: -6px;
    left: 20px;
}
.block-minicart .widget_shopping_cart > h2,
.block-minicart .widget_shopping_cart .widgettitle {
    display: none;
}
.block-minicart .widget_shopping_cart {
    top: 100%;
    position: absolute;
    z-index: 5;
    width: 350px;
    border: solid 1px #dedede;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    right: -15px;
    background-color: #fff;
    padding: 0;
    margin-top: 21px;
    opacity: 0;
    visibility: hidden;
}
.block-minicart .widget_shopping_cart::before {
    width: 100%;
    height: 30px;
    bottom: 100%;
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.block-minicart:hover .widget_shopping_cart {
    opacity: 1;
    visibility: visible;
}
.block-minicart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
    font-size: 12px;
    text-align: center;
    color: #777;
    margin: 25px 0;
}
.widget_shopping_cart_content .cart-title {
    margin: 0 20px;
    font-size: 15px;
    color: #222222;
    text-transform: uppercase;
    padding: 20px 0;
    border-bottom: solid 1px #e5e5e5;
}
.widget_shopping_cart_content .cart_list {
    border-bottom: solid 1px #e5e5e5;
    max-height: 265px !important;
    overflow-y: auto;
    margin: 0 20px;
    padding: 20px 0 0;
}
.widget_shopping_cart_content .cart_list li {
    display: block;
    overflow: hidden;
    padding: 0 0 20px;
    margin: 0 20px 20px 0;
    border-bottom: solid 1px #e5e5e5;
    position: relative;
}
.widget_shopping_cart_content .cart_list li:last-child {
    border-bottom: none;
    margin-top: 0;
}
.widget_shopping_cart_content .cart_list li a {
    font-size: 13px;
    color: #222;
    display: block;
    margin-right: 25px;
    line-height: 16px;
}
.widget_shopping_cart_content .cart_list li a img {
    max-width: 70px;
    float: left;
    margin-right: 20px;
}
.widget_shopping_cart_content .cart_list li a.remove {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    font-size: 0;
    font-style: normal;
    padding: 0;
    margin: 0;
}
.widget_shopping_cart_content .cart_list .remove::before {
    content: "\e99f";
    font-family: 'abcicon';
    font-size: 16px;
}
.widget_shopping_cart_content .cart_list .quantity {
    position: absolute;
    z-index: 1;
    left: 90px;
    bottom: 36px;
    color: #777777;
    font-size: 13px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total {
    text-align: center;
    font-size: 12px;
    color: #777;
    padding: 30px 0;
    margin: 0;
}
.widget_shopping_cart_content .buttons {
    margin: -1px;
}
.widget_shopping_cart_content .buttons a {
    display: block;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    background-color: #777;
    padding: 20px;
    text-align: center;
}
.widget_shopping_cart_content .buttons a.wc-forward:not(.checkout) {
    display: none;
}
.widget_shopping_cart_content .buttons a:hover {
    background-color: #222;
}
.widget_shopping_cart_content .scroll-element,
.widget_shopping_cart_content .scroll-element div {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}
.widget_shopping_cart_content .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.widget_shopping_cart_content .scroll-element .scroll-element_track {
    display: none;
}
.widget_shopping_cart_content .scroll-element .scroll-bar {
    background-color: #6C6E71;
    display: block;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    opacity: 0.7;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}
.widget_shopping_cart_content .scroll-element .scroll-bar:hover {
    background: linear-gradient(180deg, #c467f5, #53f3ff);
}
.widget_shopping_cart_content .scroll-element.scroll-x {
    bottom: 0;
    height: 0;
    left: 0;
    min-width: 100%;
    overflow: visible;
    width: 100%;
}
.widget_shopping_cart_content .scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 0;
    top: 0;
    width: 0;
}
/* scrollbar height/width & offset from container borders */
.widget_shopping_cart_content .scroll-element.scroll-x .scroll-bar {
    height: 7px;
    min-width: 10px;
    top: -9px;
}
.widget_shopping_cart_content .scroll-element.scroll-y .scroll-bar {
    left: -9px;
    min-height: 10px;
    width: 7px;
}
.widget_shopping_cart_content.scroll-element.scroll-x .scroll-element_outer {
    left: 2px;
}
.widget_shopping_cart_content .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
}
.widget_shopping_cart_content .scroll-element.scroll-y .scroll-element_outer {
    top: 2px;
}
.widget_shopping_cart_content .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
}
/* update scrollbar offset if both scrolls are visible */
.widget_shopping_cart_content .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px;
}
.widget_shopping_cart_content .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px;
}
.main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}
.main-menu > li {
    display: inline-block;
    list-style: none;
    padding: 13px 22px;
    position: relative;
}
.main-menu > li:hover {
    z-index: 2;
}
.main-menu > li:first-child {
    padding-left: 0;
}
.main-menu > li:last-child {
    padding-right: 0;
}
.main-menu li a {
    position: relative;
}
.main-menu > li a img {
    position: absolute;
    z-index: 1;
    bottom: calc(100% + 4px);
    right: 0;
}
.main-menu > li > .desc {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    padding: 0 8px;
    line-height: 20px;
    border-radius: 10px;
    background-color: #c61a32;
    position: absolute;
    right: 0;
    bottom: calc(100% - 10px);
}
.main-menu li a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    background-color: #222;
}
.main-menu li:hover > a::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
}
.main-menu > li > a {
    font-size: 15px;
    color: #555;
    text-transform: uppercase;
    display: inline-block;
}
.main-menu > li:hover > a,
.main-menu > li > a:hover {
    color: #222222;
}
.main-menu li.current a {
    color: #222222;
}
.menu-item-has-children {
    position: relative;
}
.menu-item-has-children > a::after {
    display: inline-block;
    content: "\e9a3";
    font-family: 'abcicon';
    margin-left: 5px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    float: right;
}
.ovic-menu-clone-wrap .menu-item-has-children > a::after {
    display: none;
}
.header .sub-menu .menu-item-has-children:hover > a::after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.header .sub-menu {
    position: absolute;
    z-index: 11;
    background-color: #222;
    box-shadow: 1px 0 8px rgba(0, 0, 0, 0.18);
    padding: 35px 0;
    top: 100%;
    left: 0;
    text-align: left;
    min-width: 225px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
    margin-top: 9px;
}
.header .header-nav .sub-menu:not(.megamenu) {
    background-color: #222222;
}
.header .sub-menu.megamenu {
    padding: 0;
}
.header .sub-menu::before {
    height: 18px;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: -16px;
    content: '';
}
.main-menu > li:last-child > .sub-menu {
    left: auto;
    right: 0;
}
.main-menu.left > li:last-child > .sub-menu {
    right: auto;
    left: 0;
}
.main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.4s ease 0s;
    -moz-transition: 0.4s ease 0s;
    -ms-transition: 0.4s ease 0s;
    -o-transition: 0.4s ease 0s;
    transition: 0.4s ease 0s;
    z-index: 999;
}
.header .sub-menu li {
    display: block;
    padding: 0 30px;
    margin-bottom: 10px;
}
.header .sub-menu li a {
    font-size: 14px;
    color: #999;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
}
.header .sub-menu li a::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
    transform: scale3d(0, 1, 1);
    transform-origin: 100% 50%;
    background-color: #fff;
}
.header .sub-menu li:hover > a::before {
    transform: scale3d(1, 1, 1);
    transform-origin: 0% 50%;
}
.header .sub-menu li:hover > a,
.header .sub-menu li a:hover {
    color: #fff;
}
.main-menu .sub-menu li .sub-menu {
    left: 100%;
    top: -35px;
    margin-left: 1px;
    margin-top: 0;
}
.main-menu .sub-menu li .sub-menu::before {
    width: 3px;
    height: 100%;
    left: -3px;
}
.header .sub-menu .widgettitle {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 15px;
    text-transform: capitalize;
}
.ovic-menu-clone-wrap .ovic-menu-sub-panel .menu li,
.header .sub-menu.megamenu li {
    padding: 0 15px;
}
.block-search .open-search {
    font-size: 20px;
    color: #222;
    padding: 0 5px;
    display: inline-block;
    vertical-align: top;
}
.block-search .form-search {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    top: 100%;
    border-top: solid 1px #dedede;
    border-bottom: solid 1px #dedede;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 22px 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    margin-top: -19px;
}
.header .header-wrap-stick.fixed .block-search .form-search {
    margin-top: -14px;
}
.block-search .form-search::before {
    width: 100%;
    height: 20px;
    bottom: 100%;
    content: '';
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.block-search.open .form-search {
    opacity: 1;
    visibility: visible;
}
.block-search .form-search .inner {
    position: relative;
}
.block-search .form-search .inner .btn-submit {
    display: none;
}
.block-search .form-search .input-info,
.block-search .search-box .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
    font-size: 24px;
    color: #999;
    height: 50px;
    padding: 0 20px 0 0;
    width: 100%;
    display: block;
    border: none;
    box-shadow: none;
}
.block-search .form-search .close-search {
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 24px;
    height: 24px;
    margin: auto 0;
    display: inline-block;
    color: #999;
}
.block-search .form-search .close-search:hover {
    color: #222;
}
.dgwt-wcas-close:not(.dgwt-wcas-inner-preloader),
.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier{
    display: none;
}
body .dgwt-wcas-suggestions-wrapp {
    border-top: solid 1px #ddd;
    margin-top: 22px;
    padding: 10px;
}
body .dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product {
    width: 33.33%;
    float: left;
}
body .dgwt-wcas-preloader {
    right: auto;
    left: 50%;
}
body:not(.dgwt-wcas-is-details) .dgwt-wcas-suggestion {
    border: solid 1px #ddd;
    border-right: none;
}
body:not(.dgwt-wcas-is-details) .dgwt-wcas-suggestion:last-child {
    border-bottom: solid 1px #ddd !important;
    border-right: solid 1px #ddd;
}
.block-search.style-2 .form-search {
    opacity: 1;
    visibility: visible;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 9px 0 0;
}
.block-search.style-2 .form-search::before {
    display: none;
}
.block-search.style-2 .form-search .inner {
    position: relative;
    padding-right: 154px;
}
.block-search.style-2 .form-search .inner::before {
    content: "\f002";
    font-family: 'abcicon';
    font-size: 20px;
    color: #999;
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 0;
    line-height: 40px;
}
.block-search.style-2 .form-search .btn-submit {
    font-size: 16px;
    color: #fff;
    background-color: #222;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
    padding: 0 35px;
    display: inline-block;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    line-height: 40px;
}
.block-search.style-2 .form-search .input-info {
    font-size: 13px;
    color: #999;
    padding: 0;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #e5e5e5;
    padding-left: 46px;
}
.header-message .message-item {
    display: table;
    float: left;
    margin-right: 15px;
    font-size: 13px;
    color: #555;
}
.header-message .message-item .icon {
    font-size: 18px;
    color: #555555;
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
}
.header-message .message-item .text {
    display: table-cell;
    vertical-align: middle;
    max-width: 96px;
    line-height: 18px;
}
/*Header Sticky*/
.header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    z-index: 11;
}
.header-sticky:not(.is-sticky) {
    -webkit-transform: translateY(-150%);
    -moz-transform: translateY(-150%);
    -ms-transform: translateY(-150%);
    -o-transform: translateY(-150%);
    transform: translateY(-150%);
}
.header-sticky .main-menu-wapper {
    text-align: center;
}
.header-sticky .main-menu-wapper > * {
    display: inline-block;
    vertical-align: top;
}
.admin-bar .header-sticky {
    top: 32px;
}
.menu-mobile {
    display: none;
}
/*----- HEADER STICKY -----*/
@media (min-width: 1025px) {
    .header-wrap-stick.fixed {
        padding: 15px 0;
        max-width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background-color: #fff;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        /*-webkit-transition: transform 0.3s ease;*/
        /*-moz-transition: transform 0.3s ease;*/
        /*-o-transition: transform 0.3s ease;*/
        /*transition: transform 0.3s ease;*/
    }
    .header.style-1 .main-header .header-wrap-stick.fixed .right-main-header {
        padding: 13px 0;
    }
    .header.style-1 .header-wrap-stick.fixed .block-search .form-search {
        margin-top: -7px;
    }
    .header-wrap-stick.fixed:not(.hide-header) {
        animation: move_down 0.4s ease 0s normal none 1 running;
        -o-animation: move_down 0.4s ease 0s normal none 1 running;
        -webkit-animation: move_down 0.4s ease 0s normal none 1 running;
    }
    .admin-bar .header-wrap-stick.fixed:not(.hide-header) {
        -webkit-transform: translateY(32px);
        -moz-transform: translateY(32px);
        -ms-transform: translateY(32px);
        -o-transform: translateY(32px);
        transform: translateY(32px);
        animation: move_down_admin 0.4s ease 0s normal none 1 running;
        -o-animation: move_down_admin 0.4s ease 0s normal none 1 running;
        -webkit-animation: move_down_admin 0.4s ease 0s normal none 1 running;
    }
    .header-wrap-stick.fixed.hide-header {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        animation: move_up 0.4s ease 0s normal none 1 running;
        -o-animation: move_up 0.4s ease 0s normal none 1 running;
        -webkit-animation: move_up 0.4s ease 0s normal none 1 running;
    }
    .admin-bar .header-wrap-stick.fixed.hide-header {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        animation: move_up_admin 0.4s ease 0s normal none 1 running;
        -o-animation: move_up_admin 0.4s ease 0s normal none 1 running;
        -webkit-animation: move_up_admin 0.4s ease 0s normal none 1 running;
    }
    @keyframes move_down_admin {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(32px);
        }
    }
    @-webkit-keyframes move_down_admin {
        0% {
            -webkit-transform: translateY(-100%);
        }
        100% {
            -webkit-transform: translateY(32px);
        }
    }
    @keyframes move_down {
        0% {
            transform: translateY(-100%);
        }
        100% {
            transform: translateY(0);
        }
    }
    @-webkit-keyframes move_down {
        0% {
            -webkit-transform: translateY(-100%);
        }
        100% {
            -webkit-transform: translateY(0);
        }
    }
    @keyframes move_up_admin {
        0% {
            transform: translateY(32px);
        }
        100% {
            transform: translateY(-100%);
        }
    }
    @-webkit-keyframes move_up_admin {
        0% {
            -webkit-transform: translateY(32px);
        }
        100% {
            -webkit-transform: translateY(-100%);
        }
    }
    @keyframes move_up {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-100%);
        }
    }
    @-webkit-keyframes move_up {
        0% {
            -webkit-transform: translateY(0);
        }
        100% {
            -webkit-transform: translateY(-100%);
        }
    }
}
/*Header style 2*/
.header.style-2.header-absolute .main-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    padding: 40px 0 0;
}
/*.admin-bar .header.style-2.header-absolute .main-header {*/
/*top: 32px;*/
/*}*/
.header.style-2 .main-header {
    background-color: #000;
    padding: 30px 0 29px;
}
.header.style-2 .header-wrap-stick.fixed {
    background-color: #000;
}
.header.style-2 .right-main-header .header-nav,
.header.style-2 .right-main-header .header-options {
    display: inline-block;
    vertical-align: middle;
}
.header.style-2 .main-header .right-main-header .header-nav {
    margin-right: 50px;
}
.header.style-2 .right-main-header .header-options > div {
    display: inline-block;
    vertical-align: top;
    padding: 12px 10px 8px;
}
.header.style-2 .right-main-header .header-options > div:last-child {
    padding-right: 0;
}
.header.style-2 .main-menu > li > a {
    color: #999999;
}
.header.style-2 .main-menu > li > a:hover,
.header.style-2 .main-menu > li.current-menu-item > a {
    color: #bb8a41;
}
.header.style-2 .main-menu li a::before {
    background-color: #fff;
}
.main-menu > li.current-menu-item > a {
    font-weight: 600;
}
.header.style-2 .right-main-header {
    text-align: right;
    position: static;
}
.header.style-2 .right-main-header > * {
    text-align: left;
}
.header.style-2 .block-user {
    margin-right: 32px;
}
.header.style-2 .block-user .user-link {
    color: #999999;
}
.header.style-2 .block-user .user-link .icon,
.header.style-2 .block-user .user-link .text {
    color: #fff;
}
.header.style-2 .block-search .open-search,
.header.style-2 .block-minicart .cart-link {
    color: #fff;
}
.header.style-2 .block-minicart .cart-link .count {
    background-color: #fff;
    color: #222;
}
.header.style-2 .block-user::after {
    display: none;
}
.header.style-2 .header-sticky .theme-container > * {
    display: inline-block;
    vertical-align: top;
}
.header.style-2 .block-search .form-search {
    margin-top: -14px;
}
.header.style-2 .header-wrap-stick.fixed .block-search .form-search,
.header.style-2.header-absolute .header-mobile .block-search .form-search {
    margin-top: -7px;
}
.header.style-2 .block-search .form-search {
    margin-top: -21px;
}
.header.style-2.header-absolute .block-search .form-search {
    margin-top: 8px;
}
.header.style-2 .block-user .sub-menu,
.header.style-2.header-absolute .block-user .sub-menu {
    margin-top: 12px;
}
.header.style-2 .block-minicart .widget_shopping_cart,
.header.style-2.header-absolute .block-minicart .widget_shopping_cart {
    margin-top: 12px;
}
/*Header style 3*/
.header.style-3 .main-header,
.header.style-3 .header-wrap-stick.fixed {
    background-color: #fff;
}
.header.style-3.header-absolute .main-header {
    background-color: transparent;
    padding: 70px 0 0;
}
.header.style-3 .main-menu > li > a {
    color: #555;
}
.header.style-3 .main-menu li a::before {
    background-color: #222;
}
.header.style-3 .main-menu > li > a:hover,
.header.style-3 .main-menu > li:hover > a,
.header.style-3 .block-search .open-search,
.header.style-3 .block-minicart .cart-link {
    color: #222;
}
.header.style-3 .right-main-header .header-options > .block-user {
    margin-right: 8px;
    padding-right: 34px;
}
.header.style-3 .block-user::after {
    display: block;
}
.header.style-3 .block-user .user-link {
    color: #777;
}
.header.style-3 .block-user .user-link .icon,
.header.style-3 .block-user .user-link .text {
    color: #222;
}
.header.style-3 .block-minicart .cart-link .count {
    color: #fff;
    background-color: #222;
}
/*Header style 4*/
.header.style-4 .main-header .left-main-header {
    padding-top: 7px;
}
.header.style-4 .header-wrap-stick.fixed {
    padding: 15px 0 4px;
}
.header.style-4 .menu-mobile .icon {
    font-size: 46px;
}
.header.style-4 .menu-mobile .icon i {
    line-height: 30px;
}
.header.style-4 .main-header .menu-mobile {
    display: inline-block;
}
.header.style-4 .main-header .menu-toggle {
    display: none;
}
.header.style-4 .header-nav {
    position: relative;
}
.header.style-4 .header-nav > .menu-content {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 270px;
    background-color: #fff;
    padding: 20px 50px;
    border-bottom: solid 1px #e5e5e5;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.admin-bar .header.style-4 .header-nav > .menu-content {
    top: 32px
}
.admin-bar .header.style-4 .header-wrap-stick.fixed .header-nav > .menu-content {
    top: 0;
}
.header.style-4 .header-nav.open > .menu-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.header.style-4 .header-nav .menu-content > .ovic-menu-wapper {
    width: calc(100% - 100px);
    display: inline-block;
    vertical-align: top;
}
.header.style-4 .header-nav .close-menu {
    float: right;
    font-size: 24px;
    color: #999;
    line-height: 50px;
    width: 30px;
    display: inline-block;
    vertical-align: top;
}
.header.style-4 .header-nav .close-menu:hover {
    color: #222;
}
/*Header style 5*/
.header.style-5 .header-message .message-item .text {
    max-width: 240px;
}
.header.style-5 .topbar {
    border-bottom: solid 1px #e5e5e5;
    padding: 12px 0;
}
.header.style-5 .topbar .topbar-left-content {
    float: left;
    padding: 0;
    margin: 0;
}
.header.style-5 .topbar .topbar-left-content > li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.header.style-5 .header-message .message-item {
    font-size: 13px;
    color: #777777;
    font-style: italic;
    display: inline-block;
    vertical-align: middle;
    float: none;
}
.header.style-5 .block-language {
    position: relative;
}
.header.style-5 .block-search .open-search,
.header.style-5 .block-search .form-search .close-search {
    display: none;
}
.header.style-5 .block-user::after {
    height: 28px;
}
.wcml-dropdown li,
.wcml-dropdown li:hover {
    border: none;
    background-color: transparent;
    border: none;
}
.block-language > a,
.wcml-dropdown a.wcml-cs-item-toggle {
    font-size: 13px;
    color: #777;
    line-height: 19px;
    display: inline-block;
    padding: 0;
    background-color: transparent;
}
.block-currency .wcml-dropdown {
    width: auto;
}
.block-language > a::after,
.wcml-dropdown a.wcml-cs-item-toggle:after {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    color: #777;
    content: "\e9a3";
    font-family: 'abcicon';
    border: none;
    position: static;
}
.block-language .sub-menu,
.wcml-dropdown .wcml-cs-submenu {
    min-width: 140px;
    padding: 20px 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    background-color: #222;
    position: absolute;
    z-index: 11;
    box-shadow: 1px 0 8px rgba(0, 0, 0, 0.18);
    top: 100%;
    left: 0;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(0px);
    margin-top: 0;
}
.block-language .sub-menu::before,
.wcml-dropdown .wcml-cs-submenu::before {
    display: none;
}
.block-language:hover .sub-menu,
.wcml-dropdown:hover .wcml-cs-submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
.block-language .sub-menu li,
.wcml-dropdown .wcml-cs-submenu li {
    padding: 0 10px;
    display: block;
    margin-bottom: 10px;
    border: none;
}
.block-language:hover .sub-menu li a,
.wcml-dropdown:hover .wcml-cs-submenu li a {
    color: #999;
}
.block-language:hover .sub-menu li a:hover,
.wcml-dropdown:hover .wcml-cs-submenu li a:hover {
    color: #fff;
}
.header.style-5 .topbar .ovic-menu-wapper {
    float: right;
}
.header.style-5 .topbar .ovic-menu-wapper ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.header.style-5 .topbar .ovic-menu-wapper ul li {
    display: inline-block;
    vertical-align: top;
    margin-left: 40px;
}
.header.style-5 .topbar .ovic-menu-wapper ul li:first-child {
    margin: 0;
}
.header.style-5 .topbar .ovic-menu-wapper ul li a {
    font-size: 13px;
    color: #777;
}
.header.style-5 .topbar .ovic-menu-wapper ul li a:hover {
    color: #222;
}
.header.style-5 .main-header {
    padding: 30px 0;
}
.header.style-5 .right-main-header {
    padding: 15px 0 14px;
    text-align: right;
}
.header.style-5 .right-main-header > * {
    text-align: left;
}
.header.style-5 .header-nav {
    padding: 6px 0 12px;
}
.header.style-5 .block-user .sub-menu::before {
    height: 30px;
}
.header.style-6 {
    width: 100%;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 22;
    top: 0;
}
.admin-bar .header.style-6 {
    top: 32px;
}
body.no-toolkit .header.style-6 {
    position: relative;
    top: 0;
    z-index: 999;
}
.header.style-6 .header-main-content > div {
    display: inline-block;
    vertical-align: top;
}
.header.style-6 .logo {
    line-height: 54px;
    width: 385px;
    float: left;
}
.header.style-6 .main-header {
    padding: 20px 0;
    position: relative;
}
.header.style-6 .header-nav {
    text-align: center;
    width: calc(100% - 770px);
}
.header.style-6 .main-menu > li {
    padding: 15px 15px 0;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    visibility: hidden;
}
.header.style-6 .main-menu > li > .sub-menu {
    margin-top: 15px;
}
.header.style-6 .main-header.open .main-menu > li {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.4s ease 0s;
    -moz-transition: 0.4s ease 0s;
    -ms-transition: 0.4s ease 0s;
    -o-transition: 0.4s ease 0s;
    transition: 0.4s ease 0s;
}
.header.style-6 .main-header .main-menu > li:first-child {
    -webkit-transition: 0.4s ease 0s;
    -moz-transition: 0.4s ease 0s;
    -ms-transition: 0.4s ease 0s;
    -o-transition: 0.4s ease 0s;
    transition: 0.4s ease 0s;
    padding-left: 0;
}
.header.style-6 .main-header .main-menu > li:nth-child(2) {
    -webkit-transition: 0.6s ease 0s;
    -moz-transition: 0.6s ease 0s;
    -ms-transition: 0.6s ease 0s;
    -o-transition: 0.6s ease 0s;
    transition: 0.6s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(3) {
    -webkit-transition: 0.8s ease 0s;
    -moz-transition: 0.8s ease 0s;
    -ms-transition: 0.8s ease 0s;
    -o-transition: 0.8s ease 0s;
    transition: 0.8s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(4) {
    -webkit-transition: 1s ease 0s;
    -moz-transition: 1s ease 0s;
    -ms-transition: 1s ease 0s;
    -o-transition: 1s ease 0s;
    transition: 1s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(5) {
    -webkit-transition: 1.2s ease 0s;
    -moz-transition: 1.2s ease 0s;
    -ms-transition: 1.2s ease 0s;
    -o-transition: 1.2s ease 0s;
    transition: 1.2s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(6) {
    -webkit-transition: 1.4s ease 0s;
    -moz-transition: 1.4s ease 0s;
    -ms-transition: 1.4s ease 0s;
    -o-transition: 1.4s ease 0s;
    transition: 1.4s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(7) {
    -webkit-transition: 1.6s ease 0s;
    -moz-transition: 1.6s ease 0s;
    -ms-transition: 1.6s ease 0s;
    -o-transition: 1.6s ease 0s;
    transition: 1.6s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(8) {
    -webkit-transition: 1.8s ease 0s;
    -moz-transition: 1.8s ease 0s;
    -ms-transition: 1.8s ease 0s;
    -o-transition: 1.8s ease 0s;
    transition: 1.8s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(9) {
    -webkit-transition: 1.8s ease 0s;
    -moz-transition: 1.8s ease 0s;
    -ms-transition: 1.8s ease 0s;
    -o-transition: 1.8s ease 0s;
    transition: 1.8s ease 0s;
}
.header.style-6 .main-header .main-menu > li:nth-child(10) {
    -webkit-transition: 2s ease 0s;
    -moz-transition: 2s ease 0s;
    -ms-transition: 2s ease 0s;
    -o-transition: 2s ease 0s;
    transition: 2s ease 0s;
}
.header.style-6 .main-menu > li:last-child {
    padding-right: 0;
}
.header.style-6 .main-menu > li > a {
    font-weight: 600;
    color: #222;
    text-transform: capitalize;
    font-size: 15px;
}
.header.style-6 .main-menu > li.menu-item-has-children > a::after {
    font-size: 16px;
    color: #999;
    font-weight: normal;
}
.header.style-6 .right-main-header {
    float: right;
    text-align: right;
    position: static;
    width: 385px;
}
.header.style-6 .right-main-header > * {
    text-align: left;
}
.header.style-6 .right-main-header > div {
    padding-top: 16px;
    padding-bottom: 14px;
    padding-right: 0;
}
.header.style-6 .right-main-header > div.block-user {
    padding-right: 0;
    margin-right: 20px;
}
.header.style-6 .right-main-header .block-user::after {
    display: none;
}
.header.style-6 .menu-bar {
    display: inline-block;
    vertical-align: top;
    width: 54px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    color: #222;
    border-radius: 100%;
    background-color: #fff;
    font-size: 24px;
}
.header.style-6 .menu-bar.menu-mobile {
    display: none;
}
.header.style-6 .menu-bar::before {
    content: '\e164';
    font-family: 'abcicon';
    -webkit-transition: 0.4s ease 0s;
    -moz-transition: 0.4s ease 0s;
    -ms-transition: 0.4s ease 0s;
    -o-transition: 0.4s ease 0s;
    transition: 0.4s ease 0s;
}
.header.style-6 .menu-bar.active::before,
.header.style-6 .main-header.open .menu-bar::before {
    content: '\e99f';
}
.header.style-6 .block-user:hover .sub-menu,
.header.style-6 .block-minicart .widget_shopping_cart {
    margin-top: 0;
    right: 0;
}
.header.style-6 .block-search .form-search {
    margin-top: -20px;
}
.header.style-6 .block-minicart .widget_shopping_cart::before,
.header.style-6 .block-user .sub-menu::before {
    height: 0;
}
.header.style-6 .block-user.open .sub-menu:not(.ayvo-loginform) {
    opacity: 0;
    visibility: visible;
}
.header.style-6 .block-user:hover .sub-menu:not(.ayvo-loginform) {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.header.style-6 .block-minicart .cart-link .count {
    font-weight: normal;
}
.header.style-7 .header-wrap-stick.fixed {
    background-color: #111;
}
.header.style-7 .menu-bar {
    display: none;
}
.header.style-7 .main-menu > li > a,
.header.style-7 .main-menu > li.menu-item-has-children > a::after,
.header.style-7 .block-user .user-link,
.header.style-7 .block-user .user-link .icon,
.header.style-7 .block-user .user-link .text,
.header.style-7 .block-search .open-search,
.header.style-7 .block-minicart .cart-link,
.header.style-7 .block-minicart .cart-link::after {
    color: #fff;
}
.header.style-7 .main-menu li a::before {
    background-color: #fff;
}
.header.style-7 .main-menu > li {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
/*SHORT CODE*/
.ovic-products.box-layout-1 .ovic-title {
    font-size: 16px;
    color: #222222;
    line-height: 16px;
    text-align: center;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 13px;
}
.ovic-products.box-layout-1 .subtitle {
    font-size: 10px;
    color: #c0c0c0;
    line-height: 16px;
    text-align: center;
    margin-bottom: 55px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.ovic-products.box-layout-2 .title {
    font-size: 24px;
    color: #222222;
    text-align: left;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 30px;
    border-bottom: solid 1px #e5e5e5;
    padding-bottom: 25px;
}
.ovic-blog.style-1 .slick-list {
    padding: 0 5px 5px;
    margin: 0 -5px -5px;
}
.ovic-blog .slick-list .post-item:hover {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-blog .slick-list .post-item.style-2:hover {
    box-shadow: none;
}
.ovic-iconbox .iconbox-inner {
    display: block;
    overflow: hidden;
}
.ovic-iconbox .icon {
    float: left;
    font-size: 46px;
    color: #555;
    margin-right: 20px;
}
.ovic-iconbox:hover .icon {
    -webkit-animation: zoomIn 0.5s ease;
    -o-animation: zoomIn 0.5s ease;
    animation: zoomIn 0.5s ease;
    color: #222;
}
.ovic-iconbox .content {
    overflow: hidden;
}
.ovic-iconbox .content .title {
    font-size: 16px;
    color: #555555;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
    line-height: 18px;
}
.ovic-iconbox .content .text {
    font-size: 13px;
    color: #777;
    margin: 0;
    word-break: break-word;
}
/*---------------*/
.ovic-iconbox.style-2 .icon {
    color: #999999;
    font-size: 16px;
    margin-right: 10px;
}
.ovic-iconbox.style-2 .icon span {
    line-height: 24px;
}
.ovic-iconbox.style-2 .content .title {
    font-size: 13px;
    margin: 0 0 5px;
}
/*---------------*/
.ovic-iconbox.style-3 .icon {
    font-size: 46px;
    margin-right: 15px;
}
.ovic-iconbox.style-3 .content {
    text-align: left;
}
.ovic-iconbox.style-3 .content .title {
    margin-bottom: 0;
}
.ovic-iconbox.style-3 .content .text {
    margin: 0;
    font-size: 13px;
    color: #777;
    line-height: 20px;
}
/*---------------*/
.ovic-iconbox.style-4 .content .title {
    margin: 0 0 25px;
}
.ovic-iconbox.style-4 .content .text {
    font-size: 16px;
}
/*===============*/

.ovic-socials .socials-list {
    padding: 0;
    margin: 0;
}
.ovic-socials .socials-list li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
}
.ovic-socials .socials-list li a {
    font-size: 0;
    line-height: 0;
    display: inline-block;
    list-style: none;
}
.ovic-socials .socials-list li:first-child a,
.ovic-socials .socials-list li:nth-child(7) a {
    color: #53c4ff;
}
.ovic-socials .socials-list li:nth-child(2) a,
.ovic-socials .socials-list li:nth-child(8) a {
    color: #cd2022;
}
.ovic-socials .socials-list li:nth-child(3) a,
.ovic-socials .socials-list li:nth-child(9) a {
    color: #56abec;
}
.ovic-socials .socials-list li:nth-child(4) a,
.ovic-socials .socials-list li:nth-child(10) a {
    color: #663fa8;
}
.ovic-socials .socials-list li:nth-child(5) a,
.ovic-socials .socials-list li:nth-child(11) a {
    color: #ce201f;
}
.ovic-socials .socials-list li:nth-child(6) a,
.ovic-socials .socials-list li:nth-child(12) a {
    color: #3d5c9c;
}
.ovic-socials .socials-list li a span {
    font-size: 18px;
}
/*===============*/

.ovic-pinmapper .ovic-popup.ovic-text,
.ovic-mapper .ovic-pin .ovic-title {
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1) !important;
    min-width: 230px !important;
    border-radius: 0 !important;
    padding: 16px;
}
.ovic-mapper .ovic-popup.ovic-text .ovic-popup-main {
    display: none;
}
.ovic-mapper .ovic-popup.ovic-text .ovic-popup-header {
    text-align: center;
    border: none;
}
.ovic-mapper .ovic-popup.ovic-text .ovic-popup-header h2,
.ovic-mapper .ovic-pin .ovic-title {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    text-align: center;
}
.ovic-mapper .ovic-pin.open .text__area {
    font-weight: 500;
}
.ovic-mapper .ovic-pin.open .text__area:hover {
    background-color: #c61a32 !important;
}
.ovic-mapper .ovic-pin .ovic-title {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: auto;
    right: 40px;
}
.ovic-mapper .ovic-pin .ovic-title:before {
    display: none;
}
/*===============*/

.ovic-category .category-thumb {
    position: relative;
}
.ovic-category .category-thumb .image:not(.loading-lazy)::before {
    box-sizing: inherit;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    top: 50%;
    left: 50%;
}
.ovic-category:hover .category-thumb .image::before {
    height: 100%;
    opacity: 1;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: 0.25s ease 0s;
    -moz-transition: 0.25s ease 0s;
    -ms-transition: 0.25s ease 0s;
    -o-transition: 0.25s ease 0s;
    transition: 0.25s ease 0s;
}
.ovic-category.style-1 .cate-filter {
    font-size: 15px;
    color: #222222;
    font-weight: 600;
    display: block;
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #fff;
    text-align: center;
    padding: 22px 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    overflow: hidden;
}
.ovic-category.style-1 .cate-filter::before {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    content: '';
    background-color: #222;
}
.ovic-category.style-1 .cate-filter:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.ovic-category.style-1 .cate-filter > span {
    position: relative;
    z-index: 2;
}
.ovic-category.style-1 .cate-filter .count {
    color: #777777;
    font-weight: normal;
}
.ovic-category.style-1 .cate-filter:hover {
    background-color: #222;
    color: #fff;
}
.ovic-category.style-2 .category-thumb {
    position: relative;
    border: solid 1px #e5e5e5;
}
.ovic-category.style-2 .category-thumb .category-content {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
}
.ovic-category.style-2 .category-thumb:hover .category-content {
    opacity: 1;
    visibility: visible;
}
.ovic-category.style-2 .category-thumb .category-content a {
    font-size: 15px;
    font-weight: 600;
    padding: 0 35px;
    border: solid 1px #dedede;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    line-height: 58px;
    color: #222;
}
.ovic-category.style-2 .category-thumb .category-content a:hover {
    color: #fff;
    background-color: #222;
    border-color: #222;
    opacity: 1;
}
.ovic-category.style-3 .category-thumb {
    overflow: hidden;
}
.ovic-category.style-3 .category-thumb .image img {
    -webkit-transition: 1s ease 0s;
    -moz-transition: 1s ease 0s;
    -ms-transition: 1s ease 0s;
    -o-transition: 1s ease 0s;
    transition: 1s ease 0s;
}
.ovic-category.style-3:hover .category-thumb .image img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.ovic-category.style-3 .cate-filter {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 auto;
    display: inline-block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.5s ease-out 0s, letter-spacing 1s ease 0s, hover 0.5s ease-out 0s;
    -moz-transition: opacity 0.5s ease-out 0s, letter-spacing 1s ease 0s, hover 0.5s ease-out 0s;
    -ms-transition: opacity 0.5s ease-out 0s, letter-spacing 1s ease 0s, hover 0.5s ease-out 0s;
    -o-transition: opacity 0.5s ease-out 0s, letter-spacing 1s ease 0s, hover 0.5s ease-out 0s;
    transition: opacity 0.5s ease-out 0s, letter-spacing 1s ease 0s, hover 0.5s ease-out 0s;
}
.ovic-category.style-3:hover .cate-filter {
    letter-spacing: 0;
    opacity: 1;
}
.ovic-category.style-3 .category-thumb .image:not(.loading-lazy)::before {
    backgoung-color: rgba(0, 0, 0, 0.5);
}
/*=========*/
.ovic-countdown-sc .head {
    max-width: 540px;
}
.ovic-countdown-sc .title {
    font-size: 50px;
    line-height: 60px;
    color: #222;
    font-weight: 400;
    word-wrap: break-word;
    margin-bottom: 27px;
}
.ovic-countdown-sc .button {
    padding: 0 35px;
    min-width: 148px;
    text-align: center;
    line-height: 40px;
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 40px;
    color: #fff;
    background-color: #212121;
}
.ovic-countdown-sc .button:hover {
    background-color: #c61a32;
}
.ovic-countdown {
    display: inline-block;
}
.ovic-countdown > span {
    display: inline-block;
    margin: 0 15px 15px 0;
    float: left;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    border: solid 1px #dedede;
    min-width: 100px;
    min-height: 138px;
    text-align: center;
    background-color: #fff;
    padding-top: 42px;
}
.ovic-countdown > span:last-child {
    margin-right: 0;
}
.ovic-countdown > span .number {
    display: block;
    font-size: 35px;
    color: #555555;
    margin-bottom: 8px;
}
.ovic-countdown > span .text {
    font-size: 14px;
    display: block;
    color: #555555;
    font-style: italic;
}
/*===============*/
.ovic-tabs .tab-head .tab-link {
    text-align: center;
    margin-bottom: 50px;
}
.ovic-tabs .tab-head .tab-link li {
    margin: 0 20px;
}
.ovic-tabs .tab-head .tab-link li > a {
    color: #222;
    font-weight: 600;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}
.ovic-tabs .tab-head .tab-link li > a::after {
    height: 2px;
    width: 0;
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    background-color: transparent;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-tabs .tab-head .tab-link li > a:hover::after,
.ovic-tabs .tab-head .tab-link li.active > a::after {
    width: 100%;
    background-color: #222;
}
/*===============*/
.ovic-newsletter .head {
    overflow: hidden;
    text-align: center;
    margin-bottom: 28px;
}
.ovic-newsletter .title {
    font-size: 34px;
    line-height: 34px;
    color: #222;
    display: inline-block;
    font-weight: 600;
    margin: 0 5px 0 0;
    text-transform: uppercase;
}
.ovic-newsletter .subtitle {
    font-size: 24px;
    color: #777777;
    font-style: italic;
    display: inline-block;
    margin: 0;
    line-height: 42px;
    font-weight: 400;
    text-transform: uppercase;
}
.ovic-newsletter .newsletter-form-wrap {
    max-width: 630px;
    position: relative;
    margin: 0 auto 30px;
    overflow: hidden;
    
}
.ovic-newsletter .newsletter-form-wrap::before {
    position: absolute;
    z-index: 2;
    font-size: 34px;
    color: #999;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "\e923";
    font-family: 'abcicon';
    line-height: 40px;
}
.ovic-newsletter .newsletter-form-wrap .input-text {
    border: none;
    background-color: transparent;
    padding: 0 15px 0 66px;
    width: 100%;
    line-height: 40px;
    color: #555;
}
.ovic-newsletter .newsletter-form-wrap label {
    float: left;
    margin-right: 10px;
    max-width: 480px;
    width: calc(100% - 150px);
    border-bottom: solid 2px #cecece;
}
.ovic-newsletter .newsletter-form-wrap .button {
    float: right;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #c61a32;
    padding: 0 20px;
    line-height: 40px;
    border-radius: 20px;
    text-align: center;
    min-width: 138px;
}
.ovic-newsletter .newsletter-form-wrap .button:hover,
.ovic-newsletter .newsletter-form-wrap .button:focus {
    background-color: #222;
    color: #fff0ef;
}
.ovic-newsletter.style-2 .title,
.ovic-newsletter.style-2 .subtitle,
.ovic-newsletter.style-2 .newsletter-form-wrap::before,
.ovic-newsletter.style-2 .newsletter-form-wrap .input-text {
    color: #fff;
}
.ovic-newsletter.style-2 .newsletter-form-wrap label {
    border-color: #fff;
}
.ovic-newsletter.style-3 .head {
    margin-bottom: 35px;
}
.ovic-newsletter.style-3 .title {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 20px;
    display: block;
}
.ovic-newsletter.style-3 .subtitle {
    font-size: 13px;
    color: #777777;
    text-transform: capitalize;
    line-height: 20px;
    font-style: normal;
}
.ovic-newsletter.style-3 .newsletter-form-wrap {
    max-width: 330px;
    border: none;
}
.ovic-newsletter.style-3 .newsletter-form-wrap::before {
    display: none;
}
.ovic-newsletter.style-3 .newsletter-form-wrap label {
    width: 100%;
    margin: 0 0 10px;
    border: none;
}
.ovic-newsletter.style-3 .newsletter-form-wrap .input-text {
    padding: 0 20px;
    text-align: center;
    height: 50px;
    border: solid 1px #e5e5e5;
    border-radius: 25px;
}
.ovic-newsletter.style-3 .newsletter-form-wrap .button {
    background-color: #222;
    line-height: 50px;
    color: #fefefe;
    text-transform: capitalize;
    width: 100%;
    border-radius: 25px;
    border: solid 1px #222;
}
.ovic-newsletter.style-3 .newsletter-form-wrap .button:hover {
    background-color: #fff;
    color: #222;
}
.white-popup {
    max-width: 773px;
    padding: 0;
    top: 0;
    margin: 0 auto;
    border: solid 1px #fff;
}
div.show-demos {
    text-align: center;
    margin-bottom: 30px;
}
div.show-demos .ayvo-view-demo {
    font-size: 16px;
    color: #fff;
    border-radius: 26px;
    line-height: 52px;
    padding: 0 35px;
    background-color: #222;
    display: inline-block;
    vertical-align: top;
}
div.show-demos .ayvo-view-demo:hover {
    background-color: #c61a32;
}
#TB_window {
    width: calc(100% - 200px) !important;
    height: calc(100% - 200px) !important;
    margin: 0 auto !important;
    top: 100px !important;
    left: 100px !important;
    right: 100px !important;
    max-width: 1290px;
}
#TB_iframeContent {
    width: 100% !important;
    height: 100% !important;
}
.section-demos {
    padding: 55px 0 15px;
}
#TB_closeWindowButton .tb-close-icon,
#TB_closeWindowButton .tb-close-icon {
    color: #fff !important;
    background-color: #222;
}
#TB_closeWindowButton:hover .tb-close-icon,
#TB_closeWindowButton:focus .tb-close-icon {
    background-color: #c61a32;
}
#TB_overlay {
    opacity: 0.4 !important;
}
#TB_iframeContent .demo-image,
#TB_iframeContent .demos .demo .image-scroll {
    height: 340px;
}
#TB_closeWindowButton .screen-reader-text {
    display: none;
}
.mfp-bg {
    background: rgba(0, 0, 0, 0.7);;
}
.mfp-close-btn-in .mfp-close {
    width: 110px;
    height: 60px;
    text-align: center;
    color: #fff;
    font-size: 0;
    display: inline-block;
    line-height: 60px;
    background-color: #222;
    opacity: 1;
    left: 0;
    margin: -70px auto 0;
}
.mfp-close-btn-in .mfp-close::before {
    content: '\e99f';
    font-family: 'abcicon';
    display: inline-block;
    font-size: 46px;
}
/*===============*/
.ovic-instagram {
    position: relative;
}
.ovic-instagram .widgettitle {
    font-size: 16px;
    color: #222222;
    line-height: 16px;
    text-align: center;
    font-family: Poppins;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 55px;
}
.ovic-instagram .content-instagram.ovic-gallery-image {
    line-height: 0;
    font-size: 0;
}
.ovic-instagram .content-instagram.ovic-gallery-image > * {
    line-height: 24px;
    font-size: 14px;
}
.ovic-instagram .content-instagram.ovic-gallery-image > .item {
    display: inline-block;
    width: auto;
    padding: 0;
}
.ovic-instagram .content-instagram.ovic-gallery-image .item {
    position: relative;
}
.ovic-instagram .content-instagram .item .thumb {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.ovic-instagram .content-instagram .item .thumb figure {
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-instagram .content-instagram .item:hover .thumb figure {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.ovic-instagram .content-instagram .item .thumb::before {
    content: "";
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.3);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-instagram .content-instagram .item:hover a::before {
    opacity: 1;
    visibility: visible;
}
.ovic-instagram .follow-title {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    text-align: center;
    top: 60%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-instagram .follow-title i {
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
    font-size: 20px;
    font-weight: normal;
}
.ovic-instagram .content-instagram .item:hover .follow-title {
    opacity: 1;
    visibility: visible;
    top: 50%;
}
/*===============*/
.ovic-person {
    text-align: center;
}
.ovic-person .thumb-avatar a {
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}
.ovic-person.style-1 .thumb-avatar a::before {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 80%;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    opacity: 0;
}
.ovic-person.style-1 .thumb-avatar:hover a::before {
    left: 0;
    opacity: 1;
}
.ovic-person.style-1 .thumb-avatar a::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -36px;
    top: 2px;
    font-size: 200px;
    color: #c9c9c9;
    font-family: Poppins, sans-serif;
    width: 48px;
    height: 48px;
    background-image: url("../images/iconbg.png");
    background-position: center;
    background-repeat: no-repeat;
}
.ovic-person .desc {
    font-size: 16px;
    color: #777;
    line-height: 34px;
    max-width: 760px;
    margin: 0 auto 20px;
}
.ovic-person .author {
    color: #222;
    font-size: 15px;
}
.ovic-person .name a {
    font-weight: 500;
}
.ovic-person .positions {
    color: #999;
    font-style: italic;
}
.ovic-person.style-2 .thumb-avatar {
    position: relative;
}
.ovic-person.style-2 .thumb-avatar img {
    width: 100%;
}
.ovic-person.style-2 .content-person {
    background-color: #fff;
    padding: 20px 0;
    min-height: 90px;
    text-align: center;
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: 10px;
}
.ovic-person.style-2 .content-person .name a {
    display: block;
    font-size: 16px;
    color: #222;
    margin: 0 0 10px;
    font-weight: 500;
}
.ovic-person.style-2 .content-person .positions {
    font-size: 13px;
    color: #777;
    font-style: normal;
}
/*------*/
.ovic-video .video-inner {
    text-align: center;
    position: relative;
}
.ovic-video .video-inner .video-button {
    font-size: 80px;
    color: #fff;
    display: inline-block;
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-video .video-inner .video-button::after {
    width: 0;
    height: 0;
    background-color: #fff;
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 2;
    content: '';
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    border-radius: 100%;
}
.ovic-video .video-inner .video-button:hover::after {
    opacity: 0;
    visibility: hidden;
    width: 120%;
    height: 120%;
    left: -10%;
    top: -10%;
}
.ovic-video .video-inner figure {
    position: relative;
    overflow: hidden;
    max-width: 1800px;
    margin: 0 auto;
}
.ovic-video .video-inner figure::before {
    background-color: rgba(0, 0, 0, 0.3);
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    opacity: 0;
    visibility: hidden;
}
.ovic-video .video-inner:hover figure::before {
    opacity: 1;
    visibility: visible;
}
/*===========*/
.ovic-call-to-action {
    overflow: hidden;
}
.ovic-call-to-action .main-banner {
    width: 50%;
    float: left;
    position: relative;
    overflow: hidden;
}
.ovic-call-to-action .main-banner::before {
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.6);
    content: '';
    position: absolute;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-call-to-action:hover .main-banner::before {
    height: 0;
    opacity: 1;
    visibility: visible;
}
.ovic-call-to-action .call-to-action-inner {
    float: right;
    width: 50%;
    padding-top: 95px;
    padding-left: 10px;
}
.ovic-call-to-action .call-to-action-inner .subtitle {
    font-size: 16px;
    color: #777;
    font-weight: 600;
    margin-left: 70px;
    margin-bottom: 15px;
}
.ovic-call-to-action .call-to-action-inner .title {
    font-size: 80px;
    line-height: 80px;
    color: #222;
    font-weight: 300;
    margin-left: 70px;
    margin-bottom: 40px;
}
.ovic-call-to-action .call-to-action-inner .desc {
    font-size: 14px;
    color: #777;
    font-weight: 400;
    margin-left: 170px;
    position: relative;
    line-height: 28px;
    margin-bottom: 50px;
}
.ovic-call-to-action .call-to-action-inner .desc::before {
    width: 70px;
    height: 1px;
    background-color: #777;
    content: '';
    position: absolute;
    z-index: 2;
    left: -102px;
    top: 9px;
}
.ovic-call-to-action .call-to-action-inner .button {
    min-width: 196px;
    border-radius: 26px;
    height: 52px;
    line-height: 52px;
    display: inline-block;
    padding: 0 30px;
    font-size: 16px;
    border: solid 1px #222;
    color: #222;
    background-color: #fff;
    margin-left: 70px;
    text-align: center;
}
.ovic-call-to-action .call-to-action-inner .button:hover {
    background-color: #222;
    color: #fff;
}
.ovic-call-to-action .call-to-action-inner .gallery {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    margin: 0;
    width: 50%;
    padding-right: 45px;
    padding-left: 5px;
}
.ovic-call-to-action .call-to-action-inner .gallery a {
    position: relative;
}
.ovic-call-to-action .call-to-action-inner .gallery a.active {
    display: none;
}
.ovic-call-to-action .call-to-action-inner .gallery.slick-slider .slick-arrow {
    display: none !important;
}
.ovic-call-to-action.style-2 .action-content,
.ovic-call-to-action.style-3 .action-content {
    position: relative;
    margin-bottom: 26px;
    display: inline-block;
}
.ovic-call-to-action.style-2 .main-banner,
.ovic-call-to-action.style-3 .main-banner {
    width: 100%;
    float: none;
    margin: 0;
}
.ovic-call-to-action.style-2 .call-to-action-inner,
.ovic-call-to-action.style-3 .call-to-action-inner {
    width: auto;
    float: none;
    padding: 0;
    background-color: transparent;
    position: absolute;
    z-index: 2;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.ovic-call-to-action.style-2:hover .call-to-action-inner,
.ovic-call-to-action.style-3:hover .call-to-action-inner {
    opacity: 1;
    visibility: visible;
}
.ovic-call-to-action.style-2 .call-to-action-inner .gallery,
.ovic-call-to-action.style-3 .call-to-action-inner .gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
    position: static;
}
.ovic-call-to-action.style-2 .call-to-action-inner .gallery a,
.ovic-call-to-action.style-3 .call-to-action-inner .gallery a {
    padding: 10px 10px 10px 0;
    background-color: #fff;
    margin: 0 !important;
}
.ovic-call-to-action.style-2 .call-to-action-inner .gallery a:first-child,
.ovic-call-to-action.style-3 .call-to-action-inner .gallery a:first-child {
    padding-left: 10px;
    padding-right: 0;
}
.ovic-call-to-action.style-2 .call-to-action-inner .gallery a:nth-child(2),
.ovic-call-to-action.style-3 .call-to-action-inner .gallery a:nth-child(2) {
    padding-left: 10px;
}
.ovic-call-to-action.style-2 .button,
.ovic-call-to-action.style-3 .button {
    border: none;
    min-width: 1px;
    border-radius: 0;
    height: auto;
    line-height: 20px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    background-color: transparent;
    margin-left: 0;
    margin-bottom: 26px;
    display: block;
    text-align: left;
}
.ovic-call-to-action.style-3 .button {
    text-align: center;
}
.ovic-call-to-action.style-2 .button:hover,
.ovic-call-to-action.style-3 .button:hover {
    text-decoration: underline;
    opacity: 1;
}
.ovic-call-to-action.style-3 {
    text-align: center;
}
.ovic-call-to-action.style-3 .action-content {
    margin-bottom: 48px;
}
.ovic-call-to-action.style-3 .title {
    font-size: 60px;
    font-weight: 300;
    color: #222;
    margin: 0 0 18px;
    line-height: 60px;
}
.list-brand figure:not(.loading-lazy) img {
    opacity: 0.5;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.list-brand figure:hover img {
    opacity: 1;
}
.list-brand .slick-slider .slick-arrow {
    font-size: 24px;
}
/*FOOTER*/
.footer {
    position: relative;
}
/*.border-footer,*/
/*.border-bottom {*/
/*margin: 0 auto !important;*/
/*position: static;*/
/*}*/
.border-footer::before,
.border-footer-full::before {
    content: '';
    width: 100%;
    max-width: 1800px;
    height: 1px;
    display: inline-block;
    background: #e5e5e5;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.border-footer-full::before {
    max-width: 100%;
}
.border-bottom::before {
    content: '';
    width: 100%;
    max-width: 1800px;
    height: 1px;
    display: inline-block;
    background: #e5e5e5;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.footer .wpb_image_grid .wpb_image_grid_ul li {
    padding: 3px;
}
.footer .wpb_image_grid .wpb_image_grid_ul li:not(:hover) img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;;
}
.footer .widget .widgettitle,
.footer .ovic-title {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 20px;
}
.footer .menu li {
    list-style: none;
    margin-bottom: 7px;
}
.footer .menu li a {
    font-size: 13px;
    color: #777777;
}
.footer .buytheme {
    font-size: 13px;
    color: #777;
    font-style: italic;
}
.coppy-right {
    font-size: 13px;
    color: #777777;
    margin: 0;
}
.coppy-right a {
    color: #222;
}
.footer-mobile {
    display: none;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: fixed;
    z-index: 110;
    bottom: 0;
    left: 0;
    padding: 5px 15px;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}
.footer-mobile.open {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transform-origin: bottom;
}
.footer-mobile .footer-mobile-inner {
    display: table;
    width: 100%;
}
.footer-mobile .footer-mobile-inner > .item {
    display: table-cell;
    vertical-align: top;
    text-align: center;
}
.footer-mobile .footer-mobile-inner > .item a {
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
    padding: 5px 10px;
    font-weight: 400;
    font-size: 18px;
}
.footer-mobile .footer-mobile-inner .menu-mobile .icon-menu {
    line-height: 28px;
}
.footer-mobile .footer-mobile-inner .menu-mobile .text {
    font-size: inherit;
    vertical-align: inherit;
    font-weight: inherit;
    color: inherit;
}
body:not(.woocommerce-page) .footer-mobile .footer-mobile-inner .filter-item {
    display: none;
}
.sidebar .head {
    display: none;
}
/*=====WIDGET=====*/
.sidebar .widget {
    margin-bottom: 55px;
}
.sidebar .widget .sub-menu,
.sidebar .widget .vc_column_container {
    width: 100% !important;
}
.sidebar .blog-sidebar .sub-menu .widget .widgettitle,
.sidebar .shop-sidebar .sub-menu .widget .widgettitle {
    font-size: 13px;
    color: #222;
    font-weight: 600;
    padding-left: 20px;
    text-transform: capitalize;
    margin: 10px 0;
}
.sidebar .sub-menu .widget ul li {
    padding: 0 10px;
}
.sidebar .sub-menu .widget {
    margin-bottom: 0;
}
.ovic-custommenu .menu-item-has-children > a::after {
    display: none;
}
.ovic-custommenu .menu-item-has-children .toggle-submenu {
    float: right;
}
.ovic-custommenu .menu-item-has-children .toggle-submenu::after {
    display: inline-block;
    content: "\e9a3";
    font-family: 'abcicon';
    margin-left: 5px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    float: right;
}
.ovic-custommenu .menu-item-has-children.open-submenu .toggle-submenu::after {
    content: '\e9aa';
}
.ovic-custommenu .menu-item-has-children .sub-menu {
    display: none;
}
.ovic-custommenu .menu-item-has-children.open-submenu .sub-menu {
    display: block;
}
.sidebar .widget_nav_menu .ovic-menu > li {
    margin-bottom: 15px;
}
.sidebar .sub-menu li a:hover,
.sidebar .sub-menu li:hover > a {
    color: #222;
}
.sidebar .menu-item-has-children > a::after {
    float: none;
    display: none;
}
.widgettitle strong {
    font-weight: inherit;
}
.shop-sidebar .widgettitle,
.sidebar .widgettitle {
    font-size: 24px;
    color: #222222;
    text-transform: capitalize;
    padding-bottom: 22px;
    line-height: 28px;
    margin-bottom: 28px;
    font-weight: 400;
}
.shop-sidebar .widgettitle {
    border-bottom: solid 1px #e5e5e5;
}
.sidebar .blog-sidebar .widget .widgettitle {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 20px;
    text-transform: uppercase;
    border: none;
    padding: 0;
}
.widget ul li {
    margin-bottom: 5px;
    font-size: 13px;
    color: #777;
}
.sidebar .shop-sidebar .widget {
    margin-bottom: 45px;
}
.widget_product_tag_cloud .tagcloud {
    overflow: hidden;
}
.tagcloud a {
    font-size: 13px !important;
    color: #555555;
    border: solid 1px #999999;
    display: inline-block;
    margin: 0 0 10px;
    padding: 0 20px;
    line-height: 24px;
    border-radius: 15px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.tagcloud a:hover {
    color: #fff;
    background-color: #3b3b3b;
    border-color: #3b3b3b;
}
.widget_product_search .widgettitle,
.widget_search .widgettitle {
    display: none;
}
.widget_product_search .woocommerce-product-search,
.widget_search .search-form {
    border-bottom: solid 1px #e5e5e5;
    position: relative;
}
.widget_product_search .woocommerce-product-search .search-field,
.widget_search .search-form .search-field {
    border: none;
    background-color: transparent;
    height: 46px;
    font-size: 13px;
    color: #777;
    padding: 0 50px 0 0;
    margin-bottom: 10px;
    width: 100%;
    text-transform: lowercase;
}
.widget_product_search .woocommerce-product-search button,
.widget_search .search-form .search-submit {
    font-size: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    padding: 0;
    text-align: center;
    display: inline-block;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 10px;
    border-radius: 100%;
    background-color: #f5f5f5;
    color: #222;
}
.widget_product_search .woocommerce-product-search button:hover,
.widget_search .search-form .search-submit:hover {
    color: #fff;
    background-color: #222;
}
.widget_product_search .woocommerce-product-search button::before,
.widget_search .search-form .search-submit::before {
    content: "\e9c4";
    display: inline-block;
    font-family: 'abcicon';
    font-size: 20px;
    font-weight: normal;
}
.widget_product_categories select,
.widget_archive select,
.woocommerce-widget-layered-nav select {
    width: 100%;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-dropdown {
    background-image: none;
}
.widget_product_categories .product-categories li a,
.menu-list-categories li a {
    font-size: 13px;
    color: #777;
    position: relative;
}
.carets {
    cursor: pointer;
}
.widget_product_categories .product-categories li > a:not(.carets)::before,
.menu-list-categories li > a:not(.carets) {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: solid 1px #e5e5e5;
    content: '';
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
    position: relative;
}
.widget_product_categories .product-categories li a:not(.carets):hover::after,
.widget_product_categories .product-categories li a:not(.carets):focus::after,
.widget_product_categories .product-categories li.current-cat > a:not(.carets)::after,
.menu-list-categories li a:not(.carets):hover::after,
.menu-list-categories li a:not(.carets):focus::after {
    color: #a7a7a7;
    font-size: 12px;
    width: 16px;
    height: 16px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    content: "\ea10";
    font-family: 'abcicon';
    position: absolute;
    z-index: 1;
    left: 1px;
    top: 2px;
}
.widget_product_categories .product-categories li.current-cat > a:not(.carets)::after {
    color: #fff;
}
.widget_product_categories .product-categories li.current-cat > a:not(.carets)::before {
    background-color: #a7a7a7;
    border-color: #a7a7a7;
}
.widget_product_categories .product-categories .carets {
    float: right;
}
.widget_product_categories .product-categories .carets::before {
    display: none;
}
.widget_product_categories .product-categories .carets::after {
    display: inline-block;
    content: "\e982";
    font-family: 'abcicon';
    margin-left: 5px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    float: right;
}
.widget_product_categories .product-categories .show-sub .carets::after {
    content: '\e977';
}
.widget_product_categories .product-categories li .children {
    display: none;
}
.widget_archive ul li {
    margin-bottom: 5px;
    list-style: none;
}
.widget_archive ul li a {
    font-size: 13px;
    color: #777;
}
.widget_archive ul li a::before {
    content: "\e957";
    display: inline-block;
    vertical-align: middle;
    font-family: 'abcicon';
    margin-right: 6px;
    font-size: 17px;
    color: #cacaca;
}
.widget_categories ul li {
    margin-bottom: 5px;
}
.widget_categories ul li a {
    font-size: 13px;
    color: #777;
}
body.no-toolkit .widget.widget_recent_comments ul {
    padding: 0;
}
.widget_recent_comments ul li {
    margin: 0;
    font-size: 13px;
    color: #777;
    font-style: italic;
    padding-left: 25px;
    position: relative;
    line-height: 28px;
    list-style: none !important;
}
.widget_recent_comments ul li:before {
    content: "\e976";
    display: inline-block;
    vertical-align: middle;
    font-family: 'abcicon';
    margin-right: 6px;
    font-size: 20px;
    color: #999;
    font-weight: normal;
    font-style: normal;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.sidebar .widget_shopping_cart_content .cart-title {
    margin: 0;
    padding: 0 0 10px;
}
.sidebar .widget_shopping_cart_content .cart_list {
    margin: 0;
    max-height: 250px;
    padding-left: 0;
}
body .select2.select2-container .select2-selection--multiple {
    border-radius: 0;
    border: 1px solid #e6e6e6;
    margin-bottom: 10px;
}
.woocommerce-widget-layered-nav .widgettitle,
.widget_price_filter .widgettitle,
.widget_layered_nav .widgettitle,
.shop-sidebar .widget_product_categories .widgettitle {
    font-size: 13px;
    line-height: 16px;
    color: #222;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 0;
    border: none;
}
.widget_price_filter button {
    padding: 0 20px;
    line-height: 36px;
    margin-bottom: 10px;
}
.widget_price_filter button:hover {
    background-color: #222;
}
.widget_price_filter .price_slider_wrapper {
    position: relative;
    padding-top: 38px;
}
.ui-slider {
    height: 2px;
    background-color: #222;
    width: calc(100% - 22px);
    position: relative;
    text-align: left;
    margin-bottom: 16px;
}
.ui-slider .ui-slider-range {
    background-color: #222;
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
    margin-left: 5px;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 1;
    top: -8px;
    left: 0;
    -ms-touch-action: none;
    touch-action: none;
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background-color: #222;
}
.ui-slider .ui-slider-handle::before {
    width: 6px;
    height: 6px;
    background-color: #fff;
    position: absolute;
    z-index: 1;
    left: 5px;
    top: 5px;
    content: '';
    border-radius: 100%;
}
.widget_price_filter .price_slider_amount {
    text-align: center;
}
.widget_price_filter .price_label {
    font-size: 14px;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    text-align: center;
    top: 5px;
    color: #555;
}
.widget_layered_nav .inline-group {
    overflow: hidden;
}
.widget_layered_nav .inline-group a {
    display: inline-block;
    float: left;
    font-size: 13px;
    color: #555;
    min-width: 38px;
    min-height: 38px;
    line-height: 38px;
    padding: 0 10px;
    text-align: center;
    background-color: #f6f6f6;
    margin: 10px 10px 0 0;
}
.widget_layered_nav .inline-group a:hover,
.widget_layered_nav .inline-group a.selected {
    background-color: #a7a7a7;
    color: #fff;
}
.widget_layered_nav .color-group {
    padding-left: 5px;
    margin-left: -5px;
    padding-top: 20px;
}
.widget_layered_nav .color-group::before,
.widget_layered_nav .color-group::after {
    content: '';
    display: table;
}
.widget_layered_nav .color-group::after {
    clear: both;
}
.widget_layered_nav .color-group a {
    display: inline-block;
    float: left;
    font-size: 0;
    margin: 10px 10px 0 0;
    position: relative;
}
.widget_layered_nav .color-group a i {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: solid 1px #cdcdcd;
}
.widget_layered_nav .color-group a:hover i::before,
.widget_layered_nav .color-group a.current-cat i::before,
.widget_layered_nav .color-group a.selected i::before {
    width: 26px;
    height: 26px;
    position: absolute;
    z-index: 1;
    left: -4px;
    top: -4px;
    border-radius: 100%;
    border: solid 1px transparent;
    background-color: transparent;
    content: '';
}
.widget_layered_nav .color-group a.current-cat i::before,
.widget_layered_nav .color-group a.selected i::before {
    border-color: #222;
}
.widget_layered_nav .color-group a:hover .term-name {
    font-size: 13px;
    color: #999;
    font-style: italic;
    position: absolute;
    z-index: 2;
    bottom: calc(100% + 11px);
    left: 0;
}
.widget_products .product_list_widget li,
.widget_recent_reviews .product_list_widget li,
.widget_top_rated_products .product_list_widget li {
    overflow: hidden;
    margin-bottom: 20px;
}
.widget_products .product_list_widget li .rating-wapper,
.widget_recent_reviews .product_list_widget li .rating-wapper,
.widget_top_rated_products .product_list_widget li .rating-wapper {
    display: none;
}
.widget_products .product_list_widget li a,
.widget_recent_reviews .product_list_widget li a,
.widget_top_rated_products .product_list_widget li a {
    display: block;
    font-size: 13px;
    color: #222;
}
.widget_products .product_list_widget li img,
.widget_recent_reviews .product_list_widget li img,
.widget_top_rated_products .product_list_widget li img {
    max-width: 80px;
    float: left;
    margin-right: 20px;
}
.widget_products .product_list_widget li ins,
.widget_products .product_list_widget li .amount,
.widget_recent_reviews .product_list_widget li ins,
.widget_recent_reviews .product_list_widget li .amount,
.widget_top_rated_products .product_list_widget li ins,
.widget_top_rated_products .product_list_widget li .amount {
    font-size: 12px;
    color: #222;
    text-decoration: none;
}
.widget_products .product_list_widget li del .amount,
.widget_recent_reviews .product_list_widget li del .amount,
.widget_top_rated_products .product_list_widget li del .amount {
    color: #898989;
    text-decoration: line-through;
}
.sidebar .hidden-sidebar {
    font-size: 15px;
    color: #222;
    font-weight: 600;
    position: relative;
    display: block;
    margin: 0 0 25px;
}
.single-product .sidebar .hidden-sidebar {
    display: none;
}
.sidebar .hidden-sidebar::after {
    display: inline-block;
    content: "\e9a3";
    font-family: 'abcicon';
    font-size: 16px;
    color: #999;
    font-weight: normal;
    margin-left: 15px;
    vertical-align: top;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
/*====CUSTOM THEME====*/
.page-template-fullpage .header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 222;
    border-bottom: solid 1px #e5e5e5;
    top: 0;
}
.admin-bar.page-template-fullpage .header {
    top: 32px;
}
.page-template-fullpage .header .main-header {
    padding: 30px 0 29px;
}
#fullpage > .section {
    position: relative;
    margin-top: 100px;
    height: 100vh;
}
#fullpage .ovic-call-to-action.style-1 .call-to-action-inner .gallery {
    bottom: 0;
}
.footer-fullpage {
    position: absolute !important;
    z-index: 111111;
    bottom: 0;
    left: 0 !important;
    right: 0;
    background-color: #fff;
}
#fp-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#fp-nav ul {
    margin: 0;
    padding: 0;
}
#fp-nav ul li {
    list-style: none;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    width: 16px;
    height: 16px;
    border: solid 1px #222;
    background-color: #fff;
    display: inline-block;
    border-radius: 100%;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    box-sizing: border-box;
    background-color: #222;
}
.page-banner {
    background-attachment: fixed;
    height: 100vh;
    position: relative;
    text-align: center;
    max-height:500px;
    background-position: top center;
    background-repeat: no-repeat;
    -o-background-size: cover;
    min-height: 480px;
}
.page-banner .page-banner-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
}
.page-banner .page-title {
    text-transform: lowercase;
    color: #c4932d;
    font-size: 80px;
    font-weight: 300;
    margin: 0 0 15px;
}
.page-banner .breadcrumbs .breadcrumb {
    border: none;
    margin: 0;
    height: auto;
    max-width: 100%;
}
.page-banner .breadcrumbs .breadcrumb li {
    font-size: 12px;
    color: #fff;
}
.page-banner .breadcrumbs .breadcrumb li > span {
    text-decoration: underline;
}
.sc-subtitle {
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}
.row-full-1.vc_row[data-vc-full-width] {
    overflow: inherit;
}
.banner-button.right {
    text-align: right;
}
.banner-button.center {
    text-align: center;
}
.banner-title.style-1,
.banner-title.style-2 {
    font-size: 14px;
    color: #777777;
    text-align: center;
    display: block;
}
.banner-title.style-2 {
    color: #fff;
}
.banner-title.style-1 .number::after,
.banner-title.style-2 .number::after {
    content: '';
    width: 46px;
    height: 1px;
    background-color: #777;
    display: inline-block;
    margin: 0 12px;
    vertical-align: middle;
}
.banner-title.style-2 .number::after {
    background-color: #fff;
}
.ovic-countdown-sc .button,
.shop-button {
    position: relative;
    overflow: hidden;
}
.ovic-countdown-sc .button span,
.shop-button span {
    position: relative;
    z-index: 2;
}
.ovic-countdown-sc .button::after,
.shop-button::after {
    color: #fff;
    background-color: #c61a32;
}
.ovic-countdown-sc .button::after,
.shop-button::after {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    content: '';
    -webkit-transform: translateY(100%) rotate(100deg);
    -moz-transform: translateY(100%) rotate(100deg);
    -ms-transform: translateY(100%) rotate(100deg);
    -o-transform: translateY(100%) rotate(100deg);
    transform: translateY(100%) rotate(100deg);
    background-color: #222;
    height: 0;
    border-radius: 100%;
}
.ovic-countdown-sc .button:hover::after,
.shop-button:hover:after {
    -webkit-transform: translateY(0) rotate(0deg);
    -moz-transform: translateY(0) rotate(0deg);
    -ms-transform: translateY(0) rotate(0deg);
    -o-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    height: 100%;
    border-radius: 0;
    -webkit-transition: 0.5s ease 0s;
    -moz-transition: 0.5s ease 0s;
    -ms-transition: 0.5s ease 0s;
    -o-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
}
.shop-button.style-1 {
    font-size: 16px;
    color: #222;
    font-weight: 600;
    display: inline-block;
    line-height: 20px;
}
.shop-button.style-1:hover {
    color: #222;
}
.shop-button.style-1::after {
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #222;
    height: 1px;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    border-radius: 0;
    top: auto;
}
.shop-button.style-1:hover::after {
    width: 100%;
}
.shop-button.style-2 {
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 35px;
    color: #fff;
    background-color: #222;
}
.shop-button.style-2:hover {
    color: #fff;
}
.shop-button.style-3 {
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 35px;
    color: #222;
    background-color: #fff;
}
.shop-button.style-3:hover {
    background-color: #222;
    color: #fff;
}
.shop-button.style-4 {
    font-size: 12px;
    color: #222;
    letter-spacing: 2px;
    text-decoration: underline;
    text-transform: uppercase;
}
.shop-button.style-4:hover {
    text-decoration: none;
}
.shop-button.style-5 {
    font-size: 16px;
    color: #fff;
    line-height: 52px;
    border-radius: 26px;
    padding: 0 40px;
    font-weight: 600;
    background-color: #222;
    display: inline-block;
    vertical-align: top;
}
.shop-button.style-5:hover {
    background-color: #c61a32;
}
.shop-button.style-6 {
    font-size: 12px;
    color: #222;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: transparent;
}
.shop-button.style-6:hover {
    text-decoration: none;
    background-color: transparent !important;
}
.shop-button.style-6::after,
.shop-button.style-6:hover::after {
    background-color: #a3a3a3;
    height: 1px;
    width: 100%;
    bottom: 4px;
    top: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.shop-button.style-6:hover::after {
    background-color: #222;
}
.shop-button.style-7 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    padding-bottom: 6px;
}
.banner-button .shop-button.style-7:hover {
    background-color: transparent;
}
.shop-button.style-7::after {
    display: none;
}
.shop-button.style-7::before {
    background-color: #fff;
    height: 2px;
    width: 100%;
    position: absolute;
    z-index: 1;
    content: '';
    left: 0;
    bottom: 0;
    top: auto;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.background-parallax {
    background-attachment: fixed;
}
.custom-row-home-8 {
    float: left;
}
.custom-row-home-8.right {
    float: right;
}
.ovic-menu-clone-wrap .ovic-menu-panel .vc_row {
    background-color: #fff !important;
}
.ovic-menu-panel li .desc {
    display: none;
}
/*RESPONSIVE*/
@media (max-width: 1650px) {
    .main-header .right-main-header > div {
        margin-right: 10px;
    }
}
@media (max-width: 1500px) {
    .header.style-1 .left-main-header .menu-mobile {
        display: inline-block;
    }
    .header.style-1 .header-message,
    .header.style-1 .header-nav .ovic-menu-wapper {
        display: none;
    }
    .header.style-1 .main-header .left-main-header,
    .header.style-1 .main-header .right-main-header {
        width: 35%;
    }
    .header.style-1 .middle-main-header {
        width: 30%;
    }
    .header.style-1 .logo {
        padding: 0;
        text-align: center;
    }
    .header.style-4 .header-nav .ovic-menu-wapper {
        display: inline-block;
    }
    .header.style-4 .main-header .menu-toggle {
        display: none;
    }
    .header.style-6 .logo {
        width: 160px;
    }
    .header.style-6 .header-nav {
        width: calc(100% - 525px);
    }
    .header.style-6 .right-main-header {
        width: 365px;
    }
    .header.style-6 .right-main-header > div {
        margin-right: 15px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow {
        left: calc(23% + 4px);
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow.next {
        right: calc(23% + 4px);
    }
    .popup-gallery {
        max-width: 580px;
        max-height: 750px;
    }
    .post-item.style-3 .post-info {
        padding: 30px 15px 15px 30px;
    }
    .ovic-call-to-action .call-to-action-inner .title br {
        display: none;
    }
    .ovic-call-to-action .call-to-action-inner {
        padding-top: 45px;
    }
    .ovic-call-to-action .call-to-action-inner .title {
        font-size: 60px;
        line-height: 60px;
    }
    .ovic-call-to-action .call-to-action-inner .title,
    .ovic-call-to-action .call-to-action-inner .subtitle,
    .ovic-call-to-action .call-to-action-inner .button {
        margin-left: 30px;
        margin-bottom: 15px;
    }
    .ovic-call-to-action .call-to-action-inner .desc {
        margin-left: 100px;
    }
    .ovic-category.style-2 .category-thumb .category-content a {
        line-height: 46px;
        padding: 0 26px;
    }
    
}
@media (max-width: 1366px) {
    .header.style-6 .header-nav {
        width: calc(100% - 495px);
    }
    .header.style-6 .right-main-header {
        width: 335px;
    }
    .header.style-6 .right-main-header > div {
        margin-right: 10px;
    }
    .header.style-6 .right-main-header > div.block-user {
        margin-right: 10px;
        padding-right: 10px;
    }
    .header.style-6 .main-menu > li {
        padding: 15px 10px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow {
        left: 20%;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow.next {
        right: 20%;
    }
    .popup-gallery {
        max-width: 540px;
        max-height: 700px;
    }
    .shop-button.style-5 {
        padding: 0 30px;
        line-height: 42px;
    }
}
@media (max-width: 1199px) {
    #fullpage > .section,
    #fullpage > .section .fp-tableCell {
        height: auto !important;
        margin-top: 0;
    }
    #fullpage .footer-fullpage {
        display: none;
    }
    .page-template-fullpage .header {
        position: static;
        width: 100%;
        background: #fff;
        z-index: 222;
    }
    .page-template-fullpage .header.style-3 .main-header {
        padding: 30px 0 29px;
    }
    .white-popup {
        max-width: 750px;
    }
    .main-menu > li {
        padding: 13px 15px;
    }
    .header {
        height: auto !important;
    }
    .menu-mobile {
        display: inline-block;
    }
    .header.style-1.header-innerpage .main-header {
        margin-bottom: 0;
    }
    .header.style-2 .main-header,
    .header.style-2.header-absolute .main-header,
    .header.style-3.header-absolute .main-header {
        padding: 25px 0 10px;
    }
    .header.style-2.header-absolute .main-header {
        background-color: rgba(0, 0, 0, 0.3);
    }
    .header.style-2 .main-header .header-nav .ovic-menu-wapper {
        display: none;
    }
    .header.style-2 .menu-mobile .icon,
    .header.style-2 .menu-mobile .text {
        color: #fff;
    }
    .header.style-2.header-absolute .block-search .form-search {
        margin-top: 0;
    }
    .header.style-2 .right-main-header .header-options > div {
        padding: 12px 5px 8px;
    }
    .header.style-2 .block-minicart .widget_shopping_cart {
        margin-top: 6px;
    }
    .header.style-2 .block-minicart .widget_shopping_cart::before {
        height: 15px;
    }
    .header.style-3 .menu-mobile .icon,
    .header.style-3 .menu-mobile .text {
        color: #222;
    }
    .header.style-3.header-absolute .main-header {
        background-color: rgba(255, 255, 255, 0.3);
    }
    .header.style-3 .header-wrap-stick.fixed {
        padding-bottom: 0;
    }
    .header.style-4 .header-nav .ovic-menu-wapper,
    .header.style-4 .main-header .menu-mobile.open-menu {
        display: none;
    }
    .header.style-4 .main-header .menu-toggle {
        display: inline-block;
    }
    .header.style-5 {
        height: auto !important;
    }
    .header.style-5 .header-nav {
        display: none;
    }
    .header.style-5 .menu-mobile {
        float: right;
    }
    .header.style-6 {
        position: static;
    }
    .header.style-6 .menu-bar {
        height: 44px;
        width: 44px;
        line-height: 44px;
        margin: 5px 0;
    }
    .header.style-6 .header-nav {
        text-align: left;
        position: absolute;
        z-index: 11;
        left: 0;
        background-color: #fff;
        -webkit-transform: translateY(-200%);
        -moz-transform: translateY(-200%);
        -ms-transform: translateY(-200%);
        -o-transform: translateY(-200%);
        transform: translateY(-200%);
        -webkit-transition: 0.2s ease 0s;
        -moz-transition: 0.2s ease 0s;
        -ms-transition: 0.2s ease 0s;
        -o-transition: 0.2s ease 0s;
        transition: 0.2s ease 0s;
    }
    .header.style-6 .main-header.open .header-nav {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .header.style-6 .right-main-header {
        width: 330px;
    }
    .header.style-6 .header-nav {
        width: calc(100% - 330px);
        padding-left: 15px;
    }
    .header.style-7,
    .header.style-7 .header-nav {
        background-color: #111;
    }
    .header.style-7 .menu-bar {
        display: inline-block;
    }
    .left-sidebar .blog-standard {
        padding-left: 30px;
    }
    .right-sidebar .blog-standard {
        padding-right: 30px;
    }
    .slick-slider:hover .slick-arrow {
        left: 0;
    }
    .slick-slider:hover .slick-arrow.next {
        right: 0;
    }
    .slick-slider:hover .slick-arrow::after {
        display: none;
    }
    .grid-view-mode .grid-number {
        display: none;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 28px;
    }
    .left-sidebar .blog-standard {
        padding-left: 50px;
    }
    .right-sidebar .blog-standard {
        padding-right: 50px;
    }
    .ovic-countdown > span {
        margin: 0 8px 8px 0;
        min-width: 80px;
        min-height: 118px;
        padding-top: 30px;
    }
    .filter-button-group .filter-list a {
        margin: 0 20px;
        padding: 0 10px;
    }
    .filter-button-group .filter-list a::after {
        right: -24px;
    }
    .portfolio-single .post-item .post-thumb {
        padding: 0 30px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow {
        left: calc(15% + 4px);
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow.next {
        right: calc(15% + 4px);
    }
    .summary .ovic-share-socials a {
        margin-right: 5px;
    }
    .single-product .breadcrumbs .breadcrumb {
        margin-bottom: 60px;
    }
    .wrapper-single-product {
        margin-bottom: 44px;
    }
    .woocommerce-tabs {
        margin: 0px 0 60px;
    }
    /*SINGLE PRODUCT VETICAL AND DEFAULT*/
    .woocommerce-product-gallery,
    .single-thumb-vertical .woocommerce-product-gallery {
        width: 570px;
    }
    .has-sidebar .woocommerce-product-gallery,
    .single-thumb-vertical .has-sidebar .woocommerce-product-gallery {
        width: 370px;
    }
    .single-thumb-vertical .woocommerce-product-gallery .flex-viewport,
    .single-thumb-vertical .has-sidebar .woocommerce-product-gallery .flex-viewport {
        width: calc(100% - 90px);
    }
    .summary {
        padding-left: 15px;
    }
    /*----*/
    /*SINGLE PRODUCT HORIZONTAL*/
    .single-thumb-horizontal .woocommerce-product-gallery {
        width: 470px;
    }
    .single-thumb-horizontal .has-sidebar .woocommerce-product-gallery {
        width: 370px;
    }
    /*----*/
    /*SINGLE PRODUCT STICKY*/
    .single-thumb-sticky .woocommerce-product-gallery .flex-viewport,
    .single-thumb-sticky .has-sidebar .woocommerce-product-gallery .flex-viewport {
        width: 100%;
    }
    .single-thumb-sticky .flex-control-nav {
        display: none;
    }
    .single-thumb-sticky .woocommerce-product-gallery {
        width: 470px;
    }
    .single-thumb-sticky .has-sidebar .woocommerce-product-gallery {
        width: 370px;
    }
    .single-thumb-sticky .sticky-product-wrap {
        width: calc(100% - 470px);
    }
    .single-thumb-sticky .has-sidebar .sticky-product-wrap {
        width: calc(100% - 370px);
    }
    .single-thumb-sticky .sticky-product-wrap .summary {
        width: 100% !important;
    }
    /*----*/
    /*SINGLE PRODUCT SLIDE*/
    .single-thumb-slide .woocommerce-product-gallery {
        width: 670px;
    }
    .single-thumb-slide .has-sidebar .woocommerce-product-gallery {
        width: 370px;
    }
    /*----*/
    .product-grid {
        margin-bottom: 35px;
    }
    .has-sidebar .summary {
        padding-left: 10px;
    }
    .ovic-category.style-1 .cate-filter {
        padding: 16px 0;
    }
    .ovic-call-to-action .call-to-action-inner {
        padding: 0;
    }
    .ovic-call-to-action .call-to-action-inner .desc {
        display: none;
    }
    .ovic-call-to-action .call-to-action-inner .gallery {
        padding-right: 15px;
    }
    .ovic-call-to-action.style-2 .call-to-action-inner,
    .ovic-call-to-action.style-3 .call-to-action-inner {
        padding: 10px 5px;
        background-color: #fff;
    }
    .ovic-call-to-action.style-2 .call-to-action-inner .gallery a,
    .ovic-call-to-action.style-2 .call-to-action-inner .gallery a:first-child,
    .ovic-call-to-action.style-3 .call-to-action-inner .gallery a,
    .ovic-call-to-action.style-3 .call-to-action-inner .gallery a:first-child,
    .ovic-call-to-action.style-2 .call-to-action-inner .gallery a:nth-child(2),
    .ovic-call-to-action.style-3 .call-to-action-inner .gallery a:nth-child(2) {
        margin: 0 5px !important;
        padding: 0;
    }
    .ovic-countdown-sc .title {
        font-size: 40px;
        line-height: 40px;
    }
    .blog-standard .post-item {
        margin-bottom: 60px;
    }
    .theme-container .blog-masonry {
        margin: 0 -15px;
    }
    .theme-container .blog-masonry .pagination {
        padding: 0 15px;
    }
    .theme-container .blog-masonry .isotope-item {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    .blog-masonry .isotope-item,
    .blog-masonry .isotope-item.width-2 {
        width: 33.333%;
    }
    .blog-masonry .isotope-item.width-2 .post-thumb {
        padding-bottom: 28px;
    }
    .blog-masonry .isotope-item.width-2 .post-item .post-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    .single-post .modern .main-content .post-item .post-thumb {
        padding-bottom: 27px;
    }
    .blog-single .post-item .post-title {
        margin-bottom: 15px;
    }
    .blog-single .post-item .post-metas {
        margin-bottom: 30px;
    }
    .single-post .blog-single .head {
        margin: 0 0 60px;
    }
    .banner-title.style-1 .number::after, .banner-title.style-2 .number::after {
        width: 50px;
        margin: 0 10px;
    }
    .blog .page-title {
        margin: 40px auto 88px;
    }
    .ovic-iconbox.style-4 .content .title {
        margin-bottom: 15px;
    }
    .product-item.style-3 .product-info {
        padding-bottom: 26px;
    }
    .product-item.style-4 .product-thumb {
        max-width: 370px;
    }
    .product-item.style-4 .product-info {
        width: calc(100% - 370px);
    }
    .ovic-category.style-3 .cate-filter {
        letter-spacing: 5px;
    }
}
@media (max-width: 1024px) {
    .header.style-6 .header-main-content .header-nav {
        display: none;
    }
    .header.style-6 .menu-bar {
        display: none;
    }
    .header.style-6 .menu-bar.menu-mobile {
        display: inline-block;
    }
    a.backtotop {
        width: 40px;
        height: 40px;
        line-height: 40px;
        bottom: 36px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow {
        left: 55px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow.next {
        right: 55px;
    }
    .ovic-call-to-action .call-to-action-inner .subtitle {
        font-size: 14px;
    }
    .ovic-call-to-action .call-to-action-inner .title {
        font-size: 36px;
        line-height: 40px;
    }
    .ovic-call-to-action .call-to-action-inner .button {
        height: 46px;
        line-height: 46px;
        min-width: 150px;
    }
    .ovic-call-to-action.style-2 .call-to-action-inner,
    .ovic-call-to-action.style-3 .call-to-action-inner {
        opacity: 1;
        visibility: visible;
    }
    .product-item .product-metas,
    .product-item .rating-wapper,
    .product-item .product-thumb .group-button .compare-button {
        display: none;
    }
    .product-item .product-thumb .group-button .quickview,
    .product-item:hover .product-thumb .group-button .quickview {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .product-item .group-button .quickview a {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
    .product-item .product-thumb .add-to-cart {
        opacity: 1;
        visibility: visible;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    .shop-control.shop-before-control .wrapper-catalog-ordering .title {
        display: none;
    }
    .sidebar .shop-sidebar .widget {
        margin-bottom: 25px;
    }
    .block-minicart .cart-link::after,
    .block-minicart .widget_shopping_cart {
        display: none;
    }
    .block-minicart .cart-link {
        padding-right: 15px;
    }
    .product-item.style-4 .rating-wapper {
        display: block;
    }
    .ovic-category.style-3 .cate-filter {
        letter-spacing: 0;
        opacity: 1;
    }
}
@media (max-width: 991px) {
    .header .block-user,
    .header.style-1 .block-user,
    .header.style-2 .block-user,
    .header.style-3 .block-user,
    .header.style-4 .block-user,
    .header.style-5 .block-user {
        display: none;
    }
    .header.style-1.header-innerpage {
        position: static;
    }
    .sidebar {
        position: fixed;
        left: -100%;
        height: 100vh;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        background-color: #fff;
        width: 280px;
        top: 0;
        -webkit-transition: 0.5s ease 0s;
        -moz-transition: 0.5s ease 0s;
        -ms-transition: 0.5s ease 0s;
        -o-transition: 0.5s ease 0s;
        transition: 0.5s ease 0s;
        z-index: 100000;
        opacity: 0;
        visibility: hidden;
        padding: 50px 0 30px;
    }
    .sidebar.open {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    .sidebar.open .hidden-sidebar {
        display: none;
    }
    .sidebar .head {
        height: 40px;
        background-color: #222;
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        top: 0;
        display: block;
        padding-left: 15px;
    }
    .sidebar .widget-area {
        max-height: 100%;
        overflow-y: auto;
        padding: 15px;
    }
    .sidebar .head .sidebar-mobile-title {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        padding: 0 40px 0 0;
        margin: 0;
        line-height: 40px;
        text-transform: uppercase;
    }
    .sidebar .head .sidebar-close-btn {
        width: 40px;
        height: 40px;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
        border-left: solid 1px #f2f2f2;
        color: #fff;
        text-align: center;
        line-height: 40px;
    }
    .white-popup {
        max-width: 700px;
    }
    .page-title {
        font-size: 46px;
        line-height: 50px;
    }
    .header.style-1 .main-header .right-main-header > * {
        margin-right: 8px;
    }
    .header.style-2 .block-user,
    .header.style-2 .main-header .right-main-header .header-nav {
        margin-right: 15px;
    }
    .header.style-5 .topbar .topbar-left-content {
        float: none;
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    .header.style-5 .topbar .ovic-menu-wapper {
        float: none;
        text-align: center;
    }
    .dgwt-wcas-has-img .dgwt-wcas-suggestion.dgwt-wcas-suggestion-product {
        width: 100%;
        float: none;
        margin-bottom: 5px;
        border-right: solid 1px #ddd;
    }
    .block-user {
        padding-right: 15px;
    }
    .single-post .modern .main-content .post-item .post-thumb {
        padding: 0 30px;
    }
    .left-sidebar .blog-standard {
        padding-left: 0;
    }
    .right-sidebar .blog-standard {
        padding-right: 0;
    }
    .header .sub-menu::before {
        height: 40px;
        top: -38px;
    }
    .woocommerce-cart-form {
        width: 100%;
        float: none;
        margin-bottom: 60px;
    }
    .cart-collaterals {
        float: none;
        max-width: 100%;
        width: 100%;
        margin-top: 0;
    }
    .single-portfolio .breadcrumbs .breadcrumb {
        margin-bottom: 56px;
    }
    .portfolio-single .post-item .post-title {
        font-size: 30px;
        margin-bottom: 55px;
    }
    .portfolio-single .post-item .post-thumb {
        padding: 0 15px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow {
        left: 10px;
    }
    .portfolio-single .post-thumb .slick-slider .slick-arrow.next {
        right: 10px;
    }
    .woocommerce .woocommerce-MyAccount-navigation {
        width: 100%;
        margin: 0 0 30px;
        float: none;
    }
    /*SINGLE PRODUCT VETICAL AND DEFAULT*/
    .woocommerce-product-gallery,
    .has-sidebar .woocommerce-product-gallery,
    .single-thumb-vertical .woocommerce-product-gallery,
    .single-thumb-vertical .has-sidebar .woocommerce-product-gallery {
        width: 415px;
    }
    /*----*/
    /*SINGLE PRODUCT HORIZONTAL*/
    .single-thumb-horizontal .woocommerce-product-gallery,
    .single-thumb-horizontal .has-sidebar .woocommerce-product-gallery {
        width: 470px;
    }
    /*----*/
    /*SINGLE PRODUCT SLIDE*/
    .single-thumb-slide .woocommerce-product-gallery,
    .single-thumb-slide .has-sidebar .woocommerce-product-gallery {
        width: 100%;
    }
    /*----*/
    #yith-quick-view-content div.summary {
        padding-top: 15px;
    }
    #yith-quick-view-content div.summary .product_title {
        padding-right: 20px;
    }
    .summary {
        padding-top: 0 !important;
    }
    .single-thumb-sticky .woocommerce-product-gallery__trigger {
        left: 10px;
    }
    .custom-row-home-8,
    .custom-row-home-8.right {
        float: none;
    }
    .shop-control .filter-sidebar-content .shop-sidebar > div.widget {
        padding: 0 20px;
        width: 50%;
    }
    .ovic-call-to-action.style-3 .title {
        font-size: 46px;
        line-height: 50px;
    }
    .footer-mobile {
        display: block;
    }
    footer {
        margin-bottom: 50px;
    }
    .shop-control .action-filter-sidebar {
        display: block;
        line-height: 40px;
        color: #fff;
        background-color: #222;
        padding: 0 15px;
        text-align: center;
        font-size: 0;
        font-weight: 400;
    }
    .shop-control .action-filter-sidebar::before {
        content: '\e99f';
        font-family: 'abcicon';
        font-size: 20px;
        display: inline-block;
        vertical-align: top;
    }
    .shop-control .filter-sidebar-content {
        position: fixed;
        left: -100%;
        top: 0;
        transform-origin: inherit;
        width: 280px;
        background-color: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        -webkit-transition: 0.5s ease 0s;
        -moz-transition: 0.5s ease 0s;
        -ms-transition: 0.5s ease 0s;
        -o-transition: 0.5s ease 0s;
        transition: 0.5s ease 0s;
        height: 100vh;
    }
    .shop-control .filter-sidebar-content .shop-sidebar {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        padding: 15px;
        position: static;
        overflow-y: auto;
        height: 100%;
    }
    .shop-control .filter-sidebar-content.open {
        z-index: 100000;
        left: 0;
    }
    .shop-control .filter-sidebar-content .shop-sidebar > div.widget {
        padding: 0;
        width: 100%;
    }
    .blog-masonry .isotope-item {
        width: 50%;
    }
    .blog-masonry .isotope-item.width-2 {
        width: 100%;
    }
    .blog-masonry .isotope-item .post-item .post-thumb {
        display: inline-block;
        max-width: 100%;
        margin: 0 auto;
    }
    .blog-standard .post-item,
    .theme-container .blog-masonry .isotope-item {
        margin-bottom: 30px;
    }
    .blog-standard .post-item .post-info,
    .blog-masonry .post-item .post-info {
        padding: 25px 10px;
    }
    .shop-control.shop-before-control .wrapper-catalog-ordering {
        margin-left: 0;
    }
    .shop-control.shop-before-control .wrapper-catalog-ordering select {
        padding-left: 10px;
    }
    .widget_layered_nav .color-group {
        padding-top: 0;
    }
    .page .page-title {
        margin: 45px 0 48px;
    }
    .ovic-video .video-inner .video-button {
        font-size: 60px;
    }
    .ovic-tabs .tab-head .tab-link {
        margin-bottom: 30px;
    }
    .summary .variations td {
        padding: 16px 0 8px;
    }
    .product-item.style-4 .product-thumb {
        max-width: 358px;
    }
    .product-item.style-4 .product-info {
        width: calc(100% - 358px);
        padding-left: 20px;
    }
    .product-item.style-4 .summary .product-name {
        margin-bottom: 10px;
    }
    .product-item.style-4 .product-name a {
        font-size: 36px;
        line-height: 40px;
    }
    .product-item.style-4 .summary .woocommerce-product-rating {
        padding-bottom: 14px;
    }
    .product-item.style-4 .ovic-countdown > span {
        min-width: 76px;
        margin-right: 12px;
    }
    .product-item.style-4 .summary .variations .reset_variations {
        display: none;
        float: none;
    }
    #TB_window {
        width: calc(100% - 100px) !important;
        height: calc(100% - 100px) !important;
        top: 50px !important;
        left: 50px !important;
        right: 50px !important;
    }
}
@media (max-width: 767px) {
    .single-product .breadcrumbs .breadcrumb {
        margin-bottom: 40px;
    }
    a.backtotop {
        width: 30px;
        height: 30px;
        line-height: 30px;
        bottom: 45px;
        right: 15px;
    }
    .white-popup {
        max-width: 610px;
    }
    .header.style-1 {
        margin-bottom: 0;
    }
    .header.style-4 .menu-mobile .icon {
        font-size: 24px;
    }
    .header.style-4 .menu-mobile .icon i {
        line-height: 0;
    }
    .header.style-5 .topbar {
        display: none;
    }
    .header.style-6 .header-mobile .menu-mobile .icon {
        display: none;
    }
    .header.style-6 .menu-bar.menu-mobile {
        margin: 0;
        background-color: transparent;
        color: #222;
    }
    .header.style-7 .menu-bar.menu-mobile {
        color: #fff;
    }
    .header .main-header {
        display: none;
    }
    .header .header-mobile {
        display: block;
        position: relative;
    }
    .header-mobile .menu-mobile .icon {
        font-size: 24px;
        margin: 0;
        color: inherit;
    }
    .header-mobile .menu-mobile .icon i {
        line-height: 0;
    }
    .header-mobile .block-search .open-search {
        font-size: 20px;
    }
    .header-mobile .block-menu-bar .menu-bar,
    .header-mobile .block-search .open-search,
    .header-mobile .block-minicart .cart-link {
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 3px;
        display: inline-block;
        text-align: center;
        padding: 0;
    }
    .header-mobile .block-minicart .cart-link {
        line-height: 32px;
    }
    .header-mobile .block-minicart .cart-link::after {
        display: none;
    }
    .header-mobile .header-mobile-inner .logo {
        width: 40%;
        float: left;
        line-height: 54px;
        text-align: left;
        padding: 10px 0;
    }
    .header-mobile-inner .header-control {
        width: 60%;
        float: right;
        text-align: right;
        padding: 22px 0;
    }
    .header-mobile-inner .header-control > * {
        text-align: left;
        line-height: 24px;
    }
    .header-mobile-inner .header-control > div {
        display: inline-block;
        vertical-align: top;
        margin-left: 10px;
    }
    .header-mobile .block-search .form-search {
        -webkit-transition: 0.5s ease 0s;
        -moz-transition: 0.5s ease 0s;
        -ms-transition: 0.5s ease 0s;
        -o-transition: 0.5s ease 0s;
        transition: 0.5s ease 0s;
        left: 0;
        right: 0;
        margin: 0;
        padding: 20px 25px 20px 0;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        top: 100% !important;
    }
    .header-mobile .block-search.open .form-search {
        opacity: 1;
        visibility: visible;
    }
    .header-mobile .block-search.open .form-search {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        padding: 10px 25px 10px 0;
    }
    .header-mobile .block-minicart .widget_shopping_cart,
    .header-mobile .block-minicart:hover .widget_shopping_cart {
        opacity: 0;
        visibility: hidden;
        margin-top: 26px;
        top: 100%;
        right: 0;
        width: 290px;
    }
    .header-mobile .block-minicart.open .widget_shopping_cart {
        opacity: 1;
        visibility: visible;
    }
    .header-mobile .block-minicart .widget_shopping_cart_content .cart-title {
        padding: 6px 0;
        margin: 0 15px;
    }
    .header-mobile .widget_shopping_cart_content .woocommerce-mini-cart__total {
        padding: 12px;
    }
    .header-mobile .widget_shopping_cart_content .buttons a {
        padding: 15px;
    }
    .header-mobile .widget_shopping_cart_content .cart_list {
        margin: 0 15px;
    }
    .header-mobile .block-search .form-search .inner {
        position: inherit;
    }
    .header-mobile .block-search .form-search .close-search {
        bottom: auto;
        border-radius: 100%;
        font-size: 20px;
        height: 20px;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    .single-post .modern .main-content .post-item .post-thumb {
        padding: 0 15px;
    }
    .header-mobile .block-search .form-search .input-info,
    .header-mobile .block-search .search-box .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
        width: calc(100% - 115px);
        float: left;
        height: 40px;
    }
    .header-mobile .block-search .form-search .btn-submit {
        display: inline-block;
        font-size: 16px;
        color: #fff;
        background-color: #222;
        text-transform: uppercase;
        font-weight: 600;
        border-radius: 20px;
        padding: 0 25px;
        line-height: 40px;
    }
    .header-mobile .block-search .form-search .btn-submit:hover,
    .header-mobile .block-search .form-search .btn-submit:focus {
        background-color: #777;
    }
    .header.style-2 .header-mobile {
        background-color: #000;
    }
    .header.style-2 .header-mobile .block-menu-bar .menu-bar,
    .header.style-2 .header-mobile .block-search .open-search,
    .header.style-2 .header-mobile .block-minicart .cart-link {
        color: #fff;
    }
    .header.style-3 .header-mobile {
        background-color: #fff;
    }
    .header.style-3 .header-mobile .block-menu-bar .menu-bar,
    .header.style-3 .header-mobile .block-search .open-search,
    .header.style-3 .header-mobile .block-minicart .cart-link {
        color: #222;
    }
    .header.style-5 .block-search .open-search,
    .header.style-5 .block-search .form-search .close-search {
        display: inline-block;
    }
    .header.style-5 .header-mobile .block-search .form-search .inner {
        padding-left: 15px;
        padding-right: 0;
        position: relative;
    }
    .header.style-5 .header-mobile .block-search .form-search .close-search {
        right: 15px;
    }
    .filter-button-group .filter-list a {
        margin: 0 10px;
    }
    .filter-button-group .filter-list a::after {
        display: none;
    }
    .blog-single .post-item .post-info {
        padding-top: 30px;
    }
    .blog-single .post-item .post-metas {
        margin-bottom: 30px;
    }
    .comments-area .comment-body .author-comment {
        margin-right: 20px;
        max-width: 50px;
    }
    .comment .comment-body .comment-info {
        padding-top: 0;
    }
    .popup-gallery {
        max-width: 460px;
        max-height: 600px;
    }
    .post-item.style-3 .post-thumb,
    .blog-item.right .post-item.style-3 .post-thumb,
    .blog-item.position_right .post-item.style-3 .post-thumb {
        float: none;
        max-width: 100%;
        width: 100%;
    }
    .post-item.style-3 .equal-elem {
        height: auto !important;
        min-height: 250px;
    }
    .post-item.style-3 .post-info {
        padding: 30px 15px;
    }
    .page-banner .page-title {
        font-size: 60px;
        line-height: 50px;
    }
    /*SINGLE PRODUCT VETICAL AND DEFAULT*/
    .woocommerce-product-gallery,
    .has-sidebar .woocommerce-product-gallery,
    .single-thumb-vertical .woocommerce-product-gallery,
    .single-thumb-vertical .has-sidebar .woocommerce-product-gallery {
        width: 360px;
    }
    .single-thumb-vertical .has-sidebar .woocommerce-product-gallery .flex-viewport,
    .single-thumb-vertical .woocommerce-product-gallery .flex-viewport {
        width: 100%;
        margin-bottom: 10px;
        float: none;
    }
    .single-thumb-vertical .flex-control-nav {
        max-width: 100%;
        display: block;
        width: 100%;
        clear: both;
        padding-top: 10px;
    }
    .single-thumb-vertical .woocommerce-product-gallery__trigger {
        left: 10px;
    }
    /*----*/
    /*SINGLE PRODUCT HORIZONTAL*/
    .single-thumb-horizontal .woocommerce-product-gallery,
    .single-thumb-horizontal .has-sidebar .woocommerce-product-gallery {
        width: 360px;
    }
    /*----*/
    /*SINGLE PRODUCT SLICKY*/
    .single-thumb-sticky .woocommerce-product-gallery,
    .single-thumb-sticky .has-sidebar .woocommerce-product-gallery {
        width: 360px;
    }
    /*----*/
    .post-item .post-thumb {
        padding-bottom: 18px;
    }
    .post-item .post-info {
        padding: 0 10px 20px;
    }
    .post-item .post-title {
        margin-bottom: 5px;
    }
    .product-item.list .product-thumb {
        max-width: 270px;
    }
    .ovic-category .category-thumb .image img {
        width: 100%;
    }
    .banner-title.style-1 .number,
    .banner-title.style-2 .number {
        margin-right: 5px;
    }
    .banner-title.style-1 .number::after,
    .banner-title.style-2 .number::after {
        display: none;
    }
    .ovic-call-to-action .main-banner {
        margin-bottom: 30px;
    }
    .ovic-call-to-action .main-banner,
    .ovic-call-to-action .call-to-action-inner {
        width: 100%;
        float: none;
        text-align: center;
    }
    .ovic-call-to-action .call-to-action-inner .title,
    .ovic-call-to-action .call-to-action-inner .subtitle,
    .ovic-call-to-action .call-to-action-inner .button {
        margin-left: 0;
    }
    .ovic-call-to-action .call-to-action-inner .gallery {
        width: 100%;
        position: static;
        max-width: 510px;
        padding: 0 15px;
        margin: 20px auto 0;
    }
    .shop-control.shop-before-control > div {
        margin-bottom: 10px;
    }
    .woocommerce-account .fullwidth-template .woocommerce {
        padding: 50px;
    }
    .woocommerce .col2-set .col-1 form .woocommerce-Button,
    .woocommerce-page .col2-set .col-1 form .woocommerce-Button,
    .woocommerce .col2-set .col-2 form .woocommerce-Button,
    .woocommerce-page .col2-set .col-2 form .woocommerce-Button {
        min-width: 1px;
        line-height: 36px;
    }
    .blog-masonry .isotope-item.width-2 {
        width: 50%;
    }
    .blog-masonry .post-item .post-info {
        padding: 18px 10px 28px;
    }
    .ovic-iconbox .icon {
        font-size: 36px;
        margin-right: 15px;
    }
    .ovic-newsletter .title {
        display: block;
        margin: 0 0 10px;
    }
    .ovic-newsletter .subtitle {
        line-height: 24px;
        font-size: 20px;
    }
    .ovic-newsletter.style-3 .head {
        margin-bottom: 25px;
    }
    .ovic-newsletter.style-3 .newsletter-form-wrap {
        margin-bottom: 20px;
    }
    .product-item.style-4 .product-thumb {
        max-width: 300px;
    }
    .product-item.style-4 .product-info {
        width: calc(100% - 300px);
        padding-left: 15px;
    }
    .product-item.style-4 .ovic-countdown > span {
        min-width: 70px;
        margin-right: 5px;
    }
    .product-item.style-4 .summary .quantity .qty-label {
        display: none;
    }
}
@media (max-width: 639px) {
    .product-item.list {
        margin-bottom: 30px;
    }
    .has-sidebar .product-item.list .product-thumb,
    .product-item.list .product-thumb {
        max-width: 250px;
    }
    .product-item.list .product-info {
        padding: 20px 0 0 20px;
    }
    footer {
        margin-bottom: 70px;
    }
    .footer-mobile .footer-mobile-inner > .item a span,
    .footer-mobile .footer-mobile-inner .menu-mobile .icon-menu {
        display: block;
        margin: 0 0 5px;
        line-height: 20px;
    }
    .white-popup {
        max-width: 460px;
    }
    .block-search .form-search .input-info,
    .block-search .search-box .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input{
        font-size: 16px;
    }
    .shop_table tr {
        padding: 0;
        border-color: #222;
    }
    .woocommerce-cart-form .shop_table td,
    .wishlist_table td,
    .shop_table td.product-thumbnail,
    .shop_table td.product-price,
    .shop_table td.product-quantity,
    .shop_table td.product-stock-status,
    .woocommerce table.wishlist_table tbody td,
    .shop_table tr td {
        display: block;
        text-align: center !important;
        border: none;
        width: 100%;
        padding: 20px 0;
        position: static;
        border-bottom: solid 1px #e5e5e5;
    }
    .woocommerce-cart-form .shop_table td:last-child,
    .wishlist_table td:last-child,
    .woocommerce table.wishlist_table tbody td:last-child {
        border: none;
    }
    .wishlist_table tr td.product-thumbnail a,
    .shop_table .product-thumbnail figure {
        margin: 0 auto;
    }
    .shop_table td.product-remove,
    .woocommerce table.wishlist_table tr td.product-remove {
        position: absolute;
        padding: 0;
        width: 30px;
        border: none;
        top: 15px;
    }
    .woocommerce table.wishlist_table tbody td.product-add-to-cart {
        float: none;
    }
    .comments-area .comment-body .author-comment {
        margin-right: 10px;
        max-width: 40px;
    }
    .comment .comment-body .comment-info {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .filter-button-group .filter-list {
        padding: 20px 10px 10px;
        background-color: #f2f2f2;
        margin: 0 0 30px;
    }
    .filter-button-group .filter-list a {
        display: block;
        margin-bottom: 10px;
    }
    .ovic-tabs .tab-head .tab-link li {
        display: block;
        margin-bottom: 10px;
        border: solid 1px #222;
    }
    .ovic-tabs .tab-head .tab-link li.active {
        border-color: #c61a32;
    }
    .ovic-tabs .tab-head .tab-link li > a {
        padding-top: 10px;
        display: block;
    }
    .ovic-tabs .tab-head .tab-link li > a::after {
        display: none;
    }
    .portfolio-grid .post-item {
        text-align: center;
    }
    .product-item .flash > span,
    #yith-quick-view-content .onsale > span {
        width: 42px;
        height: 42px;
        line-height: 42px;
        font-size: 11px;
    }
    .product-item .group-button .yith-wcwl-add-to-wishlist a,
    .product-item .group-button .quickview a {
        height: 30px;
        line-height: 30px;
        width: 30px;
    }
    .product-item .group-button .yith-wcwl-add-to-wishlist a::before,
    .product-item .group-button .quickview a::before {
        line-height: 30px;
    }
    .product-item .product-thumb .product-attr .variations .attribute {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    .post-item.style-3 .equal-elem {
        min-height: 1px;
    }
    .product-item.style-4 .product-thumb {
        max-width: 100%;
        margin-bottom: 20px;
        float: none;
    }
    .product-item.style-4 .product-info {
        width: 100%;
        max-width: 470px;
        text-align: center;
        margin: 0 auto;
        float: none;
        padding-left: 0;
    }
    .product-item.style-4 .variations .value {
        text-align: center;
    }
    .product-item.style-4 .variations {
        position: relative;
    }
    .product-item.style-4 .variations .reset_variations {
        position: absolute;
        z-index: 1;
        right: 0;
    }
    .product-item.style-4 .ovic-countdown > span {
        min-width: 70px;
        margin-right: 5px;
    }
    .product-item.style-4 .rating-wapper {
        float: none;
    }
    .product-item.style-4 .summary .quantity .control {
        margin: 0 auto;
    }
    /*SINGLE PRODUCT VETICAL AND DEFAULT*/
    .woocommerce-product-gallery,
    .has-sidebar .woocommerce-product-gallery,
    .single-thumb-vertical .woocommerce-product-gallery,
    .single-thumb-vertical .has-sidebar .woocommerce-product-gallery {
        width: 100%;
        float: none;
    }
    .summary {
        padding-left: 20px;
    }
    /*----*/
    /*SINGLE PRODUCT HORIZONTAL*/
    .single-thumb-horizontal .woocommerce-product-gallery,
    .single-thumb-horizontal .has-sidebar .woocommerce-product-gallery {
        width: 100%;
    }
    /*----*/
    /*SINGLE PRODUCT SLICKY*/
    .single-thumb-sticky .woocommerce-product-gallery,
    .single-thumb-sticky .has-sidebar .woocommerce-product-gallery,
    .single-thumb-sticky .sticky-product-wrap,
    .single-thumb-sticky .has-sidebar .sticky-product-wrap {
        width: 100%;
    }
    .summary,
    .has-sidebar .summary {
        padding-left: 0;
    }
    .woocommerce-tabs .wc-tabs li {
        margin: 0;
        display: block;
    }
    #reviews .comment-form .comment-form-author,
    #reviews .comment-form .comment-form-email {
        width: 100%;
        float: none;
    }
    .shop-control .filter-sidebar-content .shop-sidebar {
        padding: 30px 15px;
    }
    .shop-control .filter-sidebar-content .shop-sidebar > div.widget {
        padding: 0 15px;
    }
    .shop-control.shop-before-control {
        text-align: left;
    }
    .archive .banner-shop-page .page-title {
        left: 30px;
        font-size: 30px;
        line-height: 30px;
    }
    .woocommerce-account .fullwidth-template .woocommerce {
        padding: 30px;
    }
    .blog-masonry .isotope-item,
    .blog-masonry .isotope-item.width-2 {
        width: 100%;
    }
    .ovic-category.style-1 .cate-filter {
        padding: 10px 0;
    }
    .woocommerce-tabs {
        margin-bottom: 30px;
    }
    .product-grid {
        margin-bottom: 0;
    }
    .product-grid .product-grid-title {
        padding-bottom: 10px;
    }
    .ovic-video .video-inner .video-button {
        font-size: 40px;
    }
    #TB_window {
        width: calc(100% - 60px) !important;
        height: calc(100% - 90px) !important;
        top: 30px !important;
        left: 30px !important;
        right: 30px !important;
    }
    .section-demos .section-title {
        font-size: 70px;
    }
    .section-demos .section-subtitle {
        margin-bottom: 35px;
    }
    .demos .demo-item {
        margin-bottom: 25px;
    }
}
@media (max-width: 479px) {
    .header-mobile-inner .header-control > div {
        margin-left: 0;
    }
    .block-search.style-2 .form-search .input-info {
        padding-left: 26px;
    }
    .product-item .product-thumb .product-attr {
        display: none;
    }
    .product-item .product-thumb .group-button {
        width: 30px;
    }
    .product-item .group-button > div {
        margin: 0 0 5px;
    }
    .product-item .group-button .quickview a {
        display: none;
    }
    .has-sidebar .product-item.list .product-thumb,
    .product-item.list .product-thumb {
        max-width: 100%;
        float: none;
    }
    .product-item.list .product-info {
        padding: 20px 0 0;
    }
    .shop-control .filter-sidebar-content .shop-sidebar > div.widget {
        width: 100%;
    }
    .shop-control.shop-before-control > div,
    .shop-control.shop-before-control > div:first-child,
    .shop-control.shop-before-control > div:last-child {
        margin-left: 0;
        display: block;
        float: none;
        margin-bottom: 10px;
    }
    .white-popup {
        max-width: 300px;
    }
    .ovic-countdown > span {
        min-width: 70px;
        min-height: 100px;
        padding-top: 22px;
    }
    .ovic-newsletter .newsletter-form-wrap label {
        width: 100%;
    }
    .ovic-newsletter .newsletter-form-wrap {
        text-align: center;
    }
    .ovic-newsletter .newsletter-form-wrap .button {
        float: none;
        margin: 10px auto 0;
    }
    .ovic-tabs .tab-head .tab-link li {
        margin-bottom: 5px;
    }
    .ovic-tabs .tab-head .tab-link li > a {
        padding: 5px 0;
        font-size: 18px;
    }
    .blog-portfolio .post-item .view-more,
    .popup-gallery {
        display: none;
    }
    .ovic-call-to-action .call-to-action-inner .gallery {
        max-width: 340px;
    }
    .footer .widget .widgettitle, .footer .ovic-title {
        margin-bottom: 10px;
    }
    .footer .ovic-custommenu .widgettitle .toggle-menu {
        float: right;
        display: inline-block;
    }
    .footer .ovic-custommenu .widgettitle .toggle-menu::after {
        font-family: 'abcicon';
        content: "\e982";
    }
    .footer .ovic-custommenu.open .widgettitle .toggle-menu::after {
        content: "\e977";
    }
    .footer .ovic-custommenu .ovic-menu-wapper {
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
        transform: scaleY(0);
        transform-origin: top;
        -webkit-transition: 0.5s ease 0s;
        -moz-transition: 0.5s ease 0s;
        -ms-transition: 0.5s ease 0s;
        -o-transition: 0.5s ease 0s;
        transition: 0.5s ease 0s;
        display: none;
    }
    .footer .ovic-custommenu.open .ovic-menu-wapper {
        -webkit-transform: scaleY(1);
        -moz-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        transform: scaleY(1);
        display: block;
    }
    a.backtotop {
        display: none;
    }
    footer {
        margin-bottom: 45px;
    }
    .footer-mobile .footer-mobile-inner > .item a span.text {
        display: none;
    }
    .woocommerce-account .fullwidth-template .woocommerce {
        padding: 30px 15px;
    }
    .product-item .product-thumb .add-to-cart {
        left: 5px;
        right: 5px;
        bottom: 5px;
    }
    .product-item .add-to-cart a {
        line-height: 38px;
    }
    .ovic-countdown-sc .title {
        font-size: 28px;
        line-height: 30px;
    }
    .ovic-iconbox .content .title {
        font-size: 14px;
    }
    .wpcf7-form {
        max-width: 330px;
    }
    .ovic-video .video-inner .video-button {
        font-size: 36px;
    }
    .product-item .flash,
    #yith-quick-view-content .onsale {
        display: none;
    }
    .product-item.style-4 .product-info .variations .data-val.attribute-pa_size a {
        margin: 0 5px 5px 0;
        float: left;
    }
    .product-item.style-4 .ovic-countdown > span:not(.days) {
        min-width: 68px;
    }
}
@media (max-width: 360px) {
    .product-item .product-thumb .group-button {
        top: 5px;
        right: 5px;
    }
    .product-item .add-to-cart a {
        line-height: 30px;
    }
    .product-item .add-to-cart a::before {
        display: none;
    }
    .product-item .add-to-cart a.loading {
        font-size: 0;
    }
    .product-item .add-to-cart a.loading::before {
        display: inline-block;
    }
    .product-item .rating-wapper,
    .product-item .product-metas {
        display: none;
    }
    .wpcf7-form {
        max-width: 275px;
    }
}
/*----*/
@media (min-width: 1903px) {
    .block-minicart .widget_shopping_cart {
        right: -50px;
    }
}
@media (min-width: 768px) {
    div.ovic-products.custom-grid-2 .product-item {
        width: 50%;
    }
    div.ovic-products.custom-grid-3 .product-item {
        width: 33.33%;
    }
    div.ovic-products.custom-grid-4 .product-item {
        width: 25%;
    }
    div.ovic-products.custom-grid-5 .product-item {
        width: 20%;
    }
    div.ovic-products.custom-grid-6 .product-item {
        width: 16.666%;
    }
    div.ovic-products.custom-grid-2 .product-item:nth-child(2n+1),
    div.ovic-products.custom-grid-3 .product-item:nth-child(3n+1),
    div.ovic-products.custom-grid-4 .product-item:nth-child(4n+1),
    div.ovic-products.custom-grid-5 .product-item:nth-child(5n+1),
    div.ovic-products.custom-grid-6 .product-item:nth-child(6n+1) {
        clear: both;
    }
}