/*-------------------------------------------------------------------------/*
[Table of contents]
[Typography]
    BODY:
        Font family: "Glacial Indifference", sans-serif;
        Font size: 14px;
        Line height: 20px;
        Text color: #888895;
        Background color: #ffffff;
    HEADING:
        Text color: #4c4b6c;
[Component module]
    BANNER EFFECT
    ANIMATION
    SLICK
    WOOCOMMERCE DATAS
    DEFAULT DATAS
    BODY DATAS
    HEADER
    WIDGETS
    PRODUCT SINGLE
    PRODUCT ITEM
    SHOP PAGE
    BLOG POST
    INNER PAGES
    SHORT CODE
    FOOTER
/*-------------------------------------------------------------------------*/
/*==========================================================================
BANNER EFFECT
===========================================================================*/
.effect {
    position: relative;
}
.effect:not(.wpb_row):not(.wpb_column) {
    display: inline-block;
    width: 100%;
    display: block;
}
.effect:not(.vc_single_image-wrapper) > * {
    position: relative;
    z-index: 2;
}
@media (min-width: 1200px) {
    /*----- NORMAL -----*/
    .normal-effect::before {
        position: absolute;
        content: '';
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: red;
        opacity: 0;
        -webkit-transition: opacity 0.2s ease;
        -moz-transition: opacity 0.2s ease;
        -o-transition: opacity 0.2s ease;
        transition: opacity 0.2s ease;
        z-index: 1;
    }
    .normal-effect.dark-bg::before {
        background-color: #000;
    }
    .normal-effect.light-bg::before {
        background-color: #fff;
    }
    /*----- PLUS ZOOM -----*/
    .plus-zoom::before,
    .plus-zoom::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: 100%;
        height: 100%;
        -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 {
        width: 0;
        background-color: rgba(255, 255, 255, 0.5);
    }
    .plus-zoom:hover::after {
        height: 0;
        background-color: rgba(255, 255, 255, 0.5);
    }
    /*----- BOUNCE IN -----*/
    .bounce-in: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: 10;
        top: 0;
        left: 0;
        opacity: 0;
    }
    .bounce-in: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: 10;
        top: 0;
        left: 0;
    }
    .bounce-in:hover:before {
        left: 50%;
        width: 0;
        opacity: 0.5;
    }
    .bounce-in:hover:after {
        top: 50%;
        height: 0;
        opacity: 0.5;
    }
    /*----- 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: red;
    }
    .border-zoom::after {
        top: -10px;
        bottom: -10px;
        left: -10px;
        right: -10px;
        border: 2px solid red;
    }
    .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::before,
    .border-scale::after {
        content: '';
        position: absolute;
        z-index: 10;
        border: solid #fff;
        top: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        margin: auto;
        -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::before {
        width: 0;
        border-width: 2px 0 2px 0;
    }
    .border-scale::after {
        height: 0;
        border-width: 0 2px 0 2px;
    }
    .border-scale:hover::before {
        width: calc(100% - 20px);
    }
    .border-scale:hover::after {
        height: calc(100% - 20px);
    }
    /*----- Box Shadow Hover -----*/
    .box-shadow:hover {
        box-shadow: 0 0px 25px rgba(0, 0, 0, 0.2) !important;
        transition: all .5s ease-out;
    }
    /*----- Gray Scale Hover -----*/
    .gray-scale:not(:hover) {
        filter: grayscale(1);
        opacity: 0.3;
        transition: all .5s ease-out;
    }
    /*----- Frost Hover -----*/
    .frost-before:before {
        background-color: rgba(0,0,0,0.2);
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: '';
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
    }
    .frost-before:hover:before {
        opacity: 1;
        visibility: visible;
    }
}
/*==========================================================================
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);
    }
}
/*==========================================================================
SLICK SLIDER
===========================================================================*/
.ovic-products > .slick-slider, .product-grid > .slick-slider {
    display: inline-block;
    width: 100%;
    vertical-align: top;
}
.slick-slide>.row-item>* {
    display: block !important;
}
.slick-slider {
    overflow: visible;
}
.slick-list {
    padding: 0;
}
.slick-track {
    margin-left: 0;
}
.slick-slider .slick-arrow {
    display: inline-block;
    position: absolute;
    border-radius: 4px;
    top: -65px;
    right: 0px;
    width: 30px;
    height: 30px;
    font-size: 16px;
    border:2px solid #cecece;
    line-height: 26px;
    color: #666;
    z-index: 101;
    cursor: pointer;
    text-align: center;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}
.slick-slider .slick-arrow:hover {
    color: #fff;
}
.slick-slider .slick-arrow:before{
    content: '\e9a8';
    font-family: 'abcicon' !important;
}
.slick-slider .slick-arrow.prev{
    right: 40px;
}
.nav-style-2.slick-slider .slick-arrow{
    right: -400px;
}
.nav-style-2.slick-slider .slick-arrow.prev{
    right: -360px;
}
.slick-slider .slick-arrow.prev:before{
    content: '\e9a7';
}
.nav-style-3.slick-slider:not(:hover) .slick-arrow {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}
.nav-style-3.slick-slider .slick-arrow{
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 50%;
    border: none;
    right: -26px;
    top: calc(50% - 25px)!important;
    background-color: #f8f8f8;
}
.nav-style-3.slick-slider .slick-arrow.prev{
    right: auto;
    left: -26px;
}
.nav-style-3.slick-slider .slick-arrow:before{
    font-size: 16px;
    color: #222;
    content: '\e876';
    font-family: 'Linearicons-Free'!important;
}
.nav-style-3.slick-slider .slick-arrow.prev:before{
    content: '\e875';
}
.nav-style-3.slick-slider .slick-arrow:hover:before{
    color: #fff;
}
.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 8px 5px;
}
.slick-dots li button {
    opacity: 1;
    background-color: transparent!important;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    border: 2px solid rgba(153, 153, 153, 0.6)!important;
}
.slick-dots li.slick-active button {
    border-color: #333!important;
    background-color: #333!important;
}
.slick-dots .slick-slide img {
    cursor: pointer;
    margin: auto;
}
.ovic-slide .slick-dots{
    margin-top: -33px;
}
.ovic-slide:hover .slick-dots{
    margin-top: -38px;
}
.ovic-product-latest-comment .slick-dots {
    margin-top: 35px;
}
@media (min-width: 1025px) {
    .ovic-products .slick-slider .slick-list,
    .product-grid .slick-slider .slick-list {
        padding: 0;
        margin: 0;
        z-index: 1;
    }
    .product-grid .slick-slider:hover .slick-list,
    .ovic-products.style-1 .slick-slider:hover .slick-list {
        padding: 5px 5px 100px;
        margin: -5px -5px -100px;
        z-index: 50;
    }
    .ovic-products.style-6 .slick-slider:hover .slick-list {
        padding: 0px 5px;
        margin:  0px -5px;
    }
}
@media (max-width: 1850px) {
    .ovic-banner.custom-banner1 .image-bg {
        background-position: left center;
    }
}
@media (max-width: 1710px) {
    .nav-style-3.slick-slider .slick-arrow{
        right: -15px;
    }
    .nav-style-3.slick-slider .slick-arrow.prev{
        right: auto;
        left: -15px;
    }
}
@media (max-width: 1199px) {
    .nav-style-2.slick-slider .slick-arrow {
        right: -324px;
    }
    .nav-style-2.slick-slider .slick-arrow.prev {
        right: -285px;
    }
}
@media (max-width: 991px) {
    .nav-style-2.slick-slider .slick-arrow {
        right: 0;
    }
    .nav-style-2.slick-slider .slick-arrow.prev {
        right: 40px;
    }
}
@media (max-width: 767px) {
    .slick-slider .slick-arrow {
        display: none !important;
    }
}
/*==========================================================================
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 a,
.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-message a {
    font-weight: 500;
}
.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;
    line-height: inherit;
}
.woocommerce .woocommerce-error {
    border-color: #fcf8e3;
}
.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 {
    background-color: #fafafa;
    padding: 30px 0 0;
    margin-top: 15px;
}
.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 #dfdcde;
}
.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;
    background-color: #dfdcde;
    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: 16px;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    display: block;
    margin-bottom: 7px;
    font-weight: 400;
    color: #222222;
}
.woocommerce-terms-and-conditions-wrapper .validate-required>label{
    margin-left: 20px;
}
.woocommerce-terms-and-conditions-wrapper .validate-required>label>input{
    margin-top: 7px;
}
.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%;
    height: 50px;
    color: #999;
}
.woocommerce form .form-row select {
    padding: 10px 20px;
}
.woocommerce form .form-row textarea.input-text,
.woocommerce-page form .form-row textarea.input-text {
    min-height: 133px;
}
.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 .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: left;
    width: calc(50% - 15px);
}
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: right;
}
.woocommerce-thankyou-order-details {
    padding: 0;
    margin-bottom: 30px;
}
.woocommerce-thankyou-order-received {
    font-size: 20px;
    color: #4c4b6c;
}
.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 .button,
.woocommerce-form-register .form-row .button {
    vertical-align: middle;
    padding: 0px 41px;
}
.woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox {
    display: inline-block;
    vertical-align: middle;
    padding: 8px 0;
    margin: 0 0 0 15px;
    cursor: pointer;
    padding-left: 26px;
    color: #666666;
}
.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;
}
.woocommerce-form-login .woocommerce-form__input-checkbox {
    display: none !important;
}
.woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox > span {
    position: relative;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox > span::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 2px solid #eeeeee;
    background-color: #fff;
    position: absolute;
    left: -25px;
    top: 1px;
    border-radius: 2px;
}
.woocommerce-form-login .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked + span::after {
    content: "\f00c";
    font-family: 'FontAwesome', sans-serif;
    display: inline-block;
    position: absolute;
    left: -22px;
    top: -6px;
    color: #63ab05;
    font-size: 10px;
}
.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;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
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: 12px 20px;
    border-radius: 0;
    background-color: #fff;
}
body .select2-container .select2-selection--single {
    height: auto;
    color: inherit;
    margin: 0;
}
body .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #999;
    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__rendered {
    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;
}
.place-order #place_order {
    margin-top: 20px;
    min-width: 220px;
}
.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,
.woocommerce-order-details > h2{
    font-size: 28px;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.cart_totals > h2{
    font-weight: 500;
    font-size: 28px;
    color: #333;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.cart-collaterals .cart_totals .cart-subtotal td{
    font-weight: 500;
    font-size: 16px;
    color: #0074bd;
}
.cart_totals .order-total strong{
    font-weight: 500;
    font-size: 24px;
    color: #0074bd;
}
#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: #aeaeba;
    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;
}
.shop_table{
    text-align: center;
    border:1px solid #e5e5e5;
    margin-bottom: 40px;
}
.shop_table th,
.shop_table td {
    padding:34px 20px;
}
.woocommerce-cart-form .shop_table td{
    border-left: none;
    border-right: none;
}
.woocommerce-cart-form th {
    display: none;
}
.shop_table th {
    /*display: none;*/
}
.shop_table td.product-price,
.shop_table td.product-subtotal {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #0074bd;
}
.shop_table td.product-price > *,
.shop_table td.product-subtotal > * {
    display: inline-block;
    vertical-align: bottom;
}
.shop_table td.product-price del,
.shop_table td.product-subtotal del {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
    color: #aeaeba;
    margin-right: 3px;
}
.shop_table td.product-price ins,
.shop_table td.product-subtotal ins {
    text-decoration: none;
}
.shop_table .product-name {
    text-align: left;
    border-left: none;
}
.shop_table .product-thumbnail {
    width: 70px;
    padding-left: 0;
}
.shop_table td.product-quantity {
    width: 150px;
}
.shop_table td.product-quantity .qty-label{
    display: none;
}
.quantity .btn-number:after{
    font-size: 18px;
    color: #25292d;
    content: '+';
    display: inline-block;
    padding: 5px 6px 6px 2px;
    font-weight: 500;
}
.quantity .qtyminus:after{
    content: '-';
    padding-left: 6px;
    padding-right: 4px;
}
.wishlist_table tr td.product-thumbnail a img,
.shop_table td.product-thumbnail img {
    width: 70px;
    max-width: inherit;
    border: 1px solid #cecece;
}
.shop_table td.product-name {
    color: #333;
    font-size: 15px;
    padding-left: 0;
}
.shop_table .product-remove{
    width: 30px;
    border-right: none;
}
.shop_table td.product-remove a {
    display: block;
    font-size: 0;
}
.shop_table td.product-remove a:after{
    content: '\e994';
    font-family: 'abcicon' !important;
    font-size: 18px;
    color: #555;
}
.quantity .control{
    border-radius: 4px;
    border: 2px solid #cecece;
    display: inline-block;
}
.quantity .control input {
    font-size: 16px;
    width: 42px;
    height: 39px;
    color: #333;
    text-align: center;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    border-bottom: none;
}
.shop_table .actions {
    text-align: left;
    padding: 30px 18px;
}
.shop_table .actions::before,
.shop_table .actions::after {
    content: '';
    display: table;
    clear: both;
}
.shop_table .actions .coupon {
    display: inline-block;
    vertical-align: top;
}
.shop_table .actions label {
    display: block;
}
.woocommerce-cart-form__contents .actions {

}
.woocommerce-cart-form__contents .actions label {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}
.shop_table .actions .coupon .input-text {
    background-color: #fff;
    height: 43px;
    border-radius: 3px;
    min-width: 300px;
    border: 2px solid #cecece;
}
.shop_table .actions > .button,
.shop_table .actions .coupon .button,
.wc-proceed-to-checkout .button,
.place-order #place_order{
    line-height: 43px;
    padding: 0px 30px;
    text-transform: capitalize;
    font-size: 14px;
}
.wc-proceed-to-checkout .button{
    padding:5px 10px;
    width: 100%;
    font-size: 14px;
    text-transform: capitalize;
    background-color: #999!important;
    border-color: #999!important;
}
.wc-proceed-to-checkout .button>*{
    vertical-align: middle;
    display: inline-block;
}
.wc-proceed-to-checkout .button:before,
.wc-proceed-to-checkout .button:after{
    content: '\e8cc';
    font-family: 'abcicon' !important;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
}
.wc-proceed-to-checkout .button:before{
    margin-right: 2px;
}
.wc-proceed-to-checkout .button:after{
    content: '\e9ac';
    font-size: 18px;
    margin-left: 12px;
}
.shop_table .actions > .button{
    float: right;
}
.shop_table .actions > .button:hover,
.shop_table .actions .coupon .button:hover,
.wc-proceed-to-checkout .button:hover,
.place-order #place_order:hover{
    background-color: #999!important;
}
.shop_table .actions > .button[disabled] {
    pointer-events: none;
    background-color: #999;
    color: #fff;
}
.cart-collaterals {
    width: 270px;
    display: inline-block;
    vertical-align: top;
}
.woocommerce-cart-form{
    width: calc( 100% - 276px );
    display: inline-block;
    padding-right: 28px;
}
.cart-collaterals .shop_table_responsive{
    margin-bottom: 50px;
    text-align: left;
}
.cart-collaterals .shop_table th,
.cart-collaterals .shop_table td {
    padding: 10px;
    background: transparent;
    text-transform: capitalize;
    font-weight: normal;
    border-width: 1px;
}
.cart-collaterals .shop_table td{
    text-align: right;
}
#order_review_heading {
    margin-bottom: 20px;
    margin-top: 25px;
}
.woocommerce-checkout-review-order,
.woocommerce-order-details {
    background-color: #fafafa;
    padding: 30px;
}
.woocommerce-order-details {
    padding-top: 30px;
    margin-bottom: 30px;
}
.woocommerce-checkout-review-order .shop_table th,
.woocommerce-order-details .shop_table th,
.woocommerce-checkout-review-order .shop_table td,
.woocommerce-order-details .shop_table td {
    padding: 10px 30px;
    border-width: 1px;
}
.woocommerce-checkout-review-order .cart-subtotal th{
    font-size: 15px;
    text-transform: capitalize;
    font-weight: normal;
    color: #000;
}
.woocommerce-table--order-details{
    margin-bottom: 0;
}
.woocommerce-checkout-review-order .cart-subtotal th,
.woocommerce-checkout-review-order .order-total th{
    text-align: left;
}
.woocommerce-order-details .shop_table th:last-child,
.woocommerce-checkout-review-order .shop_table th:last-child {
    width: auto;
}
.woocommerce-shipping-totals.shipping{
    text-align: left;
}
.woocommerce-checkout-review-order .shop_table tr td:last-child {
    font-size: 15px;
    color: #333;
    font-weight: bold;
    text-align: center;
}
.woocommerce-checkout-review-order .shop_table tr.order-total th,
.woocommerce-checkout-review-order .shop_table tr.order-total td {
    font-size: 18px;
    color: #222;
    font-weight: bold;
}
.woocommerce-table.woocommerce-table--order-details.order_details th{
    text-align: left;
}
.woocommerce-table.woocommerce-table--order-details.order_details th.product-total{
    text-align: center;
}
.woocommerce table.wishlist_table {
    font-size: inherit;
    margin-bottom: 0;
}
.woocommerce .wishlist_table th {
    white-space: nowrap;
}
.woocommerce .wishlist_table td.product-add-to-cart a {
    margin: auto;
    line-height: inherit;
    white-space: nowrap;
    padding: 4px 5px;
    border-radius: 3px;
}
.woocommerce .wishlist_table td.product-add-to-cart a:hover{
    opacity: 0.8;
}
.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 tr td.product-thumbnail a {
    max-width: inherit;
}
.woocommerce .wishlist_table .product-price,
.woocommerce .wishlist_table .product-stock-status {
    text-align: center;
}
.woocommerce .wishlist_table tfoot td {
    border: none;
    padding: 0;
}
.woocommerce .wishlist_table tfoot .yith-wcwl-share {
    margin: 30px 0 30px 30px;
}
.woocommerce .wishlist_table tfoot .yith-wcwl-share ul {
    margin: 0;
}
.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%;
}
.wcppec-checkout-buttons {
    text-align: inherit;
}
.cart_totals .shop_table th {
    font-size: 14px;
    color: #666;
}
.cart_totals .woocommerce-shipping-calculator > p {
    margin-bottom: 0;
}
.cart_totals .woocommerce-shipping-calculator > .shipping-calculator-form {
    text-align: left;
}
.cart_totals .woocommerce-shipping-calculator > .shipping-calculator-form .button {
    padding:0 15px;
    width: 100%;
}
@media (max-width: 1199px) {
    .shop_table .actions .coupon{
        display: block;
        margin-bottom: 10px;
    }
    .shop_table .actions > .button{
        float: none;
    }
}
@media (max-width: 991px) {
    .shop_table th{
        padding: 10px 20px;
    }
    .shop_table td.product-quantity{
        width: auto;
    }
    .shop_table .quantity .control > *{
        float: none;
    }
    .shop_table .quantity .control .btn-number{
        display: none;
    }
    .woocommerce-cart-form,
    .cart-collaterals{
        width: 100%;
        padding: 0;
    }
}
@media (max-width: 767px) {
    .shop_table .actions > .button{
        margin-top: 0;
    }
    .shop_table th, .shop_table td{
        padding: 10px;
    }
    .shop_table td.product-remove{
        width: auto;
    }
    .woocommerce-order-details{
        padding: 0;
        background-color: transparent;
    }
}
@media (max-width: 479px) {
    .woocommerce-order-details .shop_table td{
        padding: 10px;
    }
}
/***wishlist***/
.woocommerce .wishlist-title h2{
    font-size: 20px;
    text-transform: uppercase;
}
.woocommerce table.wishlist_table {
    font-size: 100%;
}
.wishlist_table tr td a.yith-wcqv-button {
    font-size: 0;
    padding: 0 8px;
    line-height: 30px;
    height: 30px;
    margin-left: 15px;
    border-radius: 3px;
    font-weight: normal;
}
.wishlist_table tr td a.yith-wcqv-button:after {
    font-family: 'abcicon';
    content: "\e965";
    font-size: 14px;
    line-height: 30px;
    display: inline-block;
}
@media (min-width: 1200px) {
    .woocommerce .col2-set#customer_login .col-1 {
        padding-right: 70px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .wishlist_table tr td.product-thumbnail a img,
    .shop_table td.product-thumbnail img {
        width: 100px;
    }
}
@media (max-width: 991px) {
    .woocommerce .woocommerce-MyAccount-navigation {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    .woocommerce .woocommerce-MyAccount-content {
        overflow: inherit;
    }
}
@media (max-width: 767px) {
    .woocommerce .col2-set .col-1,
    .woocommerce-page .col2-set .col-1,
    .woocommerce .col2-set .col-2,
    .woocommerce-page .col2-set .col-2 {
        float: none;
        width: 100%;
    }
    .woocommerce .col2-set .col-1:not(:last-child),
    .woocommerce-page .col2-set .col-1:not(:last-child) {
        padding-bottom: 15px;
        border-bottom: 1px solid #e6e6e6;
        margin-bottom: 30px;
    }
    .shop_table .actions .coupon {
        display: block;
    }
    .shop_table .actions .coupon .input-text {
        margin-bottom: 10px;
        min-width: inherit;
    }
    .shop_table .actions > .button {
        float: none;
    }
    .woocommerce-cart-form .shop_table,
    .cart-collaterals .shop_table_responsive{
        margin-bottom: 30px;
    }
    .woocommerce-cart-form .shop_table,
    .wishlist_table {
        border: none;
    }
    .woocommerce-cart-form .shop_table thead,
    .wishlist_table thead {
        display: none;
    }
    .woocommerce-cart-form .shop_table,
    .woocommerce-cart-form .shop_table > *,
    .wishlist_table,
    .wishlist_table > * {
        display: block;
    }
    .woocommerce-cart-form .shop_table tr,
    .wishlist_table tr {
        display: block;
        margin-bottom: 30px;
        border: 1px solid rgba(34, 34, 34, 0.5);
    }
    .wishlist_table tfoot tr:not([id]) {
        margin-bottom: 0;
        border: none;
    }
    .wishlist_table tfoot tr:not([id]) td {
        padding: 0;
    }
    .wishlist_table tfoot tr:not([id]) .yith-wcwl-share {
        margin: 0;
    }
    .woocommerce-cart-form .shop_table td,
    .wishlist_table td {
        display: block;
        text-align: center !important;
        border: none;
    }
    .shop_table td.product-thumbnail {
        width: inherit;
        padding-left: 10px;
    }
    .woocommerce-cart-form .shop_table td:not(:first-child),
    .wishlist_table td:not(:first-child) {
        border-top: 1px solid #e6e6e6;
    }
    .wishlist_table tr td.product-thumbnail a {
        margin: auto;
    }
    .woocommerce-form-login .form-row label.woocommerce-form__label-for-checkbox {
        display: table;
        margin-left: 0;
    }
    .woocommerce .wishlist_table td.product-name a:not(.yith-wcqv-button) {
        padding-right: 0;
    }
    .woocommerce .wishlist_table td.product-name a.yith-wcqv-button {
        display: none;
    }
    .woocommerce-checkout-review-order {
        padding: 4px 15px 30px;
    }
    .woocommerce .wishlist_table td.product-add-to-cart a {
        display: inline-block !important;
    }
}
@media (max-width: 479px) {
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last,
    .woocommerce-page form .form-row-first,
    .woocommerce-page form .form-row-last {
        float: none;
        width: 100%;
    }
    .woocommerce-form-login .woocommerce-form__label-for-checkbox {
        float: none;
        margin-top: 15px;
    }
    .woocommerce-checkout-review-order,
    .woocommerce-checkout-payment{
        padding: 0;
        background-color: transparent;
    }
}
/*==========================================================================
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: 5px 15px;
    margin-top: 10px;
}
.popover.bottom > .arrow:after {
    left: 0;
}
.close {
    opacity: 1;
    color: #888895;
}
.close:hover {
    color: #666;
}
.current-menu-ancestor > a,
.current-menu-parent > a,
.current-menu-item > a,
.current_page_item > a {
}
.current-menu-ancestor > a:not(:hover),
.current-menu-parent > a:not(:hover),
.current-menu-item > a:not(:hover),
.current_page_item > a:not(:hover) {
    color: #666;
}
/*----- STORE NOTICE -----*/
.woocommerce-store-notice {
    margin: 0;
    text-align: center;
    padding: 8px 15px;
    background: #000;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}
.woocommerce-store-notice a {
    text-decoration: underline;
}
/*----- 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 p:last-child{
    position: relative;
}
.post-password-form label[for="pwbox-1168"] {

}
.post-password-form input[type="submit"]{
    line-height: 50px;
    margin-left: -5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
@media (max-width: 479px) {
    .post-password-form label[for="pwbox-1168"] {
        margin-bottom: 10px;
    }
    .post-password-form p:last-child {
        text-align: center;
    }
    .post-password-form input[type="submit"]{
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }
}
/*----- WP CAPTION -----*/
.wp-caption {
    background-color: #fff;
    max-width: 100%;
    padding: 5px 3px 5px;
    /*border: 1px solid #e6e6e6;*/
    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.wp-caption-text {
    font-size: 14px;
    line-height: 17px;
    padding: 5px 4px 15px;
    margin: 0 !important;
    font-style: italic;
}
.wp-caption > .wp-caption-text {
    margin-top: 6px;
}
/*----- WP GALLERY -----*/
.gallery {
    margin-left: -5px;
    margin-right: -5px;
}
.gallery:after {
    display: table;
    content: "";
    clear: both;
}
.gallery-caption {
    color: #111;
    display: block;
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    padding: 0.5em 0;
}
.gallery-item {
    margin: 0;
    float: left;
    padding: 5px;
    font-style: italic;
    color: #666;
}
.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%;
}
@media (min-width: 1200px) {
    .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: both;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .main-container:not(.no-sidebar) .gallery .gallery-item {
        min-width: 25%;
    }
    .main-container.no-sidebar .gallery-columns-2 .gallery-item:nth-child(2n+1),
    .main-container.no-sidebar .gallery-columns-3 .gallery-item:nth-child(3n+1),
    .main-container.no-sidebar .gallery-columns-4 .gallery-item:nth-child(4n+1),
    .main-container.no-sidebar .gallery-columns-5 .gallery-item:nth-child(5n+1),
    .main-container.no-sidebar .gallery-columns-6 .gallery-item:nth-child(6n+1),
    .main-container.no-sidebar .gallery-columns-7 .gallery-item:nth-child(7n+1),
    .main-container.no-sidebar .gallery-columns-8 .gallery-item:nth-child(8n+1),
    .main-container.no-sidebar .gallery-columns-9 .gallery-item:nth-child(9n+1),
    .main-container:not(.no-sidebar) .gallery-columns-2 .gallery-item:nth-child(2n+1),
    .main-container:not(.no-sidebar) .gallery-columns-3 .gallery-item:nth-child(3n+1),
    .main-container:not(.no-sidebar) .gallery:not(.gallery-columns-2):not(.gallery-columns-3) .gallery-item:nth-child(4n+1) {
        clear: both;
    }
}
@media (max-width: 991px) {
    .gallery .gallery-item {
        min-width: 25%;
    }
}
@media (max-width: 991px) and (min-width: 768px) {
    .gallery-columns-2 .gallery-item:nth-child(2n+1),
    .gallery-columns-3 .gallery-item:nth-child(3n+1),
    .gallery:not(.gallery-columns-2):not(.gallery-columns-3) .gallery-item:nth-child(4n+1) {
        clear: both;
    }
}
@media (max-width: 767px) {
    .gallery .gallery-item {
        min-width: 33.33%;
    }
}
@media (max-width: 767px) and (min-width: 480px) {
    .gallery-columns-2 .gallery-item:nth-child(2n+1),
    .gallery:not(.gallery-columns-2) .gallery-item:nth-child(3n+1) {
        clear: both;
    }
}
@media (max-width: 479px) {
    .gallery .gallery-item {
        min-width: 50%;
    }
    .gallery .gallery-item:nth-child(2n+1) {
        clear: both;
    }
}
/*----- PARALLAX -----*/
.vc_parallax {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
}
.vc_parallax-inner {
    position: relative !important;
    background: none !important;
}
@media (min-width: 768px) {
    .vc_parallax {
        background-attachment: fixed !important;
    }
    .vc_parallax > * {
        position: absolute !important;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
/*----- 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;
}
/* PROCESSING */
.widget-ovic-mailchimp .newsletter-form-wrap {
    position: relative;
}
.widget-ovic-mailchimp .newsletter-form-wrap.processing::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}
.widget-ovic-mailchimp .newsletter-form-wrap.processing::after {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
    font-family: "FontAwesome", sans-serif;
    content: "\f110";
    font-weight: 400;
    -webkit-animation: fa-spin 1.5s infinite linear;
    -o-animation: fa-spin 1.5s infinite linear;
    animation: fa-spin 1.5s infinite linear;
}
/*----- 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: 2px 20px;
    height: auto;
    border: 1px solid transparent;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    line-height: 24px;
    color: #555;
    border-left: 1px solid transparent;
}
.chosen-container-single .chosen-single::after {
    display: inline-block;
    vertical-align: top;
    font-family: FontAwesome, sans-serif;
    content: "\f107";
}
.chosen-container-single .chosen-single span {
    display: inline-block;
    vertical-align: top;
    margin-right: 7px;
    width: calc(100% - 14px);
}
.chosen-container-single .chosen-single div {
    display: none;
}
.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
}
.chosen-container-single .chosen-drop {
    top: calc(100% + 10px);
    left: 0;
    clip: auto;
    border-radius: 3px;
    border: 1px solid #e6e6e6;
    box-shadow: none;
    width: auto;
    min-width: 100%;
    white-space: nowrap;
    margin: 0;
    padding: 0 0 13px;
}
.chosen-container:not(.chosen-with-drop) .chosen-drop {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.chosen-container.chosen-with-drop .chosen-drop{
    min-width: 200px;
}
.chosen-container-single .chosen-drop .chosen-search {
    display: none;
}
.chosen-container-single .chosen-results {
    color: #555;
    padding: 0;
    margin: 0;
}
.chosen-container .chosen-results li {
    line-height: 16px;
    padding: 4px 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13px;
}
.chosen-container .chosen-results li:first-child{
    font-weight: bold;
    font-size: 14px;
    color: #333;
    background-color: #f0f2f5;
}
.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: #333;
}
.chosen-container .chosen-results li.highlighted {
    background-image: none;
    background-color: #f0f2f5;
    color: #333;
}
/*----- OVIC LIVE SEARCH -----*/
.ovic-live-search-form .results-search {
    position: static;
}
.ovic-live-search-form .products-search,
.ovic-live-search-form .not-results-search {
    font-size: 14px;
    line-height: 20px;
    color: #888895;
}
.ovic-live-search-form .keyword-current {
    padding: 0;
    display: inline;
}
.ovic-live-search-form .product-price {
    font-size: 18px;
    font-weight: 600;
    color: #4c4b6c;
    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: #aeaeba;
    font-weight: normal;
    margin-left: 5px;
}
.ovic-live-search-form .view-all {
    cursor: pointer;
    color: #fff;
    padding: 12px 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 20px 0 10px;
    border-radius: 30px;
}
.ovic-live-search-form .view-all:hover {
    opacity: 0.7;
}
/*----- OVIC MENU MOBILE -----*/
.overlay-body {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.overlay-open .overlay-body {
    opacity: 1;
    visibility: visible;
}
.ovic-menu-panels-actions-wrap {
    background-color: #fff;
}
.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: '';
}
.ovic-menu-clone-wrap {
    max-width: 100%;
}
.ovic-menu-clone-wrap .megamenu {
    background-image: none !important;
    padding: 15px!important;
}
.ovic-menu-clone-wrap .megamenu .widget_nav_menu {
    margin-bottom: 5px;
}
.ovic-menu-clone-wrap .megamenu [class^="vc_col-"],
.ovic-menu-clone-wrap .megamenu [class*=" vc_col-"] {
    width: 100%;
    float: none;
}
.ovic-menu-panel-main {
    padding-bottom: 50px;
}
.ovic-menu-panel-main .ovic-menu-item-title {
    text-transform: capitalize;
}
.ovic-menu-panels .wpb_single_image .vc_single_image-wrapper.vc_box_shadow,
.ovic-menu-panels .wpb_single_image .vc_single_image-wrapper.vc_box_shadow img {
    box-shadow: none;
}
.ovic-menu-panel li{
    display: block!important;
}
/*==========================================================================
BODY DATAS
===========================================================================*/
.container-inner,
.container-inner-2{
    max-width: 1755px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
.container-inner-2{
    max-width: 1710px;
}
.container-inner:before,
.container-inner-2:before,
.container-inner:after,
.container-inner-2:after{
    content: " ";
    display: table;
}
.container-inner:after,
.container-inner-2:after{
    clear: both;
}
.main-container {
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    .main-container {
        padding-bottom: 40px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}
@media (min-width: 992px) {
    .left-sidebar .main-content {
        float: right;
    }
}
@media (max-width: 1199px) {
    .main-container {
        padding-bottom: 40px;
    }
}
html {
    font-size: 14px;
}
body {
    font-family: 'Work Sans', san-serif;
    font-size: 15px;
    line-height: 28px;
    color: #666;
    font-weight: 400;
    overflow-x: hidden;
}
body.theme-default {
    font-family: 'Rubik', sans-serif;
}
/*----- HEADING -----*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 20px;
    color: #333333;
}
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;
    transition: all .5s ease;
}
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}
/*----- B, STRONG -----*/
b,
strong {
    font-weight: 600;
}
/*----- IMAGE -----*/
img {
    height: auto;
    max-width: 100%;
}
iframe {
    display: block;
    max-width: 100% !important;
}
/*----- UL, OL -----*/
ul,
ol {
    padding: 0 0 0 20px;
}
/*----- 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: 500;
    color: #222222;
    margin: 0;
}
label .required {
    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 #e5e5e5;
    padding: 9px 20px;
    font-size: 14px;
    line-height: 20px;
    max-width: 100%;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}
/* input */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"] {
    height: 50px;
}
/* textarea */
textarea {
    display: block;
    min-height: 124px;
}
/* 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 -----*/
.added_to_cart,
.button,
button,
input[type="submit"] {
    position: relative;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    border: none;
    line-height: 45px;
    padding: 0px 20px;
    background-color: #dc2400;
    color: #fff;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.added_to_cart:hover,
.added_to_cart:focus,
.button:hover,
.button:focus,
button:hover,
input[type="submit"]:hover {
    background-color: #999999!important;
    color: #fff;
}
.button.loading::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: FontAwesome, sans-serif;
    content: "\f110";
    font-size: 24px;
    line-height: 39px;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
@media (min-width: 768px) {
    .added_to_cart,
    .button,
    button,
    input[type="submit"] {
        padding: 0px 50px;
    }
}
/*----- BLOCKQUOTE -----*/
blockquote {
    font-size: 16px;
    color: #333;
    padding: 34px 30px 0px 27px;
    border: none;
    font-weight: 500;
}
blockquote::before {
    display: block;
    content: '“';
    font-family: "Georgia", sans-serif;
    font-size: 60px;
    line-height: 0;
    margin: 0 0 -16px -28px;
    font-style: normal;
    color: #63ab05;
}
@media (max-width: 479px) {
    blockquote {
        padding: 35px 30px 20px;
    }
    blockquote::before {
        margin-left: -15px;
    }
}
/*----- NAME, TITLE -----*/
.post-author,
.product-name,
.breadcrumb,
.page-title,
.post-title,
.product_title {
    text-transform: capitalize;
}
.page-title {

}
.post-content {
    overflow: hidden;
}
/*----- PAGE LINKS, POST PAGINATION -----*/
.post-pagination a span:not(.title):hover {
    color: #fff;
}
.post-pagination,
.page-links {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
    margin-bottom: 5px;
}
.post-pagination {
    margin-bottom: 20px;
}
.gallery ~ .post-pagination,
.gallery ~ .page-links {
    margin-top: 20px;
}
.post-pagination > *,
.page-links > * {
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    line-height: 20px;
}
.post-pagination .title,
.page-links .page-links-title {
    display: none;
}
.page-links span:not(.page-links-title) {
    font-size: 15px;
    color: #333;
    line-height: 36px;
    height: 40px;
    min-width: 40px;
    max-height: 40px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid #cecece;
    margin-right: 5px;
    margin-bottom: 10px;
}
.post-pagination a span:not(.title),
.page-links a span:not(.page-links-title) {
    display: block;
}
.post-item .post-content .post-pagination a:hover,
.post-item .post-content .page-links a:hover {
    text-decoration: none;
}
.post-pagination a:not(:hover) span:not(.title),
.page-links a:not(:hover) span:not(.page-links-title) {
    color: #777;
    border-color: transparent;
}
.page-links span.screen-reader-text {
    display: none !important;
}
/*==========================================================================
OTHER ELELEMNT
===========================================================================*/
/*----- BREADCRUMBS -----*/

/*.woocommerce .breadcrumb-trail.breadcrumbs,*/
.ogo-breadcrumb{
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding:22px 0 19px;
    margin-bottom: 30px;
}
.breadcrumbs .trail-browse {
    display: none;
}
.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #333333;
    font-size: 15px;
    background-color: transparent;
}
.breadcrumb li,
.breadcrumb li a,
.breadcrumb > li + li:before {
    display: inline-block;
    vertical-align: top;
}
.breadcrumb li {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 4px;
    font-size: 14px;
    color: #333333;
}
.breadcrumb li:last-child {
    padding-right: 0;
    color: #8b9095;
}
.breadcrumb > li + li:before {
    content: ">";
    color: #333333;
    padding: 0 7px 0 2px;
}
.breadcrumb > .active {
    color: #8b9095;
}
.woocommerce-breadcrumb a {
    font-weight: normal;
}
.woocommerce-breadcrumb a:not(:hover) {
    color: #333333;
}
@media (min-width: 1200px) {
    .ogo-breadcrumb.breadcrumb-trail{
        margin-bottom: 30px;
    }
    .ogo-breadcrumb{
        margin-bottom: 63px;
    }
}
/*----- PAGINATION -----*/
.woocommerce-pagination ul.page-numbers {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.woocommerce-pagination ul.page-numbers > li {
    display: inline-block;
}
.woocommerce-pagination,
.navigation,
.pagination {
    display: block;
    font-size: 0;
    line-height: 0;
    border-radius: 0;
    padding:20px 0;
    clear: both;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.navigation,
.pagination{
    margin: 0;
}
.woocommerce-pagination > .screen-reader-text,
.navigation > .screen-reader-text,
.pagination .screen-reader-text {
    display: none;
}
.woocommerce-pagination > ul.page-numbers,
.navigation .nav-links,
.pagination .nav-links {
    display: inline-block;
}
.woocommerce-pagination a.page-numbers,
.woocommerce-pagination span.page-numbers,
.navigation .page-numbers,
.pagination .page-numbers,
.post-pagination > *,
.shop-after-control .pagination-top>*{
    display: inline-block;
    vertical-align: middle;
    padding: 0 6px;
    font-size: 15px;
    color: #777;
    line-height: 36px;
    height: 40px;
    min-width: 40px;
    max-height: 40px;
    text-align: center;
    border-radius: 4px;
    border: 2px solid #cecece;
    border-color: transparent;
}
.shop-after-control .pagination-top>*{
    height: 32px;
    line-height: 30px;
    min-width: 39px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
}
.woocommerce-pagination a.page-numbers.next,
.woocommerce-pagination span.page-numbers.next,
.navigation .page-numbers.next,
.pagination .page-numbers.next {
    font-size: 15px;
    color: #777;
    line-height: 42px;
    padding: 0;
}
.woocommerce-pagination a.page-numbers.next:after,
.woocommerce-pagination span.page-numbers.next:after,
.navigation .page-numbers.next:after,
.pagination .page-numbers.next:after,
.woocommerce-pagination a.page-numbers.prev:before,
.woocommerce-pagination span.page-numbers.prev:before,
.navigation .page-numbers.prev:before,
.pagination .page-numbers.prev:before {
    font-family: 'abcicon' !important;
    content: "\e9b9";
    font-size: 18px;
    line-height: 30px;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
    background-color: #333333;
    color: #fff;
    display: inline-block;
}
.woocommerce-pagination a.page-numbers.prev:before{
    margin-right: 22px;
    vertical-align: middle;
}
.woocommerce-pagination a.page-numbers.next:after{
    margin-left: 22px;
    vertical-align: middle;
}
.woocommerce-pagination a.page-numbers.prev,
.woocommerce-pagination span.page-numbers.prev,
.navigation .page-numbers.prev,
.pagination .page-numbers.prev {
    font-size: 15px;
    color: #777;
    line-height: 42px;
    padding: 0;
}
.woocommerce-pagination a.page-numbers.prev{
    margin-right: 13px;
    line-height: 37px;
}
.woocommerce-pagination a.page-numbers.next{
    margin-left: 13px;
    line-height: 37px;
}
.navigation .page-numbers>span,
.pagination .page-numbers>span{
    margin: 3px 22px 0px;
    vertical-align: top;
    line-height: 30px;
    display: inline-block;
}
.pagination .page-numbers.prev>span{
    margin-right: 16px;
}
.pagination .page-numbers.next>span{
    margin-left: 16px;
}
.woocommerce-pagination a.page-numbers.prev:before,
.woocommerce-pagination span.page-numbers.prev:before,
.navigation .page-numbers.prev:before,
.pagination .page-numbers.prev:before {
    content: "\e9b8";
}
.woocommerce-pagination .page-numbers.current,
.navigation .page-numbers.current,
.pagination .page-numbers.current,
.post-pagination > *:hover,
.post-pagination > span {
    color: #333;
    border-color: #cecece;
}
.woocommerce-pagination .page-numbers.dots,
.navigation .page-numbers.dots,
.pagination .page-numbers.dots {
    padding: 0;
    min-width: 16px;
    text-align: center;
    border: none;
}
.comments-pagination {
    text-align: right;
    margin-bottom: 30px;
}
.shop-after-control .pagination-top>*:hover,
.shop-after-control .pagination-top> .curent-page{
    color: #fff!important;
}
@media (max-width: 767px) {
    .breadcrumb-header{
        margin-bottom: 30px;
    }
    .breadcrumb-header .breadcrumb {
        padding:13px 7px!important;
    }
}
/*==========================================================================
BLOG POST
===========================================================================*/
.post-item.sticky .post-title a::before {
    content: '\f024';
    color: #ff2328;
    font-family: 'FontAwesome';
    margin-right: 10px;
    display: inline-block;
}
/*----- BLOG STAND -----*/
.post-item{
	margin-bottom: 50px;
}
.post-item .post-thumb{
	position: relative;
}
.post-item .post-thumb .thumb{
    margin-bottom: 15px;
}
.ovic-blog .post-thumb a:before,
.post-item .post-thumb .thumb a:before{
    content: '';
    background-color: rgba(0,0,0,0.3);
    transition: opacity 0.5s ease 0s;
    -o-transition: opacity 0.5s ease 0s;
    -webkit-transition: opacity 0.5s ease 0s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
.ovic-blog .post-thumb:hover a:before,
.post-item .post-thumb .thumb:hover a:before{
	opacity: 0;
    visibility: hidden;
}
.ovic-blog .post-thumb a,
.post-item .post-thumb .thumb a{
    display: block;
    overflow: hidden;
}
.ovic-blog .post-thumb a img,
.post-item .post-thumb .thumb a img{
    transition: transform 0.5s ease 0s;
    -o-transition: -o-transform 0.5s ease 0s;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
}
.ovic-blog .post-thumb:hover a img,
.post-item .post-thumb:hover .thumb a img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.post-item .post-date{
	position: absolute;
	left: -10px;
	bottom: 10px;
	font-size: 12px;
	color: #fff;
	line-height: 23px;
	background-color: #dc2400;
	display: inline-block;
	padding:0 8px;
    z-index: 2;
}
.post-item .post-date:before{
	content: "\e957";
	font-family: 'abcicon' !important;
	margin-right: 5px;
	font-size: 16px;
	vertical-align: top;
}
.post-item .post-title{
	font-size: 16px;
	line-height: 20px;
	color: #333;
	font-weight: 500;
	margin-bottom: 8px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.post-item .read-more{
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
.post-item .post-content{
	font-size: 14px;
	line-height: 24px;
	margin-bottom: -2px;
}
/*----- BLOG GRID -----*/

/*----- BLOG SINGLE -----*/
.blog-single .post-item{
    margin-bottom: 0;
}
.blog-single .post-title{
	font-size: 28px;
	margin-bottom: 18px;
    line-height: 28px;
}
.blog-single .post-metas{
	font-size: 14px;
	margin-bottom: 19px;
}
.blog-single .post-date{
	margin-right: 13px;
    position: static;
    padding: 0;
    font-size: inherit;
    background-color: transparent;
    color: inherit;
}
.blog-single .post-date:before,
.blog-single .post-author:before{
	font-size: 20px;
	color: #999;
	content: "\e957";
	font-family: 'abcicon' !important;
	margin-right: 2px;
}
.blog-single .post-author:before{
	content: "\e919";
}
.blog-single .post-thumb{
    margin-bottom: 35px;
}
.blog-single .tags .text,
.blog-single .categories .text{
    font-weight: 500;
}
.blog-single .categories a:not(:last-child):after{
    content: ',';
    display: inline-block;
    margin-right: 2px;
}
.blog-single .ovic-share-socials{
    float: left;
    max-width: 46px;
    margin-right: 55px;
    margin-top: -6px;
}
.blog-single .ovic-share-socials .title{
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
}
.blog-single .ovic-share-socials a{
    width: 46px;
    height: 46px;
    font-size: 28px;
    text-align: center;
    line-height: 46px;
    display: inline-block;
    margin-bottom: 2px;
    color: #fff;
}
@media (max-width: 1199px) {
    .blog-single .ovic-share-socials{
        margin-right: 20px;
    }
    .post-item{
        margin-bottom: 20px;
    }
}
@media (max-width: 640px) {
    .blog-single .ovic-share-socials{
        margin-right: 0;
        max-width: inherit;
        float: none;
        margin-bottom: 20px;
    }
}
/*----- COMMENTS AREA -----*/
.comments-area .comment-respond{
    border-top: 1px solid rgba(0, 0, 0, 0.32);
    padding-top: 57px;
    margin-top: 30px;
}
.comments-area:not(:first-child) {
    padding-top: 35px;
}
.comments-area .comments-title,
.comments-area .comment-reply-title {
    font-size: 28px;
    color: #333;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 0;
}
.comments-area .comment-reply-title{
    margin-bottom: 17px;
}
.comments-area .comments-title {
    margin-bottom: 20px;
}
.comments-area .comment-list,
.comments-area .comment {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.comment-list .comment-body {
    padding-bottom: 50px;
    position: relative;
}
.comment-list .comment-body::before,
.comment-list .comment-body::after {
    display: table;
    content: '';
    clear: both;
}
.comment-list .children {
    padding-left: 100px;
}
.comment-list .author-comment {
    float: left;
    margin-right: 10px;
}
.comment-list .author-comment img{
    border-radius: 4px;
}
.comment-list .comment-content {
    overflow: hidden;
    display: block;
    width: 100%;
    padding-top: 20px;
}
.comment-list .comment-info {
}
.comment-list .comment-info .comment-meta {
    overflow: hidden;
}
.comment-list .comment-info .comment-name {
    font-weight: 500;
    color: #333;
    font-size: 16px;
}
.comment-list .comment-info .comment-edit-link,
.comment-list .comment-info .comment-date{
    font-size: 14px;
}
.comment-list .reply-content {
    margin-top: -6px;
}
.comment-list .reply-content a{
    position: relative;
}
.comment-list .reply-content a:after {
    position: absolute;
    display: inline-block;
    content: "";
    background-color: #dc2400;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transition: all .5s ease;
}
.comment-list .reply-content a:hover:after{
    width: 100%;
}
.comment-form .comment-form-comment {
    margin-bottom: 30px;
}
.comment-form .comment-notes {
    margin-bottom: 21px;
    font-size: 14px;
}
.comment-form label {
    color: #333;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}
.comment-form input[type="text"],
.comment-form textarea {
    color: #666;
    font-size: 14px;
    width: 100%;
    background-color: #fff;
    border-radius: 4px;
    height: 45px;
}
.comment-form .form-submit .button {
    font-size: 14px;
    padding: 0 34px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 51px;
    padding-top: 3px;
}
@media (max-width: 1199px) {
    .comment-list .children {
        padding-left: 30px;
    }
}
@media (max-width: 640px) {
    .comments-area .comment-respond{
        padding-top: 20px;
        margin-top: 20px;
    }
    .comment-list .children {
        padding-left: 20px;
    }
    .comment-list .author-comment {
        float: none;
        margin-bottom: 10px;
    }
    .comment-list .comment-info .comment-meta{
        padding-left: 0;
    }
    .comment-list .comment-body{
        padding-bottom: 20px;
    }
    .comment-list .comment-content{
        padding-top: 0;
    }
    .comment-list .comment-avatar:after,
    .comment-list .comment-avatar:before,
    .post-single .post-socials-sharing .text-label{
        display: none;
    }
}

@media (max-width: 480px) {
    .comment-list .comment-info .comment-name,
    .comment-list .comment-info .group-comment-date{
        float: none;
        display: block;
    }
}
/*==========================================================================
INNER PAGES
===========================================================================*/
/*----- CONTACT FORM-----*/
@media (min-width: 992px) {
    .sidebar .head {
        display: none;
    }
}
@media (max-width: 991px) {
    .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: 50px;
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        top: 0;
        display: block;
        padding-left: 15px;
        border-bottom: 1px solid #e6e6e6;
    }
    .sidebar .widget-area {
        max-height: 100%;
        overflow-y: auto;
        padding: 15px;
    }
    .sidebar .head .sidebar-mobile-title {
        display: block;
        font-size: 15px;
        font-weight: 500;
        color: #222;
        padding: 0 40px 0 0;
        margin: 0;
        line-height: 50px;
        text-transform: uppercase;
    }
    .sidebar .head .sidebar-close-btn {
        width: 50px;
        height: 50px;
        position: absolute;
        z-index: 1;
        right: 0;
        top: 0;
        border-left: solid 1px #e6e6e6;
        text-align: center;
        line-height: 50px;
    }
}
/*----- CONTACT FORM-----*/
.wpcf7-form{
    max-width: 470px;
}
.wpcf7-form [class^="col-"],
.wpcf7-form [class*=" col-"],
.wpcf7-form p{
    margin-bottom: 6px;
}
.wpcf7-form [class^="col-"] > label,
.wpcf7-form [class*=" col-"] > label,
.wpcf7-form label {
    display: block;
    color: #333;
    font-weight: 400;
    font-size: 14px;
}
.wpcf7-form input:not([type="submit"]) {
    width: 100%;
    padding: 11px 20px;
    height: 44px;
    border-color: #cecece;
    font-size: 14px;
    color: #999;
    border-radius: 4px;
}
.wpcf7-form .textarea-massage {
    margin-top: 25px;
    margin-bottom: 13px;
}
.wpcf7-form textarea {
    width: 100%;
    padding: 11px 20px;
    height: 95px;
    border-color: #cecece;
    font-size: 14px;
    color: #999;
    border-radius: 4px;
}
.wpcf7-form [type="submit"] {
    vertical-align: middle;
    margin-top: 0px;
    padding: 6px 40px 3px;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 13px;
}
.wpcf7-form [type="submit"] ~ .ajax-loader {
    margin-top: 0px;
}
.wpcf7-form-control-wrap {
    position: relative;
    margin-top: -2px;
    display: inline-block;
    width: 100%;
}
div.wpcf7-response-output{
    margin: 1em 0.5em 1em 0;
}
@media (max-width: 991px) {
    .wpcf7-form {
        max-width: 750px;
        margin: 0 auto;
    }
}
/*----- 404-----*/
.page-404{
    padding: 40px 0 45px;
}
.page-404 .heading {
    font-size: 150px;
    line-height: 1;
    margin-bottom: 13px;
    font-weight: bold;
    color: #222;
    letter-spacing: 30px;
}
.page-404 .title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 5px;
    color: #222;
}
.page-404 .subtitle {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 32px;
    color: #666;
}
.page-404 .button {
    padding: 0px 90px;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .page-404 .heading {
        font-size: 120px;
        letter-spacing: 10px;
    }
    .page-404 .title {
        font-size: 26px;
        line-height: 30px;
    }
    .page-404 .button {
        padding: 0px 24px;
    }
}
@media (max-width: 479px) {
    .page-404 .heading {
        font-size: 100px;
    }
}
/*==========================================================================
HEADER
===========================================================================*/

/*----- DROPDOWN -----*/
.ovic-dropdown {
    position: relative;
}
.ovic-dropdown > .sub-menu,
.language-menu > li > .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background-color: #fff;
    color: #666;
    z-index: 12;
    border: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 16px 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-align: left;
    visibility: visible;
}
.block-userlink > .sub-menu{
    left: auto;
    right: 0;
}
.ovic-dropdown > .sub-menu > .menu-item > a,
.language-menu > li > .sub-menu > .menu-item > a{
    display: block;
    padding: 6px 30px;
}
/*----- LANGUAGE -----*/
.block-language a {
    display: block;
}
.block-language a > img {
    vertical-align: top;
    margin: 5px 3px 0 0;
}
.block-language a .text {
    text-transform: uppercase;
    font-weight: 500;
}
.language-menu > .menu-item-has-children{
    position: relative;
}
.language-menu > li > .sub-menu{
    width: 150px;
    right: 0;
    left: auto;
}
.header-topbar .language-menu.ovic-menu>li>a{
    padding-right: 0;
}
.language-menu.ovic-menu li > a > .icon-image{
    margin-top: -3px;
    vertical-align: middle;
    margin-right: 4px;
}
.language-menu > li > .sub-menu > .menu-item > a{
    padding: 2px 20px;
}
/*----- CURRENCY -----*/
.block-currency .link-dropdown {
    position: relative;
    cursor: pointer;
}
.block-currency .wcml-dropdown {
    display: inline-block;
}
.block-currency .wcml-dropdown .wcml-cs-submenu a,
.block-currency .wcml-dropdown a.wcml-cs-item-toggle {
    font-weight: 500;
}
.wcml-dropdown + img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto !important;
}
.wcml-dropdown {
    width: auto;
}
.wcml-dropdown > ul {
    position: static;
}
.wcml-dropdown li {
    border: none;
    background-color: transparent;
}
.wcml-dropdown a {
    padding: 0;
    line-height: inherit;
}
.wcml-dropdown a.wcml-cs-item-toggle {
    padding: 0;
}
.language-selector .block-language > a:after,
.wcml-dropdown a.wcml-cs-item-toggle:after {
    vertical-align: top;
    position: static;
    font-family: FontAwesome, sans-serif;
    content: '\f107';
    border: none;
    margin-left: 6px;
    font-size: 13px;
}
.wcml-dropdown .wcml-cs-submenu li {
    border: none;
}
.wcml-dropdown li:hover,
.wcml-dropdown li:focus {
    background-color: transparent;
}
.block-language:not(:hover) .sub-menu,
.block-currency:not(:hover) .wcml-cs-submenu,
.block-user:not(:hover) > .sub-menu,
.language-menu > li:not(:hover) > .sub-menu{
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.block-language .sub-menu,
.wcml-dropdown .wcml-cs-submenu {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    width: 140px;
    background-color: #fff;
    color: #666666;
    z-index: 12;
    border: none;
    border-top: 2px solid #63ab05;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 12px 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
    visibility: visible;
}
.block-language .sub-menu {
    padding: 6px 10px;
}
.block-language .sub-menu:before,
.wcml-dropdown .wcml-cs-submenu:before {
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: 100%;
    background-color: transparent;
    left: 0;
    content: '';
}
.woocommerce .wcml-dropdown.product {
    margin: 0;
}
/*----- TOP BAR MENU -----*/
.header-topbar{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.top-bar-menu::before,
.top-bar-menu::after {
    content: '';
    display: table;
    clear: both;
}
.top-content.left{
    float: left;
}
.top-content.right{
    float: right;
}
.top-content>*{
    display: inline-block;
    list-style: none;
}
.header-topbar ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.header-topbar ul li{
    font-size: 14px;
    color: #555;
}
.header-topbar .ovic-menu>li>a,
.block-user a{
    padding: 7px 13px;
    display: block;
    position: relative;
}
.block-user a{
    color: #333;
    padding: 11px 13px;
    padding-left: 0;
}
.block-user .text{
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
}
.top-content.left .ovic-menu>li:first-child>a{
    padding-left: 0;
}
.top-content.right .ovic-menu>li:last-child>a{
    padding-right: 0;
}
.ovic-menu>li{
    display: inline-block;
}
/*----- HEADER MIDDLE -----*/
.header-middle {
    padding: 30px 0;
}
.header-middle-inner{
    display: table;
    width: 100%;
}
.header-middle-inner>*{
    display: table-cell;
    vertical-align: middle;
}
.block-search .form-search{
    position: relative;
    border: 3px solid #cecece;
    border-radius: 5px;
    max-width: 470px;
    margin: 0 auto;
}
.block-search .form-content {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding-right: 60px;
}
.block-search .form-content > * {
    display: table-cell;
    vertical-align: middle;
}
.header .form-content .category{
    border-right: 1px solid #cecece;
    width: 143px;
    padding-top: 3px;
}
.header .chosen-container-single .chosen-single{
    font-size: 14px;
    color: #777;
    overflow: inherit;
}
.header .chosen-container-single .chosen-single span{
    width: 100%;
    margin-right: 0;
}
.header .chosen-container-single .chosen-single::after{
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    line-height: 20px;
    color: #fff;
    background-color: #c4c4c4;
    right: -11px;
    text-align: center;
    content: '\e9a3';
    font-family: 'abcicon';
}
.header .block-search select{
    border: none;
}
.header .block-search .ovic-live-search-form .txt-livesearch{
    height: 47px;
    border: none;
    padding-left: 25px;
    color: #777;
}
.header .block-search .btn-submit {
    position: absolute;
    top: -3px;
    right: -3px;
    color: #fff;
    width: auto;
    padding: 3px 18px 0;
    font-size: 24px;
    transition: all .5s ease;
    line-height: 50px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.hotline>*{
    display: inline-block;
    vertical-align: middle;
}
.hotline .icon{
    color: #333;
    font-size: 30px;
    margin-right: 3px;
}
.hotline .text{
    color: #333;
    font-size: 12px;
    line-height: 12px;
    font-weight: bold;
    text-transform: uppercase;
    max-width: 50px;
}
.hotline .number{
    font-weight: 500;
    font-size: 24px;
    margin-left: -11px;
}
/*----- MINICART -----*/
.block-minicart {
    position: relative;
    padding-left: 18px;
}
.block-minicart:after{
    content: '\e9a3';
    font-family: 'abcicon';
    font-size: 16px;
    color: #b2b2b1;
    position: absolute;
    top: 2px;
    right: 0;
}
.block-minicart .cart-link{
    position: relative;
}
.block-minicart .cart-link>*{
    display: inline-block;
    vertical-align: middle;
}
.block-minicart .cart-link .count{
    position: absolute;
    min-width: 22px;
    height: 22px;
    text-align: center;
    border-radius: 3px;
    background-color: #c72929;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    line-height: 22px;
    left: -16px;
    top: 0;
}
.block-minicart .cart-link .icon{
    width: 54px;
    height: 53px;
    font-size: 24px;
    line-height: 53px;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    margin-right: 4px;
}
.block-minicart .group>*{
    display: block;
    color: #333;
    font-weight: 500;
}
.block-minicart .group .text{
    font-size: 25px;
    margin-bottom: -5px;
}
.block-minicart .woocommerce-mini-cart__empty-message {
    margin: 17px 0 38px;
    text-align: center;
    font-size: 14px;
    color: #666;
}
.block-minicart:not(:hover) > .widget_shopping_cart {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.block-minicart .widget_shopping_cart {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    width: 300px;
    background-color: #fff;
    color: #666;
    z-index: 999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
}
.block-minicart .widget_shopping_cart:before{
    position: absolute;
    top: -20px;
    width: 100%;
    height: 20px;
    content: '';
    background-color: transparent;
}
.block-minicart .widget_shopping_cart .widget_shopping_cart_content {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 30px 20px 10px;
}
.block-minicart .widget_shopping_cart_content .cart_list{
    max-height: 265px !important;
    overflow-y: auto;
}
.woocommerce-mini-cart__buttons > * {
    padding: 0;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 55px;
    width: calc( 50% - 5px );
    font-size: 14px;
    text-transform: uppercase;
}
.woocommerce-mini-cart__buttons > a:before{
    content: '\e9c5';
    font-family: 'abcicon' !important;
    font-size: 20px;
    vertical-align: top;
    margin-right: 7px;
}
.woocommerce-mini-cart__buttons > .checkout {
    margin-left: 10px;
}
.woocommerce-mini-cart__buttons > .checkout:before {
    content: '\ea11';
}
.block-minicart .woocommerce-mini-cart__buttons > *:hover {
    opacity: 0.7;
}
.block-minicart .product_list_widget > li .amount {
    font-size: 15px !important;
}
.block-minicart .product_list_widget > li > a {
    line-height: 20px !important;
    margin-bottom: 1px !important;
    padding-top: 0 !important;
}
.widget_shopping_cart .woocommerce-mini-cart li {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 23px;
    margin-bottom: 13px!important;
}
.widget_shopping_cart .woocommerce-mini-cart li:last-child {
    border-bottom: none;
    margin-bottom: 10px;
    padding-bottom: 0;
}
.widget_shopping_cart .woocommerce-mini-cart__total {
    font-weight: 500;
    font-size: 18px;
    color: #0074bd;
    border-top: 1px solid #e5e5e5;
    padding: 11px 0 8px;
    text-align: right;
}
.widget_shopping_cart .woocommerce-mini-cart__total strong {
    font-weight: 400;
    font-size: 15px;
    color: #555;
    float: left;
}
.widget_shopping_cart .woocommerce-mini-cart li .remove {
    position: absolute;
    width: 18px;
    height: 18px;
    padding: 0;
    margin-bottom: 0;
    font-size: 0;
    right: 6px;
    top: calc( 50% - 15px );
}
.widget_shopping_cart .woocommerce-mini-cart li .remove:after {
    content: '\e994';
    font-family: 'abcicon' !important;
    font-size: 18px;
    color: #555;
}
.widget_shopping_cart .product_list_widget > li img {
    border: 1px solid #cecece !important;
    width: 70px!important;
    margin-right: 30px!important;
}
@media (max-width: 757px) {
    .block-minicart .widget_shopping_cart{
        display: none;
    }
}
/*----- MAIN MENU -----*/
.box-header-nav .main-menu {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    text-align: left;
}
.box-header-nav .main-menu .menu-item {
    position: relative;
}
.box-header-nav .main-menu .menu-item a {
    display: block;
    position: relative;
    padding: 3px 20px;
    line-height: 24px;
}
.box-header-nav .sub-menu .menu-item a:not(:hover) {
    color: #666666;
}
.box-header-nav .main-menu > .menu-item {
    display: inline-block;
    vertical-align: top;
}
.box-header-nav .main-menu > .menu-item:first-child > a{
    padding-left: 33px;
}
.header.style-2 .box-header-nav .main-menu > .menu-item:first-child > a{
    padding-left: 0px;
}
.box-header-nav .main-menu > .menu-item > a {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    padding: 18px 20px;
}
.box-header-nav .main-menu > .menu-item:last-child > a{
    padding-right: 0;
}
.box-header-nav .main-menu > .menu-item.current-menu-parent > a,
.box-header-nav .main-menu > .menu-item.current-menu-item > a,
.box-header-nav .main-menu > .menu-item:hover > a {
    color: #b3ee76;
}
.box-header-nav .main-menu > .menu-item-has-children > a::after,
.language-menu > .menu-item-has-children > a:after {
    display: inline-block;
    vertical-align: top;
    content: '\e9a3';
    font-family: 'abcicon', sans-serif;
    margin-left: 6px;
    font-size: 16px;
    font-weight: normal;
}
.main-menu > .menu-item > .sub-menu > .menu-item-has-children > a::after,
.main-menu > .menu-item > .sub-menu:not(.megamenu) .menu-item > .sub-menu > .menu-item-has-children > a::after{
    display: inline-block;
    float: right;
    content: "\e9a5";
    font-family: 'abcicon', sans-serif;
}
.language-menu > .menu-item-has-children > a:after{
    margin-left: 5px;
}
.box-header-nav .main-menu > .menu-item:not(:hover) > .sub-menu {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.box-header-nav .main-menu .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    color: #555;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 101;
}
.box-header-nav .main-menu .sub-menu .sub-menu {
    top: -18px;
    top: 0;
    left: 100%;
}
.box-header-nav .main-menu > .menu-item > .sub-menu:not(.megamenu) .menu-item:not(:hover) > .sub-menu {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
}
.block-menu-bar a {
    display: block;
    position: relative;
    margin-left: 10px;
}
.block-menu-bar a span {
    display: block;
    width: 26px;
    border: 1px solid;
    border-radius: 3px;
}
.block-menu-bar a span:not(:last-child) {
    margin-bottom: 5px;
}
.block-menu-bar a:hover,
.block-menu-bar a:focus {
    color: #fff;
}
.box-header-nav .main-menu .megamenu {
    padding: 27px 0;
}
.main-menu .megamenu .widgettitle {
    font-size: 15px;
    border: none;
    margin-bottom: 13px;
    padding-bottom: 0;
}
.box-header-nav .main-menu .menu-item .megamenu a,
.box-header-nav .main-menu .megamenu .menu-item a {
    font-size: 15px;
    padding: 0;
}
.main-menu .megamenu .widget_nav_menu .menu .menu-item {
    padding: 4.5px 0;
}
/*----- HEADER NAV -----*/
.header-nav-inner{
    display: table;
    width: 100%;
}
.header-nav-inner>*{
    display: table-cell;
    vertical-align: middle;
}
/*----- HEADER VERTICAL -----*/
.header-nav-inner .block-nav-category {
    width: 270px;
    position: relative;
}
.block-nav-category .block-title {
    padding: 15px 5px 15px 20px;
    cursor: pointer;
}
.block-nav-category .block-title .icon {
    font-size: 20px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.block-nav-category .block-title .text-title {
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
    color: #fff;
}
.block-nav-category .block-title .text-title:after{
    content: '\e9a6';
    font-family: 'abcicon';
    font-size: 20px;
    margin-left: 23px;
}
.block-nav-category:not(.has-open) .block-content {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
}
.block-nav-category .block-content {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding:0 20px;
    min-width: 200px;
    background-color: #fff;
    z-index: 100;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid #cecece;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
.block-nav-category .vertical-menu {
    position: relative;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.block-nav-category .vertical-menu .menu-item.link-other {
    display: none;
}
.block-nav-category .vertical-menu .menu-item {
    position: static;
}
.block-nav-category .vertical-menu > .menu-item {
    color: #333;
    display: block;
    border-bottom: 1px solid #cecece;
}
.block-nav-category .vertical-menu .menu-item > a {
    display: block;
    padding: 10px 0;
}
.block-nav-category .vertical-menu li > a > .icon{
    font-size: 20px;
    vertical-align: top;
    min-width: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 7px;
    margin-top: 3px;
}
.block-nav-category .view-all-category a {
    display: block;
    padding: 12px 0 10px;
    font-size: 15px;
    color: #333;
}
.block-nav-category .view-all-category a::before {
    display: inline-block;
    vertical-align: top;
    content: "\e982";
    font-family: 'abcicon';
    -webkit-transition: transform 0.5s ease;
    -moz-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    font-size: 20px;
    margin-right: 12px;
}
.block-nav-category .view-all-category a.close-cate::before {
    content: '\e977';
}
/*=========*/
.block-nav-category .vertical-menu .widgettitle {
    font-size: 15px;
}
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) > .menu-item,
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) .sub-menu > .menu-item {
    color: #333;
    font-size: 14px;
}
.block-nav-category .vertical-menu > .menu-item-has-children > a::after,
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) .menu-item-has-children > a::after {
    content: '\e9a3';
    font-family: 'abcicon', sans-serif;
    display: inline-block;
    float: right;
    font-size: 16px;
    color: #999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.block-nav-category .vertical-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);
}
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) > .menu-item > a,
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) .sub-menu > .menu-item > a {
    padding: 5px 0;
    line-height: 20px;
    position: relative;
}
.block-nav-category .vertical-menu > .menu-item > .sub-menu {
    list-style: none;
    left: calc(100% + 21px);
}
.block-nav-category .vertical-menu > .menu-item > .sub-menu .menu-item > .sub-menu {
    left: 100%;
}
.block-nav-category .vertical-menu > .menu-item > .sub-menu,
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) .menu-item > .sub-menu {
    color: #666;
    top: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(15px);
    -moz-transform: translateX(15px);
    -ms-transform: translateX(15px);
    -o-transform: translateX(15px);
    transform: translateX(15px);
}
.block-nav-category .vertical-menu > .menu-item:hover > .sub-menu,
.block-nav-category .vertical-menu > .menu-item > .sub-menu:not(.megamenu) .menu-item:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
}
.block-nav-category .vertical-menu .megamenu .ovic-menu>li{
    display: block;
    padding: 0;
}
.block-nav-category .vertical-menu .megamenu .menu-item > a {
    padding: 4px 0;
    font-size: 14px;
}
@media (min-width: 1200px) {
    .block-nav-category .vertical-menu .megamenu{
        position: absolute;
        /*height: 100%;*/
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        background-color: #fff;
        -webkit-box-shadow: 2px 3px 6px rgba(202, 202, 202, 0.5);
        -moz-box-shadow: 2px 3px 6px rgba(202, 202, 202, 0.5);
        box-shadow: 2px 3px 6px rgba(202, 202, 202, 0.5);
    }
}
/*----- HEADER STYLE 03 -----*/
.header.style-3 .header-nav-inner{
    display: table-cell;
    vertical-align: middle;
    width: auto;
}
/*----- HEADER STYLE 04 -----*/
.header.style-3,
.header.style-4{
    background-color: #232f3e;
}
.header.style-4 .header-topbar{
    border-bottom-color: rgba(255, 255, 255, 0.2);
}
.header.style-4 .header-topbar ul li,
.header.style-4 .block-user > a{
    color: #b2b2b1;
}
.header.style-4 .header-topbar ul li .icon,
.header.style-4 .block-user > a > .icon{
    color: #fff;
    font-size: 15px;
}
.header.style-4 .hotline .icon,
.header.style-4 .hotline .text,
.header.style-4 .block-minicart .group>*{
    color: #fff;
}
.header.style-4 .block-search .form-search{
    background-color: #fff;
    border-color: #fff;
}
.header.style-4 .block-nav-category .block-title{
    padding:6px 5px 6px 20px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.header.style-4 .box-header-nav .main-menu > .menu-item > a{
    padding: 9px 20px;
    font-size: 14px;
}
.header.style-4 .block-minicart .cart-link .icon{
    font-size: 20px;
}
.header.style-4 .block-nav-category .vertical-menu .menu-item > a{
    padding: 10.5px 0;
}
.header.style-4 .block-nav-category .view-all-category a{
    padding: 10px 0 10px;
}
/*----- HEADER STYLE 05 -----*/
.header.style-5{
    font-family: 'Work Sans', sans-serif;
}
body {
    -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 ;
}
body.hidden-top-banner {
    -webkit-transform: translateY(-35px);
    -moz-transform: translateY(-35px);
    -ms-transform: translateY(-35px);
    -o-transform: translateY(-35px);
    transform: translateY(-35px);
    margin-bottom: -35px;
}
.header.style-5 .top-banner{
    position: relative;
    text-align: center;
    font-size: 16px;
    color: #222;
    padding: 3px 0;
}
.header.style-5 .top-banner>a{
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: inline-block;
    line-height: 35px;
    vertical-align: middle;
    margin-top: -4px;
}
.header.style-5 .top-banner .oppen-banner{
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    margin: 0 auto;
    top: 100%;
}
body:not(.hidden-top-banner) .top-banner .oppen-banner{
    opacity: 0;
    visibility: hidden;
}
.header.style-5 .top-banner .title{
    font-weight: 600;
    text-transform: uppercase;
}
.header.style-5 .top-banner,
.header.style-5 .header-topbar{
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.header.style-5 .header-topbar .header-message{
    padding: 4px 0px;
    font-size: 14px;
    color: #777;
}
.header.style-5 .header-topbar .message-item .text span{
    font-weight: bold;
}
.header.style-5 .language-menu >li:not(:first-child)>a:before,
.header.style-5 .header-topbar .message-item:not(:last-child):after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 12px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.15);
    margin: 0 18px 3px 18px;
}
.header.style-5 .language-menu >li:not(:first-child)>a:before{
    margin-left: -10px;
}
.header.style-5 .header-topbar .ogo-nav>li{
    display: inline-block;
    position: relative;
}
.header.style-5 .header-topbar .ogo-nav>li>a{
    padding: 4px 13px;
}
.header.style-5 .header-middle{
    padding: 10px 0;
}
.header.style-5 .block-search .form-search{
    max-width: 730px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    margin-right: 70px;
}
.header.style-5 .block-search .form-content{
    padding-right: 130px;
}
.header.style-5 .form-content .category{
    width: 54px;
    border-right-color:rgba(0, 0, 0, 0.1);
}
.header.style-5 .chosen-container-single .chosen-single::after{
    content: '\e874';
    font-family: 'Linearicons-Free'!important;
    font-size: 12px;
    color: #222;
    background-color: transparent;
    right: 11px;
    top: 3px;
}
.header.style-5 .block-search .ovic-live-search-form .txt-livesearch{
    color: #999;
    height: 50px;
}
.header.style-5 .block-search .btn-submit{
    top: -1px;
    right: -1px;
    line-height: 43px;
    padding: 1px 37px 6px;
}
.header:not(.style-5) .block-search .btn-submit .text,
.header.style-5 .block-search .btn-submit>*:not(.text){
    display: none;
}
.header.style-5 .block-search .btn-submit .text{
    font-size: 16px;
    font-weight: 600;
}
.header.style-5 .chosen-container-single .chosen-single span{
    width: auto;
    font-size: 0
}
.header.style-5 .header-nav{
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.header.style-5 .header-nav-inner .block-nav-category{
    border-top: 2px solid #dd2400;
}
.header.style-5 .block-compare>a,
.header.style-5 .block-wishlist>a{
    position: relative;
}
.header.style-5 .block-compare>a>span,
.header.style-5 .block-wishlist>a>span{
    display: inline-block;
    vertical-align: middle;
}
.header.style-5 .block-compare>a>span:first-child,
.header.style-5 .block-wishlist>a>span:first-child{
    font-size: 32px;
    color:  #222;
    margin-top: 8px;
}
.header.style-5 .block-compare .count,
.header.style-5 .block-wishlist .count,
.header.style-5 .block-minicart .cart-link .count{
    font-size: 12px;
    color:  #fff;
    font-weight: 500;
    height: 19px;
    min-width: 19px;
    line-height: 19px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}
.header.style-5 .block-compare .text,
.header.style-5 .block-wishlist .text{
    display: block;
    font-size: 14px;
    color:  #777;
    line-height: 100%;
    margin-top: -1px;
}
.header.style-5 .block-minicart .cart-link .icon{
    background-color: transparent!important;
    color: #222;
    font-size: 32px;
    width: auto;
    height: auto;
    line-height: 100%
}
.header.style-5 .block-minicart .cart-link .count{
    left: 36px;
    top: -10px;
}
.header.style-5 .block-minicart .group>*:not(.text),
.header.style-5 .block-minicart:after{
    display: none;
}
.header.style-5 .block-minicart .group .text{
    font-size: 14px;
    color: #777!important;
    margin-left: -5px;
    margin-bottom: -15px;
    line-height: 100%;
}
.header.style-5 .block-nav-category .block-title{
    padding: 10px 16px 11px;
}
.header.style-5 .block-nav-category .block-title .icon{
    font-size: 20px;
    color: #222;
    margin-right: 6px;
    margin-bottom: 3px;
}
.header.style-5 .block-nav-category .block-title .icon:before{
    content: '\e872';
    font-family: 'Linearicons-Free';
}
.header.style-5 .block-nav-category .block-title .text-title{
    font-weight: 600;
    color: #222;
    font-size: 16px;
}
.header.style-5 .block-nav-category .block-title .text-title:after,
.header.style-5 .box-header-nav .main-menu > .menu-item-has-children > a::after,
.header.style-5 .language-menu > .menu-item-has-children > a:after{
    content: '\e874';
    font-family: 'Linearicons-Free';
    font-size: 12px;
    color: #222;
}
.header.style-5 .box-header-nav .main-menu > .menu-item > a{
    color: #222;
    text-transform: capitalize;
    padding: 14px 22px;
}
.header.style-5 .group-header-item{
    text-align: right;
}
.header.style-5 .group-header-item>*{
    text-align: left;
    display: inline-block;
    vertical-align: top;
}
.header.style-5 .group-header-item > .block-minicart{
    padding-top: 13px;
}
.header.style-5 .group-header-item > .block-compare,
.header.style-5 .group-header-item > .block-wishlist{
    margin-left: 25px;
    margin-top: 4px;
}
.header.style-5 .group-header-item .hotline{
    margin-top: 11px;
}
.header.style-5 .group-header-item .hotline>*{
    vertical-align: middle;
    display: inline-block;
}
.header.style-5 .group-header-item .hotline .icon{
    font-size: 32px;
    color: #222;
    margin-bottom: 4px;
}
.header.style-5 .group-header-item .hotline .text{
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #777;
    max-width: inherit;
    text-transform: capitalize;
    margin-bottom: -1px;
}
.header.style-5 .group-header-item .hotline .number{
    margin-left: 0;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}
.header.style-5 .header-nav-inner .block-user{
    text-align: right;
}
.header.style-5 .block-user > a{
    padding-right: 0;
}
.header.style-5 .block-user .text{
    font-family: 'Work Sans', san-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}
.header.style-5 .block-user a>*:not(.text){
    font-size: 20px;
    color: #222;
    vertical-align: middle;
    margin-bottom: 4px;
    display: inline-block;
}
.header.style-5 .block-user .sub-menu{
    text-align: left;
    right: 0;
    left: auto;
}
.header.style-5 .block-user .sub-menu a{
    padding: 4px 20px;
}
@media (min-width: 1200px) {
    .block-nav-category.always-open .block-content {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@media(max-width: 1710px){
    .header.style-5 .block-search .form-search{
        margin-right: 0;
    }
}
@media(max-width: 1499px){
    .header.style-5 .block-search .form-search{
        max-width: 500px;
    }
}
@media (max-width: 1366px) {
    .header.style-3 .form-content .category{
        display: none;
    }
    .header.style-3 .block-search .form-search{
        max-width: 370px;
    }
    .header.style-5 .block-search .form-search{
        max-width: 440px;
    }
}
@media (max-width: 1279px) {
    .header.style-3 .block-minicart .cart-link .group,
    .header.style-3 .block-minicart:after{
        display: none;
    }
    .header.style-3 .block-minicart .cart-link .icon{
        margin-right: 0;
    }
}
@media (max-width: 1199px) {
    .header{
        display: none;
    }
}
/*----- HEADER STICKY -----*/
@media (min-width: 1200px) {
    body.admin-bar .header-sticky{
        top: 32px;
    }
    .header-sticky{
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        z-index: 99999;
        max-width: 100%;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .header-sticky:not(.is-sticky){
        opacity: 0;
        visibility: hidden;
        box-shadow: none;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    .header-sticky .box-header-nav .main-menu > .menu-item:first-child > a{
        padding-left: 0;
    }
    .header-sticky .box-header-nav .main-menu > .menu-item > a{
        color: #333;
    }
    .header-sticky .block-minicart{
        text-align: right;
    }
    .header-sticky .block-minicart .group{
        text-align: left;
    }
    .header-sticky .block-minicart .cart-link .icon{
        width: 45px;
        height: 45px;
        font-size: 20px;
        line-height: 45px;
    }
    .header-sticky .block-minicart .cart-link .count{
        font-size: 12px;
        color:  #fff;
        font-weight: 500;
        height: 19px;
        min-width: 19px;
        line-height: 19px;
        border-radius: 50%;
        display: inline-block;
        text-align: center;
    }
    .header-sticky .block-minicart .cart-link .icon{
        background-color: transparent!important;
        color: #222;
        font-size: 32px;
        width: auto;
        height: auto;
        line-height: 100%
    }
    .header-sticky .block-minicart .cart-link .count{
        left: 36px;
        top: -10px;
    }
    .header-sticky .block-minicart .group>*:not(.text),
    .header-sticky .block-minicart:after{
        display: none;
    }
    .header-sticky .block-minicart .group .text{
        font-size: 14px;
        color: #777!important;
        margin-left: -5px;
        margin-bottom: -15px;
        line-height: 100%;
    }
    .header-sticky .block-minicart .widget_shopping_cart{
        top: calc(100% + 14px);
    }
}
/*----- HEADER MOBILE -----*/
@media (min-width: 1200px) {
    .header-mobile-wapper,
    .close-block-search{
        display: none;
    }
}
@media (max-width: 1199px) {
    .header-sticky,
    .header-mobile .group,
    .header-mobile .block-minicart:after {
        display: none;
    }
    .header-mobile {
        padding: 0 15px;
        webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.18);
        -moz-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.18);
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.18);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: #fff;
        position: static;
        margin-bottom: 5px;
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    .admin-bar .header-mobile {
        top: 32px;
    }
    .header-mobile .main-header {
        display: table;
        width: 100%;
        padding: 20px 0;
    }
    .header-mobile .main-header .logo,
    .header-mobile .main-header .control {
        display: table-cell;
        vertical-align: middle;
    }
    .header-mobile .block-minicart{
        padding-left: 0;
    }
    .block-minicart .cart-link .count{
        left: 25px;
        top: -15px;
        border-radius: 50%;
    }
    .block-minicart .cart-link .icon{
        font-size: 22px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 0;
        background-color: transparent!important;
    }
    .header-mobile .main-header .control > * {
        float: right;
        margin-left: 15px;
    }
    .header-mobile .main-header .control .menu-mobile-wapper > a,
    .header-mobile .form-search-mobile > a,
    .global-setting .global-button {
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        font-size: 21px;
        display: block;
        color: #fff;
        border-radius: 6px;
    }
    .header-mobile .main-header .control .menu-mobile-wapper > a{
        background-color: transparent!important;
    }
    .header-mobile .form-search-mobile > a{
        line-height: 44px;
        background-color: transparent!important;
    }
    .header-mobile-wapper .block-minicart .gokko-group {
        display: none;
    }
    .header-mobile-wapper .block-search .form-search .category,
    .header-mobile-wapper .block-search .btn-submit > .text {
        display: none;
    }
    .form-search-mobile .block-search .form-search {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        max-width: inherit;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        top: 0;
        background-color: #fff;
        z-index: 999999;
        border: none;
        border-radius: 0;
        transition: opacity 0.5s,visible 0.5s;
        -o-transition: opacity 0.5s,visible 0.5s;
        -webkit-transition: opacity 0.5s,visible 0.5s;
    }
    .form-search-mobile.open .block-search .form-search {
        opacity: 1;
        visibility: visible;
    }
    .header-mobile .close-block-search {
        position: absolute;
        right: 30px;
        top: 30px;
        font-size: 30px;
    }
    .header-mobile .block-search .form-content{
        max-width: 600px;
        padding:0 20px;
        margin: 0 auto;
        margin-top: 100px;
        text-align: center;
    }
    .header-mobile .block-search .form-content .category,
    .header-mobile .block-search .btn-submit{
        display: none;
    }
    .header-mobile .ovic-live-search-form .txt-livesearch{
        height: 50px;
        font-size: 30px;
        text-align: center;
        color: #000;
        border:none;
    }
    .header-mobile .global-setting {
        position: relative;
    }
    .header-mobile .global-setting .global-button {
        font-size: 20px;
        line-height: 43px;
        background-color: transparent!important;
    }
    .header-mobile .global-setting .global-group {
        width: 250px;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        display: block;
        position: fixed;
        left: -250px;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        top: 0;
        background-color: #fff;
        z-index: 999999;
        text-align: left;
        box-shadow: 3px 5px 14px 0px rgba(0, 0, 0, 0.11);
        -webkit-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
    }
    .header-mobile .global-setting.open .global-group {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    .header-mobile .global-group .language-menu > li > a {
        color: #313131;
        border-bottom: solid #f2f2f2 1px;
        font-weight: 700;
        padding-left: 0;
        padding-right: 0;
        display: block;
    }
    .header-mobile .global-group .ovic-menu-wapper {
        display: block;
    }
    .header-mobile .global-group .ovic-menu-wapper ul{
        padding-left: 0;
    }
    .header-mobile .global-group .block-language .sub-menu,
    .header-mobile .global-group .block-currency .wcml-cs-submenu,
    .header-mobile .global-group .language-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-top: 0;
    }
    .header-mobile .global-group .language-menu > li.menu-item-has-children {
        margin-bottom: 15px;
    }
    .header-mobile .global-group .language-menu .sub-menu li > a {
        padding: 0;
        text-align: left;
        text-transform: capitalize;
    }
    .header-mobile .global-group .language-menu .sub-menu li > a:hover {
        background-color: transparent;
    }
    .header-mobile .global-group .language-menu .sub-menu li {
        border: none;
    }
    .header-mobile .global-group .language-menu li a .label-image {
        display: none;
    }
    .header-mobile .global-group .language-menu > li.menu-item-has-children > a::after,
    .header-mobile .global-group .block-currency .wcml-dropdown a.wcml-cs-item-toggle:after,
    .header-mobile .global-group .block-language > a::after {
        display: none;
    }
}
@media (max-width: 640px) {
    .header-mobile .main-header {
        padding: 10px 0;
    }
}
@media (max-width: 470px) {
    .header-mobile .main-header .logo,
    .header-mobile .main-header .control{
        display: block;
        text-align: center;
        vertical-align: middle;
    }
    .header-mobile .main-header .control{
        max-width: 217px;
        padding-top: 10px;
        margin: 0 auto;
    }
    .header-mobile .main-header .control > * {
        margin-left: 7px;
        margin-right: 7px;
    }
}
/*==========================================================================
WIDGETS
===========================================================================*/
.blog-sidebar .widget{
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
.blog-sidebar .widget>*:not(.widgettitle){
    padding:16px 30px;
}
.blog-sidebar .widgettitle{
    background-color: #777777;
    margin-bottom: 0;
    margin: -1px;
    padding: 11.5px 30px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.shop-sidebar .widgettitle{
    color: #333;
}
.widget .screen-reader-text {
    display: none !important;
}
.widget select {
    width: 100%;
    cursor: pointer;
    border-radius: 0;
    border: none;
    padding: 16px 30px 12px!important;
}
.widget ul,
.widget ol {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.widget_ovic_nav_menu ul .megamenu,
.widget_nav_menu ul .megamenu,
.widget ul ul,
.widget ul ol,
.widget ol ol,
.widget ol ul {
    padding-left: 18px;
}
.widgettitle {
    font-weight: 500;
    color: #fff;
    font-size: 20px;
    text-transform: capitalize;
}
/*----- WIDGET AREA -----*/
.widget-area > .widget:not(:last-child) {
    margin-bottom: 30px;
}
/*----- WIDGET CALENDAR -----*/
.widget_calendar th,
.widget_calendar td {
    text-align: center;
}
.widget #today {
    background-color: red;
    color: #fff;
}
.widget #today a {
    color: #fff;
}
/*----- WIDGET RECENT ENTRIES -----*/
.widget_recent_entries > ul > li > a {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.widget_recent_entries > ul > li > .post-date {
    display: block;
    font-style: italic;
    margin-left: 16px;
}
.widget_recent_comments ul li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.widget_recent_comments ul li > a {
    font-style: italic;
}
.widget_recent_entries ul li > a:not(:hover),
.widget_rss ul li > a:not(:hover),
.widget_recent_comments ul li {
    color: #666666;
}
.widget_recent_comments ul li > a:not(:hover) {
    color: #666666;
}
/*----- WIDGET LIST ITEM -----*/
.widget-area > .widget_ovic_nav_menu ul li,
.widget-area > .widget_product_categories ul li,
.widget-area > .widget_nav_menu ul li,
.widget-area > .widget_layered_nav ul li,
.widget-area > .widget_rss ul li,
.widget-area > .widget_recent_entries ul li,
.widget-area > .widget_recent_comments ul li,
.widget-area > .widget_meta ul li,
.widget-area > .widget_pages ul li,
.widget-area > .widget_categories ul li,
.widget-area > .widget_archive ul li {
    padding: 6px 0;
}
.widget-area > .widget_ovic_nav_menu ul ul,
.widget-area > .widget_product_categories ul ul,
.widget-area > .widget_nav_menu ul ul,
.widget-area > .widget_layered_nav ul ul,
.widget-area > .widget_rss ul ul,
.widget-area > .widget_recent_entries ul ul,
.widget-area > .widget_recent_comments ul ul,
.widget-area > .widget_meta ul ul,
.widget-area > .widget_pages ul ul,
.widget-area > .widget_categories ul ul,
.widget-area > .widget_archive ul ul {
    margin: 6px 0 -6px;
}
.widget-area > .widget_ovic_nav_menu ul li a,
.widget-area > .widget_product_categories ul li a,
.widget-area > .widget_nav_menu ul li a,
.widget-area > .widget_layered_nav ul li a,
.widget-area > .widget_recent_entries ul li a,
.widget-area > .widget_meta ul li a,
.widget-area > .widget_pages ul li a,
.widget-area > .widget_categories ul li a,
.widget-area > .widget_archive ul li a {
    margin-right: 5px;
    font-size: 14px;
}
/*----- WIDGET NAV MENU -----*/
.widget_ovic_nav_menu .menu,
.widget_nav_menu .menu {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.widget_ovic_nav_menu .menu .menu-item,
.widget_nav_menu .menu .menu-item {
    padding: 6px 0;
}
.widget_ovic_nav_menu .menu .sub-menu,
.widget_nav_menu .menu .sub-menu {
    margin: 6px 0 -6px;
}
.widget_nav_menu .menu .sub-menu{
    padding-left: 15px;
}
.widget_ovic_nav_menu .megamenu,
.widget_nav_menu .megamenu {
    background-image: none !important;
    width: auto !important;
}
.widget_ovic_nav_menu .megamenu .menu,
.widget_nav_menu .megamenu .menu {
    margin: 0;
}
.widget_ovic_nav_menu .megamenu [class^="vc_col-"],
.widget_ovic_nav_menu .megamenu [class*=" vc_col-"],
.widget_nav_menu .megamenu [class^="vc_col-"],
.widget_nav_menu .megamenu [class*=" vc_col-"] {
    width: 100%;
    float: none;
}
.widget_ovic_nav_menu .megamenu > .vc_row,
.widget_ovic_nav_menu .megamenu > .vc_row,
.widget_nav_menu .megamenu > .vc_row,
.widget_nav_menu .megamenu > .vc_row {
    padding: 0 !important;
}
.widget_ovic_nav_menu .megamenu .ovic-custommenu,
.widget_nav_menu .megamenu .ovic-custommenu {
    padding: 0 !important;
    margin: 0 !important;
}
.widget_ovic_nav_menu .megamenu .widget_nav_menu > .widgettitle,
.widget_nav_menu .megamenu .widget_nav_menu > .widgettitle {
    margin-bottom: 0;
    padding: 6px 0;
}
.widget_ovic_nav_menu .megamenu .widget_nav_menu > *:not(.widgettitle),
.widget_nav_menu .megamenu .widget_nav_menu > *:not(.widgettitle) {
    padding-left: 20px;
}
/*----- WIDGET PRODUCT LIST -----*/
.widget_products .rating-wapper ,
.widget_top_rated_products .rating-wapper {
    margin-bottom: -14px;
}
.widget_products .star-rating::before,
.widget_top_rated_products .star-rating::before,
.widget_products .star-rating > span::before,
.widget_top_rated_products .star-rating > span::before{
    font-size: 15px;
}
.widget_products .rating-wapper .review,
.widget_top_rated_products .rating-wapper .review{
    margin-left: 0;
    margin-top: -8px;
}
.widget .product_list_widget > li::before,
.widget .product_list_widget > li::after {
    display: table;
    clear: both;
    content: '';
}
.widget .product_list_widget > li:not(:last-child) {
    margin-bottom: 20px;
}
.widget .product_list_widget > li > a:not(.remove){
    padding-right: 20px;
}
.widget .product_list_widget > li > a {
    display: block;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 4px;
    text-transform: capitalize;
}
.widget .product_list_widget > li > a:not(:hover) {
    color: #555;
}
.widget .product_list_widget > li img {
    float: left;
    width: 90px;
    margin-right: 10px;
    border: 1px solid #e6e6e6;
}
.widget .product_list_widget > li a:hover img {
    opacity: 0.7;
}
.widget .product_list_widget > li .amount {
    font-weight: 500;
    font-size: 16px;
    color: #0074bd;
}
.widget .product_list_widget > li del .amount {
    font-size: 14px;
    color: #888895;
    font-weight: normal;
}
.widget .product_list_widget > li ins {
    text-decoration: none;
}
/*----- WIDGET SEARCH -----*/
.widget_search form{
   padding: 0!important;
}
.widget_search .search-form,
.widget_product_search form {
    position: relative;
    border-radius: 3px;
}
.widget_search .search-field,
.widget_product_search .search-field {
    width: 100%;
    font-size: 14px;
    border-radius: 3px;
    padding-right: 50px;
    height: 49px;
    border: none;
}
.widget_product_search .search-field{
    border:1px solid #e5e5e5;
}
.widget_search .search-submit,
.widget_product_search button {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    color: #333;
    width: 50px;
    background-color: transparent;
    border-radius: 0;
    padding: 4px 0 0;
}
.widget_product_search button{
    font-size: 0;
    padding-top: 3px;
    height: 49px;
}
.widget_product_search button:after{
    font-size: 24px;
    content: "\e9c4";
    font-family: 'abcicon' !important;
}
.widget_search .search-submit:hover,
.widget_product_search button:hover{
    color: #222;
}
/*----- WIDGET TAGS -----*/
.widget_tag_cloud{
    margin-bottom: 27px;
}
.widget_tag_cloud .widgettitle {
    margin-bottom: 8px;
}
.widget .tagcloud {
    font-size: 0;
    line-height: 0;
}
.widget .tagcloud a {
    display: inline-block;
    font-size: 14px !important;
    line-height: 20px;
    padding: 2px 12px 0;
    background-color: #fff;
    margin: 0 7px 8px 0;
    color: #666;
    border: 2px solid #cecece;
    border-radius: 3px;
    text-transform: capitalize;
}
.widget .tagcloud a:hover{
    color: #fff;
}
.widget_product_tag_cloud .widgettitle{
    margin-bottom: 19px;
}
/*----- WIDGET RECENT POST -----*/
.widget-recent-post{
    margin-bottom: 30px;
}
.widget-recent-post .widgettitle{
    margin-bottom: 14px;
}
.widget-recent-post .post-title{
    font-size: 13px;
    font-weight: bold;
    color: #222;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: -2px;
}
.widget-recent-post .ovic-blog .arrow{
    width: 8px;
    height: 8px;
    display: inline-block;
    margin-right: 7px;
    position: relative;
    float: left;
    color: #000;
    margin-top: 5px;
}
.widget-recent-post .ovic-blog .arrow:before,
.widget-recent-post .ovic-blog .arrow:after{
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 8px;
    height: 2px;
    border: 1px solid;
}
.widget-recent-post .ovic-blog .arrow:after{
    width: 2px;
    height: 8px;
}
.widget-recent-post .ovic-blog .post-info{
    overflow: hidden;
}
.widget-recent-post .blog-item:not(:last-child){
    margin-bottom: 9px;
}
.widget-recent-post .post-meta>*{
    font-size: 13px;
    color: #888;
    line-height: 20px;
    text-transform: capitalize;
}
/*----- WIDGET ARCHIVE -----*/
.widget_archive ul li a::before {
    content: "\e957";
    display: inline-block;
    vertical-align: middle;
    font-family: 'abcicon';
    margin-right: 10px;
    font-size: 20px;
    color: #999;
    margin-top: -2px;
}
/*----- WIDGET CATEGORIES -----*/
.widget_categories{
    margin-bottom: 31px;
}
.widget_categories>ul{
    padding: 24px 30px!important;
}
.widget-area > .widget_categories ul ul{
    margin: 0;
}
.widget-area > .widget_categories ul li{
    text-transform: uppercase;
    line-height: 24px;
    padding: 0 0;
}
.widget_categories form{
    padding: 0!important;
}
.widget_product_categories select{
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}
/*----- WIDGET TEXT -----*/
.widget.widget_text .textwidget strong {
    font-style: italic;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
    margin-top: 2px;
}
.widget_text select{
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}
/*----- WIDGET PRICE -----*/
.widget_price_filter .price_slider {
    height: 2px;
    display: block;
    background-color: #cecece;
    position: relative;
    width: 100%;
    margin-top: 28px;
}
.widget_price_filter .ui-slider-handle {
    width: 16px;
    height: 16px;
    position: absolute;
    border: 5px solid #dc2400;
    top: -7px;
    background-color: #fff;
    border-radius: 50%;
    cursor: e-resize;
    margin-left: -1px;
}
.widget_price_filter .ui-slider-handle:last-child {
    margin-left: -16px;
}
.widget_price_filter .ui-slider-range {
    position: absolute;
    height: 2px;
    background-color: #dc2400;
    border-radius: 30px;
}
.widget_price_filter .price_slider_amount {
    margin-top: 21px;
    overflow: hidden;
}
.widget_price_filter .price_slider_amount .button {
    padding: 0 30px;
    line-height: 43px;
    margin-bottom: 10px;
    float: right;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
}
.widget_price_filter .price_slider_amount .price_label {
    color: #666;
    display: inline-block;
    font-size: 14px;
    margin-top: 8px;
}
.widget_price_filter .price_slider_amount .price_label .from,
.widget_price_filter .price_slider_amount .price_label .to {
    color: #555;
    font-size: 14px;
    line-height: 31px;
    display: inline-block;
}
/*----- WIDGET COLOR -----*/
.widget_layered_nav .color-group > * {
    display: block;
    padding: 7px 0;
    position: relative;
}
.widget_layered_nav .color-group > * i {
    display: inline-block;
    float: left;
    position: relative;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border: 2px solid #e6e6e6;
    margin-right: 15px;
    margin-top: -1px;
    border-radius: 50%;
}
/*----- WIDGET ATTR -----*/
.widget-area .widget_layered_nav ul li,
.widget_layered_nav .inline-group > a {
    padding: 7px 0;
}
.widget_layered_nav .inline-group > a {
    display: block;
    position: relative;
}
.widget_layered_nav ul li .count,
.widget_layered_nav .color-group .count {
    float: right;
    font-size: 13px;
    color: #aaaaaa;
}
.widget-area > .widget_price_filter {
    margin-bottom: 30px !important;
}
.widget-area > .widget_layered_nav {
    margin-bottom: 25px !important;
}
.widget-area .widget_layered_nav .select2-selection{
    margin-bottom: 5px;
}
.widget-area .widget_layered_nav ul li.select2-search{
    padding: 0;
    margin: 0;
}
.widget_layered_nav .inline-group > a:before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    border: 2px solid #eee;
    border-radius: 3px;
    content: '';
}
.widget_layered_nav .inline-group > a:before {
    margin-right: 7px;
    margin-top: -4px;
}
.widget-area .widget_layered_nav ul li a:before {
    margin-top: -3px;
}
.widget_layered_nav .color-group .term-color:after,
.widget_layered_nav .inline-group > a:after {
    position: absolute;
    top: 6px;
    left: 3px;
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    color: #444444;
}
.widget_layered_nav .color-group .term-color:after{
    top: 5px;
    left: 7px;
}
.widget_layered_nav .color-group .term-color.selected:after,
.widget_layered_nav .color-group .term-color:hover:after,
.widget_layered_nav .inline-group > a.selected:after,
.widget_layered_nav .inline-group > a:hover:after {
    opacity: 1;
    visibility: visible;
}
/*----- WIDGET OVIC RECENT POSR -----*/
.ovic-recent-post.widget-recent-post,
.widget-ovic-instagram{
    padding: 11px 0 10px;
}
.blog-sidebar .ovic-recent-post .widgettitle,
.blog-sidebar .widget-ovic-instagram .widgettitle{
    background-color: transparent;
    color: #333;
    padding: 15px 30px 15px;
    margin-bottom: 0;
}
.blog-sidebar .ovic-recent-post .post-title{
    text-transform: capitalize;
    color: #0074ba;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}
.blog-sidebar .ovic-recent-post .post-title:hover{
    text-decoration: underline;
}
.ovic-recent-post .ovic-blog .post-item:not(:last-child){
    margin-bottom: 22px;
}
/*----- WIDGET INSTAGRAM -----*/
.widget-ovic-instagram .content-instagram{
    display: inline-block;
    width: 100%;
    padding-right: 26px!important;
    padding-top: 20px!important;
}
.widget-ovic-instagram .content-instagram >*{
    width: 33.33%;
    float: left;
    margin-bottom: 5px;
    padding-right: 5px;
}
.widget-ovic-instagram .content-instagram a:hover img{
    opacity: 0.6;
}
.woocommerce-widget-layered-nav ul li,
.widget_product_brand ul li{
    position: relative;
    padding: 3px 0!important;
}
.woocommerce-widget-layered-nav ul li:before,
.widget_product_brand ul li:before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 21px;
    height: 21px;
    border: 2px solid #cecece;
    border-radius: 3px;
    margin-top: -4px;
    margin-right: 10px;
}
.woocommerce-widget-layered-nav ul li:after,
.widget_product_brand ul li:after{
    position: absolute;
    content: '\ea10';
    font-family: 'abcicon';
    font-size: 14px;
    left: 4px;
    top: 2px;
    opacity: 0;
    visibility: hidden;
}
.woocommerce-widget-layered-nav ul li:hover:after,
.woocommerce-widget-layered-nav ul li.chosen:after,
.widget_product_brand ul li:hover:after,
.widget_product_brand ul li.current-cat:after{
    opacity: 1;
    visibility: visible;
}
.shop-sidebar.widget-area > .widget:not(:last-child){
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 27px!important;
}
@media (max-width: 991px) {
    .widget_price_filter .price_slider_amount .button {
        float: none;
        width: 100%;
        display: block;
    }
    .widget-products-slide .product-item.style-3 .product-info {
        max-width: 158px;
    }
    .blog-sidebar .widget>*:not(.widgettitle),
    .widget_categories>ul {
        padding: 15px!important;
    }
    .blog-sidebar .widgettitle{
        padding: 11.5px 15px;
    }
    .blog-sidebar .ovic-recent-post .widgettitle,
    .blog-sidebar .widget-ovic-instagram .widgettitle{
        padding: 15px;
    }
}
/*==========================================================================
SHOP PAGE
===========================================================================*/
.page-title{
    font-size: 28px;
    font-weight: 500;
    color: #333;
    line-height: 30px;
}
.page-title.blog-title{
    margin-bottom: 33px;
}
.sidebar-top-title{
    color: #222;
    text-transform: uppercase;
    background-color: #e6e6e6;
    padding: 13px 18px 11px;
    font-weight: bold;
    font-size: 16px;
}
.banner-shop {
    margin-bottom: 26px;
}
.woocommerce-products-header .page-title{
    text-align: left;
    display: inline-block;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
    color: #333;
}
.woocommerce-products-header p{
    margin-bottom: 0;
}
.shop-page ul.products {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    list-style: none;
    margin: 0;
    padding: 0;
}
.shop-page ul.products .product-item {
    padding: 0;
    margin-bottom: 18px;
}
.banner-shop-page{
    position: relative;
    margin-bottom: 29px;
    cursor: pointer;
    min-height: 100px;
}
.banner-shop-page .page-title{
    position: absolute;
    margin-bottom: 0;
    font-weight: 300;
    font-size: 50px;
    line-height: 50px;
    left: 60px;
    text-transform: uppercase;
    top: 50%;
    transform: translateY(-50%);
    -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.woocommerce-products-header{
    display: none;
}
@media (min-width: 1200px) {
    .banner-shop-page:hover .page-title{
        left: 100px;
    }
}
/*----- SHOP BEFORE CONTROL -----*/
.woocommerce-products-header{
    display: inline-block;
    margin-top: 6px;
}
.shop-control.shop-before-control{
    display: table;
    width: 100%;
}
.shop-before-control .woocommerce-result-count{
    font-weight: 500;
    font-size: 20px;
    color: #333;
    padding-left: 0!important;
}
.shop-control.shop-before-control>*{
    display: table-cell;
    vertical-align: middle;
    padding-left: 33px;
}
.grid-view-mode {
    /*padding-right: 15px;*/
}
.grid-view-mode .modes-mode{
    font-size: 28px;
    padding: 0;
    color: #999999;
    line-height: 100%;
    background-color: transparent;
    width: 25px;
    height: 25px;
}
.grid-view-mode .mode-grid{
    font-size: 24px;
    margin-top: 2px;
    margin-right: 13px;
}
.grid-view-mode .modes-mode:hover,
.grid-view-mode .modes-mode.active{
    background-color: transparent!important;
    color: #333;
}
.shop-control select{
    border: 2px solid #cecece;
    border-radius: 3px;
    background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+EDtmh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBSaWdodHM9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9yaWdodHMvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wUmlnaHRzOk1hcmtlZD0iRmFsc2UiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMjgwMTE3NDA3MjA2ODExOERCQkY1MDAwMUQ2MkI4MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEMzRCQjUxQ0QyMTIxMUU4OTNCREVCMEQwMTZDNDIwNSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEMzRCQjUxQkQyMTIxMUU4OTNCREVCMEQwMTZDNDIwNSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1MzIFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0idXVpZDo3NjE1QTVBNzQ4QzZFODExOTE3NEU4Q0QxNjVDRkFCNyIgc3RSZWY6ZG9jdW1lbnRJRD0idXVpZDpFMTE4MkFERDk5QzRFODExODdBMUQwMTJDQTk2RTRBRCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAABZsAAAY9AAAGrgAABw7/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgMDAwMDAwMDAwMBAQEBAQEBAgEBAgICAQICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDA//CABEIACUAGQMBEQACEQEDEQH/xACeAAEAAgMAAAAAAAAAAAAAAAAABAkDBggBAQEBAAAAAAAAAAAAAAAAAAACARAAAQQBBQAAAAAAAAAAAAAAAzACBAYFACBAEQcRAAMAAQMCAwkBAAAAAAAAAAECAwQREgYABSFhExAgMEFRIiMzFQcSAQAAAAAAAAAAAAAAAAAAAEATAQEAAwEAAgMAAAAAAAAAAAERADAhMSBxEEGh/9oADAMBAAIRAxEAAAG/wAAiAlmMruuO2ore2gAAAf/aAAgBAQABBQLaE4JIgnBJHpzWvbM8ouGIlVqt4ipYRH//2gAIAQIAAQUCR7T/AP/aAAgBAwABBQLif//aAAgBAgIGPwIn/9oACAEDAgY/Aif/2gAIAQEBBj8C91b41pZEX12WjRayfQlTtohZW0YadLbHtLIi+7bWNFrNtrFG2uhKna6kHzHsZHUMrAqysAVZSNCrA+BBHWVxzgXKP4X+ecmtS3ecSm6vdOLbmNM2PE6k/jj3hW9PQ/oP3efWBx/seMMXtvb5enFNd9HZmNLZF6HxrkZFWLu3zJ+nwv/aAAgBAQMBPyH4koNFQ5LSVHiJjFgD1nV/IniHp+EAfMRCSuiPEzlyf80BnldoFWkTqpw6M9xK4EBp/9oACAECAwE/IdMevuLe6v/aAAgBAwMBPyHTH9eZ5q//2gAMAwEAAhEDEQAAEAABIJeAAAAP/9oACAEBAwE/EPi4mUenKTR6zomGzoXyZqYW5iBj8P5vmbWMoRJlcRwqAF+qUusH5uMESAENwhat/9oACAECAwE/ENInGn+/eIq91f/aAAgBAwMBPxDSlxx/z6wAQ81f/9k=');
    background-position: center right 0px;
    padding-left: 16px;
}
.shop-control-item>*{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #777;
}
.shop-control-item .text-item{
    margin-right: 7px;
}
.shop-control + .auto-clear.ovic-products{
    border-top: 1px solid #dce0e2;
    margin-top: 30px;
    /*display: inline-block;*/
    /*width: 100%;*/
}
.shop-after-control > .woocommerce-pagination {
    margin: 30px 0 0;
    text-align: left;
}
@media (max-width: 1199px) {
    .banner-shop-page .page-title{
        font-size: 35px;
        line-height: 35px;
        left: 30px;
    }
    .shop-before-control .woocommerce-result-count{
        display: none;
    }
    .grid-view-mode{
        padding-left: 0!important;
    }
    .shop-after-control > .woocommerce-pagination{
        margin-top: 10px;
    }
    .woocommerce-pagination,
    .navigation,
    .pagination{
        padding: 10px 0;
    }
    .shop-control select{
        padding-top: 6px;
        padding-bottom: 6px;
    }
}
@media (max-width: 991px) {
    .banner-shop-page .page-title{
        font-size: 25px;
        line-height: 25px;
        left: 20px;
    }
}
@media (max-width: 640px) {
    .shop-control.shop-before-control>*{
        padding-left: 20px;
    }
    .shop-control-item .text-item{
        display: none;
    }
    .grid-view-mode .mode-grid{
        margin-right: 0;
    }
}
@media (max-width: 479px) {
    .shop-control.shop-before-control>*:not(.woocommerce-result-count){
        display: block;
        margin-bottom: 5px;
        padding-left: 0;
    }
    .shop-control + .auto-clear.ovic-products{
        margin-top: 25px;
    }
}
/*==========================================================================
PRODUCT ITEM
===========================================================================*/
/*----- QUICK VIEW -----*/
html.yith-quick-view-is-open,
html.yith-quick-view-is-open body {
    overflow: hidden;
}
#yith-quick-view-modal {
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1400;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
#yith-quick-view-modal:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0;
}
#yith-quick-view-modal .yith-quick-view-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}
#yith-quick-view-modal .yith-wcqv-wrapper {
    display: inline-block;
    vertical-align: middle;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: left;
    width: 755px !important;
    height: 400px !important;
    max-width: 755px;
    max-height: calc(100% - 30px);
    overflow-y: auto;
}
#yith-quick-view-modal.open .yith-wcqv-main {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    height: 100%;
    position: relative;
    box-shadow: none;
    overflow: hidden;
}
#yith-quick-view-modal .yith-wcqv-main {
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    transform: translateY(20%);
    opacity: 0;
    height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
    background-color: transparent;
}
#yith-quick-view-modal.open,
#yith-quick-view-modal.open .yith-wcqv-wrapper {
    visibility: visible;
    opacity: 1;
}
#yith-quick-view-modal #yith-quick-view-content {
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
#yith-quick-view-modal #yith-quick-view-content:after,
#yith-quick-view-modal #yith-quick-view-content:before {
    content: '';
    display: table;
    clear: both;
}
#yith-quick-view-modal #yith-quick-view-content > .product {
    position: relative;
    overflow: hidden;
}
#yith-quick-view-modal .entry-summary .qty-label {
    display: none;
}
#yith-quick-view-modal .woocommerce-product-gallery {
    float: none !important;
    margin-bottom: 0;
}
#yith-quick-view-modal .woocommerce-product-gallery a {
    pointer-events: none;
}
#yith-quick-view-modal .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    display: none;
}
#yith-quick-view-close {
    position: absolute;
    z-index: 2;
    top: 0;
    left: auto;
    right: 0;
    margin: 0;
    width: 36px;
    height: auto;
    font-size: 0;
    line-height: 0;
    color: #333;
    opacity: 1;
    border: none;
    background-color: #fff;
    text-align: center;
}
#yith-quick-view-close::before {
    display: block;
    font-family: "themify", sans-serif;
    content: "\e646";
    font-size: 17px;
    line-height: 36px;
}
#yith-quick-view-content div.images {
    width: 45%;
    float: left !important;
    opacity: 1 !important;
}
#yith-quick-view-content .onsale {
    top: 10px;
    right: auto;
    left: 10px;
    display: inline-block;
    position: absolute;
    z-index: 1;
}
#yith-quick-view-content div.summary {
    margin: 0;
    padding: 15px;
    width: 55%;
    float: left;
}
#yith-quick-view-modal div.entry-summary {
    overflow-y: auto;
}
#yith-quick-view-content .product > .entry-summary{
    max-height: 400px;
}
.yith-wcwl-add-to-wishlist .feedback {
    display: none;
}
#yith-quick-view-content .variations_form .variations td{
    border: none;
    vertical-align: middle;
}
#yith-quick-view-content .variations_form .variations td.label{
    display: table-cell;
    font-size: 100%;
    text-align: left;
    padding: 0;
}
#yith-quick-view-content .variations_form .attribute-select{
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
}
#yith-quick-view-content .woocommerce-variation-add-to-cart{
    margin-top: 12px;
}
#yith-quick-view-content .variations_form .reset_variations{
    display: none !important;
}
#yith-quick-view-content .posted_in,
#yith-quick-view-content .tagged_as{
    display: block;
}
#yith-quick-view-content .entry-summary .product_meta{
    margin-bottom: 0;
    font-size: 14px;
}
#yith-quick-view-content .product_meta > span{
    color: #333;
}
#yith-quick-view-content .product_meta > span span,
#yith-quick-view-content .product_meta > span a{
    color: #666;
    font-weight: normal;
}
#yith-quick-view-content .entry-summary .cart{
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
#yith-quick-view-close::before{
    font-weight: bold;
}
#yith-quick-view-content .product-cat{
    color: #888;
}
#yith-quick-view-content .entry-summary .product_title {
    line-height: 25px;
    margin-top: 0;
    font-size: 25px;
    margin-bottom: 8px;
}
#yith-quick-view-content .entry-summary .price{
    margin-bottom: 10px;
    max-width: inherit;
}
#yith-quick-view-content .entry-summary .woocommerce-product-details__short-description{
    margin-bottom: 0;
}
@media (max-width: 767px) {
    #yith-quick-view-modal .yith-wcqv-wrapper{
        width: 600px!important;
    }
    #yith-quick-view-modal .entry-summary .single_add_to_cart_button{
        margin-bottom: 10px;
    }
}
@media (max-width: 640px) {
    #yith-quick-view-modal .yith-wcqv-wrapper {
        width: 320px!important;
    }
    #yith-quick-view-modal #yith-quick-view-content label {
        color: inherit;
    }
    #yith-quick-view-content div.images,
    #yith-quick-view-content div.summary {
        margin: 0 auto;
        width: 100%;
        float: none !important;
    }
    #yith-quick-view-content div.images {
        max-width: 380px;
    }
    #yith-quick-view-modal .yith-wcqv-wrapper {
        height: 60vh !important;
    }
    #yith-quick-view-modal #yith-quick-view-content {
        overflow-y: auto;
    }
    #yith-quick-view-modal #yith-quick-view-content > .product,
    #yith-quick-view-modal #yith-quick-view-content > * > .product {
        position: relative;
    }
    #yith-quick-view-modal div.entry-summary {
        z-index: 1;
        position: static;
    }
}
@media (max-width: 600px) {
    body.admin-bar #yith-quick-view-modal {
        top: 0;
    }
}
@media (max-width: 479px) {
    #yith-quick-view-modal .yith-wcqv-wrapper {
        width: 300px!important;
    }
    #yith-quick-view-modal .yith-wcqv-wrapper {
        height: 60vh !important;
    }
    #yith-quick-view-modal div.entry-summary {
        padding: 15px;
    }
    #yith-quick-view-modal div.entry-summary .variations .data-val {
        margin-left: -7px;
        margin-right: -7px;
    }
    #yith-quick-view-modal div.entry-summary .variations .data-val a {
        margin-left: 7px;
        margin-right: 7px;
    }
}
.add-to-cart a.added,
.ovic_products_style2 .product-info > .button.added,
.ovic-product.style1 .content .price-container > a.button.added,
.ovic-product.style3 .content .price-container > a.added {
    display: none !important;
}
a.yith-wcqv-button .blockUI.blockOverlay {
    z-index: 8 !important;
    cursor: wait !important;
    background: none !important;
    opacity: 1 !important;
    text-align: center;
    height: 30px !important;
    margin: auto !important;
    top: 0 !important;
    bottom: 0 !important;
}
a.yith-wcqv-button .blockUI.blockOverlay::before {
    display: block;
    font-family: "FontAwesome", sans-serif;
    content: "\f110";
    font-size: 20px;
    line-height: 20px;
    margin-top: 4px;
    -webkit-animation: fa-spin 1.5s infinite linear;
    -o-animation: fa-spin 1.5s infinite linear;
    animation: fa-spin 1.5s infinite linear;
}
.product-item .yith-wcqv-button {
    background-color: #f4f4f4;
    padding: 0 25px;
    color: #333;
    font-size: 14px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 145px;
    z-index: 10;
    display: block;
    text-align: center;
    font-weight: 400;
    line-height: 41px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item .yith-wcqv-button:before {
    font-family: 'abcicon' !important;
    content: "\e9ca";
    font-size: 15px;
    color: #555555;
    vertical-align: top;
    margin-right: 5px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item .yith-wcqv-button:hover,
.product-item .yith-wcqv-button:focus,
.product-item .yith-wcqv-button:hover:before,
.product-item .yith-wcqv-button:focus:before{
    color: #fff;
}
.yith-wcwl-add-to-wishlist .yith-wcwl-add-button > img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 20px !important;
    height: 20px !important;
}
.product-item .product-thumb{
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-item .thumb-link {
    width: 100%;
    display: block;
    text-align: center;
    position: relative;
    transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    -webkit-transition: all 0.5s linear 0s;
}
.product-item .second-image{
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
}
.product-inner:hover .second-image{
    opacity: 1;
    visibility: visible;
}
.product-item .clear {
    display: none !important;
}
.flash>*{
    position: absolute;
    top: 0;
    left: 0;
    text-transform: uppercase;
    z-index: 10;
    display: block;
    font-weight: bold;
    font-size: 12px;
    color: #fffffe;
    background-color: #c72929;
    line-height: 23px;
    padding:0 9px;
    border-radius: 3px;
}
.flash>.onsale{
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    background-color: #dc2400;
    bottom: 0;
    top: auto;
    right: 0;
    left: auto;
    line-height: 67px;
    border-radius: 50%;
    border-top-left-radius: 0;
    padding: 0;
    min-width: 67px;
    text-align: center;
}
.product-item .product-thumb img {
    margin: 0 auto;
}
.product-item .product-name {
    font-size: 15px;
    color: #333;
    line-height: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 14px;
    margin-bottom: 11px;
}
.product-item .price,
.entry-summary .price {
    font-size: 20px;
    color: #0074bd;
    font-weight: 500;
    display: block;
}
.product-item .price ins,
.entry-summary .price ins {
    text-decoration: none;
    margin-right: 9px;
    float: left;
}
.product-item .price del {
    font-weight: normal;
    font-size: 14px;
    color: #999;
    vertical-align: middle;
}
.padding-inner-10 .product-inner{
    padding-left: 10px!important;
    padding-right: 10px!important;
}
.padding-inner-20 .product-inner{
    padding-left: 20px!important;
    padding-right: 20px!important;
}
.padding-inner-30 .product-inner{
    padding-left: 30px!important;
    padding-right: 30px!important;
}
.padding-inner-40 .product-inner{
    padding-left: 40px!important;
    padding-right: 40px!important;
}
.padding-inner-50 .product-inner{
    padding-left: 50px!important;
    padding-right: 50px!important;
}
.padding-inner-60 .product-inner{
    padding-left: 60px!important;
    padding-right: 60px!important;
}
.add-to-cart a.wc-forward:after,
.compare-button a.added:after,
.group-button .yith-wcwl-add-to-wishlist>.yith-wcwl-wishlistaddedbrowse>a:after,
.group-button .yith-wcwl-add-to-wishlist>.yith-wcwl-wishlistexistsbrowse>a:after{
    opacity: 0.3;
}
.compare-button a.added,
.compare-button a.added:hover,
.group-button .yith-wcwl-add-to-wishlist>.yith-wcwl-wishlistaddedbrowse>a,
.group-button .yith-wcwl-add-to-wishlist>.yith-wcwl-wishlistaddedbrowse>a:hover,
.group-button .yith-wcwl-add-to-wishlist>.yith-wcwl-wishlistexistsbrowse>a,
.group-button .yith-wcwl-add-to-wishlist>.yith-wcwl-wishlistexistsbrowse>a:hover{
    background-color: #999!important;
    opacity: 0.3;
}
/*----- PRODUCT STYLE 01 -----*/
.group-button .inner{

}
.group-button .inner>*{
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: relative;
}
.group-button .inner>*:first-child{
    margin-right: 2px;
}
.group-button .inner>*:not(.add-to-cart) a,
.entry-summary .compare,
.entry-summary .yith-wcwl-add-to-wishlist>div>a{
    width: 30px;
    height: 30px;
    font-size: 0;
    border-radius: 4px;
    text-align: center;
    line-height: 30px;
    display: block;
    background-color: #0074bd;
    color: #fff;
    padding: 0;
}
.group-button .inner>*:not(.add-to-cart) a:hover{
    background-color: #999;
}
.group-button .inner .add-to-cart{
    float: right;
}
.group-button .inner .add-to-cart a{
    line-height: 100%;
    background-color: transparent;
    padding: 0;
    color: #0074bd;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    text-transform: uppercase;
}
.group-button .inner .add-to-cart a:hover,
.group-button .inner .add-to-cart a:focus{
    background-color: transparent!important;
}
.group-button .inner .add-to-cart a:before{
    content: '\e9c5';
    font-family: 'abcicon' !important;
    font-size: 17px;
    margin-right: 6px;
    display: inline-block;
}
.group-button .inner>*:not(.add-to-cart) a:before,
.entry-summary .compare:before,
.entry-summary .yith-wcwl-add-to-wishlist>div>a:before{
    content: '\f004';
    font-family: 'abcicon' !important;
    color: #fff;
    font-size: 16px;
}
.group-button .inner .compare-button a:before,
.entry-summary .compare:before{
    content: '\e9bb';
}
.product-item.style-1{
    position: relative;
}
.product-item.style-1:hover{
    z-index: 100;
}
.product-item.style-1 .product-inner{
    padding: 30px 30px 3px;
}
.product-item.style-1 .button.loading::before{
    opacity: 0;
    visibility: hidden;
}
.product-item.style-1 .button.loading::after{
    right: auto;
    left: -4px;
    line-height: 17px;
}
/*----- PRODUCT STYLE 02 -----*/
.product-item.style-2 .product-thumb{
    margin-bottom: 0;
    float: left;
    max-width: 70px;
    margin-right: 20px;
}
.product-item.style-2 .product-info{
    overflow: hidden;
}
.product-item.style-2 .price{
    font-size: 16px;
}
.product-item.style-2 .product-name{
    font-weight: 500;
    font-size: 16px;
    color: #b2b2b1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 5px;
    margin-bottom: 6px;
}
/*----- PRODUCT STYLE 03 -----*/
.product-item.style-3 .product-inner {
    overflow: hidden;
    padding: 10px;
    background-color: #fff;
}
.product-item.style-3 .product-thumb{
    margin-bottom: 0;
    float: left;
    max-width: 165px;
    margin-right: 30px;
}
.product-item.style-3 .product-info{
    overflow: hidden;
    margin-top: 43px;
}
.product-item.style-3 .price{
    font-size: 20px;
}
.product-item.style-3 .product-name{
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #333;
    border: none;
    padding-bottom: 5px;
    margin-bottom: 18px;
}
.product-item.style-3 .flash>.onsale{
    font-size: 16px;
    line-height: 45px;
    min-width: 45px;
}
/*----- PRODUCT STYLE 04 -----*/
.ovic-products.style-4 .ovic-title{
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.ovic-products.style-4 .description{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    position: absolute;
    bottom: 33px;
    padding-top: 20px;
    max-width: 370px;
    border-top: 1px solid #cccccc;
}
.product-item.style-4 .product-info{
    display: inline-block;
    width: 500px;
    vertical-align: top;
    padding-right: 130px;
    float: left;
}
.product-item.style-4 .product-name{
    font-size: 42px;
    line-height: 46px;
    font-weight: 500;
    padding-bottom: 40px;
}
.product-item.style-4 .price{
    font-size: 24px;
    margin-bottom: 31px;
}
.product-item.style-4 .variations .label{
    display: block;
    margin-bottom: 7px;
}
.product-item.style-4 .variations label{
    font-size: 14px;
    font-weight: normal;
    color: #555;
}
.product-item.style-4 .variations .data-val a{
    border-radius: 50%;
    border: none;
    margin: 2px 5px;
}
.product-item.style-4 .variations .data-val a::before{
    display: none;
}
.product-item.style-4 .variations .data-val a::after{
    display: inline-block;
    content: "\f00c";
    font-family:FontAwesome;
    opacity: 0;
    visibility: hidden;
    font-size: 14px;
    color: #cecece;
}
.product-item.style-4 .variations .data-val a.active::after,
.product-item.style-4 .variations .data-val a:hover:after{
    opacity: 1;
    visibility: visible;
}
.product-item.style-4 .quantity{
    display: none!important;
}
.product-item.style-4 .single_add_to_cart_button,
.product-item.style-4 .wc-forward{
    display: block;
    text-transform: uppercase;
    padding:0 20px;
    width: 100%;
    margin-top: 16px;
    margin-bottom: 30px;
}
.product-item.style-4 .single_add_to_cart_button.added{
    display: none;
}
.product-item.style-4 .single_add_to_cart_button:before{
    content: '\e8cc';
    font-family: 'abcicon' !important;
    font-size: 20px;
    margin-right: 6px;
    display: inline-block;
    vertical-align: middle;
}
.product-item.style-4 .single_add_to_cart_button.loading::after{
    line-height: 46px;
}
.product-item.style-4 .product-thumb{
    display: inline-block;
    width: calc( 100% - 500px );
    vertical-align: top;
    margin-top: -35px;
}
.product-item.style-4 .product-thumb .flash{
    display: none;
}
.ovic-slider-products .second-thumbnail,
.product-item.style-4 .product-thumb .gallery-dots {
    position: absolute;
    top: 10px;
    max-width: 470px;
    margin: 0 auto;
    /*left: 0;*/
    right: 100px;
    z-index: 10;
}
.ovic-slider-products,
.product-item.style-4 .gallery-dots .slick-slide,
.ovic-slider-products .second-thumbnail .slick-slide{
    position: relative;
}
.ovic-slider-products .second-thumbnail .slick-slide.slick-current:after,
.product-item.style-4 .gallery-dots .slick-current:after{
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    content: '';
    display: inline-block;
}
.ovic-slider-products .second-thumbnail img,
.product-item.style-4 .gallery-dots .slick-slide img{
    border: 1px solid #cecece;
}
.ovic-slider-products .slick-slider .slick-arrow{
    display: none!important;
}
/*----- PRODUCT STYLE 05 -----*/
.product-item.style-5 .product-inner{
    overflow: hidden;
    position: relative;
}
.product-item.style-5 .product-thumb{
    width: 100px;
    margin-bottom: 0;
    float: left;
    margin-right: 20px;
    position: static;
}
.product-item.style-5 .onnew{
    display: none;
}
.product-item.style-5 .product-info{
    overflow: hidden;
    margin-top: 14px;
    padding-right: 65px;
}
.product-item.style-5 .flash>.onsale{
    font-size: 16px;
    min-width: 45px;
    line-height: 45px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}
/*----- PRODUCT STYLE 06 -----*/
.ovic-products.style-6 .ovic-title{
    margin-bottom: 35px;
}
.ovic-products.style-6 .slick-slider .slick-arrow{
    top: -65px!important;
}
.product-item.style-6 .product-thumb{
    max-width: 180px;
    margin: 0 auto;
}
.product-item.style-6 .product-inner {
    text-align: center;
    background-color: #fff;
}
/*----- PRODUCT STYLE 07 -----*/
.ovic-products.style-7 .ovic-title{
    margin-bottom: 37px;
}
.ovic-products.style-7 .slick-slider .slick-arrow{
    top: -63px;
}
.product-item.style-7 .product-name{
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 9px;
}
.product-item.style-7 .price{
    margin-bottom: 22px;
    font-size: 24px;
}
.product-item.style-7 .add-to-cart a{
    display: block;
    text-transform: uppercase;
}
.product-item.style-7 .add-to-cart{
    margin-bottom: 30px;
}
.product-item.style-7 .button.loading::after{
    line-height: 45px;
}
.ovic-countdown {
    display: inline-block;
}
.ovic-countdown > span {
    margin: 0 0 15px 0;
    float: left;
    background-color: #fff;
    position: relative;
}
.ovic-countdown > span:not(:last-child){
    margin-right: 32px;
}
.ovic-countdown > span:not(:last-child):after{
    position: absolute;
    right: -20px;
    top: 12px;
    content: ':';
    display: inline-block;
    color: #7f7f7f;
    font-size: 40px;
}
.ovic-countdown > span:last-child {
    margin-right: 0;
}
.ovic-countdown > span .number {
    border-radius: 6px;
    display: block;
    font-size: 40px;
    color: #333;
    font-weight: 300;
    border: 3px solid #cecece;
    min-width: 60px;
    height: 56px;
    text-align: center;
    padding:0 8px;
    padding-top: 11px;
}
.ovic-countdown > span .text {
    font-size: 14px;
    display: block;
    color: #777;
    text-transform: uppercase;
    text-align: center;
}
.ovic-group-products .ovic-countdown > span:not(:first-child) .number,
.product-item.style-4 .ovic-countdown > span:not(:first-child) .number,
.product-item.style-7 .ovic-countdown > span:not(:first-child) .number{
    width: 60px;
    padding:11px 0 0;
}
.ovic-group-products .ovic-countdown > span{
    background-color: transparent;
}
.ovic-group-products .ovic-countdown > span .number{
    background-color: #fff;
}
/*----- PRODUCT STYLE 08 -----*/
.product-item.style-8 .product-inner{
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    font-family: 'Work Sans', san-serif;
    position: relative;
    padding-bottom: 22px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item.style-8 .product-thumb{
    margin-bottom: 27px;
}
.product-item.style-8 .group-button .inner{
    position: absolute;
    top: 20px;
    right: 9px;
    z-index: 5;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item.style-8 .group-button .inner>*{
    display: block;
    margin: 0 0 9px;
}
.product-item.style-8 .group-button .inner>*:not(.add-to-cart) a{
    background-color: #e9e9e9;
    line-height: 36px;
    width: 36px;
    height: 36px;
    color: #222;
    border-radius: 50%;
}
.product-item.style-8 .yith-wcqv-button{
    position: static;
    opacity: 1!important;
    visibility: visible!important;
    margin: 0 auto;
    padding: 0;
    font-size: 0;
    max-width: inherit;
    background-color: #e9e9e9;
    line-height: 36px;
    width: 36px;
    border-radius: 50%;
    border: none;
    transform:none;
}
.product-item.style-8 .yith-wcqv-button:before,
.product-item.style-8 .group-button .inner>*:not(.add-to-cart) a:before{
    margin: 0;
    content: '\e813';
    font-family: 'Linearicons-Free'!important;
    font-size: 16px;
    color: #222;
    font-weight: bold;
}
.product-item.style-8 .yith-wcqv-button:hover:before,
.product-item.style-8 .group-button .inner>*:not(.add-to-cart) a:hover:before{
    color: #fff;
}
.product-item.style-8 .yith-wcqv-button:before{
    content: '\e86f';
}
.product-item.style-8 .group-button .inner .compare-button a:before{
    content: '\e862';
}
.product-item.style-8 .flash>*{
    top: 9px;
    left: 9px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    min-width: inherit;
    background-color: #fedc19;
    text-transform: capitalize;
    z-index: 3;
    padding: 0;
}
.product-item.style-8 .flash>.onsale{
    color: #fff;
}
.product-item.style-8 .flash>:nth-child(2){
    top: 39px;
    z-index: 2;
}
.product-item.style-8 .product-info{
    padding:0 13px;
}
.product-item.style-8 .product-name{
    font-size: 16px;
    line-height: 22px;
    color: #222;
    border: none;
    padding: 0;
    margin-bottom: 12px;
}
.product-item.style-8 .rating-wapper {
    margin-bottom: 2px;
}
.product-item.style-8 .star-rating{
    color: #fedc19;
}
.product-item.style-8 .star-rating::before,
.product-item.style-8 .star-rating > span::before{
    content: "\f006\f006\f006\f006\f006";
    font-size: 12px;
}
.product-item.style-8 .star-rating > span::before{
    content: "\f005\f005\f005\f005\f005";
    color: #fedc19;
}
.product-item.style-8 .rating-wapper .review{
    font-size: 14px;
    color: #999;
    line-height: 14px;
    margin-left: 10px;
}
.product-item.style-8 .price{
    font-size: 18px;
    font-weight: 600;
    color: #222;
}
.product-item.style-8 .price del{
    font-size: 15px;
    color: #999;
    display: inline-block;
    margin-bottom: 2px;
}
.product-item.style-8 .add-to-cart{
    position: absolute;
    right: 9px;
    bottom: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item.style-8 .add-to-cart a{
    font-size: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
}
.product-item.style-8 .add-to-cart a.wc-forward{
    background-color: #999!important;
    opacity: 0.3;
}
.product-item.style-8 .add-to-cart a:before{
    content: '\e82e';
    font-family: 'Linearicons-Free'!important;
    font-size: 16px;
    color: #fff;
}
.product-item.style-8 .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > img{
    top: 7px;
}
.title-category ul{
    list-style: none;
    margin-bottom: 7px;
    padding: 0;
    line-height: 100%;
}
.title-category ul li{
    display: inline-block;
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
}
.title-category ul li:not(:last-child) a:after{
    display: inline-block;
    content: ',';
}
/*----- PRODUCT STYLE 09 -----*/
.product-item.style-9 .product-inner{
    padding-bottom: 0;
    display: inline-block;
    width: 100%;
}
.product-item.style-9 .product-inner:hover,
.product-item.style-10 .product-inner:hover{
    border-color: #f0f0f0!important;
}
.product-item.style-9 .product-inner>*{
    display: inline-block;
    vertical-align: middle;
}
.product-item.style-9 .product-info{
    max-width: 210px;
    padding:20px 10px 0 20px;
}
.product-item.style-9 .add-to-cart{
    z-index: 2;
}
.product-item.style-9 .product-thumb{
    max-width: 180px;
    margin: 0;
    float: right;
}
/*----- PRODUCT STYLE 10 -----*/
.ovic-products.style-10 .slick-slider .slick-list{
    margin:0 -2px;
    padding:0 2px;
}
.product-item.style-10 .product-inner{
    padding-bottom: 7px;
}
.product-item.style-10 .product-info{
    padding:0 28px;
}
.product-item.style-10 .product-name{
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 11px;
}
.product-item.style-10 .price{
    color: #222!important;
    font-weight: 600;
    font-size: 40px;
    line-height: 36px;
}
.product-item.style-10 .price ins{
    color: #222!important;
}
.product-item.style-10 .title-category ul{
    margin-bottom: 4px;
}
.product-item.style-10 .rating-wapper{
    margin-bottom: 14px;
}
.product-item.style-10 .product-countdown{
    margin:0 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 10px;
    padding-top: 19px;
}
.product-item.style-10 .product-countdown .title{
    font-size: 14px;
    color: #222;
    margin-bottom: 1px;
    display: inline-block;
    width: 100%;
}
.product-item.style-10 .ovic-countdown > span:not(:last-child){
    margin-right: 30px;
}
.product-item.style-10 .ovic-countdown > span:not(:last-child):after{
    color: #999999;
    font-size: 30px;
}
.product-item.style-10 .ovic-countdown > span:last-child {
    margin-right: 0;
}
.product-item.style-10 .ovic-countdown > span .number {
    font-size: 27px;
    font-weight: 600;
    border: 1px solid #cccccc;
    min-width: 60px;
    height: 60px;
    padding-top: 15px;
    background-color: #f8f8f8;
}
.product-item.style-10 .ovic-countdown > span .text {
    text-transform: capitalize;
}
/*----- PRODUCT GROUP -----*/
.ovic-group-products .woocommerce-product-gallery__wrapper,
.ovic-group-products .group_table{
    display: none;
}
.ovic-group-products .head{
    width: 400px;
    padding-right: 30px;
    display: inline-block;
    vertical-align: top;
    float: left;
    margin-top: -6px;
}
.ovic-group-products .head .title{
    font-weight: 500;
    font-size: 28px;
    color: #333;
    margin-bottom: 24px;
}
.ovic-group-products .head button,
.ovic-group-products .head .wc-forward{
    display: block;
    padding:0 20px;
    width: 100%;
    margin-bottom: 30px;
}
.ovic-group-products .head .button.added{
    display: none!important;
}
.ovic-group-products .head .button.loading::after{
    line-height: 45px;
}
.ovic-group-products .products-list-item{
    width: calc( 100% - 400px );
    display: inline-block;
    vertical-align: top;
}
.ovic-group-products .products-list-item .product-item{
    background-color: #fff;
}
.ovic-group-products .rating-wapper{
    display: none;
}
.ovic-group-products .price{
    display: inline-block;
}
.ovic-group-products .price ins{
    margin-right: 6px;
}
.ovic-group-products .products-list-item .product-inner{
    padding: 10px 10px 21px;
}
.ovic-group-products .product-info{
    padding:0 10px;
}
.ovic-group-products .flash>.onsale{
    min-width: 45px;
    line-height: 45px;
    font-size: 16px;
}
.ovic-group-products .description i,
.ovic-products.style-4 .description i{
    color: #cecece;
    font-size: 24px;
    margin-right: 6px;
    vertical-align: middle;
}
.ovic-group-products .description{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 0;
    padding-top: 20px;
    margin-top: 6px;
    color: #555;
    border-top: 1px solid #cccccc;
}
/*----- PRODUCT LIST -----*/
.shop-page ul.products .product-item.list{
    margin-bottom: 0;
}
.product-item.list .product-inner{
    overflow: hidden;
    padding:30px 0;
    border-top: 1px solid #dce0e2;
}
.product-item.list:first-child .product-inner{
    border-top: none!important;
}
.product-item.list .product-thumb{
    width: 230px;
    float: left;
    margin-right: 40px;
    margin-bottom: 0;
}
.product-item.list .product-info{
    overflow: hidden;
}
.product-item.list .product-name{
    font-size: 20px;
    border: none;
    padding-bottom: 5px;
}
.product-item.list .rating-wapper {
    margin-bottom: 8px;
}
.product-item.list .des{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 17px;
}
.product-item.list .price{
    margin-bottom: 23px;
}
.product-item.list .yith-wcwl-add-to-wishlist{
    margin-right: 1px;
}
.product-item.list .add-to-cart a.button.loading::before{
    opacity: 0;
    visibility: hidden;
}
.product-item.list .add-to-cart a.button.loading::after{
    line-height: 17px;
    left: -4px;
    right: auto;
}
/*----- STAR RATING -----*/
.star-rating {
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #999999;
    overflow: hidden;
}
.star-rating::before,
.star-rating > span::before {
    display: inline-block;
    float: left;
    font-family: 'abcicon' !important;
    content: "\f006\f006\f006\f006\f006";
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.1em;
}
.star-rating > span::before {
    color: #e9b821;
    content: "\f005\f005\f005\f005\f005";
}
.star-rating > span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
    line-height: 0;
    background-color: #fff;
}
.rating-wapper .review {
    line-height: 20px;
    vertical-align: top;
    margin-top: 2px;
    display: inline-block;
    margin-left: 5px;
}
.product-item.style-1 .rating-wapper {
    display: none;
}
@media (min-width: 1200px) {
    .product-item .product-inner:not(:hover) .yith-wcqv-button{
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .product-item.style-1 .product-name{
        min-height: 54px;
    }
    .product-item.style-1 .product-inner:hover{
        z-index: 10;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        position: relative;
    }
    .product-item.style-1 .product-inner .price{
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }
    .product-item.style-1 .product-inner:hover .price{
        opacity: 0;
        visibility: hidden;
    }
    .product-item.style-1 .product-inner .inner:before {
        content: '';
        display: inline-block;
        position: absolute;
        top: -4px;
        height: 10px;
        width: 100%;
        left: 0;
        background-color: #fff;
    }
    .product-item.style-1 .product-inner:not(:hover) .inner {
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    .product-item.style-1 .product-inner .inner {
        position: absolute;
        bottom: -32px;
        bottom: -29px;
        left: 0;
        right: 0;
        padding: 15px 30px 22px;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
        background-color: #fff;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        z-index: 11;
    }
    .product-item.style-6 .product-inner:hover {
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }
    .product-item.style-8 .product-inner:not(:hover) .add-to-cart,
    .product-item.style-8 .product-inner:not(:hover) .group-button .inner{
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateX(10px);
        -moz-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
        transform: translateX(10px);
    }
    .product-item.style-8 .product-inner:not(:hover) .second-image{
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
        transform: translateX(-10px);
    }
}
@media(max-width: 1499px){
    .product-item.style-9 .product-thumb{
        max-width: 158px;
    }
    .product-item.style-9 .product-info{
        padding-bottom: 10px;
    }
    .product-item.style-10 .product-info{
        padding:0 15px;
    }
    .product-item.style-10 .product-countdown{
        margin:0 15px;
    }
}
@media (max-width: 1199px) {
    .padding-inner-20 .product-inner,
    .padding-inner-30 .product-inner,
    .padding-inner-40 .product-inner,
    .padding-inner-50 .product-inner,
    .padding-inner-60 .product-inner{
        padding-left: 10px!important;
        padding-right: 10px!important;
    }
    .product-item .yith-wcqv-button{
        font-size: 0;
        left: auto;
        top: 0;
        transform: none;
        padding: 0 6px;
        line-height: 27px;
    }
    .product-item.style-6 .yith-wcqv-button{
        display: none;
    }
    .flash>.onsale{
        font-size: 15px;
        line-height: 40px;
        min-width: 40px;
    }
    .product-item .yith-wcqv-button:before{
        margin: 0;
    }
    .product-item.style-1 .product-inner{
        padding: 15px;
    }
    .box-layout-4 .product-item.style-1 .product-inner{
        padding-bottom: 15px;
    }
    .product-item.style-1 .product-inner .price{
        margin-bottom: 8px;
        margin-top: 8px;
    }
    .product-item.style-1 .group-button .inner>*:first-child,
    .product-item.style-1 .product-inner .compare-button{
        margin-right: 1px;
    }
    .product-item.style-1 .product-inner .inner{
        padding-left: 0!important;
        padding-right: 0!important;
    }
    .product-item.style-1 .group-button .inner .add-to-cart{
        float: none;
    }
    .product-item.style-1 .product-inner .add-to-cart a{
        width: 30px;
        height: 30px;
        font-size: 0;
        border-radius: 4px;
        text-align: center;
        line-height: 30px;
        display: block;
        background-color: #0074bd;
        color: #fff;
        padding: 0;
    }
    .product-item.style-1 .product-inner .add-to-cart a:hover{
        color: #fff;
    }
    .product-item.style-1 .group-button .inner .add-to-cart a:before{
        margin-right: 0;
        font-size: 16px;
    }
    .product-item.style-1 .button.loading::after{
        left: 0;
        right: 0;
        line-height: 30px;
    }
    .product-item.style-4 .product-info{
        width: 400px;
        padding-right: 30px;
    }
    .product-item.style-4 .product-name{
        font-size: 30px;
        line-height: 30px;
        padding-bottom: 10px;
    }
    .product-item.style-4 .price{
        margin-bottom: 15px;
    }
    .product-item.style-4 .product-thumb{
        width: calc( 100% - 400px );
    }
    .ovic-slider-products .second-thumbnail{
        right: 0;
    }
    .product-item.style-7 .ovic-countdown > span,
    .ovic-group-products .ovic-countdown > span {
        margin: 0 0 10px 0;
    }
    .product-item.style-7 .ovic-countdown > span:not(:last-child),
    .ovic-group-products .ovic-countdown > span:not(:last-child){
        margin-right: 10px;
    }
    .product-item.style-7 .ovic-countdown > span:not(:last-child):after,
    .ovic-group-products .ovic-countdown > span:not(:last-child):after{
        display: none;
    }
    .product-item.style-7 .ovic-countdown > span .number,
    .ovic-group-products .ovic-countdown > span .number {
        font-size: 20px;
        min-width: 40px;
        height: 40px;
        padding:0 4px;
        padding-top: 3px;
    }
    .product-item.style-7 .ovic-countdown > span .text,
    .ovic-group-products .ovic-countdown > span .text {
        font-size: 12px;
    }
    .product-item.style-7 .ovic-countdown > span:not(:first-child) .number,
    .ovic-group-products .ovic-countdown > span:not(:first-child) .number{
        width: 40px;
        padding:3px 0 0;
    }
    .ovic-group-products .head{
        width: 350px;
        padding-right: 20px;
    }
    .ovic-group-products .products-list-item {
        width: calc( 100% - 350px );
    }
    .product-item.style-10 .price{
        font-size: 30px;
        line-height: 100%;
    }
    .product-item.style-10 .product-countdown{
        padding-top: 10px;
    }
    .product-item.style-10 .ovic-countdown > span:not(:last-child){
        margin-right: 10px;
    }
    .product-item.style-10 .ovic-countdown > span:not(:last-child):after{
        display: none;
    }
    .product-item.style-10 .ovic-countdown > span .number {
        font-size: 18px;
        min-width: 40px;
        height: 40px;
        padding-top: 4px;
    }
    .product-item.style-10 .ovic-countdown > span .text {
        font-size: 10px;
        line-height: 100%;
        margin-top: 2px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .shop-page ul.products .product-item.list{
        padding: 20px;
    }
    .product-item.list .product-thumb{
        margin-right: 20px;
    }
    .product-item.list .product-name{
        padding-bottom: 0;
    }
    .product-item.list .rating-wapper{
        margin-bottom: 0;
    }
    .product-item.list .des{
        margin-bottom: 10px;
    }
    .product-item.list .price {
        margin-bottom: 15px;
    }
    .product-item.style-3 .product-thumb{
        max-width: 135px;
        margin-right: 10px;
    }
    .product-item.style-3 .product-info{
        margin-top: 0;
    }
    .product-item.style-3 .product-name{
        margin-bottom: 5px;
    }
}
@media (max-width: 991px) {
    .shop-page ul.products .product-item.list{
        padding: 20px;
    }
    .product-item.list .product-thumb{
        margin-right: 20px;
    }
    .product-item.style-3 .product-thumb{
        max-width: 145px;
        margin-right: 10px;
    }
    .product-item.style-3 .product-info{
        margin-top: 0;
        padding-right: 5px;
    }
    .product-item.style-3 .product-name{
        margin-bottom: 5px;
    }
    .product-item.style-5 .product-info{
        padding-right: 50px;
    }
    .ovic-products.style-4 .ovic-title{
        margin-bottom: 10px;
    }
    .ovic-slider-products .second-thumbnail{
        max-width: 400px;
    }
    .product-item.style-4 .product-info{
        width: 300px;
    }
    .product-item.style-4 .product-thumb{
        width: calc( 100% - 300px );
    }
    .product-item.style-4 .product-name {
        font-size: 20px;
        line-height: 20px;
        border: none;
        margin-bottom: 0;
    }
    .product-item.style-4 .price{
        margin-bottom: 10px;
    }
    .ovic-products.style-4 .description{
        display: none;
    }
    .ovic-countdown > span {
        margin: 0 0 10px 0;
    }
    .ovic-countdown > span:not(:last-child){
        margin-right: 10px;
    }
    .ovic-countdown > span:not(:last-child):after{
        display: none;
    }
    .ovic-countdown > span .number {
        font-size: 20px;
        min-width: 40px;
        height: 40px;
        padding:0 4px;
        padding-top: 3px;
    }
    .ovic-countdown > span .text {
        font-size: 12px;
    }
    .product-item.style-4 .ovic-countdown > span:not(:first-child) .number,
    .product-item.style-7 .ovic-countdown > span:not(:first-child) .number{
        width: 40px;
        padding:3px 0 0;
    }
    .product-item.style-4 .single_add_to_cart_button{
        margin-top: 5px;
        margin-bottom: 20px;
    }
    .ovic-group-products .head{
        width: 300px;
    }
    .ovic-group-products .products-list-item {
        width: calc( 100% - 300px );
    }
}
@media (max-width: 767px) {
    .product-item.style-1 .group-button .inner>*:not(.add-to-cart),
    .product-item.style-1 .group-button .inner .add-to-cart a:before{
        display: none;
    }
    .product-item.style-1 .group-button .inner .add-to-cart{
        display: block;
    }
    .product-item.style-1 .product-inner .add-to-cart a{
        width: 100%;
        font-size: 14px;
        padding-top: 0;
        height: 31px;
    }
    .product-item.style-1 .product-name a,
    .ovic-group-products .product-item .product-name a{
        overflow: hidden;
        display: block;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .product-item.style-3 .product-thumb{
        max-width: 130px;
    }
    .product-item.style-7 .price{
        margin-bottom: 10px;
    }
    .product-item.style-7 .add-to-cart{
        margin-bottom: 20px;
    }
    .product-item.style-7 .add-to-cart a{
        line-height: 35px;
    }
    .ovic-group-products .head button,
    .ovic-group-products .head .wc-forward{
        line-height: 35px;
        margin-bottom: 20px;
    }
    .ovic-group-products .head .button.loading::after{
        line-height: 35px;
    }
    .ovic-group-products .head .title{
        margin-bottom: 15px;
    }
    .ovic-group-products .description{
        margin-top: 0;
    }
    .product-item.style-9 .product-info{
        max-width: inherit;
        display: block;
        padding: 20px;
    }
    .product-item.style-9 .product-thumb{
        max-width: 300px;
        margin: 0 auto;
        display: block;
        float: none;
    }
    .product-item.style-8 .group-button .inner{
        display: none!important;
    }
}
@media (max-width: 767px) and (min-width: 640px) {
    .ovic-group-products .head{
        width: 250px;
    }
    .ovic-group-products .products-list-item {
        width: calc( 100% - 250px );
    }
    .ovic-slider-products .second-thumbnail{
        max-width: 300px;
    }
}
@media (max-width: 640px) {
    .product-item .price{
        font-size: 18px;
    }
    .star-rating::before, .star-rating > span::before{
        font-size: 15px;
    }
    .product-item.list .product-thumb{
        width: 180px;
    }
    .product-item.list .product-name{
        padding-bottom: 0;
        margin-bottom: 5px;
        font-size: 16px;
        line-height: 16px;
    }
    .product-item.list .rating-wapper{
        margin-bottom: -6px;
    }
    .product-item.list .des{
        margin-bottom: 5px;
    }
    .product-item.list .price {
        margin-bottom: 5px;
    }
    .product-item.list .group-button .inner .add-to-cart{
        float: none;
    }
    .product-item .yith-wcqv-button,
    .product-item.list .group-button .inner>*:not(.add-to-cart),
    .product-item.list .rating-wapper .review{
        display: none;
    }
    .flash>.onsale,
    .ovic-group-products .flash>.onsale{
        bottom: auto;
        top: 0;
        font-size: 12px;
        border-radius: 3px;
        line-height: 23px;
        min-width:inherit;
        font-weight: bold;
        padding: 0 9px;
    }
    .product-item.style-3 .flash>.onsale{
        font-size: 12px;
        line-height: 23px;
    }
    .product-item.style-5 .flash>.onsale{
        top: 0;
        transform:none;
        font-size: 12px;
        line-height: 23px;
    }
    .ovic-slider-products .second-thumbnail{
        position: static;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .ovic-slider-products .primary-offer{
        text-align: center;
    }
    .product-item.style-4 .product-info,
    .product-item.style-4 .product-thumb{
        width: 100%;
        padding-right: 0;
        margin-top: 0;
        float: none;
    }
    .product-item.style-4 .price{
        display: table;
        margin: 0 auto;
        margin-bottom: 5px;
    }
    .product-item.style-4 .variations tbody,
    .product-item.style-4 .variations .value{
        display: block;
        text-align: center;
    }
    .product-item.style-4 .variations .label{
        display: none;
    }
    .product-item.style-4 .single_add_to_cart_button,
    .product-item.style-4 .wc-forward{
        max-width: 400px;
        line-height: 35px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .product-item.style-4 .single_add_to_cart_button.loading::after{
        line-height: 35px;
    }
    .ovic-group-products .product-info{
        padding: 0;
    }
    .ovic-group-products .head,
    .ovic-group-products .products-list-item {
        width: 100%;
        padding-right: 0;
    }
    .ovic-group-products .head{
        margin-bottom: 30px;
        text-align: center;
    }
    .product-item.style-1 .product-inner .add-to-cart a{
        height: auto;
    }
}
@media (max-width: 639px) and (min-width: 480px) {
    .product-item.style-3 .product-thumb{
        float: none;
        margin-right: 0;
        max-width: inherit;
    }
    .product-item.style-5 .product-thumb{
        width: auto;
        float: none;
        margin-right: 0;
    }
    .product-item.style-5 .product-info{
        padding-right: 0;
    }
}
@media(max-width: 479px){
    .shop-page ul.products .product-item.list{
        padding-left: 0;
        padding-right: 0;
    }
    .product-item.list .product-thumb{
        width: 150px;
    }
    .product-item.list .des,
    .product-item.style-1 .group-button .inner>*:not(.add-to-cart),
    .product-item.style-1 .group-button .inner .add-to-cart a:before{
        display: none;
    }
    .product-item.style-1 .product-inner .add-to-cart{
        display: inline-block;
        width: 100%;
    }
    .product-item.style-1 .product-inner .add-to-cart a{
        width: 100%;
        font-size: 14px;
        line-height: 36px;
    }
    .product-item.style-1 .product-name{
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .product-item.style-1 .product-inner{
        padding-left: 5px!important;
        padding-right: 5px!important;
    }
    .product-item .price ins{
        float: none;
    }
    .product-item.style-1 .button.loading::after{
        line-height: 35px;
    }
    .product-item.style-3 .product-inner{
        padding-left: 0;
        padding-right: 0;
    }
    .product-item.style-5 .product-info{
        padding-right: 0;
    }
    .product-item.style-5 .flash>.onsale{
        left: 0;
        right: auto;
    }
    .product-item.style-8 .product-thumb{
        text-align: center;
    }
}
@media(max-width: 360px){
    .product-item.list .product-thumb{
        width: 120px;
        margin-right: 10px;
    }
}
/*==========================================================================
PRODUCT SINGLE
===========================================================================*/
body.single-product .main-content > .product {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    position: relative;
}
/*----- GALLERY -----*/
.woocommerce-product-gallery::before,
.woocommerce-product-gallery::after {
    display: table;
    clear: both;
    content: '';
}
.woocommerce-product-gallery {
    display: inline-block;
    float: left;
    width: 670px;
    max-width: 100%;
    position: relative;
    margin-bottom: 30px;
}
.woocommerce-product-gallery__trigger {
    position: absolute;
    font-size: 0;
    line-height: 0;
    right: 10px;
    top: 10px;
    z-index: 1;
}
.single-thumb-horizontal .woocommerce-product-gallery__trigger,
.main-container:not(.no-sidebar) .woocommerce-product-gallery__trigger{
    bottom: auto;
    top: 10px;
}
.woocommerce-product-gallery__trigger::before {
    display: block;
    font-family: themify, sans-serif;
    content: "\e659";
    font-size: 16px;
    line-height: 1;
    padding: 10px;
    border: 1px solid;
    border-radius: 50%;
}
.woocommerce-product-gallery__trigger img {
    display: none !important;
}
.woocommerce-product-gallery__wrapper,
.flex-viewport {
    text-align: center;
}
/*----- SUMMARY -----*/
.entry-summary {
    display: inline-block;
    width: calc(100% - 670px);
    max-width: 100%;
    padding-left: 30px;
    margin-bottom: 25px;
    margin-top: -3px;
}
.entry-summary > .clear {
    display: none;
}
.flex-control-nav {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.flex-control-nav .slick-list {
    margin: -5px;
    padding: 5px;
}
.flex-control-nav .slick-slide img {
    cursor: pointer;
    margin: auto;
    width: 100%;
    border: 1px solid #cecece;
    position: relative;
}
.flex-control-nav .slick-arrow {
    width: 30px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    color: #000;
    position: absolute;
    text-align: center;
}
.flex-control-nav .slick-arrow.prev {
    top: calc(50% - 15px);
    left: -20px;
}
.flex-control-nav .slick-arrow.next {
    top: calc(50% - 15px);
    right: -20px;
}
.flex-control-nav .slick-arrow:hover {
    color: #fff !important;
}
.entry-summary .flash .onsale{
    right: auto;
    bottom: auto;
    min-width: auto;
    border-radius: 4px;
    line-height: 23px;
    font-size: 12px;
    padding:0 9px;
    font-weight: bold;
    top: 10px;
    left: 0;
}
/*----- SUMMARY GROUP-----*/
.entry-summary .product_title{
    line-height: 40px;
    font-weight: 500;
    margin-top: -4px;
}
.entry-summary .woocommerce-product-rating{
    display: inline-block;
    margin-right: 7px;
}
.entry-summary .stock{
    color: #999;
    display: inline-block;
}
.entry-summary .stock span{
    color: #c72929;
    font-weight: 500;
}
.entry-summary .rating-wapper{
    display: inline-block;
    vertical-align: middle;
}
.entry-summary .rating-wapper .review,
.entry-summary .woocommerce-review-link{
    font-size: 14px;
}
.entry-summary .woocommerce-review-link{
    vertical-align: top;
}
.entry-summary .price{
    font-size: 24px!important;
    margin-bottom: 29px;
    max-width: 370px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 10px;
}
.entry-summary .price del{
    font-size: 14px!important;
    color: #999;
    font-weight: 400;
}
.entry-summary .woocommerce-product-details__short-description{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 22px;
}
.entry-summary .variations tr{
    margin-bottom: 30px;
}
.entry-summary .variations label,
.entry-summary .qty-label{
    font-size: 16px;
    color: #333;
    min-width: 62px;
    font-weight: 500;
}
.entry-summary .quantity{
    display: inline-block;
    margin-right: 6px;
}
.entry-summary .qty-label{
    display: inline-block;
    min-width: 70px;
}
.entry-summary .variations .label::after{
    display: none;
}
.entry-summary .variations select{
    border: 2px solid #cecece;
    padding: 4px 30px 4px 10px;
    color: #777;
    border-radius: 4px;
    height: 43px;
    background-image: url('data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+EDtmh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS4zLWMwMTEgNjYuMTQ1NjYxLCAyMDEyLzAyLzA2LTE0OjU2OjI3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBSaWdodHM9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9yaWdodHMvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1wUmlnaHRzOk1hcmtlZD0iRmFsc2UiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDowMjgwMTE3NDA3MjA2ODExOERCQkY1MDAwMUQ2MkI4MSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEMzRCQjUxQ0QyMTIxMUU4OTNCREVCMEQwMTZDNDIwNSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEMzRCQjUxQkQyMTIxMUU4OTNCREVCMEQwMTZDNDIwNSIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1MzIFdpbmRvd3MiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0idXVpZDo3NjE1QTVBNzQ4QzZFODExOTE3NEU4Q0QxNjVDRkFCNyIgc3RSZWY6ZG9jdW1lbnRJRD0idXVpZDpFMTE4MkFERDk5QzRFODExODdBMUQwMTJDQTk2RTRBRCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pv/uACZBZG9iZQBkwAAAAAEDABUEAwYKDQAABZsAAAY9AAAGrgAABw7/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgMDAwMDAwMDAwMBAQEBAQEBAgEBAgICAQICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDA//CABEIACUAGQMBEQACEQEDEQH/xACeAAEAAgMAAAAAAAAAAAAAAAAABAkDBggBAQEBAAAAAAAAAAAAAAAAAAACARAAAQQBBQAAAAAAAAAAAAAAAzACBAYFACBAEQcRAAMAAQMCAwkBAAAAAAAAAAECAwQREgYABSFhExAgMEFRIiMzFQcSAQAAAAAAAAAAAAAAAAAAAEATAQEAAwEAAgMAAAAAAAAAAAERADAhMSBxEEGh/9oADAMBAAIRAxEAAAG/wAAiAlmMruuO2ore2gAAAf/aAAgBAQABBQLaE4JIgnBJHpzWvbM8ouGIlVqt4ipYRH//2gAIAQIAAQUCR7T/AP/aAAgBAwABBQLif//aAAgBAgIGPwIn/9oACAEDAgY/Aif/2gAIAQEBBj8C91b41pZEX12WjRayfQlTtohZW0YadLbHtLIi+7bWNFrNtrFG2uhKna6kHzHsZHUMrAqysAVZSNCrA+BBHWVxzgXKP4X+ecmtS3ecSm6vdOLbmNM2PE6k/jj3hW9PQ/oP3efWBx/seMMXtvb5enFNd9HZmNLZF6HxrkZFWLu3zJ+nwv/aAAgBAQMBPyH4koNFQ5LSVHiJjFgD1nV/IniHp+EAfMRCSuiPEzlyf80BnldoFWkTqpw6M9xK4EBp/9oACAECAwE/IdMevuLe6v/aAAgBAwMBPyHTH9eZ5q//2gAMAwEAAhEDEQAAEAABIJeAAAAP/9oACAEBAwE/EPi4mUenKTR6zomGzoXyZqYW5iBj8P5vmbWMoRJlcRwqAF+qUusH5uMESAENwhat/9oACAECAwE/ENInGn+/eIq91f/aAAgBAwMBPxDSlxx/z6wAQ81f/9k=');
    background-position: center right 3px;
}
.entry-summary .variations select[data-attributetype="box_style"]{
    display: block!important;
}
.entry-summary .variations .reset_variations{
    position: absolute;
    margin-left: 0;
}
.entry-summary .variations .data-val[data-attributetype="box_style"]{
    display: none!important;
}
.entry-summary .single_add_to_cart_button,
.entry-summary .added_to_cart.wc-forward{
    text-transform: uppercase;
    width:calc( 100% - 178px );
    padding:0 20px;
}
.entry-summary .single_add_to_cart_button.added{
    display: none!important;
}
.entry-summary .single_add_to_cart_button.button.loading::after{
    line-height: 45px;
}
.entry-summary form.cart{
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
    margin-bottom: 35px;
}
.entry-summary .product_meta{
    font-weight: 500;
    color: #333;
    font-size: 16px;
    margin-bottom: 37px;
}
.entry-summary .product_meta>*{
    display: block;
}
.entry-summary .ovic-share-socials {
    margin: 0 -8px;
    font-size: 0;
    line-height: 0;
    margin-bottom: 20px;
}
.entry-summary .ovic-share-socials > * {
    display: inline-block;
    vertical-align: top;
    margin: 0 8px;
}
.entry-summary .compare,
.entry-summary .yith-wcwl-add-to-wishlist{
    display: inline-block!important;
    margin: 0;
    position: relative;
}
.entry-summary form.grouped_form .qty-label{
    display: none;
}
.entry-summary form.grouped_form .quantity{
    margin-bottom: 0;
    margin-right: 0;
}
.entry-summary form.grouped_form .quantity .control{
    width: 95px;
}
.entry-summary form.grouped_form .woocommerce-grouped-product-list-item__label label{
    font-weight: 400;
    line-height: 18px;
}
/*----- SINGLE TAB -----*/
.woocommerce-tabs {
    width: 100%;
    clear: both;
    position: relative;
    margin: 36px 0 55px;
    display: inline-block;
}
.wc-tabs {
    list-style: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
    margin: 0 0 10px;
    padding-bottom: 8px;
}
.wc-tabs li {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    line-height: 20px;
    margin-right: 40px;
}
.wc-tabs li a {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #999;
}
.wc-tabs li a:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 0;
    bottom: -17px;
    left: 0;
    background-color: #dc2400;
    display: block;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}
.wc-tabs li.active a:after {
    width: 100%;
}
.wc-tabs li.active a,
.wc-tabs li a:hover,
.wc-tabs li a:focus {
    color: #333;
}
.woocommerce-Tabs-panel {
    background-color: transparent;
    border: 1px solid #ebebeb;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
    padding: 30px 36px;
}
.woocommerce-Tabs-panel th,
.woocommerce-Tabs-panel td {
    padding: 10px 30px;
}
#tab-description p:last-child,
#tab-additional_information table:last-child,
#tab-additional_information p:last-child,
#tab-reviews .commentlist .comment .description p:last-child {
    margin-bottom: 0;
}
#tab-reviews .woocommerce-Reviews-title {
    font-size: 20px;
    margin-bottom: 0;
}
#tab-reviews .woocommerce-Reviews-title span::before {
    content: '“';
}
#tab-reviews .woocommerce-Reviews-title span::after {
    content: '”';
}
#tab-reviews .woocommerce-pagination {
    text-align: right;
}
#tab-reviews .commentlist {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
#tab-reviews .commentlist .comment {
    overflow: hidden;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 15px;
}
#tab-reviews .commentlist .comment:last-child {
    border-bottom: none;
}
#tab-reviews .commentlist .comment .avatar {
    float: left;
    margin-right: 15px;
    border-radius: 50%;
}
#tab-reviews .commentlist .comment .comment-text {
    overflow: hidden;
}
#tab-reviews .commentlist .comment .rating-wapper {
    margin-bottom: 0;
    padding: 0;
}
#tab-reviews .commentlist .comment .star-rating {
    display: inline-block;
    margin-right: 10px;
}
#tab-reviews .commentlist .comment .star-rating .preview-count {
    display: none;
}
#tab-reviews .commentlist .comment .meta {
    display: inline-block;
    margin-bottom: 0;
    font-style: italic;
    color: #aaa;
}
#tab-reviews .commentlist .comment .meta > * {
    display: inline-block;
    vertical-align: top;
}
#tab-reviews .woocommerce-review__author {
    text-transform: capitalize;
    font-weight: normal;
}
#tab-reviews .woocommerce-noreviews {
    font-style: italic;
    margin-bottom: 10px;
}
#tab-reviews .comment-notes {
    font-style: italic;
}
#tab-reviews .comment-reply-title {
    display: block;
    font-size: 20px;
    color: #333;
    margin-bottom: 0;
}
#tab-reviews .comment-form-rating > label {
    vertical-align: top;
    color: #333;
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 10px;
}
#tab-reviews p.stars {
    vertical-align: top;
    margin: 0 0 10px 0px;
}
#tab-reviews #cancel-comment-reply-link {
    float: right;
    font-style: italic;
    font-size: 16px;
    color: #aaa;
    font-weight: 300;
}
#tab-reviews .comment-form .comment-form-author,
#tab-reviews .comment-form .comment-form-email {
    margin-bottom: 15px;
}
#tab-reviews input#author,
#tab-reviews input#email {
    display: block;
    width: 100%;
    padding: 9px 20px;
    height: 40px;
}
#tab-reviews textarea#comment {
    width: 100%;
}
#tab-reviews p.form-submit{
    margin-bottom: 5px;
}
p.stars {
    display: inline-block;
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}
p.stars a {
    display: inline-block
}
p.stars a:before {
    display: block;
    font-family: FontAwesome, sans-serif;
    font-size: 14px;
    line-height: 24px;
    margin: 0 2px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #bbbbbb;
    content: "\f005";
}
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: #666;
}
.products.product-grid:not(:last-child){
    margin-bottom: 40px;
}
.products.product-grid .product-grid-title{
    font-weight: 500;
    font-size: 28px;
}
.products.product-grid .product-item.style-1 .product-inner,
.products.product-grid .product-item.style-1 .product-inner .inner{
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width: 768px) {
    .single-thumb-horizontal.no-sidebar .entry-summary .flash>*{
        left: 10px;
        top: 10px;
    }
    .entry-summary .flash>*:nth-child(2){
        top: 40px!important;
    }
}
@media (min-width: 992px) {
    /*----- THUMB VERTICAL -----*/
    .single-thumb-vertical .flex-viewport {
        display: inline-block;
        float: right;
        width: calc(100% - 80px);
    }
    .single-thumb-vertical .flex-control-nav {
        display: inline-block;
        float: left;
        width: 70px;
        margin: 0;
    }
    .single-thumb-vertical .flex-control-nav.slick-vertical .slick-arrow {
        text-align: center;
        margin-left: 20px;
        font-size: 20px;
        position: static;
    }
    .single-thumb-vertical .flex-control-nav.slick-vertical .slick-arrow.prev:before {
        content: "\f106";
    }
    .single-thumb-vertical .flex-control-nav.slick-vertical .slick-arrow.next:before {
        content: "\f107";
    }
    .main-container:not(.no-sidebar) .woocommerce-product-gallery,
    .main-container:not(.no-sidebar) .entry-summary {
        width: 100%;
        padding: 0;
    }
    .entry-summary .flash>*{
        top: 10px;
        left: 80px;
    }
    .entry-summary .flash .onsale{
        left: 80px;
    }
    .main-container:not(.no-sidebar) .entry-summary .flash>*{
        left: 0;
    }
    .single-thumb-vertical.main-container:not(.no-sidebar) .entry-summary .flash>*{
        left: 100px;
    }
}
@media (min-width: 1025px) {
    .products.product-grid .product-item.style-2 .product-inner .inner {
        padding: 14px 10px 4px;
    }
}
@media (min-width: 1200px) {
    /*----- HAS SIDEBAR -----*/
    .main-container:not(.no-sidebar) .woocommerce-product-gallery {
        width: 430px;
    }
    .main-container:not(.no-sidebar) .entry-summary {
        width: calc(100% - 430px);
        padding-left: 30px;
    }
    .single-thumb-vertical.main-container:not(.no-sidebar) .woocommerce-product-gallery {
        width: 475px;
    }
    .single-thumb-vertical.main-container:not(.no-sidebar) .entry-summary{
        width: calc(100% - 475px);
        padding-left: 20px;
    }
    .single-thumb-vertical .flex-viewport {
        width: calc(100% - 100px);
    }
    .entry-summary .flash>*{
        left: 100px;
    }
    .entry-summary .flash .onsale{
        left: 100px;
    }
}
@media (max-width: 1199px) {
    .woocommerce-product-gallery{
        width: 500px;
    }
    .entry-summary{
        width: calc(100% - 500px);
        padding-left: 15px;
    }
    .entry-summary .product_title{
        font-size: 25px;
        line-height: 25px;
        margin-bottom: 7px;
    }
    .entry-summary .stock,
    .entry-summary .price{
        margin-bottom: 10px;
    }
    .entry-summary .woocommerce-product-details__short-description{
        margin-bottom: 20px;
    }
    .entry-summary form.cart{
        padding-top: 0;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    .entry-summary .product_meta{
        margin-bottom: 15px;
    }
    .woocommerce-tabs{
        margin-top: 16px;
    }
}
@media (max-width: 991px) {
    .woocommerce-product-gallery{
        width: 360px;
    }
    .entry-summary{
        width: calc(100% - 360px);
        padding-left: 15px;
    }
    .woocommerce-product-gallery__trigger{
        top: 0;
        right: 0;
    }
    .entry-summary .product_title{
        font-size: 20px;
        line-height: 20px;
    }
    .entry-summary .woocommerce-product-details__short-description{
        display: none;
    }
    .entry-summary .variations tr{
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .woocommerce-product-gallery,
    .entry-summary{
        width:100%;
        padding-left: 0;
    }
    .entry-summary .single_add_to_cart_button{
        max-width: 300px;
        width: auto;
    }
    .woocommerce-tabs{
        margin-top: 20px;
    }
    .woocommerce-Tabs-panel{
        padding: 20px;
    }
    .single-thumb-horizontal .woocommerce-product-gallery__trigger,
    .main-container:not(.no-sidebar) .woocommerce-product-gallery__trigger{
        top: 0;
    }
    .entry-summary .flash>*:nth-child(2){
        top: 40px!important;
    }
    .entry-summary .quantity{
        display: block;
    }
    .wc-tabs{
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .wc-tabs li{
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .wc-tabs li a{
        padding: 7px 10px;
        display: inline-block;
        font-size: 17px;
        border: 1px solid #ebebeb;
    }
    .wc-tabs li a:after{
        display: none;
    }
}
@media (max-width: 479px) {
    .wc-tabs li{
        display: block;
        margin-right: 0;
        text-align: center;
    }
    .wc-tabs li a{
        font-size: 15px;
        display: block;
    }
    .woocommerce-Tabs-panel {
        padding: 10px;
    }

}
/*==========================================================================
SHORT CODE
===========================================================================*/
/*----- BUTTON-----*/
.ovic-button.style-1 .button-link,
.ovic-button.style-2 .button-link{
    font-size: 14px;
    text-transform: uppercase;
    color: #0074bd;
    font-weight: 500;
}
.ovic-button.style-2 .button-link{
    color: #fff;
    line-height: 53px;
    border-radius: 6px;
    padding:0 35px;
    display: inline-block;
}
.ovic-button.style-2 .button-link:hover{
    background-color: #999!important;
}
.ovic-button.style-3 .button-link,
.ovic-button.style-4 .button-link{
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    line-height: 36px;
    padding:0 15px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    font-family: 'Work Sans', san-serif;
}
.ovic-button.style-4 .button-link{
    background-color: #222;
}
.ovic-button.style-3 .button-link:before,
.ovic-button.style-4 .button-link:before{
    content: '';
    display: block;
    position: absolute;
    background: rgb(255, 255, 255);
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .5;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    -webkit-transform: translateX(-100px) skewX(-45deg);
    transform: translateX(-100px) skewX(-45deg);
}
.ovic-button.style-3 .button-link:hover:before ,
.ovic-button.style-4 .button-link:hover:before {
    -webkit-transform: translateX(300px) skewX(-45deg);
    transform: translateX(300px) skewX(-45deg);
    opacity: 0.6;
    transition: .7s;
}
@media (max-width: 991px) {
    .ovic-button.style-2 .button-link{
        line-height: 40px;
    }
}
/*----- BLOG-----*/
.ovic-blog .post-item{
    margin-bottom: 0;
}
.ovic-blog.style-1 .slick-list,
.ovic-blog.style-2 .slick-list{
    padding:0 10px;
    margin:0 -10px;
}
.ovic-blog.style-1 .post-item.default{
    margin-bottom: 0;
}
.ovic-blog.style-1 .post-thumb{
    margin-bottom: 27px;
}
.ovic-blog.style-1 .post-title{
    font-size: 20px;
    margin-bottom: 17px;
}
.ovic-blog.style-1 .readmore-button{
    color: #fff;
    line-height: 43px;
    display: inline-block;
    padding:0 38px;
    border-radius: 5px;
    text-transform: uppercase;
}
.ovic-blog.style-1 .readmore-button:hover{
    background-color: #999999!important;
}
.ovic-blog.style-2 .blog-inner{
    padding-bottom: 5px;
}
.ovic-blog.style-2 .post-thumb{
    margin-bottom: 15px;
}
.ovic-blog.style-2 .post-title{
    font-size: 15px;
}
.ovic-blog.style-3{
    font-family: 'Work Sans', san-serif;
}
.ovic-blog.style-3 .ovic-title{
    font-size: 24px;
    line-height: 24px;
    color: #222;
    font-weight: 600;
    margin-bottom: 28px;
}
.ovic-blog.style-3 .post-item{
    border: 1px solid #f0f0f0;
    overflow: hidden;
    border-radius: 4px;
    padding-bottom: 29px;
}
.ovic-blog.style-3 .post-item .post-thumb{
    margin-bottom: 21px;
}
.ovic-blog.style-3 .post-info{
    padding:0 20px;
}
.ovic-blog.style-3 .post-item .post-title{
    color: #222;
    margin-bottom: 0;
}
.ovic-blog.style-3 .post-item .post-date{
    position: static;
    background-color: transparent;
    font-size: 14px;
    color: #999;
    padding: 0;
    margin-bottom: 9px;
}
.ovic-blog.style-3 .post-item .post-date:before{
    display: none;
}
.ovic-blog.style-3 .post-item .read-more{
    color: #222;
}
/*----- CATEGORY -----*/
.ovic-category.style-1{
    cursor: pointer;
}
.ovic-category.style-1 .category-thumb{
    position: relative;
}
.normal-effect,
.ovic-category.style-1 .category-thumb .image{
    position: relative;
    overflow: hidden;
}
.normal-effect .image-bg,
.ovic-category.style-1 .category-thumb .image img{
    transition: transform 0.5s ease 0s;
    -o-transition: -o-transform 0.5s ease 0s;
    -webkit-transition: -webkit-transform 0.5s ease 0s;
}
.normal-effect:hover .image-bg,
.ovic-category.style-1:hover .category-thumb .image img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.ovic-category.style-1 .cate-content{
    font-size: 24px;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    bottom: 27px;
    left: 28px;
    z-index: 2;
}
.ovic-category.style-1 .cate-content .count{
    font-size: 20px;
    font-weight: 300;
    display: block;
    line-height: 20px;
    margin-top: -2px;
    letter-spacing: -1px;
}
.ovic-category.style-2{
    overflow: hidden;
}
.ovic-category.style-2 .category-thumb{
    width: 177px;
    float: left;
    margin-right: 30px;
}
.ovic-category.style-2 .cate-content{
    overflow: hidden;
}
.ovic-category.style-2 .cate-content .title{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 21px;
    margin-top: 9px;
}
.ovic-category.style-2 .cate-content .cate-list{
    padding-left: 0;
    margin-bottom: 0;
}
.ovic-category.style-2 .cate-content .cate-item{
    font-size: 14px;
    line-height: 24px;
    list-style: none;
}
.ovic-category.style-2 .cate-content .cate-item:before{
    content: '';
    width: 4px;
    height: 4px;
    display: inline-block;
    background-color: #999;
    vertical-align: middle;
    margin-right: 3px;
}
.ovic-category.style-3{
    font-family: 'Work Sans', san-serif;
    text-align: center;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 9px;
    cursor: pointer;
    transition: all .5s ease;
}
.ovic-category.style-3 .image{
    margin-bottom: 21px;
}
.ovic-category.style-3 .image img{
    margin: 0 auto;
}
.ovic-category.style-3 .cate-content{
    font-size: 16px;
    color: #222;
    font-weight: 500;
}
.ovic-category.style-3 .cate-content .count{
    display: none;
}
@media (max-width: 1199px) {
    .ovic-category.style-1 .cate-content{
        bottom: 20px;
        left: 15px;
    }
}
@media (max-width: 991px) {
    .ovic-category.style-1 .cate-content{
        bottom: 15px;
        padding-right: 5px;
        text-align: left;
        font-size: 20px;
    }
    .ovic-category.style-1 .cate-content .count{
        font-size: 16px;
    }
    .ovic-slide[class^="rows-space-"] .row-item,
    .ovic-slide[class*="rows-space-"] .row-item{
        margin-bottom: 30px!important;
    }
    .ovic-category.style-1{
        text-align: center;
    }
}
@media (max-width: 767px) {
    .ovic-category.style-2 .category-thumb{
        width: 150px;
        margin-right: 10px;
    }
    .ovic-category.style-2 .cate-content .title{
        margin-bottom: 10px;
        margin-top: 0;
    }
}
@media (max-width: 639px) and (min-width: 480px) {
    .ovic-category.style-2 .category-thumb{
        float: none;
        width: inherit;
        margin-bottom: 10px;
    }
}
@media (max-width: 479px) {
    .ovic-category.style-1 .cate-content{
        font-size: 15px;
    }
    .ovic-category.style-1 .cate-content .count{
        font-size: 13px;
    }
}
/*----- PRODUCT -----*/
.ovic-title{
    font-size: 28px;
    color: #333;
    line-height: 28px;
    font-weight: 500;
    margin-bottom: 23px;
}
.box-layout-1 .product-item.style-1 .product-inner{
    padding: 15px 15px 3px;
}
.box-layout-1 .product-item.style-1 .product-inner .inner{
    padding-left: 15px;
    padding-right: 15px;
}
.ovic-products.box-layout-2.style-3 .ovic-title{
    margin-bottom: 40px;
}
.ovic-products.style-5 .ovic-title{
    margin-bottom: 55px;
}
.ovic-products.style-5 .slick-slider .slick-arrow{
    top: -80px;
}
.box-layout-1 .slick-slider .slick-arrow{
    top: -49px;
}
.product-item.style-1 .product-inner{
    background-color: #fff;
}
.box-layout-4 .ovic-title{
    margin-bottom: 35px;
}
.box-layout-4 .slick-slider .slick-arrow{
    top: -63px;
}
.box-layout-4 .product-item.style-1 .product-inner{
    padding-bottom: 30px;
}
.box-layout-4 .product-item.style-1 .product-inner .inner{
    bottom: 0;
}
@media(max-width: 1199px){
    .ovic-title{
        font-size: 25px;
        margin-bottom: 20px;
    }
    .ovic-products.box-layout-2.style-3 .ovic-title{
        margin-bottom: 20px;
    }
    .box-layout-4 .ovic-title,
    .ovic-products.style-6 .ovic-title,
    .ovic-products.style-5 .ovic-title,
    .ovic-products.style-7 .ovic-title{
        margin-bottom: 15px;
    }
    .slick-slider .slick-arrow,
    .box-layout-4 .slick-slider .slick-arrow,
    .ovic-products.style-6 .slick-slider .slick-arrow,
    .ovic-products.style-5 .slick-slider .slick-arrow{
        top: -45px!important;
    }
    .ovic-tabs.style-2 .slick-slider .slick-arrow {
        top: -48px!important;
    }
}
/*----- BANNER -----*/
.ovic-banner {
    overflow: hidden;
    position: relative;
}
.ovic-banner .image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
    transition: all .6s;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ovic-banner .banner-content {
    position: relative;
    z-index: 3;
}
/*----- COUNTDOWN -----*/
.ovic-counterup.style-1{
    text-align: center;
}
.ovic-counterup.style-1 .icon{
    font-size: 46px;
    margin-bottom: 29px;
}
.ovic-counterup.style-1 .counterup-inner {
    font-size: 48px;
    font-weight: 500;
    color: #333;
}
.ovic-counterup.style-1 .count>*:not(.count-number){
    margin-left: -10px;
}
.ovic-counterup.style-1 .counterup-title{
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 0;
}
/*----- PERSON -----*/
.ovic-person.style-1{
    text-align: center;
}
.ovic-person.style-1 .thumb-avatar{
    margin-bottom: 29px;
    position: relative;
}
.ovic-person.style-1 .author .name{
    font-size: 20px;
    text-transform: uppercase;
    color: #333;
    display: block;
    position: relative;
    margin-bottom: 26px;
}
.ovic-person.style-1 .author .name:after{
    position: absolute;
    content: '';
    width: 40px;
    height: 6px;
    border-radius: 30px;
    display: inline-block;
    background-color: #bcbcbc;
    bottom: -18px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.ovic-person.style-1 .author .positions{
    font-size: 14px;
    text-transform: capitalize;
    color: #777;
}
.ovic-person.style-1 .social a{
    display: inline-block;
    height: 37px;
    width: 37px;
    line-height: 37px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 50%;
    margin: 0 1px;
}
.ovic-person.style-2{
    text-align: center;
    padding: 60px 0 50px;
}
.ovic-person.style-2 .thumb-avatar{
    margin-bottom: 24px;
}
.ovic-person.style-2 .thumb-avatar img{
    max-width: 100px;
    margin: 0 auto;
}
.ovic-person.style-2 .person-say{
    color: #555;
    font-size: 14px;
    line-height: 20px;
    max-width: 465px;
    margin: 0 auto;
    margin-bottom: 19px;
    padding:0 10px;
}
.ovic-person.style-2 .author{
    color: #999;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    text-transform: uppercase;
}
.ovic-person.style-2 .author .name:after{
    content: '/';
}
@media (min-width: 1200px) {
    .ovic-person.style-1 .thumb-avatar:before{
        position: absolute;
        content: '';
        display: inline-block;
        background-color: rgba(0, 0, 0, 0.4);
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        border-radius: 50%;
        transition: all .5s ease;
    }
    .ovic-person.style-1:hover .thumb-avatar:before{
        opacity: 1;
        visibility: visible;
    }
    .ovic-person.style-1 .social{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        right: 0;
        margin: 0 auto;
        transition: all .5s ease;
        opacity: 0;
        visibility: hidden;
    }
    .ovic-person.style-1:hover .social{
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 1199px) {
    .ovic-person.style-1 .social{
        margin-top: 10px;
    }
    .ovic-person.style-1 .thumb-avatar{
        margin-bottom: 10px;
    }
}
@media (max-width: 479px) {
    .ovic-person.style-2{
        padding: 30px 0 20px;
    }
}
/*----- SERVICE -----*/
.ovic-service.style-1{
    text-align: center;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 30px 0 14px;
    transition: all .5s ease;
}
.ovic-service.style-1:hover{
    border: 1px solid #cecece;
    box-shadow: 0px 6px 0px 0px rgba(125, 125, 125, 0.2);
}
.ovic-service.style-1 .image{
    width: 196px;
    height: 196px;
    line-height: 196px;
    display: inline-block;
    margin-bottom: 32px;
    position: relative;
}
.ovic-service.style-1 .image figure{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
}
.ovic-service.style-1 .image figure img{
    margin: 0 auto;
}
.ovic-service.style-1 .image:before{
    position: absolute;
    content: '';
    background-color: #efefef;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    border-radius: 50%;
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
}
.ovic-service.style-1:hover .image:before{
    opacity: 1;
    visibility: visible;
}
.ovic-service.style-1 .service-title{
    font-size: 18px;
    color: #666;
    text-transform: uppercase;
}
/*----- TABS -----*/
.ovic-tabs.style-1 .tab-link li{
    margin-right: 38px;
    text-transform:uppercase;
    color: #333;
    font-weight: 500;
}
.ovic-tabs.style-1 .tab-link{
    margin-bottom: 39px;
}
.ovic-tabs.style-1 .tab-link li{
    font-size: 20px;
}
.ovic-tabs.style-1 .slick-slider .slick-arrow{
    top: -68px;
}
.ovic-tabs.style-2 .tab-head{
    margin-bottom: 13px;
}
.ovic-tabs.style-2 .ovic-title{
    display: inline-block;
}
.ovic-tabs.style-2 .tab-link{
    float: right;
    padding-right: 90px;
}
.ovic-tabs.style-2 .tab-link li a{
    border-radius: 30px;
    padding: 3px 15px;
    background-color: #fff;
    font-size: 14px;
    margin-left: 5px;
}
.ovic-tabs.style-2 .tab-link li a:hover,
.ovic-tabs.style-2 .tab-link li.active a{
    color: #fff!important;
}
.ovic-tabs.style-2 .slick-slider .slick-arrow{
    top: -62px;
}
.ovic-tabs.style-3,
.ovic-tabs.style-4,
.ovic-tabs.style-5{
    font-family: 'Work Sans', san-serif;
}
.ovic-tabs.style-3 .tab-link{
    margin-bottom: 24px;
}
.ovic-tabs.style-3 .tab-link li:not(:last-child){
    margin-right: 33px;
}
.ovic-tabs.style-3 .tab-link li a{
    font-size: 24px;
    color: #868686;
    font-weight: 500;
}
.ovic-tabs.style-3 .tab-link li.active a,
.ovic-tabs.style-3 .tab-link li a:hover{
    color: #222;
}
.ovic-tabs.style-3 .tab-link li a:after{
    font-family: 'Linearicons-Free';
    content: '\e876';
    font-size: 12px;
    color: #222;
    margin-left: 3px;
    vertical-align: middle;
}
.ovic-tabs.style-3 .tab-link li.active a:after{
    content: '\e874';
}
.ovic-tabs.style-4 .ovic-title,
.ovic-tabs.style-5 .ovic-title{
    font-size: 24px;
    font-weight: 600;
    color: #222;
    display: inline-block;
}
.ovic-tabs.style-4 .tab-link{
    float: right;
}
.ovic-tabs.style-4 .tab-link li{
    font-size: 14px;
    color: #777;
}
.ovic-tabs.style-4 .tab-link li:not(:first-child){
    margin-left: 34px;
}
.ovic-tabs.style-5 .tab-head{
    margin-bottom: 15px;
}
.ovic-tabs.style-5 .ovic-title{
    vertical-align: middle;
    margin-bottom: 4px;
    margin-right: 25px;
}
.ovic-tabs.style-5 .tab-link{
    display: inline-block;
}
.ovic-tabs.style-5 .tab-link li:not(:last-child){
    margin-right: 10px;
}
.ovic-tabs.style-5 .tab-link li a{
    display: inline-block;
    font-size: 14px;
    color: #777;
    line-height: 44px;
    border: 1px solid #e0e0e0;
    padding: 0 20px;
    border-radius: 30px;
}
.ovic-tabs.style-5 .tab-link li a:hover,
.ovic-tabs.style-5 .tab-link li.active a{
    background-color: #f8f8f8;
    border-color: #f8f8f8;
}
@media (max-width: 1199px) {
    .ovic-tabs.style-1 .tab-link {
        margin-bottom: 15px;
    }
    .ovic-tabs.style-2 .tab-head {
        margin-bottom: 0;
    }
    .ovic-tabs.style-2 .ovic-title {
        margin-bottom: 10px;
    }
    .ovic-tabs.style-2 .tab-link{
        float: none;
        margin-bottom: 13px;
        margin-left: -5px;
    }
}
@media(max-width: 991px){
    .ovic-tabs.style-4 .ovic-title{
        margin-bottom: 8px;
    }
    .ovic-tabs.style-4 .tab-link{
        float: none;
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .ovic-tabs.style-2 .tab-link{
        padding-right: 0;
    }
    .ovic-tabs.style-2 .tab-link li a{
        margin-bottom: 5px;
    }
    .ovic-tabs.style-5 .tab-head{
        margin-bottom: 5px;
    }
    .ovic-tabs.style-5 .tab-link li{
        margin-bottom: 10px;
    }
}
@media (max-width: 640px) {
    .ovic-tabs.style-1 .tab-link li{
        margin-bottom: 10px;
    }
}
@media (max-width: 360px) {
    .ovic-tabs.style-4 .tab-link li{
        display: block;
        margin-left: 0!important;
        text-align: center;
    }
}
/*----- BANNER -----*/
.ovic-banner{
    position: relative;
    cursor: pointer;
}
/*----- SLIDE -----*/
.ovic-slide .slick-slider:hover .slick-list{
    padding-bottom: 5px;
    margin-bottom: -5px;
}
/*----- ICON-BOX -----*/
.ovic-iconbox.style-1 .icon,
.ovic-iconbox.style-2 .icon{
    float: left;
    font-size: 30px;
    margin-right: 10px;
}
.ovic-iconbox.style-1 .content,
.ovic-iconbox.style-2 .content{
    overflow: hidden;
}
.ovic-iconbox.style-1 .title{
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 1px;
    color: #b2b2b1;
}
.ovic-iconbox.style-1 .text{
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
}
.ovic-iconbox.style-2 .icon{
    font-size: 46px;
    color: #555;
    margin-right: 30px;
}
.ovic-iconbox.style-2 .title{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 19px;
}
.ovic-iconbox.style-2 .text{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}
.ovic-iconbox.style-3 .iconbox-inner>*,
.ovic-iconbox.style-4 .iconbox-inner>*{
    display: inline-block;
    vertical-align: middle;
}
.ovic-iconbox.style-3 .iconbox-inner{
    padding: 2px 0;
}
.ovic-iconbox.style-3 .icon{
    font-size: 40px;
    float: left;
}
.ovic-iconbox.style-3 .content{
    padding-left: 20px;
    display: inherit;
    overflow: hidden;
}
.ovic-iconbox.style-3 .title{
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 0;
    font-family: 'Work Sans', sans-serif;
}
.ovic-iconbox.style-3 .text{
    font-size: 14px;
    color: #777;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0;
}
.ovic-iconbox.style-4 .icon{
    font-size: 46px;
}
.ovic-iconbox.style-4 .content{
    padding-left: 8px;
}
.ovic-iconbox.style-4 .title{
    font-weight: normal;
    color: #999;
    margin-bottom: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
}
.ovic-iconbox.style-4 .text{
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 0;
}
@media(max-width: 1499px){
}
/*----- SOCIALS -----*/
.ovic-socials ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.ovic-socials ul li{
    display: inline-block;
}
.ovic-socials ul li a{
    font-size: 0;
}
.ovic-socials ul li a span{
    font-size: 24px;
    color: #b2b2b1;
    margin-right: 11px;
}
.ovic-socials ul li:last-child a span{
    margin-right: 0px;
}
.ovic-socials.style1 ul li a span{
    width: 54px;
    height: 54px;
    line-height: 54px;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    font-size: 18px;
    color: #222;
    margin-right: 5px;
}
.ovic-socials.style1 ul li a span:hover{
    background-color: #fff;
}
@media(max-width: 1710px) and (min-width: 1500px){
    .ovic-socials.style1 ul li a span{
        width: 45px;
        height: 45px;
        line-height: 45px;
    }
}
/*----- CUSTOM-MENU -----*/

/*----- OVIC MAILCHIP -----*/
.ovic-newsletter.style-1 .input-text{
    height: 54px;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #777;
    font-weight: 400;
    width: 680px;
    margin-right: 7px;
}
.ovic-newsletter.style-1 .btn-submit{
    line-height: 51px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    padding-top: 3px;
}
.ovic-newsletter.style-1 .newsletter-form-wrap.processing::after{
    top: 13px;
}
.ovic-newsletter.style-1 .newsletter-form-wrap.processing::before{
    opacity: 0;
}
.ovic-newsletter.style-2{
    font-family: 'Work Sans', san-serif;
}
.ovic-newsletter.style-2>*{
    display: inline-block;
    vertical-align: middle;
}
.ovic-newsletter.style-2 .head{
    max-width: 396px;
}
.ovic-newsletter.style-2 .title{
    font-weight: 600;
    color: #222;
    margin-bottom: 11px;
}
.ovic-newsletter.style-2 .subtitle{
    color: #777;
    margin-bottom: 0;
    font-size: 16px;
    font-family: 'Work Sans', san-serif;
}
.ovic-newsletter.style-2 .input-text{
    font-size: 14px;
    color: #999;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #c6c6c6;
    width: 100%;
    font-weight: normal;
}
.ovic-newsletter.style-2 .newsletter-form-wrap{
    max-width: 860px;
    width: 100%;
    float: right;
    margin-top: 2px;
}
.ovic-newsletter.style-2 .text-field{
    width: 100%;
}
.ovic-newsletter.style-2 .btn-submit{
    position: absolute;
    right: 0;
    top: 0;
    font-weight: 600;
    padding:0 30px;
    border-radius: 6px;
    line-height: 50px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.ovic-newsletter.style-2 .newsletter-form-wrap.processing::after{
    top: 10px;
}
@media(max-width: 1850px){
    .ovic-newsletter.style-2 .newsletter-form-wrap{
        max-width: 765px;
    }
}
@media(max-width: 1499px){
    .ovic-newsletter.style-2 .newsletter-form-wrap{
        max-width: 550px;
    }
}
@media(max-width: 1366px){
    .ovic-newsletter.style-2 .newsletter-form-wrap{
        max-width: 450px;
    }
}
@media (max-width: 1199px) {
    .ovic-newsletter.style-1 .input-text{
        width: 500px;
    }
    .ovic-iconbox.style-1 .text{
        font-size: 16px;
    }
    .ovic-newsletter.style-2 > *{
        display: block;
        max-width: 700px !important;
        margin: 0 auto;
        float: none !important;
    }
    .ovic-newsletter.style-2 .head{
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .ovic-newsletter.style-1 .input-text{
        width: 450px;
    }
}
@media (max-width: 640px) {
    .ovic-newsletter.style-1 .newsletter-form-wrap{
        max-width: 640px;
        margin: 0 auto;
        text-align: center;
    }
    .ovic-newsletter.style-1 .text-field,
    .ovic-newsletter.style-1 .input-text{
        width: 100%;
        height: 40px;
        margin-right: 0;
    }
    .ovic-newsletter.style-1 .btn-submit{
        margin-top: 10px;
        line-height: 40px;
    }
    .ovic-newsletter.style-2 .btn-submit{
        padding:0 10px;
    }
}
/*==========================================================================
FOOTER
===========================================================================*/
.footer .vc_row[data-vc-full-width]{
    overflow: inherit;
}
.backtotop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
    line-height: 36px;
    border: 1px solid #fff;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -ms-transform: translateY(70px);
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.backtotop.show {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.backtotop:hover,
.backtotop:focus{
    color: #fff!important;
}
.footer .ovic-menu>li{
    display: block;
    color: #b2b2b1;
    padding: 0!important;
}
.footer .widgettitle,
.footer .ovic-products .ovic-title{
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 31px;
    color: #fff;
    font-weight: 500;
}
.footer .ovic-custommenu.style1 .widgettitle{
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    color: #212121;
    font-family: 'Work Sans', san-serif;
    margin-bottom: 29px;
}
.footer .ovic-custommenu.style1 .ovic-menu>li{
    color: #777;
    font-family: 'Work Sans', san-serif;
    font-size: 14px;
    padding: 4px 0!important;
}
@media (max-width: 1199px) {
    .backtotop{
        bottom: 70px;
        width: 30px;
        height: 30px;
        line-height: 26px;
    }
    footer {
        margin-bottom: 50px;
    }
    .footer .ovic-custommenu.style1 .widgettitle{
        margin-bottom: 15px;
    }
}
@media (max-width: 767px) {
    .footer .widgettitle{
        margin-bottom: 15px;
    }
    .footer .ovic-products .ovic-title{
        margin-bottom: 20px;
    }
    .footer .ovic-custommenu .ovic-menu-wapper {
        display: none;
    }
    .footer .ovic-custommenu.open .ovic-menu-wapper {
        display: block;
    }
    .footer .ovic-custommenu .widgettitle .toggle-menu::before {
        content: '\e982';
        font-family: 'abcicon';
        float: right;
        display: none;
    }
    .footer .ovic-custommenu .widgettitle .toggle-menu::before {
        display: inline-block;
    }
    .footer .ovic-custommenu.open .widgettitle .toggle-menu::before {
        content: '\e977';
    }
}
@media (max-width: 1199px) {
    footer {
        margin-bottom: 70px;
    }
}
/**FOOTER-MOBILE**/
.footer-mobile {
    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:0px 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;
}
@media (min-width: 1200px) {
    .footer-mobile{
        display: none!important;
    }
}
@media (min-width: 992px) {
    .footer-mobile .sidebar-item{
        display: none!important;
    }
}
/*==========================================================================
FIX-BROWSERS
===========================================================================*/
@-moz-document url-prefix() {

}
/**UPDATE SCROLL MINICART**/
.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-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: -4px;
    min-height: 10px;
    width: 4px;
}
.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;
}
/*==========================================================================
NEW DESIGN
===========================================================================*/
body.theme-style{
    font-family: 'Work Sans', san-serif;
}
body.theme-style .header-sticky .box-header-nav .main-menu > .menu-item > a{
    color: #222;
    text-transform: capitalize;
    padding: 18px 22px;
}
/*----- BLOG -----*/
body.theme-style .post-item .post-title{
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}
body.theme-style .ovic-blog.style-3 .post-item .post-title{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}
body.theme-style .post-item .post-content{
    font-weight: 500;
    margin-bottom: 4px;
}
body.theme-style .post-item .read-more{
    font-weight: 600;
    font-size: 15px;
}
body.theme-style .ovic-blog.style-3 .post-item .read-more{
    font-weight: 500;
    font-size: 14px;
}
body.theme-style .blog-sidebar .ovic-recent-post .post-title{
    font-size: 15px;
    margin-bottom: 0;
}
body.theme-style .widgettitle{
    font-size: 18px;
    color: #fff;
}
/*----- SHOP -----*/
body.theme-style .ogo-breadcrumb{
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    padding:15px 0;
}
body.theme-style.home .ogo-breadcrumb,
body.home .ogo-breadcrumb,
.no-toolkit .ogo-breadcrumb {
    display: none;
}
body.theme-style .shop-control + .auto-clear.ovic-products{
    margin-left: -15px;
    margin-right: -15px;
    border: none;
}
body.theme-style .shop-page ul.products .product-item{
    padding-left: 15px;
    padding-right: 15px;
}
body.theme-style .shop-control.shop-before-control{
    padding-bottom: 30px;
    border-bottom: 1px solid #dce0e2;
}
body.theme-style .shop-after-control > .woocommerce-pagination{
    margin-top: 18px;
}
body.theme-style .shop-sidebar .widgettitle,
body.theme-style .blog-sidebar .ovic-recent-post .widgettitle,
body.theme-style .blog-sidebar .widget-ovic-instagram .widgettitle{
    font-size: 18px;
    color: #212121;
}
body.theme-style .comment-form .form-submit .button,
body.theme-style .widget_price_filter .price_slider_amount .button{
    font-weight: 600;
    padding-top: 0;
}
body.theme-style .shop-before-control .woocommerce-result-count{
    font-size: 18px;
}
body.theme-style .widget .tagcloud a{
    padding-top: 0;
    line-height: 23px;
}
body.theme-style .product-item .yith-wcqv-button{
    padding:0 20px;
}
body.theme-style .product-item.style-8 .yith-wcqv-button{
    padding: 0;
}
body.theme-style .product-item .product-name{
    font-size: 16px;
    line-height: 22px;
    color: #222;
}
body.theme-style .product-item .price{
    font-size: 18px;
    font-weight: 600;
    color: #222;.header.style-5 .header-topbar .ovic-menu>li>a
}
body.theme-style .product-item .price del{
    font-size: 15px;
}
body.theme-style .entry-summary .single_add_to_cart_button,
body.theme-style .entry-summary .added_to_cart.wc-forward{
    width: calc(100% - 180px); 
}
body.theme-style{}
/*----- INNER PAGE -----*/
body.theme-style .wpcf7-form [type="submit"]{
    font-weight: 600;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 50px;
}
body.theme-style .woocommerce-cart-form{

}
body.theme-style{}
body.theme-style{}
/*----- NO TOOLKIT -----*/
.no-toolkit .banner-shop-page{
    display: none;
}
.no-toolkit .products{
    display: inline-block;
    width: 100%;
    vertical-align: top;
    list-style: none;
    margin: 0;
    padding: 0;
}
.no-toolkit ul.products{
    margin-top: 30px;
}
.no-toolkit .products li{
    display: inline-block;
    width: 25%;
    float: left;
    margin-bottom: 30px;
    position: relative;
    text-align: center;
    padding: 0 15px;
}
.no-toolkit .woocommerce-loop-product__title{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    margin-bottom: 7px;
}
.no-toolkit .products .size-woocommerce_thumbnail{
    margin-bottom: 20px;
}
.no-toolkit .products .onsale,
.no-toolkit .products .price {
    display: block;
}
.no-toolkit .products .onsale{
    position: absolute;
    top: 10px;
    left: 30px;
    text-transform: uppercase;
    z-index: 10;
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    background-color: #ff1010;
    line-height: 21px;
    padding:0 12px;
    border-radius: 3px;
    padding-top: 2px;
}
.no-toolkit .products li .button,
.no-toolkit .products li .wc-forward{
    display: block;
    margin-bottom: 10px;
}
.no-toolkit .woocommerce-product-gallery__trigger::before{
    content: "\f002";
    font-family: 'FontAwesome';
}
.no-toolkit .post-item{
    margin-bottom: 30px;
}
.no-toolkit .post-item .post-content{
    margin-bottom: 1px;
}
@media (max-width:991px) {
    .no-toolkit .products li{
        width: 33.33%;
    }
}
@media (max-width:767px) {
    .no-toolkit .products li{
        width: 50%;
    }
}
@media (max-width:479px) {
    .no-toolkit .products li{
        width: 100%;
    }
}
.no-toolkit .flex-control-nav>li{
    display: inline-block;
}