  /*-------------------------------------------------------------------------/*
[Table of contents]
[Typography]
    BODY:
        Font family: 'Hind', sans-serif;
        Font size: 15px;
        Line height: 24px;
        Text color: #444444;
        Background color: #ffffff;
    HEADING:
        Text color: #444444;
[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;
}
/*----- NORMAL -----*/
.normal-effect::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
    z-index: 2;
}
.normal-effect:hover::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    -ms-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms;
}
.normal-effect .image-bg {
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    -ms-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms;
}
.normal-effect:hover .image-bg{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}
/*----- 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:hover img {
    -webkit-animation: bounceIn 0.5s ease;
    -o-animation: bounceIn 0.5s ease;
    animation: bounceIn 0.5s ease;
}
/*----- BORDER ZOOM -----*/
.border-zoom::before,
.border-zoom::after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    z-index: 1;
    opacity: 0;
}
.border-zoom::before {
    background-color: #fff;
}
.border-zoom::after {
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    border: 2px solid #fff;
}
.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: 1;
    border: solid red;
    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: 3px 0 3px 0;
}
.border-scale::after {
    height: 0;
    border-width: 0 3px 0 3px;
}
.border-scale:hover::before {
    width: calc(100% - 20px);
}
.border-scale:hover::after {
    height: calc(100% - 20px);
}
/*----- Box Shadow Hover -----*/
.box-shadow{
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.2) !important;
}
.box-shadow:hover {
    box-shadow: 0 0px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all .5s ease-out;
}
/*----- Opacity Image -----*/
.opacity-image img{
    transition: all .5s ease;
}
.opacity-image:not(:hover) img{
    opacity: 0.4;
}
/*----- Image Zoom-----*/
.image-zoom .image-bg,
.ovic-category.style-2 .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;
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    -ms-transition-delay: 0ms;
    -o-transition-delay: 0ms;
    transition-delay: 0ms;
}
.image-zoom:hover .image-bg,
.ovic-category.style-2: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);
    -webkit-transition-delay: .5s;
    -moz-transition-delay: .5s;
    -ms-transition-delay: .5s;
    -o-transition-delay: .5s;
    transition-delay: .5s;
}
/*==========================================================================
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: 3px;
    top: calc( 50% - 25px );
    right: 0px;
    width: 44px;
    height: 44px;
    font-size: 16px;
    line-height: 42px;
    color: #444;
    z-index: 101;
    cursor: pointer;
    text-align: center;
    background-color: #f5f5f5;
    -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: "\f105";
    font-family: 'FontAwesome' !important;
    font-size: 30px;
}
.slick-slider .slick-arrow.prev{
    right: auto;
    left: 0;
}
.slick-slider .slick-arrow.prev:before{
    content: "\f104";
}
.nav-style2.slick-slider .slick-arrow,
.nav-style3.slick-slider .slick-arrow{
    top: -101px;
}
.nav-style2.slick-slider .slick-arrow.prev,
.nav-style3.slick-slider .slick-arrow.prev{
    right: 56px;
    left: auto;
}
.nav-style3.slick-slider .slick-arrow{
    top: -50px;
    color: #666;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: transparent;
}
.nav-style3.slick-slider .slick-arrow:before{
    font-size: 26px;
}
.nav-style3.slick-slider .slick-arrow.prev{
    right: 24px;
}
.nav-style3.slick-slider .slick-arrow:hover{
    background-color: transparent!important;
}
.slick-dots {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 0;
    line-height: 0;
    margin: 10px -5px -10px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 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;
}
.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);
}
.slick-slider.nav-style2:not(:hover) .slick-arrow {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}
@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 150px;
        margin: -5px -5px -150px;
        z-index: 50;
    }
}
@media(min-width: 1880px){
    .slick-slider:not(.nav-style2):not(.nav-style3) .slick-arrow{
        right: -44px;
    }
    .slick-slider:not(.nav-style2):not(.nav-style3) .slick-arrow.prev{
        right: auto;
        left: -44px;
    }
    .ovic-products.style-5 .slick-slider .slick-arrow{
        right: 8px!important;
        top: calc( 50% - 160px );
    }
    .ovic-products.style-5 .slick-slider .slick-arrow.prev{
        right: auto!important;
        left: 8px!important;
    }
}
@media(max-width: 1199px){
    .nav-style2.slick-slider .slick-arrow {
        top: -73px;
    }
}
@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: 2px 15px 0;
    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;
    color: #666;
}
.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: #333;
    text-transform: uppercase;
}
.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: 48px;
    color: #666;
    background-color: #f7f8fa;
    border:none;
}
.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;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 37px;
    padding-top: 3px;
}
.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: 3px;
    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: -2px;
    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 {
    padding: 12px 20px;
    border-radius: 0;
    background-color: #f7f8fa;
    border:none;
}
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: #666;
    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;
    display: 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: 20px;
    color: #222;
    font-weight: bold;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.cart_totals > h2{
    font-weight: 600;
    font-size: 22px;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.cart-collaterals .cart_totals .cart-subtotal td{
    font-weight: 600;
    font-size: 20px;
    color: #444;
}
.cart_totals .order-total strong{
    font-weight: 600;
    font-size: 26px;
    color: #444;
}
#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 #eaeaea;
    margin-bottom: 40px;
}
.shop_table th,
.shop_table td {
    padding:30px;
}
.woocommerce-cart-form .shop_table,
.woocommerce-cart-form .shop_table td{
    border-left: none;
    border-right: none;
}
.woocommerce-cart-form th {
    display: none;
}
.shop_table td.product-price,
.shop_table td.product-subtotal {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #222;
}
.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: 240px;
}
.shop_table td.product-quantity .qty-label{
    display: none;
}
.wishlist_table tr td.product-thumbnail a img,
.shop_table td.product-thumbnail img {
    width: 270px;
    max-width: inherit;
}
.shop_table td.product-name {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 0;
}
.shop_table .product-quantity .quantity .control input{
    font-size: 18px;
}
.shop_table .product-remove{
    width: 30px;
    border-right: none;
    padding-left: 0;
    padding-right: 40px;
}
.shop_table td.product-remove a {
    display: block;
    font-size: 0;
}
.shop_table td.product-remove a:after{
    content: '\e91c';
    font-family: 'Elitex-icon' !important;
    font-size: 14px;
    color: #aaa;
}
.shop_table .actions {
    text-align: left;
    padding: 30px 0;
}
.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,
.woocommerce-cart-form__contents .actions {
    border-bottom: none;
}
.woocommerce-cart-form__contents .actions label {
    font-size: 15px;
    color: #333;
    margin-bottom: 2px;
    font-weight: 400;
    text-transform: uppercase;
}
.shop_table .actions .coupon .input-text {
    background-color: #f7f8fa;
    height: 38px;
    line-height: 38px;
    border-radius: 3px;
    min-width: 300px;
    border: none;
    color: #666;
    margin-right: 10px;
}
.shop_table .actions > .button,
.shop_table .actions .coupon .button,
.wc-proceed-to-checkout .button,
.place-order #place_order{
    line-height: 35px;
    padding: 3px 26px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
}
.wc-proceed-to-checkout .button{
    padding: 3px 10px 0;
    width: 100%;
    font-size: 14px;
    max-width: 470px;
}
.wc-proceed-to-checkout .button>*{
    vertical-align: middle;
    display: inline-block;
}
.shop_table .actions > .button{
    float: right;
    border: 2px solid #eaeaea;
    line-height: 31px;
}
.shop_table .actions > .button:before{
    content: '\e903';
    font-family: 'Elitex-icon';
    margin-right: 9px;
    font-size: 22px;
    font-weight: normal;
    vertical-align: top;
    display: inline-block;
    margin-top: -2px;
}
.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:hover{
    border-color: #999!important;
}
.shop_table .actions > .button[disabled] {
    pointer-events: none;
    background-color: #fff;
    color: #444;
    border: 2px solid #eaeaea;
    line-height: 31px;
    transition: all .5s ease;
}
.cart-collaterals {
    border: 2px solid #eaeaea;
    padding: 37px 40px 40px;
    margin-bottom: 37px;
}
.woocommerce-cart-form{
}
.cart-collaterals .shop_table_responsive{
    margin-bottom: 30px;
    text-align: left;
    border:none;
}
.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;
    border:none;
    border-bottom: 1px solid #eaeaea;
}
#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-order-details .shop_table th,
.woocommerce-order-details .shop_table td:first-child   {
    text-align: left;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: normal;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #eaeaea;
}
.woocommerce-order-details .shop_table th:last-child,
.woocommerce-order-details .shop_table td{
    text-align: right;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #eaeaea;
}
.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;
    border: none;
}
.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-checkout-review-order-table{
    border: none;
}
.woocommerce-checkout-review-order .shop_table th,
.woocommerce-checkout-review-order .shop_table td{
    padding:10px 0;
    border: none;
    border-bottom: 1px solid #eaeaea;
}
.woocommerce-checkout-review-order .shop_table tr th,
.woocommerce-checkout-review-order .shop_table tr td:first-child{
    text-align: left;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
}
.woocommerce-checkout-review-order .shop_table td.product-name{
    text-transform: capitalize!important;
    font-weight: normal!important;
    font-size: 16px!important;
}
.woocommerce-checkout-review-order .shop_table th:last-child,
.woocommerce-checkout-review-order .shop_table tr td:last-child {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    text-align: right;
}
.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-checkout-review-order .shop_table tr.order-total td strong{
    font-size: 24px;
}
.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: 7px 5px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
}
.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: 20px;
    color: #222;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0;
    border: none;
    border-bottom: 1px solid #eaeaea;
}
.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%;
    max-width: 200px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    line-height: 43px;
    padding-top: 3px;
}
@media(min-width: 768px){
    .wc-proceed-to-checkout{
        text-align: right;
    }
}
@media(min-width: 1200px){
    .woocommerce-order .woocommerce-order-details,
    .woocommerce-order .woocommerce-customer-details{
        width: calc( 50% - 15px );
        display: inline-block;
        vertical-align: top;
    }
    .woocommerce-order .woocommerce-order-details{
        margin-right: 26px;
    }
}
@media (max-width: 1499px) {
    .wishlist_table tr td.product-thumbnail a img,
    .shop_table td.product-thumbnail img{
        width: 100px;
    }
    .cart-collaterals {
        margin-bottom: 0px;
    }
}
@media (max-width: 1199px) {
    .shop_table .actions .coupon{
        display: block;
        margin-bottom: 10px;
    }
    .shop_table .actions > .button{
        float: none;
    }
    .woocommerce-cart-form__contents{
        margin-bottom: 0;
    }
}

@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: 20px;
    }
}
@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;
        padding: 10px;
    }
    .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 7px;
    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: 'Elitex-icon';
    content: "\e912";
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
}
@media (min-width: 1200px) {
    .woocommerce .col2-set#customer_login .col-1 {
        padding-right: 84px;
        border-right: 1px solid #eaeaea;
    }
    .woocommerce .col2-set#customer_login .col-2 {
        padding-left: 52px;
    }
}
@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;
    }
}
@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;
}
figure{
    margin: 0;
}
.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"] input[type="password"] {

}
.post-password-form input[type="submit"]{
    line-height: 50px;
    margin-left: -5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.no-results.not-found>.search-form>.search-submit{
    padding: 5px 30px 0;
    font-size: 20px;
    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;
}
.ovic-menu-clone-wrap .sub-menu.megamenu>*{
    padding: 0!important;
}
.ovic-menu-clone-wrap .megamenu .widget_nav_menu {
    margin-bottom: 30px;
}
.ovic-menu-clone-wrap .megamenu [class^="vc_col-"],
.ovic-menu-clone-wrap .megamenu [class*=" vc_col-"] {
    width: 100%;
    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;
}
/*==========================================================================
BODY DATAS
===========================================================================*/
.no-toolkit .content-area,
.container-inner{
    max-width: 1800px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}
.container-inner:before,
.container-inner:after{
    content: " ";
    display: table;
}
.container-inner:after{
    clear: both;
}
.main-container {
    padding-bottom: 60px;
}
.col-content,
.col-sidebar,
.col-content-page,
.col-sidebar-page{
    position: relative;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
}
.col-content{
    width: calc(100% - 485px);
    border-left: 1px solid #eaeaea;
}
.col-sidebar{
    width: 485px;
}
.col-content-page{
    width: calc(100% - 285px);
}
.col-sidebar-page{
    width: 285px;
}
.widget-area.blog-sidebar,
.widget-area.shop-sidebar{
    /*padding-right: 20px;*/
    /*border-right: 1px solid #eaeaea;*/
    margin-top: -2px;
}
@media (min-width: 1200px) {
    .col-content,
    .col-content-page{
        padding-left: 30px;
        border-left: 1px solid #eaeaea;
    }
    .right-sidebar .col-content,
    .right-sidebar .col-content-page{
        padding-left: 15px;
        padding-right: 30px;
        border-right: 1px solid #eaeaea;
        border-left: none;
    }
    .col-sidebar,
    .col-sidebar-page{
        padding-right: 20px;
    }
    .right-sidebar .col-sidebar,
    .right-sidebar .col-sidebar-page{
        padding-right: 15px;
        padding-left: 20px;
    }
    .left-sidebar .main-content {
        float: right;
    }
}
@media (max-width: 1499px) {
    .col-content{
        width: calc(100% - 370px);
    }
    .col-sidebar{
        width: 370px;
    }
}
@media (max-width: 1199px){
    .col-content,
    .col-content-page{
        width: 100%;
        float: none;
        margin-bottom: 60px;
    }
    .col-sidebar,
    .col-sidebar-page{
        width: 100%;
        float: none;
    }
    .left-sidebar .main-content{
        float: none;
    }
}
@media(max-width: 320px){
    #growls-default{
        right: 0!important;
    }
}
html {
    font-size: 14px;
}
body {
    font-family: 'Hind', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #444444;
    font-weight: 400;
    overflow-x: hidden;
}
/*----- HEADING -----*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    margin: 0 0 20px;
    color: #222222;
}
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: 14px;
    border: none;
    line-height: 38px;
    padding: 0px 20px 0;
    background-color: #5bb300;
    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: 38px;
    -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: 18px;
    line-height: 30px;
    color: #333;
    padding: 24px 30px 20px 27px;
    border: none;
    font-weight: 400;
    font-style: italic;
}
blockquote::before {
    display: inline-block;
    float: left;
    content: '“';
    font-family: "Georgia", sans-serif;
    font-size: 200px;
    line-height: 0;
    margin: 66px 25px -16px -33px;
    font-style: normal;
    color: #63ab05;
}
blockquote p{
    overflow: hidden;
}
@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 {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.post-content {
    overflow: hidden;
}
/*----- PAGE LINKS, POST PAGINATION -----*/
.gallery-size-thumbnail ~ .page-links{
    margin-top: 20px;
}
.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 {
    margin-top: 20px;
}
.post-pagination > *,
.page-links > * {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    line-height: 43px;
}
.post-pagination .title,
.page-links .page-links-title {
    display: none;
}
.page-links span:not(.page-links-title) {
    font-size: 18px;
    color: #888;
    line-height: 43px;
    height: 43px;
    min-width: 44px;
    max-height: 43px;
    text-align: center;
    border-radius: 4px;
    background-color: #fafafa;
    /*margin-right: 10px;*/
    margin-bottom: 10px;
}
.page-links > *:not(.page-links-title) {
    margin-right: 10px;
}
.page-links > span:not(.page-links-title){
    color: #fff;
}
.page-links > span.current span{
    background-color: transparent!important;
    color: #fff!important;
}
.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: #888;
}
.page-links span.screen-reader-text {
    display: none !important;
}
/*==========================================================================
OTHER ELELEMNT
===========================================================================*/
/*----- BREADCRUMBS -----*/
/*.breadcrumb-trail.breadcrumbs,*/
.elitex-breadcrumb{
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 14px 0 12px;
    background-color: #fafafa;
    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: 15px;
    color: #666;
}
.breadcrumb li:last-child {
    padding-right: 0;
    color: #333;
    font-weight: bold;
}
.breadcrumb > li + li:before {
    content: "/";
    color: #666;
    padding: 0 7px 0 2px;
    font-weight: normal;
}
.breadcrumb > .active {
    color: #333333;
    font-weight: bold;
}
.woocommerce-breadcrumb a {
    font-weight: normal;
}
.woocommerce-breadcrumb a:not(:hover) {
    color: #333333;
}
@media(min-width: 1200px){
    .elitex-breadcrumb{
        margin-bottom: 40px;
    }
}
@media(min-width: 1500px){
    .elitex-breadcrumb{
        margin-bottom: 80px;
    }
    .elitex-breadcrumb.blog{
        margin-bottom: 60px;
    }
}
/*----- 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:26px 0 0;
    clear: both;
    text-align: right;
    border-top: 1px solid #eaeaea;
}
.woocommerce-pagination{
    margin-top: 30px;
}
.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: 14px;
    color: #888;
    font-weight: 500;
    line-height: 43px;
    height: 43px;
    min-width: 44px;
    max-height: 43px;
    text-align: center;
    border-radius: 4px;
    background-color: #fafafa;
    margin: 0 5px;
}
.navigation .page-numbers:last-child,
.pagination .page-numbers:last-child{
    margin-right: 0;
}
.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: 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: 'FontAwesome';
    content: "\f105";
    font-size: 14px;
    text-align: center;
    color: #aaa;
    display: inline-block;
}
.woocommerce-pagination a.page-numbers.next:hover:after,
.woocommerce-pagination span.page-numbers.next:hover:after,
.navigation .page-numbers.next:hover:after,
.pagination .page-numbers.next:hover:after,
.woocommerce-pagination a.page-numbers.prev:hover:before,
.woocommerce-pagination span.page-numbers.prev:hover:before,
.navigation .page-numbers.prev:hover:before,
.pagination .page-numbers.prev:hover:before{
    color: #222;
}
.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: "\f104";
}
.woocommerce-pagination a.page-numbers.prev:before,
.woocommerce-pagination a.page-numbers.next:after{
    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: 0;
}
.woocommerce-pagination a.page-numbers.prev,
.woocommerce-pagination a.page-numbers.next{
    line-height: 43px;
}
.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 .page-numbers.current,
.navigation .page-numbers.current,
.pagination .page-numbers.current,
.post-pagination > span {
    color: #fff;
    font-size: 18px;
}
.woocommerce-pagination .page-numbers.dots,
.navigation .page-numbers.dots,
.pagination .page-numbers.dots {
    padding: 0;
    min-width: 16px;
    text-align: center;
    background-color: transparent;
}
.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(min-width: 1200px){
    .sidebar-top-title,
    .sidebar-head{
        display: none!important;
    }
}
@media(max-width: 1199px){
    .woocommerce-pagination{
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .breadcrumb-header{
        margin-bottom: 30px;
    }
    .breadcrumb-header .breadcrumb {
        padding:13px 7px!important;
    }
}
/*==========================================================================
BLOG POST
===========================================================================*/
.blog-default .post-item{
    margin-bottom: 60px;
}
.post-item.sticky .post-title a::before {
    content: '\f024';
    color: #ff2328;
    font-family: 'FontAwesome';
    margin-right: 10px;
    display: inline-block;
}
.post-author{
    font-size: 14px;
    color: #666;
}
.post-metas>*,
.post-author>*{
    vertical-align: middle;
}
.post-author img{
    border-radius: 50%;
}
.post-comment{
    position: relative;
    font-size: 20px;
    display: inline-block;
    height: 23px;
}
.post-comment .icon{
    font-size: 22px;
}
.post-comment .count{
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 13px;
    color: #fff;
    height: 17px;
    min-width: 17px;
    line-height: 19px;
    text-align: center;
    border-radius: 50%;
    background-color: #aaaaaa;
}
.post-info .read-more a{
    text-transform: uppercase;
    border: 2px solid #e6e6e6;
    border-radius: 3px;
    font-weight: bold;
    padding: 5px 25px 1px;
    display: inline-block;
}
.post-info .read-more a:hover{
    color: #fff;
}
/*----- BLOG STAND -----*/
.post-item .post-thumb{
    position: relative;
}
.post-thumb .post-date {
    position: absolute;
    left: 11px;
    top: 11px;
    background: #fff;
    font-size: 14px;
    color: #222;
    text-align: center;
    overflow: hidden;
    font-weight: 600;
    padding: 8px 10px 5px;
    border-radius: 3px;
}
.post-thumb .post-date .date {
    display: block;
    margin-top: 12px;
    margin-bottom: -2px;
}
.post-thumb .post-date .month {
    color: #444;
    font-weight: normal;
    font-size: 14px;
}
.post-thumb .thumb-img{
    margin-bottom: 23px;
}
.post-item .post-title{
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 10px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.post-item .post-metas{
    margin-bottom: 15px;
}
.post-item .post-metas .post-author{
    margin-right: 18px;
}
.post-item .post-metas .post-author>a,
.widget-recent-post .ovic-blog .post-item .post-author>a{
    font-weight: 600;
    color: #222;
    vertical-align: top;
}
.post-item .post-content{
    margin-bottom: 21px;
}
.post-metas .post-socials-sharing{
    display: inline-block;
    position: relative;
    margin-left: 18px;
}
.post-metas .post-socials-sharing .icon-label{
    font-size: 18px;
    cursor: pointer;
    vertical-align: middle;
}
.post-metas .group-label-share{
    position: absolute;
    top: -6px;
    right: 20px;
    background-color: #eee;
    z-index: 1;
    padding: 7px 15px 4px 4px;
    border-radius: 30px;
    opacity: 0;
    transform: translateX(10px);
    visibility: hidden;
    transition: all .5s ease;
}
.post-metas .post-socials-sharing.active .group-label-share{
    transform: translateX(0px);
    opacity: 1;
    visibility: visible;
}
.post-metas .group-label-share>*{
    display: table-cell;
    padding-left: 8px;
}
/*----- BLOG GRID -----*/
.blog-grid .post-item{

    margin-bottom: 60px;
}
@media (max-width: 1199px) {
    .blog-default .post-item,
    .blog-grid .post-item{
        margin-bottom: 40px;
    }
}
/*----- BLOG SINGLE -----*/
.blog-single .post-info{
    text-align: center;
    margin-bottom: 30px;
}
.blog-single .post-item .post-title{
    font-size: 36px!important;
    line-height: 30px;
    margin-bottom: 13px;
}
.blog-single .tags .text,
.blog-single .categories .text{
    text-transform: uppercase;
    font-weight: 500;
    color: #444;
}
.blog-single .tags a,
.blog-single .categories a{
    text-transform: capitalize;
}
.blog-single .categories a:not(:last-child):after{
    content: ',';
}
.blog-single .group-bottom{
    background-color: #f7f8fa;
    padding: 13px 20px;
}
.blog-single .group-bottom .tags{
    float: left;
    margin-top: 4px;
    margin-right: 90px;
}
.blog-single .group-bottom .post-socials-sharing{
    overflow: hidden;
}
.blog-single .group-bottom .post-socials-sharing .icon-label{
    display: none;
}
.blog-single .group-bottom .group-label-share>*{
    font-size: 14px;
    width: 30px;
    height: 30px;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    line-height: 30px;
    color: #fff;
    background-color: #1da1f2;
}
.blog-single .group-bottom .group-label-share .facebook{
    background-color: #3b5998;
}
.blog-single .group-bottom .group-label-share .googleplus{
    background-color: #dc4e41;
}
.blog-single .group-bottom .group-label-share .pinterest{
    background-color: #cb2027;
}
.blog-single .group-bottom .categories {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}
@media(min-width: 1200px){
    .blog-default .post-item .post-title,
    .blog-grid .post-item .post-title,
    .blog-single .post-item .post-title{
        font-size: 24px;
    }
}
@media (max-width: 1199px) {
    .post-item .post-content{
        margin-bottom: 15px;
    }
    .blog-single .post-item .post-title{
        font-size: 20px!important;
    }
}
/*----- COMMENTS AREA -----*/
.comments-area .comment ol,
.comments-area .comment ul{
    margin-bottom: 20px;
}
.comments-area .comment ol ol,
.comments-area .comment ol ul,
.comments-area .comment ul ul,
.comments-area .comment ul ol{
    margin-bottom: 0;
}
.comments-area .comment-respond{
    padding-top: 60px;
}
.comments-area:not(:first-child) {
    padding-top: 35px;
}
.comments-area .comments-title,
.comments-area .comment-reply-title {
    font-size: 24px;
    color: #333;
    line-height: 28px;
    font-weight: bold;
    margin-bottom: 0;
}
.comments-area .comment-reply-title{
    margin-bottom: 17px;
    font-size: 24px;
    font-weight: bold;
    color: #222;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}
.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: 30px;
    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%;
}
.comment-list .comment-avatar {
    float: left;
    margin-right: 30px;
}
.comment-list .comment-info {
    overflow: hidden;
    border: 2px solid #eeeeee;
    padding: 24px 20px 23px;
}
.comment-list .comment-info .comment-meta {
    overflow: hidden;
}
.comment-list .comment-info .comment-name {
    font-weight: 600;
    color: #000;
    font-size: 16px;
    margin-bottom: 2px;
}
.comment-list .group-comment-date {
    margin-bottom: 12px;
}
.comment-list .comment-info .comment-edit-link,
.comment-list .comment-info .comment-date{
    font-size: 16px;
    color: #aaa;
}
.comment-list .reply-content {
    margin-top: -8px;
}
.comment-list .reply-content a{
    position: relative;
    color: #aaa;
}
.comment-list .reply-content a:before {
    content: url("/wp-content/themes/elitex/assets/images/reply.png");
    display: inline-block;
    margin-right: 10px;
    font-size: 0;
    line-height: 0;
}
.comment-list .reply-content a:hover{
    opacity: 0.6;
}
.comment-form .comment-form-comment {
    margin-bottom: 30px;
}
.comment-form .comment-notes {
    margin-bottom: 21px;
    font-size: 14px;
}
.comment-form p{
    margin-bottom: 25px;
}
.comment-form label {
    color: #222;
    font-weight: bold;
    display: block;
    margin-bottom: 2px;
    text-transform: capitalize;
}
.comment-form input[type="text"],
.comment-form textarea {
    color: #888;
    font-size: 14px;
    width: 100%;
    background-color: #f7f8fa;
    border-radius: 3px;
    height: 48px;
    border: none;
}
.comment-form textarea{
    min-height: 300px;
}
.comment-form .form-submit{
    margin-bottom: 0;
}
.comment-form .form-submit .button {
    font-size: 14px;
    padding: 0 44px;
    border-radius: 3px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 35px;
    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: 479px) {
    .comment-list .comment-avatar{
        max-width: 50px;
        margin-right: 10px;
    }
    .comment-list .comment-info {
        border: 1px solid #eeeeee;
        padding: 10px;
    }
}
/*==========================================================================
INNER PAGES
===========================================================================*/
/*----- CONTACT FORM-----*/
@media(min-width: 1200px){
    #customer_login.col2-set .col-1 > h2,
    #customer_login.col2-set .col-2 > h2{
        font-size: 25px;
    }
}
/*----- CONTACT FORM-----*/
.wpcf7-form{
    margin: 0 200px;
}
.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 {
    text-transform: capitalize;
    display: block;
    color: #222;
    font-weight: bold;
    font-size: 15px;
}
.wpcf7-form input:not([type="submit"]) {
    width: 100%;
    padding: 11px 20px;
    height: 48px;
    border-color: #f7f8fa;
    font-size: 14px;
    color: #888;
    border-radius: 3px;
    background-color: #f7f8fa;
    margin-top: 3px;
    font-weight: 400;
}
.wpcf7-form .textarea-massage {
    margin-top: 29px;
    margin-bottom: 13px;
}
.wpcf7-form textarea {
    width: 100%;
    padding: 11px 20px;
    height: 300px;
    border-color: #f7f8fa;
    font-size: 14px;
    color: #888;
    border-radius: 3px;
    background-color: #f7f8fa;
    margin-top: 3px;
    font-weight: 400;
}
.wpcf7-form .btn-submit{

}
.wpcf7-form [type="submit"] {
    vertical-align: middle;
    padding: 3px 46px 0px;
    line-height: 35px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border-radius: 3px;
    margin-top: 19px;
}
.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: 1499px) {
    .wpcf7-form{
        margin: 0 100px;
    }
}
@media (max-width: 1199px) {
    .wpcf7-form{
        margin: 0
    }
}
@media (max-width: 991px) {
    .wpcf7-form {
        max-width: 750px;
        margin: 0 auto;
    }
    .wpcf7-form [class^="col-"] > label,
    .wpcf7-form [class*=" col-"] > label,
    .wpcf7-form label{
        margin-bottom: 30px;
    }
    .wpcf7-form .textarea-massage,
    .wpcf7-form [type="submit"]{
        margin-top: 0;
    }
}
/*----- ABOUT US-----*/
.vc_progress_bar .vc_single_bar {
    border-radius: 30px !important;
    margin-bottom: 37px !important;
}
.vc_progress_bar .vc_single_bar .vc_label_units {
    border-radius: 50% !important;
    background-color: #63ab05;
    position: absolute;
    left: 0;
    top: -9px;
    min-width: 40px;
    min-height: 40px;
    text-align: center;
    line-height: 40px;
}
.vc_progress_bar .vc_single_bar .vc_bar {
    border-radius: 30px !important;;
}
.vc_progress_bar .vc_single_bar .vc_label {
    border-radius: 30px !important;;
    padding: 0 65px !important;
    font-size: 13px;
}
/*----- 404-----*/
.page-404 {
    background-image: url("/wp-content/themes/elitex/assets/images/404.jpg");
    background-position: center center;
    margin-bottom: 25px;
}
.page-404 .content-404 {
    max-width: 600px;
    padding: 40px 0 45px;
}
.page-404 .heading {
    font-size: 150px;
    line-height: 1;
    font-weight: bold;
    color: #222;
    letter-spacing: 30px;
    margin-bottom: 3px;
}
.page-404 .title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 3px;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
}
.page-404 .subtitle {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 32px;
    color: #666;
}
.page-404 .button {
    padding: 3px 90px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    line-height: 42px;
}
@media (min-width: 1200px) {
    .page-404 .content-404 {
        margin-left: 24px;
    }
}
@media (max-width: 991px) {
    .page-404 .content-404 {
        max-width: 470px;
        padding: 60px 0;
    }
    .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: 767px) {
    .page-404 {
        background-image: none;
        background-color: #f1f1f1;
    }
    .page-404 .content-404 {
        max-width: inherit;
        padding: 30px 0 0;
    }
}
@media (max-width: 479px) {
    .page-404 .content-404 {
        padding: 0;
    }
    .page-404 .heading {
        font-size: 100px;
    }
}
/*==========================================================================
HEADER
===========================================================================*/
.no-toolkit .logo{
    text-align: left!important;
}
.logo-text{
    font-weight: bold;
    font-size: 50px;
    color: #333;
    text-transform: capitalize;
    line-height: 100%;
}
.logo-text:hover{
    color: #333!important;
}
/*----- DROPDOWN -----*/
.ovic-dropdown {
    position: relative;
}
.ovic-dropdown > .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;
    margin: 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!important;
    right: 0;
}
.ovic-dropdown > .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;
}
/*----- 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-userlink: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 -----*/
.top-header{
    border-bottom: 1px solid #f6f6f8;
}
.top-bar-menu::before,
.top-bar-menu::after {
    content: '';
    display: table;
    clear: both;
}
.top-header-left{
    float: left;
}
.top-header-right{
    float: right;
}
.top-header-right>*{
    display: inline-block;
    list-style: none;
    vertical-align: top;
}
.top-header ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.top-header ul li{
    font-size: 14px;
    color: #444;
}
.top-bar-menu>li>a,
.block-userlink a{
    padding: 8.5px 18px 8px 20px;
    display: block;
    position: relative;
}
.block-userlink a{
    text-transform: capitalize;
}
.top-header .top-bar-menu>li>a:before{
    height: 16px;
    width: 1px;
    content: '';
    background-color: #c7c7c7;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 12px;
}
.top-header-left .top-bar-menu>li:first-child>a{
    padding-left: 0;
}
.top-header-left .top-bar-menu>li:first-child>a:before{
    display: none;
}
.top-header-right .top-bar-menu>li:last-child>a{
    padding-right: 0;
}
.top-header-left .top-bar-menu > li,
.top-header-right .top-bar-menu > li,
.top-header-right .block-userlink{
    display: inline-block;
    position: relative;
}
.top-header .ovic-menu li > a > .icon{
    margin-right: 6px;
    vertical-align: middle;
}
.ovic-menu>li{
    list-style: none;
}
.block-userlink a .icon{
    margin-right: 8px;
    font-size: 13px;
}
.top-header .socials-list{
    margin-right: 10px;
}
.top-header .socials-list > span{
    color: #555;
    margin-right: 10px;
    padding: 7.5px 0;
    display: inline-block;
}
/*----- HEADER MIDDLE -----*/
.header-middle {
    padding: 21px 0 19px;
}
.header-middle ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.header-middle ul li{
    display: inline-block;
    position: relative;
}
#menu-middle-menu-has-icon>li {
    display: inherit;
}
.header-middle-inner{
    display: table;
    width: 100%;
}
.header-middle-inner>*{
    display: table-cell;
    vertical-align: middle;
}
.block-search .form-search{
    position: relative;
    border: 2px solid #eaeaea;
    border-radius: 3px;
    max-width: 895px;
    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-left: 1px solid transparent;
    width: 215px;
    padding-top: 3px;
    position: relative;
}
.header .form-content .category:before{
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    width: 1px;
    height: calc( 100% - 2px );
    background-color: #eaeaea;
}
.header .chosen-container-single .chosen-single{
    font-size: 14px;
    color: #666;
    overflow: inherit;
}
.header .chosen-container-single .chosen-single span{
    width: 100%;
    margin-right: -7px;
}
.header .chosen-container-single .chosen-single::after{

}
.header .block-search select{
    border: none;
}
.header .block-search .ovic-live-search-form .txt-livesearch{
    height: 41px;
    line-height: 40px;
    border: none;
    padding-left: 20px;
    color: #aaa;
}
.header .block-search .btn-submit {
    position: absolute;
    top: -2px;
    right: -2px;
    color: #fff;
    width: 63px;
    padding: 0;
    font-size: 22px;
    transition: all .5s ease;
    line-height: 37px;
    border-radius: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.header .block-search .btn-submit span{
    line-height: 45px;
    padding: 0;
}
.header-middle .top-middle-menu{
    padding-left: 0;
    margin-bottom: 0;
}
.header-middle .top-bar-menu>li>a{
    padding: 0;
    color: #222;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: -4px;
}
.header-middle .top-bar-menu>li>.desc{
    color: #888;
    font-size: 15px;
}
.header-middle .ovic-menu li > a > .icon{
    font-size: 40px;
    float: left;
    margin-right: 11px;
}
.header-control{
    float: right;
    padding-top: 12px;
}
.header-control>*{
    display: inline-block;
    vertical-align: middle;
}
.header-control>*:not(:first-child){
    margin-left: 44px;
}
.header-control>*:first-child{
    margin-right: -5px;
}
.header-control>div>a{
    font-size: 22px;
    position: relative;
}
.header-control>div>.woo-wishlist-link{
    font-size: 23px;
    vertical-align: bottom;
}
.block-compare .compare-count,
.block-wishlist .wishlist-count{
    position: absolute;
    top: -6px;
    right: -15px;
    font-size: 13px;
    color: #666;
    width: 20px;
    height: 20px;
    line-height: 21px;
    text-align: center;
    background-color: #e4e4e4;
    border-radius: 50%;
}
/*----- MINICART -----*/
.widget_shopping_cart .widgettitle{
    margin-bottom: 30px;
}
.block-minicart {
    position: relative;
    padding-left: 0;
    vertical-align: top;
}
.block-minicart .cart-link{
    font-size: 15px;
    font-weight: bold;
    color: #222;
}
.block-minicart .elitex-icon{
    font-size: 20px;
}
.block-minicart .amount{
    margin-left: 12px;
}
.block-minicart .cart-link>*{
    display: inline-block;
    vertical-align: middle;
}
.block-minicart .cart-link .count{
    position: absolute;
    min-width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 400;
    font-size: 12px;
    display: inline-block;
    line-height: 22px;
    top: -7px;
    left: 12px;
}
.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(.open) > .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% + 20px);
    right: 0;
    width: 428px;
    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 .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;
}
.block-minicart .widget_shopping_cart .product_list_widget > li img{
    width: 100px!important;
}
.block-minicart .widget .product_list_widget > li > a:not(.remove){

}
.woocommerce-mini-cart__buttons > * {
    padding: 3px 0 0;
    display: inline-block;
    margin-bottom: 20px;
    line-height: 50px;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: bold;
}
.woocommerce-mini-cart__buttons > .button:not(.checkout) {
    padding: 1px 0 0;
    line-height: 48px;
    border: 2px solid #eee;
    background-color: transparent!important;
}
.woocommerce-mini-cart__buttons > .button:not(.checkout):hover{
    color: #fff!important;
}
.block-minicart .product_list_widget > li .amount {
    font-size: 18px !important;
    margin-top: 4px;
    margin-left: 2px;
    display: inline-block;
}
.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 #e6e6e6;
    padding-bottom: 30px;
    margin-bottom: 30px!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 li a{
    text-transform: uppercase!important;
    font-weight: 600;
}
.widget_shopping_cart .woocommerce-mini-cart__total {
    font-weight: bold;
    font-size: 24px;
    color: #222;
    border-top: 1px solid #e5e5e5;
    padding: 25px 0 8px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.widget_shopping_cart .woocommerce-mini-cart__total strong {
    font-size: 20px;
    color: #666;
    font-weight: bold;
}
.widget_shopping_cart .woocommerce-mini-cart li .remove {
    position: absolute;
    width: 18px;
    height: 18px;
    padding: 0;
    margin-bottom: 0;
    font-size: 0;
    right: 2px;
    top: 0;
}
.widget_shopping_cart .woocommerce-mini-cart li .remove:after {
    content: '\e91c';
    font-family: 'Elitex-icon' !important;
    font-size: 10px;
    color: #aaaaaa;
}
.widget_shopping_cart .product_list_widget > li img {
    width: 70px!important;
}
/*----- 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;
    text-align: left;
}
.box-header-nav .main-menu > .menu-item:first-child > a,
.header.style-4 .box-header-nav .main-menu > .menu-item:first-child > a{
    padding-left: 30px;
}
.box-header-nav .main-menu > .menu-item > a {
    font-size: 18px;
    font-weight: bold;
    color: #fffefe;
    text-transform: uppercase;
    padding: 15px;
    font-family: 'Ubuntu', sans-serif;
}
.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: #333;
}
.top-header .top-bar-menu > .menu-item-has-children > a:after,
.box-header-nav .main-menu > .menu-item-has-children > a::after,
.box-header-nav .main-menu > .menu-item > .sub-menu > .menu-item-has-children > a::after{
    display: inline-block;
    vertical-align: top;
    content: "\f107";
    font-family: 'FontAwesome', sans-serif;
    margin-left: 6px;
    font-size: 16px;
    font-weight: normal;
}
.box-header-nav .main-menu > .menu-item > .sub-menu > .menu-item-has-children > a::after{
    float: right;
    content: "\f105";
    margin-top: -3px;
}
.top-header .top-bar-menu > .menu-item-has-children > a:after{
    font-size: 15px;
}
.top-header .sub-menu,
.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;
}
.top-header .top-bar-menu .sub-menu{
    width: 200px;
    left: auto;
    right: 0;
    border-radius: 3px;
    padding: 14px 20px;
}
.top-header .top-header-left .top-bar-menu .sub-menu{
    left: 0;
    right: auto;
}
.top-header .sub-menu>li:not(:last-child){
    margin-bottom: 3px;
}
.box-header-nav .main-menu .sub-menu .sub-menu {
    top: -18px;
    left: 100%;
}
.top-header .top-bar-menu > .menu-item:not(:hover) > .sub-menu,
.box-header-nav .main-menu > .menu-item:not(:hover) > .sub-menu,
.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: 29px 0;
}
/*----- HEADER NAV -----*/
.header-nav-inner{
    display: table;
    width: 100%;
}
.header-nav-inner>*{
    display: table-cell;
    vertical-align: middle;
}
.header-nav ul{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.header-nav ul.elitex-nav > li{
    display: inline-block;
}
.header-nav ul.elitex-nav > li > a:hover{
    color: inherit;
}
/*----- 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 {
    padding: 16px 20px 13px;
    cursor: pointer;
    background-color: #15af90;
}
.block-nav-category .block-title .before,
.menu-bar .icon{
    width: 14px;
    font-size: 0;
    line-height: 0;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
}
.block-nav-category .block-title .before span,
.menu-bar .icon span{
    display: inline-block;
    border: 1px solid #fff;
    height: 2px;
    width: 14px;
    margin-bottom: 3px;
}
.block-nav-category .block-title .before span:last-child,
.menu-bar .icon span:last-child{
    margin-bottom: 0;
}
.block-nav-category .block-title .text-title {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    vertical-align: middle;
    color: #fff;
}
.block-nav-category .block-title .text-title:after{
    content: "\f107";
    font-family: 'FontAwesome';
    margin-left: 8px;
    font-weight: normal;
    font-size: 14px;
}
.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 10px;
    min-width: 270px;
    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: 2px solid #15af90;
    border-top: none;
}
.block-nav-category .vertical-menu {
    position: relative;
    list-style: none;
    padding: 8px 0 31px;
    margin-bottom: 0;
}
.block-nav-category .vertical-menu .menu-item.link-other {
    display: none;
}
.block-nav-category .vertical-menu .menu-item {
    position: relative;
}
.block-nav-category .vertical-menu > .menu-item {
    color: #333;
    display: block;
    border-top: 1px solid #eaeaea;
}
.block-nav-category .vertical-menu > .menu-item:first-child{
    border-top: none;
}
.block-nav-category .vertical-menu .menu-item > a {
    display: block;
    padding: 13px 0;
}
.block-nav-category .vertical-menu li > a > .icon{
    font-size: 25px;
    vertical-align: middle;
    min-width: 25px;
    display: inline-block;
    text-align: center;
    margin-right: 14px;
}
.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: "\f196";
    font-family: 'FontAwesome';
    -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: "\f147";
}
/*=========*/
.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: '\f105';
    font-family: FontAwesome, sans-serif;
    display: inline-block;
    float: right;
}
.block-nav-category .vertical-menu > .menu-item-has-children > a:after {
    color: #aaa;
}
.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% + 12px);
}
.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 > .sub-menu:before {
    position: absolute;
    content: '';
    right: 100%;
    top: 0;
    bottom: 0;
    width: 20px;
}
.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);
}
.header.style-4 .block-nav-category .vertical-menu{
    padding-bottom: 20px;
}
@media (min-width: 1200px) {
    .block-nav-category .vertical-menu .menu-item.item-megamenu{
        position: static;
    }
    .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.7);
        -moz-box-shadow: 2px 3px 6px rgba(202, 202, 202, 0.7);
        box-shadow: 2px 3px 6px rgba(202, 202, 202, 0.7);
        padding: 28px 30px;
    }
}
@media(min-width: 1500px){
    .header:not(.style-2) .block-nav-category.always-open .block-content {
        visibility: visible;
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .header.style-4 .block-nav-category.always-open .block-content {
        visibility: visible;
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@media(min-width: 1800px){
    .header.style-2 .block-nav-category.always-open .block-content {
        visibility: visible;
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
}
@media(max-width: 1499px){
    .box-header-nav .main-menu .megamenu,
    .block-nav-category .vertical-menu .megamenu{
        background-image: none!important;
    }
}
@media(max-width: 1366px){
    .box-header-nav .main-menu > .menu-item > a{
        font-size: 17px;
    }
}
/*----- HEADER STYLE 01 -----*/
.header.style-1 .logo {
    text-align: right;
}
.header.style-1 .block-search .form-search,
.header.style-3 .block-search .form-search {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    top: 0;
    background-color: #fff;
    z-index: 999999;
    transition: opacity 0.5s,visible 0.5s;
    -o-transition: opacity 0.5s,visible 0.5s;
    -webkit-transition: opacity 0.5s,visible 0.5s;
}
.header.style-1.open .block-search .form-search ,
.header.style-3.open .block-search .form-search {
    opacity: 1;
    visibility: visible;
}
.close-block-search {
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 25px;
}
.header.style-1 .block-search .form-content,
.header.style-3 .block-search .form-content{
    max-width: 600px;
    padding:0 20px;
    margin: 0 auto;
    margin-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header.style-1 .block-search .form-content .category,
.header.style-3 .block-search .form-content .category,
.header.style-1 .block-search .btn-submit,
.header.style-3 .block-search .btn-submit{
    display: none;
}
.header.style-1 .ovic-live-search-form .txt-livesearch,
.header.style-3 .ovic-live-search-form .txt-livesearch{
    height: 50px;
    font-size: 30px;
    text-align: center;
    color: #000;
}
.header.style-1 .box-header-nav .main-menu{
    text-align: center;
}
.header.style-1 .header-control.open .close-block-search,
.header.style-3 .header-control.open .close-block-search{
    display: block;
}
.header-nav .has-new-menu ul{
    padding: 0;
    margin: 0;
    text-align: right;
}
.header-nav .has-new-menu ul li a{
    color: #fffefe;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding: 17px 0px 13px 20px;
    display: inline-block;
}
/*----- HEADER STYLE 02 -----*/
.header.style-2 .block-nav-category .block-title{
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.header.style-2 .block-nav-category .block-content,
.header.style-3 .block-nav-category .block-content{
    border-color: #eee;
    border-width: 1px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.header.style-2 .block-userlink > a{
    padding: 0;
    padding-left: 20px;
}
.header.style-2 .block-userlink a .icon {
    font-size: 20px;
    vertical-align: middle;
}
.header.style-2 .block-userlink .text{
    text-transform: uppercase;
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    transition: all .5s ease;
}
.header:not(.style-1) .box-header-nav .main-menu > .menu-item > a{
    color: #222;
}
.header.style-2 .header-nav .has-new-menu ul li a{
    color: #222;
    font-size: 18px;
}
/*----- HEADER STYLE 03 -----*/
.header.style-3 .has-new-menu-2 ul{
    padding: 0;
    margin: 0;
}
.header.style-3 .header-middle .top-bar-menu>li,
.header.style-3 .header-middle .top-bar-menu>li>*{
    display: inline-block;
    vertical-align: top;
    text-transform: uppercase;
}
.header.style-3 .header-middle .top-bar-menu>li{
    border: 2px solid #eaeaea;
    border-radius: 30px;
    padding: 7px 23px 3px;
}
.header.style-3 .header-middle .top-bar-menu>li:first-child{
    padding-left: 29px;
    padding-right: 29px;
    border-color: #fff;
    background-color: #fff;
}
.header.style-3 .header-middle .top-bar-menu>li>a{
    margin-right: 3px;
}
.header.style-3 .header-middle .top-bar-menu>li>a,
.header.style-3 .header-middle .top-bar-menu>li .desc{
    font-size: 14px;
    color: #fffefe;
}
.header.style-3 .header-middle .top-bar-menu>li:first-child>a,
.header.style-3 .header-middle .top-bar-menu>li:first-child .desc{
    color: #222;
}
.header.style-3 .header-middle .top-bar-menu>li:first-child{
    margin-right: 15px;
}
.header.style-3 .header-control>div>a,
.header.style-3 .block-minicart .cart-link{
    color: #fff;
}
.header.style-3 .block-minicart .cart-link .count{
    background-color: #fff!important;
    font-weight: 500;
    font-size: 13px;
    color: #222;
}
.header.style-3 .header-nav,
.header.style-5 .header-nav{
    position: relative;
    z-index: 10;
    webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.18);
}
.header.style-3 .block-nav-category .block-title{
    background-color: transparent;
}
.header.style-3 .block-nav-category .block-title .before{
    display: none;
}
.header.style-3 .block-nav-category .block-title .text-title{
    color: #111;
}
.header.style-3 .box-header-nav .main-menu{
    text-align: center;
}
/*----- HEADER STYLE 04 -----*/
.header.style-4 .top-header{
    background-color: #fafafa;
    border-bottom-color: transparent;
}
.header.style-4 .header-middle {
    padding: 29px 0 23px;
}
.header.style-4 .header-nav{
    border-bottom: 1px solid #eaeaea;
}
.header.style-4 .block-nav-category .block-title {
    padding: 15px 20px 12px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.header.style-4 .block-nav-category .block-content{
    border-color: #eaeaea;
    border-width: 2px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.header.style-4 .box-user {
    float: right;
}
.header.style-4 .box-user>* {
    display: inline-block;
}
.header.style-4 .top-nav-menu-2>li{
    display: inline-block;
}
.header.style-4 .block-userlink a .icon{
    font-size: 13px;
    vertical-align: bottom;
}
.header.style-4 .block-userlink .text,
.header.style-4 .header-nav .has-new-menu ul li a{
    color: #444;
    font-weight: normal;
    text-transform: capitalize;
    font-size: 14px;
}
.header.style-4 .header-nav .has-new-menu ul li a{
    padding: 16px 0px 12px 20px;
}
.header.style-4 .block-userlink > a{
    padding: 12px 0;
}
.header.style-4 .box-header-nav .main-menu > .menu-item > a{
    padding: 16px 15px 12px;
}
/*----- HEADER STYLE 05 -----*/
.header.style-5 .top-header{
    border-bottom-color: transparent;
}
.header.style-5 .top-bar-menu>li>a{
    color: #fff;
}
.header.style-5 .top-header .top-bar-menu>li>a:before{
    background-color: rgba(255, 255, 255, 0.22);
}
.header.style-4 .top-header .top-bar-menu>li:first-child>a:before,
.header.style-5 .top-header .top-bar-menu>li:first-child>a:before{
    display: none;
}
.header.style-5 .logo {
    padding-right: 130px;
}
.header.style-5 .vertical-wrapper{
    position: relative;
    padding-right: 40px;
}
.header.style-5 .block-nav-category .block-title{
    padding: 0;
    background-color: transparent;
}
.header.style-5 .block-nav-category .block-title .text-title{
    display: none;
}
.header.style-5 .block-nav-category .block-title .before{
    width: 17px;
    margin-right: 0;
}
.header.style-5 .block-nav-category .block-title .before span{
    width: 17px;
    height: 3px;
    background-color: #444444;
    border: 1px solid #444;
}
.header.style-5 .block-nav-category .block-content{
    border-top: 1px solid #eee;
    left: auto;
}
.header.style-5 .block-search .form-search{
    margin-left: 0;
}
.header.style-5 .block-userlink .text{
    text-transform: capitalize;
    font-weight: 400;
}
.header.style-5 .box-header-nav .main-menu > .menu-item:first-child > a{
    padding-left: 0;
}
.header.style-5 .box-header-nav .main-menu > .menu-item > a{
    font-size: 18px;
    padding-left: 31px;
    padding-right: 31px;
    font-family: 'Hind', sans-serif;
}
.header.style-2 .block-nav-category .vertical-menu > .menu-item > .sub-menu,
.header.style-3 .block-nav-category .vertical-menu > .menu-item > .sub-menu,
.header.style-5 .block-nav-category .vertical-menu > .menu-item > .sub-menu{
    left: calc(100% + 11px);
}
@media(min-width: 1700px){
    .header.style-5 .block-nav-category .block-content{
        right: 40px;
    }
}
@media (min-width: 1200px) {
    .header.style-1 .header-control.open .close-block-search,
    .header.style-3 .header-control.open .close-block-search{
        position: absolute;
        width: 30px;
        height: 30px;
        line-height: 33px;
        text-align: center;
        margin: 0 auto;
        top: 15px;
        right: 15px;
        color: #fff !important;
    }
    .header .header-control .close-block-search:hover span:before{
        display: inline-block;
        -webkit-animation: fa-spin 1.0s infinite linear;
        -o-animation: fa-spin 1.0s infinite linear;
        animation: fa-spin 1.0s infinite linear;
    }
    .header.style-1 .header-control.open .block-search .form-search,
    .header.style-3 .header-control.open .block-search .form-search{
        opacity: 1;
        visibility: visible;
        z-index: 999999;
        max-width: inherit;
        background-color: rgba(0, 0, 0, 0.5);
        border: none;
    }
    .header.style-1 .ovic-live-search-form .txt-livesearch,
    .header.style-3 .ovic-live-search-form .txt-livesearch{
        border: none;
        border-bottom: 1px solid #fff;
        color: #fff;
        font-size: 40px;
        text-align: center;
        font-weight: 300;
        line-height: 40px;
        padding: 0 20px;
    }
    .header.style-2 .open-search{
        display: none;
    }
}
@media (max-width: 1779px) {
    .header.style-5 .logo{
        padding-right: 50px;
    }
    .header.style-5 .header-control>*:not(:first-child){
        margin-left: 30px;
    }
    .header.style-4 .box-header-nav .main-menu > .menu-item > a{
        font-size: 17px;
    }
}
@media (max-width: 1499px) {
    .block-search .form-search{
        max-width: 700px;
    }
    .header.style-4 .box-user .has-new-menu{
        display: none;
    }
}
@media (max-width: 1366px) {
    .block-search .form-search{
        max-width: 600px;
    }
}
/*----- 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 .header-control{
        padding-top: 20px;
    }
    .header-sticky .box-header-nav .main-menu > .menu-item > a{
        color: #333;
    }
    .header-sticky .block-minicart .widget_shopping_cart{
        top: calc(100% + 10px);
    }
}
/*----- WIDGET MOBILE -----*/
@media(max-width: 1199px){
    .widget-area {
        position: fixed;
        display: block;
        margin: 0;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        z-index: 100000;
        overflow-y: auto;
        -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;
        -webkit-box-shadow: 3px 5px 14px -3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 3px 5px 14px -3px rgba(0, 0, 0, 0.11);
        box-shadow: 3px 5px 14px -3px rgba(0, 0, 0, 0.11);
        background-color: #fff;
        padding-top: 70px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .widget-area.open {
        left: 0;
    }
    .sidebar-head {
        display: block;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #e6e6e6;
    }
    .sidebar-head .text {
        display: block;
        text-align: center;
        color: #222;
        padding: 12px 0;
    }
    .sidebar-head .close-block-sidebar {
        color: #333;
        display: inline-block;
        float: right;
        width: 44px;
        text-align: center;
        line-height: 48px;
        border-left: 1px solid #e6e6e6;
        font-size: 14px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1111;
    }
}
/*----- HEADER MOBILE -----*/
@media (min-width: 1200px) {
    .header-mobile-wapper,
    .close-block-search,
    .header-mobile{
        display: none;
    }
}
@media (max-width: 1199px) {
    .header,
    .header-sticky,
    .header-mobile .group,
    .header-mobile .block-minicart:after {
        display: none;
    }
    .header-mobile {
        display: inline-block;
        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);
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: #fff;
        position: static;
        margin-bottom: 20px;
        -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 .header-mobile-inner {
        display: table;
        width: 100%;
        padding: 20px 0;
    }
    .header-mobile .header-mobile-inner .logo,
    .header-mobile .header-mobile-inner .header-control {
        display: table-cell;
        vertical-align: middle;
    }
    .header-mobile .form-search-mobile .block-search .form-search {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        top: 0;
        background-color: #fff;
        z-index: 999999;
        max-width: inherit;
        transition: opacity 0.5s,visible 0.5s;
        -o-transition: opacity 0.5s,visible 0.5s;
        -webkit-transition: opacity 0.5s,visible 0.5s;
    }
    .header-mobile .form-search-mobile.open .block-search .form-search{
        opacity: 1;
        visibility: visible;
        z-index: 999999;
    }
    .header-mobile .block-search .form-content{
        max-width: 600px;
        padding:0 20px;
        margin: 0 auto;
        margin-top: 0;
        line-height: 100%;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .header-mobile .header-control .control > * {
        float: right;
        margin-left: 15px;
    }
    .header-mobile .header-control .control .menu-mobile-wapper > a,
    .header-mobile .form-search-mobile > a {
        height: 40px;
        width: 40px;
        text-align: center;
        line-height: 40px;
        font-size: 21px;
        display: block;
        color: #fff;
        border-radius: 6px;
    }
    .header-mobile .form-search-mobile > a{
        line-height: 44px;
    }
    .header-mobile-inner .block-search .form-search .category,
    .header-mobile-inner .block-search .btn-submit > .text,
    .header-mobile .block-search .btn-submit{
        display: none;
    }
    .header-mobile .close-block-search{
        position: absolute;
        width: 30px;
        height: 30px;
        line-height: 33px;
        text-align: center;
        margin: 0 auto;
        top: 15px;
        right: 15px;
        color: #333 !important;
    }
    .menu-bar .icon{
        width: 20px;
        margin-right: 0;
        margin-top: -5px;
    }
    .menu-bar .icon span{
        border-color: #222;
        width: 20px;
        margin-bottom: 4px;
    }
    .header-control .menu-mobile-wapper{
        margin-left: 30px;
    }
    .header-mobile .open-search{
        font-size: 20px;
    }
    .header-mobile .ovic-live-search-form .txt-livesearch{
        border: none;
        border-bottom: 1px solid #eee;
        color: #000;
        font-size: 40px;
        text-align: center;
        font-weight: 300;
        line-height: 40px;
        padding:0 20px;
    }
    .ovic-menu-panels-actions-wrap .ovic-menu-current-panel-title .icon:before{
        margin-right: 5px;
        vertical-align: middle;
    }
    .header-mobile .block-minicart .widget_shopping_cart{
        width: 350px;
    }
}
@media (max-width: 767px) {
    .header-mobile .block-compare,
    .header-mobile .block-wishlist{
        display: none;
    }
    .header-mobile .block-minicart{
        margin-left: 35px;
    }
    .header-mobile .block-minicart .widget_shopping_cart .product_list_widget > li img{
        width: 70px!important;
    }
    .header-mobile .widget_shopping_cart .woocommerce-mini-cart__total{
        margin-bottom: 10px;
        padding-top: 15px;
    }
    .header-mobile .woocommerce-mini-cart__buttons{
        margin-bottom: 10px;
    }
    .header-mobile .woocommerce-mini-cart__buttons > *{
        line-height: 37px;
        margin-bottom: 10px;
    }
    .header-mobile .woocommerce-mini-cart__buttons > .button:not(.checkout){
        line-height: 35px;
    }
}
@media (max-width: 640px) {
    .header-mobile .header-mobile-inner {
        padding: 10px 0;
    }
    .header-mobile .form-search-mobile .block-search .form-search {
        max-width: 100%;
    }
}
@media (max-width: 470px) {
    .header-mobile .header-mobile-inner .logo,
    .header-mobile .header-mobile-inner .header-control{
        display: block;
        text-align: center;
        vertical-align: middle;
    }
    .header-mobile .header-mobile-inner .header-control{
        float: none;
        padding-top: 15px;
        margin: 0 auto;
    }
    .header-mobile .header-mobile-inner .header-control > * {
        margin-left: 7px;
        margin-right: 7px;
    }
    .header-mobile .ovic-live-search-form .txt-livesearch{
        font-size: 25px;
        line-height: 25px;
    }
    .header-mobile .header-mobile-inner .header-control{
        position: relative;
    }
    .header-mobile .block-minicart{
        position: static;
    }
    .header-mobile .block-minicart .widget_shopping_cart{
        width: 100%;
        left: 0;
    }
}
/*==========================================================================
WIDGETS
===========================================================================*/
.widget .screen-reader-text {
    display: none !important;
}
.widget select {
    width: 100%;
    cursor: pointer;
    padding: 16px 30px 12px!important;
    border-radius: 3px;
    font-size: 15px;
}
.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: bold;
    color: #222;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 13px;
}
/*----- 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;
    font-weight: 600;
    color: #222!important;
}
.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: 8px 0;
    color: #666;
}
.widget-area > .widget_categories ul li{
    color: #333;
}
.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: 8px 0 -8px;
}
.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-area > .widget_archive ul li a{
    position: relative;
}
.widget-area > .widget_archive ul li a:before{
    /*position: absolute;*/
    content: '';
    width: 21px;
    height: 21px;
    display: inline-block;
    border: 2px solid #f0f0f0;
    border-radius: 3px;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 10px;
}
.widget-area > .widget_archive ul li a:after{
    position: absolute;
    content: "\f00c";
    font-family: 'FontAwesome';
    font-size: 12px;
    color: #fff;
    top: -1px;
    left: 5px;
    opacity: 0;
    visibility: hidden;
}
.widget-area > .widget_archive ul li a:hover:after{
    opacity: 1;
    visibility: visible;
}
/*----- 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: 8px 0;
}
.widget_nav_menu .menu .menu-item{
    display: block;
}
.widget_ovic_nav_menu .menu .sub-menu,
.widget_nav_menu .menu .sub-menu {
    margin: 8px 0 -8px;
}
.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: 5px;
    text-transform: capitalize;
}
.widget .product_list_widget > li > a:not(:hover) {
    color: #555;
}
.widget .product_list_widget > li img {
    float: left;
    width: 100px;
    margin-right: 10px;
}
.widget .product_list_widget > li a:hover img {
    opacity: 0.7;
}
.widget .product_list_widget > li .quantity,
.widget .product_list_widget > li .amount {
    font-weight: 600;
    font-size: 18px;
    color: #666666;
}
.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-area .widget_search{
    margin-bottom: 47px!important;
}
.widget_search .widgettitle{
    margin-bottom: 29px;
}
.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: 45px;
    border:2px solid #eaeaea;
    color: #aaa;
}
.widget_product_search .search-field{
    border:2px solid #eaeaea;
}
.widget_search .search-submit,
.widget_product_search button {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 22px;
    color: #fff;
    width: 63px;
    background-color: transparent;
    padding: 0;
    line-height: 36px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.widget_search .search-submit>*,
.widget_product_search button>*{
    line-height: 45px;
}
.widget_product_search button{
    font-size: 0;
    line-height: 44px;
    color: #333;
}
.widget_product_search button:after{
    font-size: 24px;
    content: "\e912";
    font-family: 'Elitex-icon' !important;
    vertical-align: middle;
}
.widget_search .search-submit:hover,
.widget_product_search button:hover{
    color: #222;
}
.widget_product_search .widgettitle{
    margin-bottom: 29px;
}
/*----- WIDGET TAGS -----*/
.widget_tag_cloud{
    margin-bottom: 27px;
}
.widget_tag_cloud .widgettitle {
    margin-bottom: 19px;
}
.widget .tagcloud {
    font-size: 0;
    line-height: 0;
}
.widget .tagcloud a {
    display: inline-block;
    font-size: 14px !important;
    line-height: 22px;
    padding: 2px 11px 0;
    background-color: #fff;
    margin: 0 9px 9px 0;
    color: #888;
    border: 2px solid #f0f0f0;
    border-radius: 3px;
    text-transform: capitalize;
}
.widget .tagcloud a:hover{
    color: #111;
}
.widget_product_tag_cloud .widgettitle{
    margin-bottom: 19px;
}
/*----- WIDGET RECENT POST -----*/
.widget-area .widget-recent-post{
    margin-bottom: 48px!important;
}
.widget-recent-post .widgettitle{
    margin-bottom: 40px;
}
.widget-recent-post .ovic-blog .post-item:not(:last-child){
    margin-bottom: 30px;
}
.widget-recent-post .ovic-blog .post-thumb{
    max-width: 200px;
    float: left;
    margin-right: 10px;
}
.widget-recent-post .post-thumb .thumb-img{
    margin-bottom: 0;
}
.widget-recent-post .post-thumb .post-date{
    display: none;
}
.widget-recent-post .ovic-blog .post-item,
.widget-recent-post .ovic-blog .post-info{
    overflow: hidden;
}
.widget-recent-post .ovic-blog .post-item .post-title{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
}
@media (max-width: 1499px) {
    .widget-recent-post .ovic-blog .post-item:not(:last-child) {
        margin-bottom: 20px;
    }
    .widget-recent-post .ovic-blog .post-thumb{
        max-width: 140px;
    }
    .widget-recent-post .ovic-blog .post-thumb .post-date{
        left: 5px;
        top: 5px;
        display: none;
    }
    .widget-recent-post .ovic-blog .post-item .post-title{
        margin-bottom: 0;
        font-size: 13px;
        line-height: 20px;
    }
}
/*----- WIDGET SOCIAL -----*/
.widget-area .widget-ovic-socials{
    margin-bottom: 36px!important;
}
.widget-ovic-socials .ovic-socials ul li a span{
    background-color: transparent!important;
    font-size: 23px;
    color: #222;
    margin-right: 3px;
}
/*----- WIDGET CATEGORIES -----*/
.widget_categories form{
    padding: 0!important;
}
.widget_product_categories select{
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}
.widget-area > .widget_categories ul li a:after,
.widget-area > .widget_product_categories ul li a:after{
    float: right;
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 14px;
    display: inline-block;
}
/*----- 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: 3px;
}
/*----- WIDGET PRICE -----*/
.widget_price_filter .price_slider {
    height: 6px;
    display: block;
    background-color: #e1e1e1;
    position: relative;
    width: 100%;
    margin-top: 28px;
    border-radius: 30px;
}
.widget_price_filter .ui-slider-handle {
    width: 18px;
    height: 18px;
    position: absolute;
    top: -6px;
    background-color: #1fc0a0;
    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: 6px;
    background-color: #1fc0a0;
    border-radius: 30px;
}
.widget_price_filter .price_slider_amount {
    margin-top: 21px;
    overflow: hidden;
}
.widget_price_filter .price_slider_amount .button {
    padding: 2px 30px 0;
    line-height: 36px;
    margin-bottom: 10px;
    float: right;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 3px;
}
.widget_price_filter .price_slider_amount .price_label {
    color: #666;
    display: inline-block;
    font-size: 14px;
    margin-top: 3px;
}
.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: inline-block;
    padding: 7px 0;
    position: relative;
    margin-top: 8px;
}
.widget_layered_nav .color-group > * i {
    display: inline-block;
    float: left;
    position: relative;
    width: 27px;
    height: 27px;
    line-height: 27px;
    border: 2px solid #e6e6e6;
    margin-right: 6px;
    margin-top: -1px;
    border-radius: 50%;
}
.widget_layered_nav .color-group .count,
.widget_layered_nav .color-group .term-name{
    display: none;
}
/*----- 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: 38px !important;
}
.widget-area > .widget_layered_nav {
    margin-bottom: 37px !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: 7px;
    left: 9px;
}
.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_layered_nav .list-group{
    margin-top: 22px;
}
.widget_layered_nav .list-group>li{
    display: inline-block;
    padding: 0!important;
}
.widget_layered_nav .list-group>li>a{
    text-transform: uppercase;
    display: inline-block;
    font-size: 14px!important;
    font-weight: bold;
    color: #222;
    border: 2px solid #eeeeee;
    border-radius: 2px;
    line-height: 25px;
    padding: 3px 15px 0;
    min-width: 55px;
    margin-right: 10px!important;
    margin-bottom: 10px;
}
.widget_layered_nav .list-group li.selected>a,
.widget_layered_nav .list-group li>a:hover{
    color: #fff;
}
.widget_layered_nav .list-group .count{
    display: none;
}
@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;
    }
}
/*----- WIDGET PRODUCT SLIDE -----*/
.widget-products-slide{
    margin-bottom: 40px!important;
}
.widget-products-slide .widgettitle{
    margin-bottom: 29px;
}
.widget-products-slide .row-item:not(:last-child){
    margin-bottom: 30px;
}
.widget-products-slide .product-item .product-thumb{
    margin-bottom: 0;
    max-width: 80px;
    float: left;
    margin-right: 10px;
}
.widget-products-slide .product-item .product-info{
    overflow: hidden;
}
.widget-products-slide .product-item .product-info .product-name{
    line-height: 20px;
    margin-bottom: 3px;
}
.widget-products-slide .product-item .rating-wapper{
    margin-bottom: -3px;
}
.widget-products-slide .product-item .price{
    display: block;
    margin-bottom: 0;
}
.widget_product_search{
    margin-bottom: 48px!important;
}
/*==========================================================================
SHOP PAGE
===========================================================================*/
/*----- SHOP CONTROL -----*/
.modes-mode {
    border: none;
    background-color: transparent;
    font-size: 0;
    line-height: 0;
    padding: 2px;
}
.modes-mode:hover,
.modes-mode:focus {
    background-color: transparent!important;
    border-color: transparent!important;
}
.modes-mode .button-inner {
    display: block;
    position: relative;
    overflow: hidden;
}
.modes-mode .button-inner > span {
    display: inline-block;
    vertical-align: top;
    height: 6px;
    position: relative;
    overflow: hidden;
    background-color: #a5a5a5;
    border-radius: 2px;
}
.modes-mode.active .button-inner > span,
.modes-mode:hover .button-inner > span {
    background-color: #222;
}
.modes-mode .button-inner {
    width: 20px;
    height: 20px;
    padding: 2px 0;
}
.mode-grid .button-inner > span {
    width: 7px;
    height: 6px;
    margin-bottom: 4px;
}
.mode-grid .button-inner > span:nth-child(1),
.mode-grid .button-inner > span:nth-child(3) {
    margin-right: 4px;
}
.mode-list .button-inner > span {
    width: 18px;
    margin-bottom: 4px;
}
.shop-before-control{
    border: 2px solid #eaeaea;
    padding: 8.5px 20px;
    margin-bottom: 30px;
}
.shop-before-control>*{
    display: inline-block;
    margin: 0;
}
.shop-before-control .grid-view-mode {
    margin-right: 32px;
}
.shop-before-control .title,
.shop-before-control .woocommerce-result-count{
    color: #888;
}
.shop-before-control .navigation{
    border: none;
    padding: 0;
}
.shop-before-control .wrapper-catalog-ordering{
    border-left: 2px solid #f5f5f5;
    padding-left: 38px;
}
.shop-before-control select{
    padding: 7.5px 17px;
    background-color: #fafafa;
    color: #222;
    border: none;
    border-radius: 3px;
}
.shop-before-control .woocommerce-result-count{
    margin-top: 7px;
    margin-right: 14px;
}
.shop-before-control .navigation .page-numbers{
    line-height: 37px;
    height: 35px;
    min-width: 35px;
    max-height: 35px;
    color: #333;
}
.shop-before-control .navigation .page-numbers:before,
.shop-before-control .navigation .page-numbers:after{
    color: #333;
}
.shop-before-control .navigation .page-numbers.current,
.shop-before-control .pagination .page-numbers.current{
    color: #fff;
}
.shop-before-control .navigation,
.shop-before-control .woocommerce-result-count{
    float: right;
}
.shop-before-control .wrapper-catalog-ordering>*{
    display: inline-block;
    vertical-align: middle;
}
/****/
.no-toolkit .products,
.shop-page ul.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;
}
.shop-page .row.ovic-products{
    margin-left: -4px;
    margin-right: -4px;
}
.shop-page ul.products .product-item{
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 10px;
}
.no-toolkit .woocommerce-product-gallery__trigger::before{
    content: "\f002";
    font-family: 'FontAwesome';
}
.no-toolkit .wrapper-single-product .onsale{
    display: none;
}
.no-toolkit .entry-summary .woocommerce-product-details__short-description{
    display: inline-block;
    width: 100%;
}
.no-toolkit .woocommerce-breadcrumb{
    margin: 20px 0;
}
.no-toolkit .widget-area > .widget_ovic_nav_menu ul li,
.no-toolkit .widget-area > .widget_product_categories ul li,
.no-toolkit .widget-area > .widget_nav_menu ul li,
.no-toolkit .widget-area > .widget_layered_nav ul li,
.no-toolkit .widget-area > .widget_rss ul li,
.no-toolkit .widget-area > .widget_recent_entries ul li,
.no-toolkit .widget-area > .widget_recent_comments ul li,
.no-toolkit .widget-area > .widget_meta ul li,
.no-toolkit .widget-area > .widget_pages ul li,
.no-toolkit .widget-area > .widget_categories ul li,
.no-toolkit .widget-area > .widget_archive ul li {
    padding: 8px 0;
    color: #666;
}
.no-toolkit .widget-area > .widget_ovic_nav_menu ul ul,
.no-toolkit .widget-area > .widget_product_categories ul ul,
.no-toolkit .widget-area > .widget_nav_menu ul ul,
.no-toolkit .widget-area > .widget_layered_nav ul ul,
.no-toolkit .widget-area > .widget_rss ul ul,
.no-toolkit .widget-area > .widget_recent_entries ul ul,
.no-toolkit .widget-area > .widget_recent_comments ul ul,
.no-toolkit .widget-area > .widget_meta ul ul,
.no-toolkit .widget-area > .widget_pages ul ul,
.no-toolkit .widget-area > .widget_categories ul ul,
.no-toolkit .widget-area > .widget_archive ul ul {
    margin: 8px 0 -8px;
}
.no-toolkit .widget-area > .widget_ovic_nav_menu ul li a,
.no-toolkit .widget-area > .widget_product_categories ul li a,
.no-toolkit .widget-area > .widget_nav_menu ul li a,
.no-toolkit .widget-area > .widget_layered_nav ul li a,
.no-toolkit .widget-area > .widget_recent_entries ul li a,
.no-toolkit .widget-area > .widget_meta ul li a,
.no-toolkit .widget-area > .widget_pages ul li a,
.no-toolkit .widget-area > .widget_categories ul li a,
.no-toolkit .widget-area > .widget_archive ul li a {
    font-size: 14px;
}
.no-toolkit .post-item .post-title{
    font-size: 28px;
}
.no-toolkit .post-item .post-metas{
    margin-bottom: 10px;
}
.no-toolkit .post-item .post-content{
    margin-bottom: 15px;
}
.no-toolkit .close-block-search>span:before{
    content: "\f00d";
    font-family: 'FontAwesome';
}
.no-toolkit .elitex-breadcrumb{
    padding: 0;
}
@media (max-width:991px) {
    .no-toolkit .products li{
        width: 33.33%;
    }
    .shop-before-control{
        padding-right: 10px;
    }
    .shop-before-control .wrapper-catalog-ordering{
        border-left: none;
    }
}
@media (max-width: 991px) and (min-width: 480px) {
    .shop-control.shop-before-control > * {
        display: inline-block;
        margin: 0;
        margin-bottom: 5px;
        width: 49%;
        float: none;
        padding-left: 0;
    }
    .shop-before-control .woocommerce-result-count{
        margin-bottom: 0;
        vertical-align: top;
        margin-top: 11px;
    }
    .shop-control.shop-before-control > *:nth-child(2n+1),
    .shop-control.shop-before-control > *:nth-child(2n+1) {
        text-align: left;
    }
    .shop-control.shop-before-control > *:nth-child(2n+2),
    .shop-control.shop-before-control > *:nth-child(2n+2) {
        text-align: right;
    }
}
@media (max-width:767px) {
    .no-toolkit .products li{
        width: 50%;
    }
    .shop-before-control .title{
        display: none;
    }
}
@media (max-width:479px) {
    .no-toolkit .products li{
        width: 100%;
    }
    .shop-before-control .navigation .nav-links > *:first-child{
        margin-left: 0;
    }
    .shop-control.shop-before-control > *{
        display: block;
        width: 100%;
        float: none;
        padding-left: 0;
        margin-bottom: 8px;
        text-align: left;
    }
    .shop-control.shop-before-control > *:last-child{
        margin-bottom: 0;
    }
    .no-toolkit .logo {
        text-align: center!important;
        margin: 10px 0;
    }
}
/*==========================================================================
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: 970px !important;
    height: 605px !important;
    max-width: 970px;
    max-height: 100%;
    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;
    padding: 0;
}
#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: 0;
    padding-right: 0;
    -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 .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: 10px;
    left: auto;
    right: 12px;
    margin: 0;
    width: 29px;
    height: 29px;
    font-size: 0;
    line-height: 0;
    color: #aaa;
    opacity: 1;
    border: none;
    text-align: center;
    border-radius: 0;
    background-color: #fff;
    font-weight: bold;
}
#yith-quick-view-close::before {
    display: block;
    font-family: "themify", sans-serif;
    content: "\e646";
    font-size: 18px;
    line-height: 29px;
}
#yith-quick-view-content div.images {
    width: 52%;
    float: left !important;
    opacity: 1 !important;
    padding: 30px 0px 30px 30px;
}
#yith-quick-view-content div.images .slider-for{
    margin-bottom: 10px;
}
#yith-quick-view-content div.images .slider-nav{
    max-width: 230px;
    margin: 0 auto;
    margin-left: 0;
}
#yith-quick-view-content div.images .slider-nav .slick-list{
    padding:0 5px;
    margin:0 -5px;
}
#yith-quick-view-content div.images .slider-nav .slick-slide{
    border: 2px solid transparent;
    max-width:69px;
}
#yith-quick-view-content div.images .slider-nav .slick-slide{
    position: relative;
}
#yith-quick-view-content .onsale {
    top: 30px;
    right: auto;
    left: 30px;
    position: absolute;
    text-transform: uppercase;
    z-index: 10;
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background-color: #ff1010;
    line-height: 21px;
    padding: 0 12px;
    border-radius: 3px;
    padding-top: 2px;
}
#yith-quick-view-content div.summary {
    margin: 0;
    padding: 15px;
    width: 48%;
    float: left;
}
#yith-quick-view-modal div.entry-summary {
    overflow-y: auto;
    padding: 25px 30px 30px 20px;
    max-height: 605px;
}
#yith-quick-view-modal .product-sku{
    color: #333;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 4px;
}
#yith-quick-view-modal .product-sku span{
    color: #666;
}
#yith-quick-view-modal .entry-summary .stock{
    color: #333;
    margin-bottom: 15px;
}
#yith-quick-view-modal .entry-summary .stock span{
    font-weight: normal;
}
#yith-quick-view-modal .entry-summary .product_title{
    font-size: 22px;
    line-height: 22px;
    margin: 0;
    border: none;
    padding-bottom: 15px;
}
#yith-quick-view-modal .entry-summary .price{
    border: none;
    margin: 0 0 8px 0;
    padding-top: 0;
}
#yith-quick-view-modal .entry-summary .woocommerce-product-details__short-description{
    margin-bottom: 29px;
}
#yith-quick-view-modal .entry-summary .qty-label {
    display: none;
}
#yith-quick-view-modal .entry-summary .control {
    display: inline-block;
}
#yith-quick-view-modal .entry-summary .single_add_to_cart_button{
    width: calc( 100% - 204px );
    display: inline-block;
    min-width: inherit;
}
#yith-quick-view-modal .slick-slider .slick-arrow,
#yith-quick-view-modal .slick-slider .slick-arrow:hover,
#yith-quick-view-modal .slick-slider .slick-arrow:focus{
    font-size: 0;
    background-color: transparent!important;
    padding: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: calc( 50% - 15px );
}
#yith-quick-view-modal .slick-slider .slick-prev{
    right: auto;
    left: -30px;
}
#yith-quick-view-modal .slick-slider .slick-next{
    right: -30px;
}
#yith-quick-view-modal .slick-slider .slick-arrow:before{
    font-size: 26px;
    color: #666;
}
#yith-quick-view-modal .slick-slider .slick-prev:before{
    content: "\f104";
}
.yith-wcwl-add-to-wishlist .feedback {
    display: none;
}
#yith-quick-view-content .entry-summary .ovic-share-socials{
    margin-top: 5px;
    margin-bottom: 0;
}
#yith-quick-view-content .ovic-share-socials > * figure {
    display: none;
}
#yith-quick-view-content .ovic-share-socials>a{
    margin-right: 6px;
    display: inline-block;
    width: 39px;
    height: 39px;
    line-height: 39px;
    border-radius: 50%;
    background-color: #f5f5f5;
    text-align: center;
}
#yith-quick-view-content .ovic-share-socials a::before {
    display: block;
    font-family: "FontAwesome", sans-serif;
    font-size: 22px;
    line-height: 39px;
    color: #555;
}
#yith-quick-view-content .ovic-share-socials a:hover:before{
    color: #fff;
}
#yith-quick-view-content .ovic-share-socials a.facebook::before {
    content: "\f082";
}
#yith-quick-view-content .ovic-share-socials a.twitter::before {
    content: "\f099";
}
#yith-quick-view-content .ovic-share-socials a.googleplus::before {
    content: "\f0d5";
}
#yith-quick-view-content .ovic-share-socials a.pinterest::before {
    content: "\f0d2";
}
@media(max-width: 1199px){
    #yith-quick-view-modal .yith-wcqv-wrapper{
        width: 900px!important;
        height: 529px !important;
    }
    #yith-quick-view-content div.images,
    #yith-quick-view-content div.summary{
        width: 50%;
        padding: 10px;
    }
    #yith-quick-view-modal div.entry-summary{
        max-height: 529px;
    }
    #yith-quick-view-content .onsale{
        top: 10px;
        left: 10px;
    }
}
@media(max-width: 991px){
    #yith-quick-view-modal .yith-wcqv-wrapper{
        width: 750px!important;
        height: 455px !important;
    }
    #yith-quick-view-modal div.entry-summary{
        max-height: 455px;
    }
    #yith-quick-view-modal .entry-summary .quantity{
        margin-right: 0;
    }
    #yith-quick-view-modal .entry-summary .single_add_to_cart_button{
        width: calc( 100% - 180px );
    }
}
@media(max-width: 767px){
    #yith-quick-view-modal.open,
    #yith-quick-view-modal.open .yith-wcqv-wrapper{
        display: none;
    }
}
.add_to_cart_button.added,
.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 {
    padding: 0;
    border-radius: 0;
    font-size: 0;
    line-height: 45px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 0;
    z-index: 10;
    background-color: transparent!important;
    border-left: 53px solid transparent;
    border-top: 0px solid #222;
    -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: 'Elitex-icon' !important;
    content: "\e912";
    font-size: 19px;
    color: #fff;
    position: absolute;
    top: -59px;
    right: 7px;
}
.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: 18px;
    overflow: hidden;
}
.product-item .thumb-link {
    width: 100%;
    display: block;
    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;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
}
.product-inner:hover .second-image{
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.product-item .clear {
    display: none !important;
}
.flash>*{
    position: absolute;
    top: 9px;
    left: 9px;
    text-transform: uppercase;
    z-index: 10;
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background-color: #0e70f4;
    line-height: 21px;
    padding:0 12px;
    border-radius: 3px;
    padding-top: 2px;
}
.flash>.onsale{
    background-color: #ff1010;
}
.flash>*:nth-child(2){
    top: 39px;
}
.product-item .product-thumb img {
    margin: 0 auto;
}
.product-item .product-name {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}
.product-item .price,
.entry-summary .price {
    font-size: 18px;
    line-height: 20px;
    color: #222;
    font-weight: 600;
    display: block;
}
.product-item .price{
    display: table;
    margin: 0 auto;
    margin-bottom: 12px;
}
.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: #aaa;
    vertical-align: middle;
}
.list-attribute{
    padding-left: 0;
}
.list-attribute li{
    list-style: none;
    font-size: 15px;
    line-height: 34px;
    color: #666;
}
.list-attribute li:not(:last-child){
    border-bottom: 1px dashed #e0e0e0;
}
.add-to-cart a{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    line-height: 35px;
    padding: 3px 5px 0;
    display: block;
}
.group-button .inner{
    padding:0 24px;
    display: table;
    width: 100%;
    margin: 0 auto;
}
.group-button .inner > *{
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    margin-top: 0;
    vertical-align: middle;
    position: relative;
}
.group-button .compare-button a,
.group-button .yith-wcwl-add-to-wishlist>div>a{
    font-size: 0;
    display: block;
    padding: 0;
    width: 42px;
    line-height: 38px;
    max-height: 38px;
    background-color: #222222!important;
    border-radius: 3px;
    color: #fff;
}
.group-button .yith-wcwl-add-to-wishlist{
    margin-right: 0!important;
}
.group-button .compare-button a:after,
.group-button .yith-wcwl-add-to-wishlist>div>a:after{
    font-family: 'Elitex-icon' !important;
    content: '\e920';
    font-size: 18px;
}
.group-button .compare-button a:after{
    content: '\e910';
}
@media (max-width: 1780px)and(min-width: 768px){
    .only-icon .group-button .inner {
        padding: 0;
    }
}
@media(min-width: 768px){
    .only-icon .add-to-cart{
        width: 42px!important;
    }
    .only-icon .add-to-cart a{
        font-size: 0;
        line-height: 24px;
        padding: 6px 5px 0;
    }
    .only-icon .add-to-cart a:before{
        content:'\e907';
        font-family: "Elitex-icon";
        font-size: 18px;
    }
}
@media (min-width: 1200px) {
    .product-item.style-1 .product-inner{
        border-bottom-color: transparent!important;
        -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:not(:hover){
        border-color: transparent!important;
    }
    .product-item .product-inner:hover .yith-wcqv-button {
        border-top-width: 53px;
        background-color: transparent!important;
    }
    .group-button {
        width: 100%;
        position: absolute;
        bottom: 6px;
        left: 0;
        font-size: 0;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
        -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 .group-button{
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    .product-item.style-1 .product-inner .hover-attributes: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) .hover-attributes {
        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 .hover-attributes {
        position: absolute;
        top: 100%;
        left: -2px;
        right: -2px;
        padding: 0px 20px 16px;
        border: 2px solid #1fc0a0;
        background-color: #fff;
        border-radius: 6px;
        border-top-left-radius: 0;
        border-top-right-radius: 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: 11;
    }
    .product-item.style-1 .thumb-link{
        border-bottom: 1px solid transparent;
    }
    .product-item.style-1 .product-inner:hover .thumb-link{
        border-bottom: 1px solid #eaeaea;
    }
}
@media(min-width: 1500px){
    .product-item.style-1 .product-inner .hover-attributes {
        padding: 0px 28px 16px;
    }
}
@media (max-width: 1780px) {
    .group-button .inner{
        padding:0 10px;
    }
    .group-button .inner > *{
        margin-right: 5px;
    }
    .product-item.style-1 .add-to-cart {
        width: calc( 100% - 99px );
    }
}
@media (max-width: 1199px) {
    .product-item .product-inner .yith-wcqv-button {
        border-top-width: 53px;
    }
}
@media(max-width: 1024px){
    .hover-attributes{
        display: none;
    }
}
@media (max-width: 767px) {
    .product-item .product-name{
        font-size: 14px;
        line-height: 15px;
    }
    .flash>*{
        top: 0;
        left: 0;
    }
    .flash>*:nth-child(2) {
        top: 28px;
    }
    .product-item.style-1 .product-info .variations_form{
        display: none;
    }
}
/*----- PRODUCT STYLE 01 -----*/
.megamenu .group-button,
.megamenu .product-item .yith-wcqv-button,
.megamenu .product-item .variations_form{
    display: none!important;
}
.product-item.style-1{
    text-align: center;
}
.product-item.style-1 .product-inner{
    padding: 9px 9px 2px;
    border: 2px solid #1fc0a0;
    border-radius: 6px;
    position: relative;
    background-color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.product-item .variations .label{
    display: none;
}
.product-item .variations tbody,
.product-item .variations .value{
    display: block;
    text-align: center;
}
.product-item .variations .value{
    position: relative;
}
.product-item .variations .reset_variations{
    position: absolute;
    bottom: 0;
    right: 2px;
    margin-left: 0;
    opacity: 1;
}
.product-item .variations .data-val a,
.entry-summary .variations .data-val a{
    border: none;
    border-radius: 50%;
    margin: 2px 3px;
}
.product-item .variations .data-val a::before,
.entry-summary .variations .data-val a::before{
    border-radius: 50%;
    border:2px solid transparent;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
}
.product-item .variations .data-val a:hover::before,
.entry-summary .variations .data-val a:hover::before,
.product-item .variations .data-val a.active::before,
.entry-summary .variations .data-val a.active::before{
    border-color:#a6b3c3;
}
.product-item.style-1 .rating-wapper {
    line-height: 100%;
    margin-bottom: 6px;
}
.product-item.style-1 .add-to-cart{
    width: calc( 100% - 104px );
}
.product-item.style-1 .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > img{
    top: 9px;
}
.product-item .product-inner a.yith-wcqv-button .blockUI.blockOverlay{
    height: 53px;
}
.product-item .product-inner a.yith-wcqv-button .blockUI.blockOverlay::before{
    position: absolute;
    top: -30px;
    right: 13px;
    display: inline-block;
    font-size: 10px;
    line-height: 10px;
    margin-top: 2px;
}
.product-item.style-1 .product-name{
    margin-bottom: 0;
}
.hide-attribute .variations_form.cart{
    display: none!important;
}
.product-item .product-inner:not(:hover) .variations .reset_variations{
    display: none!important;
}
@media (max-width: 767px) {
    .product-item.style-1 .product-inner {
        padding: 5px 5px 2px;
        border-width: 1px;
    }
}
/*----- PRODUCT STYLE 03 -----*/
.ovic-countdown {
    display: inline-block;
    line-height: 24px;
}
.ovic-countdown > span {
    display: inline-block;
    margin: 0 15px 15px 0;
    float: left;
    border: 2px solid #eaeaea;
    border-radius: 2px;
    min-width: 57px;
    height: 57px;
    text-align: center;
}
.ovic-countdown > span:last-child {
    margin-right: 0;
}
.ovic-countdown > span .number {
    display: block;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    padding-top: 8px;
    margin-bottom: -3px;
}
.ovic-countdown > span .text {
    font-size: 14px;
    display: block;
    color: #888;
    font-weight: normal;
    text-transform: uppercase;
}
.product-item.style-3 .product-inner{
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.product-item.style-3 .product-name{
    margin-bottom: 0;
}
.product-item.style-3 .price{
    margin-bottom: 23px;
}
/*----- PRODUCT STYLE 04 -----*/
.product-item.style-4{
    text-align: center;
}
.product-item.style-4 .product-thumb{
    margin-bottom: 20px;
}
.product-item.style-4 .rating-wapper {
    margin-bottom: -2px;
}
.product-item.style-4 .price{
    margin-bottom: 23px;
}
.product-item.style-4 .add-to-cart{
    max-width: 210px;
    margin: 0 auto;
}
.product-item.style-4 .add-to-cart a{
    /*line-height: 37px;*/
    /*padding: 5px 5px 2px;*/
}
.product-item.style-4 .button.loading::after{
    line-height: 44px;
    line-height: 38px;
}
/*----- PRODUCT STYLE 05 -----*/
.ovic-products.style-5 .slick-slider .slick-list{
    margin:0 -2px;
    padding:0 2px;
}
.product-item.style-5 .product-inner{
    padding: 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.product-item.style-5 .product-thumb{
    margin-bottom: 20px;
}
.product-item.style-5 .price{
    margin-bottom: 28px;
}
.product-item.style-5 .add-to-cart{
    width: 100%;
    max-width: 290px;
    margin: 0 auto;
    margin-bottom: 14px;
}
.product-item.style-5 .add-to-cart a{
    /*line-height: 41px;*/
    /*padding: 3px 5px 0;*/
}
.product-item.style-5 .button.loading::after{
    line-height: 44px;
    line-height: 38px;
}
.product-item.style-5 .ovic-countdown{
    margin-bottom: 15px;
}
.process-valiable{
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.process-valiable .valiable-text {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: -9px;
    display: inline-block;
    width: 100%;
}
.process-valiable .valiable-text .text-availavle {
    float: left;
}
.process-valiable .valiable-text .text-quantity {
    float: right;
}
.process-valiable .valiable-text strong {
    font-size: 14px;
    color: #222222;
    font-weight: bold;
}
.process-valiable .valiable-total {
    display: inline-block;
    width: 100%;
    height: 13px;
    border-radius: 30px;
    background-color: #f2f2f2;
    position: relative;
}
.process-valiable .valiable-total .process {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 30px;
    content: '';
}
/*----- PRODUCT LIST -----*/
.shop-page ul.products .product-item.list{
    margin-bottom: 30px;
    margin-top: 30px;
}
.shop-page ul.products .product-item.list:first-child{
    margin-top: 0;
}
.product-item.list .product-inner{
    overflow: hidden;
}
.product-item.list .product-thumb{
    width: 470px;
    float: left;
    margin-right: 30px;
    margin-bottom: 0;
}
.product-item.list .product-info{
    overflow: hidden;
    margin-top: -5px;
    max-width: 969px;
}
.product-item.list .stock{
    color: #666;
    margin-bottom: 12px;
}
.product-item.list .stock span{
    font-weight: bold;
}
.product-item.list .product-name{
    font-size: 18px;
    line-height: 20px;
}
.product-item.list .excerpt-content{
    color: #666;
    border-top: 1px solid #eaeaea;
    margin-top: 27px;
    padding-top: 21px;
}
.product-item.list .price{
    display: block;
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 14px;
    border-top: 1px solid #eaeaea;
    padding-top: 23px;
    margin-top: 20px;
}
.product-item.list .price del{
    font-size: 18px;
}
.product-item.list .group-button{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
}
.product-item.list .group-button .inner{
    padding: 0;
}
.product-item.list .variations .value{
    text-align: left;
    margin-left: 2px;
}
.product-item.list .add-to-cart{
    margin-right: 40px;
}
.product-item.list .add-to-cart a{
    line-height: 46px;
    min-width: 250px;
}
.product-item.list .button.loading::after{
    line-height: 48px;
}
.product-item.list .group-button .compare-button a{
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    width: auto;
    background-color: transparent!important;
    line-height: 15px;
}
.product-item.list .group-button .compare-button a:after{
    display: none;
}
.product-item.list .group-button .compare-button a:before{
    font-family: 'Elitex-icon' !important;
    content: '\e910';
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}
.product-item.list .product-sku {
    color: #888;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 19px;
}
@media (max-width: 1366px) {
    .shop-page ul.products .product-item.list{
        margin-bottom: 30px;
    }
    .product-item.list .excerpt-content{
        margin-top: 20px;
        padding-top: 15px;
    }
    .product-item.list .product-thumb{
        width: 400px;
    }
    .product-item.list .price{
        padding-top: 18px;
        margin-top: 15px;
    }
    .ovic-countdown > span {
        margin: 0 10px 10px 0;
        min-width: 50px;
        height: 50px;
    }
    .ovic-countdown > span .number {
        font-size: 16px;
        padding-top: 4px;
    }
    .ovic-countdown > span .text {
        font-size: 12px;
    }
}
@media (max-width: 1199px) {
    .products > .product-item.list{
        margin-bottom: 40px;
    }
    .product-item.style-1 .product-inner{
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    .hover-attributes{
        display: none;
    }
}
@media (max-width: 991px) {
    .product-item.list .product-thumb{
        width: 330px;
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .product-item.style-5 .product-inner{
        padding: 10px 10px 15px;
    }
    .product-item.style-5 .price{
        margin-bottom: 10px;
    }
    .product-item.list .product-thumb{
        width: 250px;
    }
    .product-item.list .product-info{
        margin-top: 0;
    }
    .product-item.list .stock{
        margin-bottom: 0;
    }
    .product-item.list .product-name {
        font-size: 15px;
        line-height: 15px;
    }
    .product-item.list .excerpt-content,
    .product-item.list .product-sku,
    .product-item.list .compare-button{
        display: none;
    }
    .product-item.list .price{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 0;
        padding-top: 0;
        border: none;
    }
    .group-button .inner{
        margin-top: 10px;
        padding: 0;
        display: none;
    }
    .product-item .product-inner .yith-wcqv-button,
    .group-button .inner > *:not(.add-to-cart),
    .hover-attributes{
        display: none;
    }
    .product-item.style-1 .add-to-cart{
        width: 100%;
        margin: 0 auto;
        display: none;
    }
    .product-item.style-1 .product-thumb{
        margin-bottom: 10px;
    }
    .process-valiable{
        margin-bottom: 0;
    }
}
@media (max-width: 640px) {
    .product-item.list .product-thumb{
        width: 200px;
        margin-right: 10px;
    }
    .ovic-countdown > span {
        margin: 0 2px 2px 0;
        min-width: 30px;
        height: 30px;
    }
    .ovic-countdown > span .number {
        font-size: 14px;
        padding-top: 3px;
        margin-bottom: 0px;
        line-height: 14px;
    }
    .ovic-countdown > span .text {
        font-size: 8px;
        line-height: 100%;
    }
}
@media (max-width: 479px) {
    .product-item.list .product-thumb{
        width: 120px;
    }
}
/*----- STAR RATING -----*/
.star-rating {
    display: inline-block;
    vertical-align: top;
    position: relative;
    color: #fecb1c;
    overflow: hidden;
}
.star-rating::before,
.star-rating > span::before {
    display: inline-block;
    float: left;
    font-family: 'FontAwesome';
    content: "\f005\f005\f005\f005\f005";
    font-size: 13px;
    line-height: 13px;
    letter-spacing: 0.2em;
}
.star-rating > span::before {
    color: #fecb1c;
    content: "\f006\f006\f006\f006\f006";
}
.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: 15px;
    vertical-align: top;
    display: inline-block;
    margin-left: 5px;
    font-size: 13px;
    display: none;
}

/*==========================================================================
PRODUCT SINGLE
===========================================================================*/
body.single-product .main-content > .product {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    position: relative;
}
.wrapper-single-product {
    overflow: hidden;
}
/*----- GALLERY -----*/
.woocommerce-product-gallery::before,
.woocommerce-product-gallery::after {
    display: table;
    clear: both;
    content: '';
}
.woocommerce-product-gallery {
    display: inline-block;
    float: left;
    width: 720px;
    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;
}
.wrapper-single-product .flash>*{
    left: 130px;
}
/*----- SUMMARY -----*/
.entry-summary {
    display: inline-block;
    width: calc(100% - 720px);
    max-width: 750px;
    padding-left: 50px;
    margin-bottom: 25px;
}
.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: 2px solid transparent;
    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;
    background-color: transparent;
}
.flex-control-nav .slick-arrow:hover{
    background-color: transparent!important;
    color: inherit;
}
.flex-control-nav .slick-arrow.prev {
    top: calc(50% - 15px);
    left: -20px;
}
.flex-control-nav .slick-arrow.next {
    top: calc(50% - 15px);
    right: -20px;
}
.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: 20px;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 25px;
    margin-bottom: 26px;
    margin-top: 17px;
}
.entry-summary .woocommerce-product-rating{
    margin-right: 25px;
}
.entry-summary .stock{
    color: #666;
    margin-bottom: 12px;
}
.entry-summary .stock span{
    color: #1fc0a0;
    font-weight: bold;
}
.entry-summary .woocommerce-product-rating,
.entry-summary .rating-wapper{
    vertical-align: middle;
    display: inline-block;
}
.entry-summary .ovic-share-socials {
    margin: -3px -6px 0;
    font-size: 0;
    line-height: 0;
    margin-bottom: 20px;
    display: inline-block;
    vertical-align: top;
}
.entry-summary .ovic-share-socials > * {
    display: inline-block;
    vertical-align: top;
    margin: 0 6px;
}
.entry-summary .rating-wapper .review,
.entry-summary .woocommerce-review-link{
    font-size: 14px;
}
.entry-summary .woocommerce-review-link{
    display: none;
}
.entry-summary .woocommerce-product-details__short-description{
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.entry-summary .woocommerce-product-details__short-description>*{
    margin-bottom: 0;
}
.entry-summary .price{
    font-size: 26px;
    margin-bottom: -4px;
    border-top: 1px solid #eaeaea;
    padding-top: 31px;
    color: #222;
    margin-top: 21px;
    font-weight: 600;
}
.entry-summary .price del{
    font-size: 18px;
    color: #aaa;
    font-weight: 500;
}
.entry-summary .variations tr{
    margin-bottom: 12px;
}
.entry-summary .variations label{
    text-transform: uppercase;
    font-size: 14px;
    color: #666;
    font-weight: 400;
}
.entry-summary .variations .label{
    vertical-align: bottom;
    line-height: 100%;
    padding-bottom: 4px;
}
.entry-summary .variations label:after{
    content: ':';
}
.entry-summary .qty-label{
    font-size: 14px;
    color: #666;
    min-width: 180px;
    font-weight: 400;
    display: block;
    margin-bottom: 6px;
}
.entry-summary .quantity{
    display: inline-block;
    margin-right: 24px;
    margin-bottom: 0;
}
.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 .single_add_to_cart_button{
    text-transform: uppercase;
    padding: 0 20px;
    min-width: 270px;
    line-height: 42px;
    padding-top: 3px;
    font-size: 14px;
    font-weight: bold;
    vertical-align: bottom;
    margin-top: 10px;
}
.entry-summary .button.loading::after{
    line-height: 45px;
}
.entry-summary form.cart{
    padding-bottom: 24px;
}
.entry-summary .compare,
.entry-summary .yith-wcwl-add-to-wishlist{
    display: inline-block!important;
    margin: 0;
    position: relative;
    line-height: 100%;
    vertical-align: top;
}
.entry-summary .yith-wcwl-add-to-wishlist{
    margin-right: 35px;
}
.entry-summary .compare,
.entry-summary .yith-wcwl-add-to-wishlist>div>a{
    display: inline-block;
    font-size: 14px;
    width: auto;
    line-height: 100%;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0;
    background-color: transparent!important;
}
.entry-summary .compare:before,
.entry-summary .yith-wcwl-add-to-wishlist>div>a:before{
    font-size: 20px;
    color: #666666;
    content: '\e910';
    font-family: 'Elitex-icon';
    font-weight: normal;
    vertical-align: top;
    margin-right: 6px;
    display: inline-block;
    margin-top: -1px;
    -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;
}
.entry-summary .yith-wcwl-add-to-wishlist>div>a:before{
    margin-right: 1px;
    content: '\e920';
    margin-top: -2px;
}
.entry-summary .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > img{
    margin-left: 0;
}
.quantity .control input {
    width: 66px;
    height: 45px;
    border: 2px solid #e6e6e6;
    border-radius: 3px;
    font-weight: bold;
    color: #222;
    text-align: center;
    font-size: 15px;
}
.quantity .control > * {
    display: inline-block;
    vertical-align: middle;
}
.quantity .control .btn-number {
    width: 46px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 3px;
    color: #7f7f7f;
    background-color: #f2f2f2;
    position: relative;
}
.quantity .control .btn-number:after,
.quantity .control .btn-number:before {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 10px;
    height: 2px;
    background-color: #7f7f7f;
    transition: all .5s ease;
}
.quantity .control .quantity-plus:before {
    width: 2px;
    height: 10px;
}
.quantity .control .btn-number:hover:after,
.quantity .control .btn-number:hover:before,
.quantity .control .btn-number:focus:after,
.quantity .control .btn-number:focus:before{
    background-color: #fff;
}
.quantity .control input {
    margin: 0 5px 0 6px;
}
.entry-summary .grouped_form .qty-label{
    display: none;
}
.entry-summary .grouped_form .quantity{
    margin: 0;
    width: 121px;
}
.entry-summary .grouped_form .quantity .control .btn-number{
    width: 30px;
    height: 30px;
    line-height: 30px;
}
.entry-summary .grouped_form .quantity .control input{
    height: 30px;
    width: 50px;
    padding: 2px 0 0;
    margin: 0 2px 0 1px;
}
/*----- SINGLE TAB -----*/
.woocommerce-tabs {
    width: 100%;
    clear: both;
    position: relative;
    margin: 68px 0 63px;
    display: inline-block;
}
.wc-tabs {
    list-style: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
    margin: 0;
}
.wc-tabs li {
    display: inline-block;
    vertical-align: top;
    font-size: 20px;
    line-height: 20px;
}
.wc-tabs li a {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    display: inline-block;
    padding: 20px 28px 13px;
    background-color: transparent;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.wc-tabs li.active a{
    color: #222;
    background-color: #eaeaea;
    font-weight: bold;
}
.wc-tabs li a:focus,
.wc-tabs li a:hover{
    color: #222;
    background-color: #eaeaea;
}
.woocommerce-Tabs-panel {
    background-color: transparent;
    border: 2px solid #eaeaea;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
    padding: 30px 36px;
    font-size: 14px;
    color: #555;
    font-family: 'Open Sans', san-serif;
}
.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;
}
#tab-reviews p.form-submit .submit{
    text-transform: uppercase;
    font-weight: bold;
    line-height: 38px;
}
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{
    margin-bottom: 20px;
}
.product-grid .product-grid-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 50px;
}
.product-grid .product-grid-title:before {
    position: absolute;
    content: '';
    display: inline-block;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 120px;
}
@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% - 90px);
    }
    .single-thumb-vertical .flex-control-nav {
        display: inline-block;
        float: left;
        width: 80px;
        margin: 0;
    }
    .single-thumb-vertical .flex-control-nav.slick-vertical .slick-arrow {
        text-align: center;
        margin-left: 28px;
        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";
    }
    .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: 1200px) {
    .single-thumb-vertical .flex-control-nav {
        width: 100px;
    }
    .single-thumb-vertical .flex-control-nav.slick-vertical .slick-arrow {
        margin-left: 35px;
    }
    .single-thumb-horizontal .woocommerce-product-gallery{
        width: 600px;
    }
    .single-thumb-horizontal .entry-summary{
        width: calc(100% - 600px);
    }
    /*----- 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% - 120px);
    }
    .entry-summary .flash>*{
        left: 100px;
    }
    .entry-summary .flash .onsale{
        left: 100px;
    }
    .woocommerce-tabs{
        margin-bottom: 97px;
    }
    .product-grid .product-grid-title:before {
        width: 330px;
    }
}

@media (max-width: 1499px) {
    .woocommerce-product-gallery{
        width: 600px;
    }
    .entry-summary{
        width: calc(100% - 600px);
        padding-left: 30px;
    }
}
@media (max-width: 1199px) {
    .woocommerce-product-gallery{
        width: 500px;
    }
    .entry-summary{
        width: calc(100% - 500px);
        padding-left: 15px;
    }
    .flex-control-nav{
        margin-top: 10px;
    }
    .entry-summary .product_title{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 7px;
        margin-top: 0;
        padding-bottom: 8px;
    }
    .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: 0;
        margin-bottom: 40px;
    }
    .product-grid .product-grid-title{
        margin-bottom: 20px;
    }
}
@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{
        max-width: 600px;
        margin: 0 auto;
        float: none;
        display: inherit;
        margin-bottom: 30px;
    }
    .woocommerce-product-gallery,
    .entry-summary{
        width:100%;
        padding-left: 0;
    }
    .entry-summary .woocommerce-product-details__short-description{
        margin-bottom: 10px;
    }
    .entry-summary .price{
        margin-top: 0;
        padding-top: 20px;
    }
    .entry-summary .single_add_to_cart_button{
        max-width: 300px;
        width: auto;
    }
    .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 li a{
        font-size: 16px;
        padding: 10px 15px 5px;
    }
    .woocommerce-Tabs-panel{
        padding: 20px;
    }
}
@media(max-width: 640px){
    .wc-tabs li a{
        padding: 8px 15px 5px;
        border: 2px solid #eaeaea;
        margin-right: 5px;
        margin-bottom: 5px;
    }
}
@media(max-width: 479px){
    .entry-summary .ovic-share-socials{
        display: block;
        margin-top: 10px;
    }
    .product-type-grouped .entry-summary .cart .group_table{
        border-top: 1px solid #e6e6e6;
    }
    .product-type-grouped .entry-summary .cart tr{
        border-bottom: 1px solid #e6e6e6;
    }
    .product-type-grouped .entry-summary .cart tr td{
        display: block;
        border-bottom: none;
        border-top: none;
    }
}
@media(max-width: 360px){
    .wc-tabs li,
    .wc-tabs li a{
        display: block;
        text-align: center;
        margin-right: 0;
    }
}
/*==========================================================================
SHORT CODE
===========================================================================*/
/*----- TWITTER-----*/
.ovic-twitter .box-title{
    font-weight: bold;
    color: #222;
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 13px;
}
.ovic-twitter .twitter-icon {
    font-size: 22px;
    float: left;
    color: #aaaaaa;
    margin-right: 17px;
    margin-top: 8px;
}
.ovic-twitter .twitter-info {
    overflow: hidden;
    color: #666;
}
.ovic-twitter .tweet-info > * {
    display: inline-block;
    vertical-align: middle;
}
.ovic-twitter .tweet-info .tweet-name {
    color: #333333;
}
.ovic-twitter .tweet-info .tweet-screen_name {
    margin-left: 3px;
}
.ovic-twitter .group-info {
    color: #666;
}
.ovic-twitter .tweet-text {
    margin-top: -3px;
    margin-bottom: 3px;
}
.ovic-twitter .group-info>*{
    font-size: 14px;
    color: #666;
}
.ovic-twitter .group-info>*:first-child {
    margin-right: 30px;
}
.ovic-twitter .group-info > span > i {
    color: #999;
    margin-right: 6px;
    font-size: 13px;
}
@media(max-width: 1499px){
    .ovic-twitter .box-title{
        font-size: 20px;
    }
}
@media(max-width: 1199px){
    .ovic-twitter .box-title{
        margin-bottom: 1px;
    }
}
@media(max-width: 767px){
    .ovic-twitter .box-title{
        font-size: 20px;
    }
}
@media(max-width: 767px){
    .ovic-twitter .box-title{
        margin-bottom: 0;
        padding-bottom: 8px;
    }
}
/*----- INSTAGRAM-----*/
.ovic-instagram.style-1 .widgettitle{

    color: #fff;
}
.ovic-instagram.style-1 .content-instagram{
    margin: 0;
    max-width: 340px;
}
.ovic-instagram.style-1 .content-instagram >*{
    width: 25%;
    float: left;
    margin-bottom: 10px;
    padding: 0;
    padding-right: 10px;
}
.ovic-instagram.style-1 .content-instagram figure{

}
.ovic-instagram.style-2{
    position: relative;
}
.ovic-instagram.style-2 .head,
.ovic-instagram.style-3 .head{
    width: 240px;
    float: left;
    background-color: #494949;
    color: #fff;
}
.ovic-instagram.style-2 .widgettitle,
.ovic-instagram.style-3 .widgettitle,
.ovic-instagram.style-2 .icon,
.ovic-instagram.style-3 .icon{
    border: none;
    font-size: 36px;
    color: #fff;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 30px;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    -moz-transform: rotate(-90deg) translateX(-50%);
    -ms-transform: rotate(-90deg) translateX(-50%);
    -o-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    -ms-transform-origin: top left;
    -o-transform-origin: top left;
    transform-origin: top left;
}
.ovic-instagram.style-2 .icon,
.ovic-instagram.style-3 .icon{
    font-size: 60px;
    left: 105px;
}
.ovic-instagram.style-2 .content-instagram{
    overflow: hidden;
    width: calc( 100% - 240px );
}
.ovic-instagram.style-3 .head{
    width: 385px;
    background-color: #1fc0a0;
}
.ovic-instagram.style-3 .icon{
    left: 160px;
}
.ovic-instagram.style-3 .content-instagram{
    overflow: hidden;
    width: calc( 100% - 385px );
}
.ovic-instagram .thumb{
    display: block;
    overflow: hidden;
    position: relative;
}
.ovic-instagram .thumb::before {
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    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;
}
.ovic-instagram .thumb:hover::before {
    opacity: 1;
    visibility: visible;
}
.ovic-instagram .thumb img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all .8s ease;
}
.ovic-instagram .thumb:hover img {
    transform: scale(1.1) rotate(5deg);
}
@media(max-width:1499px){
    .ovic-instagram.style-1 .widgettitle{
        font-size: 20px;
    }
    .ovic-instagram.style-3 .widgettitle{
        font-size: 22px;
    }
    .ovic-instagram.style-3 .icon{
        font-size: 40px;
        left: 100px;
    }
    .ovic-instagram.style-3 .head{
        width: 200px;
    }
    .ovic-instagram.style-3 .content-instagram {
        width: calc( 100% - 200px );
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    .ovic-instagram.style-1 .content-instagram >*{
        width: 33.33%;
    }
}
@media (max-width: 991px) {
    .ovic-instagram.style-2 .widgettitle,
    .ovic-instagram.style-3 .widgettitle{
        font-size: 25px;
    }
    .ovic-instagram.style-2 .icon,
    .ovic-instagram.style-3 .icon {
        font-size: 30px;
        left: 80px;
    }
    .ovic-instagram.style-2 .head,
    .ovic-instagram.style-3 .head{
        width: 180px;
    }
    .ovic-instagram.style-2 .content-instagram,
    .ovic-instagram.style-3 .content-instagram{
        width: calc( 100% - 180px );
    }
}
@media (max-width: 767px) {
    .ovic-instagram.style-2 .widgettitle,
    .ovic-instagram.style-3 .widgettitle{
        font-size: 16px;
    }
    .ovic-instagram.style-2 .head,
    .ovic-instagram.style-3 .head{
        width: 150px;
    }
    .ovic-instagram.style-2 .content-instagram,
    .ovic-instagram.style-3 .content-instagram{
        width: calc( 100% - 150px );
    }
}
@media (max-width: 479px) {
    .ovic-instagram.style-2 .widgettitle,
    .ovic-instagram.style-3 .widgettitle{
        font-size: 20px;
    }
    .ovic-instagram.style-2 .icon,
    .ovic-instagram.style-3 .icon {
        font-size: 25px;
        left: 70px;
    }
    .ovic-instagram.style-2 .head,
    .ovic-instagram.style-3 .head{
        display: none;
    }
    .ovic-instagram.style-2 .content-instagram,
    .ovic-instagram.style-3 .content-instagram{
        width: 100%;
    }
}
/*----- BUTTON-----*/
.ovic-button{
    display: inline-block;
}
.ovic-button.style-1 a,
.ovic-button.style-2 a,
.ovic-button.style-7 a{
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 3px;
    line-height: 42px;
    padding: 3px 45px 0;
    display: inline-block;
}
.ovic-banner .ovic-button.style-1 a{
    line-height: 40px;
    padding: 3px 50px 0;
}
.ovic-button.style-1 a:hover{
    background-color: #999!important;
}
.ovic-button.style-2 a{
    color: #444;
    border: 2px solid #e6e6e6;
    line-height: 35px;
    padding: 4px 31px 0;
}
.ovic-button.style-2 a:hover{
    color: #fff;
}
.ovic-button.style-3 a,
.ovic-button.style-4 a{
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}
.ovic-button.style-3 a{
    /*font-size: 15px;*/
}
.ovic-button.style-3 a:after,
.ovic-button.style-4 a:after{
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transition: all .5s ease;
}
.ovic-button.style-3 a:hover:after,
.ovic-button.style-4 a:hover:after{
    width: 0;
}
.ovic-button.style-4 a{
    font-size: 14px;
    color: #222222;
}
.ovic-button.style-4 a:after{
    background-color: #222222;
}
.ovic-button.style-6 a{
    font-size: 20px;
}
.ovic-button.style-7 a{
    font-size: 15px;
    color: #222;
    background-color: #fff;
    line-height: 38px;
    padding: 3px 35px 0;
}
.ovic-button.style-7 a:hover{
    color: #fff;
}
.megamenu .ovic-button.style-1 a{
    padding: 5px 46px 3px!important;
    line-height: 33px!important;
}
/*----- BLOG-----*/
.post-categories{
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.post-item.style-1{
    text-align: center;
}
.post-item.style-1 .post-categories{
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
}
.post-item.style-1 .post-categories a{
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
    padding: 6px 24px 2px;
    padding: 4px 24px 0px;
    display: inline-block;
}
.post-item.style-1 .post-categories a:hover{
    color: #222;
}
.post-item.style-1 .post-thumb .thumb-img {
    margin-bottom: 40px;
}
.post-item.style-1 .post-author img{
    display: inline-block;
}
.ovic-blog.style-1 .post-item .post-title{
    font-size: 24px;
    margin-bottom: 8px;
}
.ovic-blog.style-1 .post-item .post-metas{
    margin-bottom: 13px;
}
.ovic-blog.style-1 .post-item .post-content{
    margin-bottom: 21px;
}
.ovic-blog.style-2 .row-item:not(:last-child){
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.post-item.style-2{
    overflow: hidden;
}
.post-item.style-2 .post-thumb{
    max-width: 85px;
    float: left;
    margin-right: 10px;
}
.post-item.style-2 .post-thumb .thumb-img{
    margin-bottom: 0;
}
.post-item.style-2 .post-thumb .post-date{
    display: none;
}
.post-item.style-2 .post-info{
    overflow: hidden;
}
.post-item.style-2 .post-title{
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 7px;
    margin-top: -2px;
    font-weight: 500;
}
.post-item.style-2 .post-title>a{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-item.style-2 .post-metas{
    margin-bottom: 0;
}
.post-item.style-2 .post-metas>*{
    font-size: 14px;
    color: #666;
}
.post-item.style-2 .post-comment .count{
    position: static;
    background-color: transparent;
    color: #666;
    font-size: 14px;
}
.post-item.style-2 .post-comment{
    height: 21px;
    vertical-align: top;
    margin-left: 5px;
}
.ovic-blog.style-3 .slick-list{
    padding-bottom: 5px;
}
.ovic-blog.style-3 .post-thumb .post-date,
.blog-grid .post-thumb .post-date{
    display: none;
}
.ovic-blog.style-3 .post-thumb .thumb-img,
.blog-grid .post-thumb .thumb-img{
    margin: 0;
}
.ovic-blog.style-3 .post-categories{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1;
}
.ovic-blog.style-3 .post-categories a{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    border-radius: 3px;
    padding: 6px 20px 2px;
    display: inline-block;
}
.ovic-blog.style-3 .post-info ,
.blog-grid .post-info {
    margin: -30px 20px 0;
    padding: 25px 30px 6px;
    background-color: #fff;
    z-index: 1;
    position: relative;
    border-radius: 6px;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.1);
}
.ovic-blog.style-3 .post-item .post-title,
.blog-grid .post-item .post-title{
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
}
.ovic-blog.style-3 .post-item .post-metas,
.blog-grid .post-item .post-metas{
    border-top: 1px solid #eeeeee;
    padding-top: 14px;
}
.ovic-blog.style-3 .post-author img,
.blog-grid .post-author img{
    display: inline-block;
}
.ovic-blog.style-3 .group-comment ,
.blog-grid .group-comment {
    float: right;
}
.ovic-blog.style-3 .group-comment>*,
.blog-grid .group-comment>* {
    display: inline-block;
    vertical-align: middle;
}
.ovic-blog.style-4 .post-category{
    display: none;
}
.ovic-blog.style-4 .post-thumb .thumb-img{
    margin-bottom: 27px;
}
.ovic-blog.style-4 .post-metas .post-author>a{
    font-weight: 500;
    color: #666;
}
.ovic-blog.style-4 .post-item .post-content{
    margin-bottom: 30px;
}
@media(min-width: 1200px){
    .ovic-blog.style-1 .post-info{
        margin:0 40px;
    }
}
@media(max-width: 1199px){
    .ovic-blog.style-1 .post-item .post-title{
        font-size: 20px;
    }
    .ovic-blog.style-3 .post-info{
        padding: 15px 10px 5px;
        margin: -10px 10px 0;
    }
    .ovic-blog.style-3 .post-item .post-title{
        font-size: 18px;
        line-height: 22px;
    }
    .ovic-blog.style-4 .post-item .post-content{
        margin-bottom: 20px;
    }
}
@media(max-width: 991px){
    .ovic-blog.style-3 .post-categories{
        left: 10px;
        top: 10px;
    }
    .ovic-blog.style-3 .post-categories a {
        font-size: 12px;
        padding: 2px 10px 0px;
    }
    .post-item .post-content {
        margin-bottom: 10px;
    }
    .ovic-blog.style-3 .post-item .post-metas {
        padding-top: 10px;
    }
    .ovic-blog.style-3 .post-info,
    .blog-grid .post-info{
        margin: -30px 15px 0;
        padding: 20px 20px 5px;
    }
}
/*----- CATEGORY -----*/
.ovic-category{
    position: relative;
    cursor: pointer;
}
.ovic-category .category-thumb .image img{
    margin: 0 auto;
}
.ovic-category.style-1 .cate-filter{
    font-size: 18px;
    text-transform: uppercase;
    color: #222;
    font-weight: bold;
    position: absolute;
    bottom: 23px;
    left: 20px;
    padding: 0 10px;
}
.ovic-category.style-1 .category-thumb:before{
    position: absolute;
    content: '';
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1;
}
.ovic-category.style-1 .count,
.ovic-category.style-2 .count{
    display: none;
}
.ovic-category.style-2{
    text-align: center;
}
.ovic-category.style-2 .cate-filter{
    font-weight: bold;
    font-size: 18px;
    line-height: 20px;
    text-transform: uppercase;
    position: absolute;
    bottom: 34px;
    display: block;
    left: 0;
    right: 0;
    padding: 0 10px;
}
.ovic-category.style-3 .cate-filter{
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #222;
    text-transform: uppercase;
    position: absolute;
    display: block;
    right: 70px;
    padding: 0 10px;
    max-width: 160px;
    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;
}
.ovic-category.style-3:hover .cate-filter{
    top: 45%;
}
.ovic-category.style-3 .count{
    font-size: 14px;
    color: #666;
    font-weight: normal;
    text-transform: lowercase;
    display: block;
}
.ovic-category.style-3 .btn-shopnow{
    font-size: 14px;
    position: absolute;
    margin-top: 16px;
    display: inline-block;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.ovic-category.style-3:hover .btn-shopnow{
    opacity: 1;
    overflow: visible;
}
.ovic-category.style-3 .btn-shopnow:before{
    position: absolute;
    content: '';
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all .5s ease;
}
.ovic-category.style-3 .btn-shopnow:hover:before{
    width: 0;
}
@media (min-width: 1200px) {
    .ovic-category.style-1{
        overflow: hidden;
    }
    .ovic-category.style-1 .image img{
        -webkit-transition: all .45s ease-out;
        -moz-transition: all .45s ease-out;
        -ms-transition: all .45s ease-out;
        -o-transition: all .45s ease-out;
        transition: all .45s ease-out;
        -webkit-transition-delay: 0ms;
        -moz-transition-delay: 0ms;
        -ms-transition-delay: 0ms;
        -o-transition-delay: 0ms;
        transition-delay: 0ms;
    }
    .ovic-category.style-1:hover .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);
        -webkit-transition-delay: .5s;
        -moz-transition-delay: .5s;
        -ms-transition-delay: .5s;
        -o-transition-delay: .5s;
        transition-delay: .5s;
    }
    .ovic-category.style-1 .category-thumb:before{
        transition: all .3s ease;
    }
    .ovic-category.style-1:not(:hover) .category-thumb:before{
        visibility: hidden;
        opacity: 0;
        -webkit-transform: translateY(5px);
        -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
        -o-transform: translateY(5px);
        transform: translateY(5px);
    }
}
@media(max-width: 1499px){
    .ovic-category.style-2 .cate-filter{
        bottom: 15px;
    }
    .ovic-category.style-3 .cate-filter{
        right: 0;
    }
}
@media(max-width: 1199px){
    .ovic-category.style-3 .cate-filter{
        top: 45%;
    }
    .ovic-category.style-3 .btn-shopnow{
        opacity: 1;
        visibility: visible;
    }
}
@media (max-width: 767px) {
    .ovic-category.style-1 .cate-filter{
        left: 0;
        bottom: 5px;
        font-size: 15px;
    }
    .ovic-category.style-3 .btn-shopnow{
        margin-top: 7px;
    }
}
@media(max-width: 640px){
    .ovic-category.style-3 .cate-filter{
        top: 35%;
        padding: 0 5px;
        max-width: 120px;
        font-size: 15px;
        line-height: 17px;
    }
    .ovic-category.style-3 .btn-shopnow{
        font-size: 13px;
    }
}
/*----- PRODUCT -----*/
.ovic-title{
    font-size: 36px;
    color: #111;
    line-height: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 46px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 14px;
    position: relative;
}
.ovic-title span{
    position: relative;
}
.ovic-title span:before{
    position: absolute;
    content: '';
    display: inline-block;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 100%;
}
.ovic-blog.style-1 .ovic-title{
    margin-bottom: 60px;
}
.ovic-slide .ovic-title{
    color: #222;
    margin-bottom: 60px;
}
.ovic-slide .ovic-title:before{
    display: none;
}
.ovic-products.style-1>.row{
    margin-left: -5px;
    margin-right: -5px;
}
.ovic-products.style-1>.row>.product-item{
    padding-left: 5px;
    padding-right: 5px;
}
.loadmore-product{
    text-align: center;
}
.loadmore-product .loadmore-btn{
    padding: 3px 20px 0;
    line-height: 35px;
    border-radius: 3px;
    display: inline-block;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
}
.loadmore-product .loadmore-btn:hover,
.loadmore-product .loadmore-btn:focus{
    background-color: #999!important;
}
.ovic-products.loading-more .loadmore-product .loadmore-btn:before{
    display: inline-block;
    font-family: FontAwesome, sans-serif;
    content: "\f110";
    font-size: 20px;
    line-height: 31px;
    vertical-align: middle;
    margin-top: -4px;
    font-weight: normal;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
@media(min-width: 1500px){
    .loadmore-product{
        margin-top: 23px;
    }
}
@media(max-width: 1199px){
    .ovic-title{
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }
    .ovic-slide .ovic-title,
    .ovic-blog.style-1 .ovic-title{
        margin-bottom: 20px;
    }
}
/*----- BANNER -----*/
.ovic-banner {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.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;
}
.ovic-banner .ovic-countdown > span {
    display: inline-block;
    margin: 0 25px 15px 0;
    float: left;
    border: 2px solid #ffffff;
    border-radius: 2px;
    min-width: 100px;
    height: 100px;
    background-color: #fff;
}
.ovic-banner .ovic-countdown > span:last-child {
    margin-right: 0;
}
.ovic-banner .ovic-countdown > span .number {
    font-size: 36px;
    color: #222;
    font-weight: 600;
    padding-top: 25px;
    margin-bottom: 10px;
}
.ovic-banner .ovic-countdown > span .text {
    font-size: 24px;
    color: #aaa;
    text-transform: capitalize;
}
@media(max-width: 1780px) and (min-width: 1500px){
    .ovic-banner.responsive-banner {
        padding-left: 110px!important;
    }
    .ovic-banner.responsive-banner-2 {
        padding-left: 450px!important;
    }
    .ovic-banner.responsive-banner-3 {
        padding-left: 179px!important;
    }
    .ovic-banner.responsive-banner-4 {
        padding-left: 490px!important;
    }
}
@media(max-width: 1499px){
    .hidden-bg{
        display: none!important;
    }
}
@media(max-width: 1499px) and (min-width: 1200px){
    .display-block-bg{
        width: 75%!important;
    }
}
@media(max-width: 767px){
    .ovic-banner .ovic-countdown > span {
        margin: 0 15px 15px 0;
        min-width: 60px;
        height: 60px;
    }
    .ovic-banner .ovic-countdown > span:last-child {
        margin-right: 0;
    }
    .ovic-banner .ovic-countdown > span .number {
        font-size: 25px;
        padding-top: 13px;
        margin-bottom: 5px;
    }
    .ovic-banner .ovic-countdown > span .text {
        font-size: 15px;
    }
}
/*----- PERSON -----*/
.ovic-person.style-1{
    text-align: center;
    cursor: pointer;
}
.ovic-person.style-1 .thumb-avatar{
    margin-bottom: 18px;
    position: relative;
}
.ovic-person.style-1 .content-person{
    transition: all .5s ease;
}
.ovic-person.style-1 .name{
    font-size: 18px;
    text-transform: capitalize;
    color: #222;
    font-weight: bold;
    position: relative;
    margin-bottom: 0;
}
.ovic-person.style-1 .positions{
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.ovic-person.style-1 .social a{
    display: inline-block;
    height: 41px;
    width: 41px;
    line-height: 41px;
    text-align: center;
    font-size: 22px;
    color: #666666;
    border-radius: 50%;
    margin:0 9px;
    background-color: #eeeeee;
}
.ovic-person.style-1 .social a:hover{
    color: #fff;
}
.ovic-person.style-2{
    text-align: center;
    border: 3px solid #e6e6e6;
    border-radius: 5px;
    position: relative;
    padding: 70px 70px 36px;
    background-color: #fff;
}
.ovic-person.style-2 .thumb-avatar{
    position: absolute;
    left: 0;
    right: 0;
    top: -46px;
    z-index: 1;
}
.ovic-person.style-2 .thumb-avatar img{
    max-width: 93px;
    margin: 0 auto;
    border-radius: 50%;
}
.ovic-person.style-2 .desc{
    color: #666;
    position: relative;
    margin-bottom: 24px;
    padding-bottom: 31px;
}
.ovic-person.style-2 .desc:after{
    position: absolute;
    content: '';
    background-color: #e6e6e6;
    height: 1px;
    width: 270px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    display: inline-block;
}
.ovic-person.style-2 .created-by{
    color: #666;
    display: block;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.ovic-person.style-2 .name{
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    display: block;
}
@media (min-width: 1200px) {
    .ovic-person.style-1:not(:hover) .content-person{

    }
}
@media(max-width: 767px){
    .ovic-person.style-2{
        padding-left: 20px;
        padding-right: 20px;
    }
    .ovic-person.style-2 .desc{
        padding-bottom: 0;
    }
    .ovic-person.style-2 .desc:after{
        display: none;
    }
}
/*----- TABS -----*/
.ovic-tabs.style1 .tab-head:after{
    position: absolute;
    left: 0;
    top: 9px;
    width: 100%;
    background-color: #e6e6e6;
    height: 1px;
    content: '';
    z-index: -1;
}
.ovic-tabs.style1 .tab-link{
    margin-bottom: 42px;
    display: inline-block;
    background-color: #fff;
}
.ovic-tabs.style1 .tab-link li{
    margin-right: 37px;
    text-transform:uppercase;
    color: #888;
    font-weight: 500;
    font-size: 30px;
}
.ovic-tabs.style1 .tab-link li:last-child{
    margin-right: 20px;
}
.ovic-tabs.style1 .tab-link li a:hover{
    color: #222!important;
}
.ovic-tabs.style1 .tab-link li a{
    transition:none;
}
.ovic-tabs.style1 .tab-link li.active a{
    color: #222!important;
    font-weight: bold;
    transition:none;
}
.ovic-tabs.style1 .tab-link li a:after,
.ovic-tabs.style2 .tab-link li a:after{
    position: absolute;
    display: inline-block;
    content: '';
    left: 0;
    bottom: -7px;
    width: 0%;
    height: 3px;
    transition: all .5s ease;
}
.ovic-tabs.style1 .tab-link li a:hover:after,
.ovic-tabs.style1 .tab-link li.active a:after,
.ovic-tabs.style2 .tab-link li a:hover:after,
.ovic-tabs.style2 .tab-link li.active a:after{
    width: 100%;
}
.ovic-tabs.style2 .tab-head{
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 9px;
    margin-bottom: 50px;
}
.ovic-tabs.style2 .tab-link li{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin:0 18px;
}
.ovic-tabs.style2 .tab-link li:first-child{
    margin-left: 0;
}
.ovic-tabs.style2 .tab-link li a{
    color: #888;
}
.ovic-tabs.style2 .tab-link li.active a,
.ovic-tabs.style2 .tab-link li a:hover{
    color: #222!important;
}
.ovic-tabs.style2 .tab-link li a:after{
    bottom: -10px;
}
.ovic-tabs.style3 .ovic-title{
    margin-bottom: 60px;
    padding-bottom: 12px;
}
.ovic-tabs.style3 .tab-link{
    text-align: center;
    margin-bottom: 49px;
}
.ovic-tabs.style3 .tab-link li{
    position: relative;
}
.ovic-tabs.style3 .tab-link li:before {
    content: '';
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
    width: 50px;
    height: 25px;
    position: absolute;
    bottom: 2px;
    z-index: 1;
}
.ovic-tabs.style3 .tab-link li:hover:after,
.ovic-tabs.style3 .tab-link li.active:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 2px solid #e6e6e6;
    left: 0;
    right: 0;
    bottom: -14px;
    margin: 0 auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.ovic-tabs.style3 .tab-link li a{
    border: 2px solid #eaeaea;
    border-radius: 3px;
    padding:13px 20px 21px;
    transition: none;
}
.ovic-tabs.style3 .tab-link li{
    margin-right: 30px;
    width: 11%;
}
.ovic-tabs.style3 .tab-link li:last-child{
    margin-right: 0;
}
.ovic-tabs.style3 .tab-link li a i{
    font-size: 62px;
    color: #aaa;
}
.ovic-tabs.style3 .tab-link li a span{
    display: block;
    font-weight: bold;
    font-size: 14px;
    color:#222;
    text-transform: uppercase;
    margin-top: -4px;
}
@media(max-width: 1800px){
    .ovic-tabs.style3 .tab-link li{
        margin-right: 5px;
        width: 12%;
    }
    .ovic-tabs.style3 .tab-link li a{
        padding: 13px 5px 21px;
    }
    .ovic-tabs.style3 .tab-link li a i{
        font-size: 40px;
    }
    .ovic-tabs.style3 .tab-link li a span{
        font-size: 13px;
        margin-top: 0;
    }
}
@media(max-width: 1499px){
    .ovic-tabs.style3 .tab-link li{
        margin-right: 5px;
        width: 12%;
    }
    .ovic-tabs.style3 .tab-link li:before{
        height: 15px;
    }
    .ovic-tabs.style3 .tab-link li:hover:after,
    .ovic-tabs.style3 .tab-link li.active:after{
        width: 20px;
        height: 20px;
        bottom: -8px;
    }
    .ovic-tabs.style3 .tab-link li a{
        padding: 13px 5px 13px;
    }
    .ovic-tabs.style3 .tab-link li a i{
        font-size: 30px;
    }
    .ovic-tabs.style3 .tab-link li a span{
        line-height: 18px;
        margin-top: 0;
        font-size: 11px;
    }
}
@media (max-width: 1199px) {
    .ovic-tabs.style1 .tab-link{
        margin-bottom: 32px;
    }
    .ovic-tabs.style1 .tab-link li{
        margin-right: 25px;
    }
    .ovic-tabs.style2 .tab-head{
        padding-bottom: 5px;
        margin-bottom: 20px;
    }
    .ovic-tabs.style2 .tab-link li {
        font-size: 25px;
        margin: 0 15px;
    }
    .ovic-tabs.style2 .tab-link li a:after {
        bottom: -6px;
    }
    .ovic-tabs.style3 .ovic-title,
    .ovic-tabs.style3 .tab-link{
        margin-bottom: 20px;
        text-align: left;
    }
    .ovic-tabs.style3 .tab-link li{
        width: auto;
    }
    .ovic-tabs.style3 .tab-link li:before,
    .ovic-tabs.style3 .tab-link li:hover:after,
    .ovic-tabs.style3 .tab-link li.active:after,
    .ovic-tabs.style3 .tab-link li a i{
        display: none;
    }
    .ovic-tabs.style3 .tab-link li a {
        padding: 8px 7px 5px;
        margin-bottom: 5px;
    }
    .ovic-tabs.style3 .tab-link li a span{
        font-size: 13px;
    }
}
@media (max-width: 991px) {
    .ovic-tabs.style1 .tab-link {
        margin-bottom: 20px;
    }
    .ovic-tabs.style1 .tab-link li{
        margin-right: 25px;
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .ovic-tabs.style1 .tab-head:after{
        top: 15px;
    }
    .ovic-tabs.style1 .tab-link{
        display: block;
    }
    .ovic-tabs.style1 .tab-link li,
    .ovic-tabs.style2 .tab-link li{
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .ovic-tabs.style1 .tab-link li a,
    .ovic-tabs.style2 .tab-link li a{
        border: 2px solid #888;
        padding: 3px 10px 0;
        font-size: 16px;
    }
    .ovic-tabs.style1 .tab-link li a:after,
    .ovic-tabs.style2 .tab-link li a:after{
        display: none;
    }
    .ovic-tabs.style1 .tab-link li a:hover,
    .ovic-tabs.style2 .tab-link li a:hover,
    .ovic-tabs.style1 .tab-link li.active a,
    .ovic-tabs.style2 .tab-link li.active a{
        border-color: #222;
    }
    .ovic-tabs.style3 .tab-link{
        text-align: left;
    }
    .ovic-tabs.style3 .tab-link li a{
        padding: 8px 9px 7px;
    }
    .ovic-tabs.style3 .tab-link li a i{
        display: block;
    }
    .ovic-tabs.style3 .tab-link li a span{
        display: none;
    }
}
@media (max-width: 479px) {
    .ovic-tabs.style3 .tab-link li{

    }
}
@media (max-width: 360px) {
    .ovic-tabs.style1 .tab-link li,
    .ovic-tabs.style2 .tab-link li{
        display: block;
        margin-right: 0!important;
        margin-left: 0;
        text-align: center;
    }
}
/*----- ICON-BOX -----*/
.ovic-iconbox.default .icon,
.ovic-iconbox.style-1 .icon,
.ovic-iconbox.style-2 .icon{
    float: left;
    font-size: 20px;
    margin-right: 15px;
}
.ovic-iconbox.default{
    color: #666;
}
.ovic-iconbox.default,
.ovic-iconbox.default .content,
.ovic-iconbox.style-1 .content,
.ovic-iconbox.style-2 .content{
    overflow: hidden;
}
.ovic-iconbox.default .text,
.ovic-iconbox.style-2 .text{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}
.ovic-iconbox.style-1 .icon{
    margin-right: 18px;
    font-size: 45px;
    line-height: 100%;
}
.ovic-iconbox.style-1 .title{
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 11px;
}
.ovic-iconbox.style-1 .text{
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #666;
}
.ovic-iconbox.style-2{
    color: #bbbbbb;
}
.ovic-iconbox.style-3 .title{
    float: left;
    font-size: 15px;
    color: #222;
    margin-bottom: 0;
    line-height: 20px;
    margin-right: 10px;
}
.ovic-iconbox.style-3 .text{
    overflow: hidden;
    line-height: 20px;
    margin-bottom: 0;
    color: #555;
}
.ovic-iconbox.style-4,
.ovic-iconbox.style-5,
.ovic-iconbox.style-6{
    text-align: center;
}
.ovic-iconbox.style-4 .icon{
    font-size: 52px;
    margin-bottom: 28px;
}
.ovic-iconbox.style-4 .title{
    font-size: 24px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 22px;
    font-weight: bold;
}
.ovic-iconbox.style-4 .text{
    font-size: 14px;
    line-height: 24px;
    color: #666;
    margin-bottom: 0;
}
.ovic-iconbox.style-5 .icon img{
    max-width: 78px;
    margin: 0 auto;
    margin-bottom: 19px;
}
.ovic-iconbox.style-5 .title{
    font-size: 36px;
    line-height: 36px;
    color: #222222;
    margin-bottom: -2px;
}
.ovic-iconbox.style-5 .text{
    font-size: 18px;
    line-height: 24px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0;
}
.ovic-iconbox.style-6 .title{
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
    padding: 14px 20px 10px;
}
.ovic-iconbox.style-7{
    display: inline-block;
    cursor: pointer;
}
.ovic-iconbox.style-7 .number{
    display: inline-block;
    width: 41px;
    height: 41px;
    text-align: center;
    line-height: 41px;
    color: #fff;
    font-size: 18px;
    background-color: #ddd;
    border-radius: 50%;
    margin-right: 16px;
    cursor: pointer;
}
.ovic-iconbox.style-7 .title {
    display: inline-block;
    margin-bottom: 0;
    color: #333;
    font-size: 14px;
}
.ovic-iconbox.style-8 .number {
    float: left;
    font-weight: bold;
    font-size: 72px;
    line-height: 72px;
    margin-right: 19px;
}
.ovic-iconbox.style-8 .content {
    overflow: hidden;
}
.ovic-iconbox.style-8 .title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 6px;
}
.ovic-iconbox.style-8 .text {
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 0;
}
.ovic-iconbox.style-9 .title,
.ovic-iconbox.style-9 .text,
.ovic-iconbox.style-9 .icon{
    color: #fff!important;
}
.ovic-iconbox.style-10 .box-url-video{
    position: relative;
}
.ovic-iconbox.style-10 .box-url-video .js-popup-video{
    position: absolute;
    display: inline-block;
    font-size: 19px;
    color: #f9f9f9;
    width: 63px;
    height: 63px;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    line-height: 63px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    z-index: 100;
    top: 50%;
    transform: translateY(-50%);
}
.mfp-content .mfp-close{
    top: 0;
    display: inline-block;
    left: auto;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
    border-radius: 0;
}
.ovic-iconbox.style-11{
    text-align: center;
}
.ovic-iconbox.style-11 .iconbox-inner{
    border: 2px solid #e6e6e6;
    border-radius: 5px;
    padding: 18px 30px 27px;
    transition: all .5s ease;
}
.ovic-iconbox.style-11 .icon{
    margin: 0 auto;
    float: none;
    display: block;
    margin-bottom: 15px;
    margin-top: 5px;
}
.ovic-iconbox.style-11 .icon img{
    margin: 0 auto;
}
.ovic-iconbox.style-11 .text{
    color: #444;
}
.ovic-iconbox.style-12 .content{
    position: relative;
}
.ovic-iconbox.style-12 .content:after{
    position: absolute;
    left: 0;
    top: 15px;
    width: 100%;
    background-color: #e6e6e6;
    height: 1px;
    content: '';
    z-index: -1;
}
.ovic-iconbox.style-12 .title{
    margin-bottom: 0;
    display: inline-block;
    background-color: #fff;
    color: #222;
    font-weight: bold;
    font-size: 36px;
    text-transform: uppercase;
    padding-right: 35px;
}
.ovic-iconbox.style-13 .title{
    font-size: 36px;
    color: #222;
    line-height: 36px;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 12px;
    position: relative;
}
.ovic-iconbox.style-13 .title span{
    position: relative;
}
.ovic-iconbox.style-13 .title span:before {
    position: absolute;
    content: '';
    display: inline-block;
    bottom: -1px;
    left: 0;
    height: 3px;
    width: 100%;
}
.ovic-iconbox.style-1:hover .icon,
.ovic-iconbox.style-4:hover .icon,
.ovic-iconbox.style-9:hover .icon,
.ovic-iconbox.style-11:hover .icon{
    -webkit-animation: bounceIn 0.3s ease-out;
    -o-animation: bounceIn 0.3s ease-out;
    animation: bounceIn 0.3s ease-out;
}
.ovic-iconbox.style-14 .title{
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 14px;
}
.ovic-iconbox.style-14 .text{
    color: #666;
    margin-bottom: 0;
}
@media (max-width: 1199px) {
    .ovic-iconbox.style-1 .title{
        margin-bottom: 4px;
    }
    .ovic-iconbox.style-1 .text{
        line-height: 20px;
    }
    .ovic-iconbox.style-12 .title{
        font-size: 25px;
        padding-right: 20px;
    }
    .ovic-iconbox.style-12 .content:after{
        top: 10px;
    }
    .ovic-iconbox.style-13 .title{
        font-size: 25px;
        line-height: 25px;
        padding-bottom: 5px;
    }
}
@media (max-width: 767px) {
    .ovic-iconbox.style-8 .number{
        font-size: 40px;
        line-height: 50px;
    }
}
/*----- SOCIALS -----*/
.footer .ovic-socials{
    display: inline-block;
}
.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: 22px;
    color: #555;
    margin-right: 10px;
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all .5s ease;
}
.ovic-socials ul li a span:hover{
    color: #fff;
}
.ovic-socials ul li:last-child a span{
    margin-right: 0px;
}
.ovic-socials.style-1>*{
    display: inline-block;
    vertical-align: middle;
}
.ovic-socials.style-1 .title{
    font-weight: bold;
    color: #222;
    font-size: 24px;
    text-transform: uppercase;
    margin-right: 15px;
}
@media(max-width: 1199px){
    .ovic-socials.style-1 .title{
        font-size: 20px;
    }
}
/*----- CUSTOM-MENU -----*/
.ovic-custommenu.default .widgettitle,
.ovic-custommenu.style-1 .widgettitle{
    font-size: 18px;
    margin-bottom: 7px;
}
.ovic-custommenu.default .ovic-menu>li,
.ovic-custommenu.style-1 .ovic-menu>li{
    color: #666;
    padding: 5px 0;
}
.ovic-custommenu.style-1 .widgettitle{
    color: #fff;
}
.ovic-custommenu.style-1 .ovic-menu>li{
    color: #bbbbbb;
}
.ovic-custommenu.style-2 .widgettitle{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: none;
    margin-bottom: 8px;
}
.ovic-custommenu.style-2 .ovic-menu>li{
    font-size: 14px;
    padding: 5px 0;
}
.ovic-custommenu.style-2 .ovic-menu>li>a{
    padding: 3px 0;
}
.ovic-custommenu.style-3 .ovic-menu>li{
    display: inline-block;
    padding: 0;
    color: #666;
    font-size: 14px;
}
.ovic-custommenu.style-3 .ovic-menu>li:not(:last-child):after{
    display: inline-block;
    content: '/';
    margin: 0 3px 0 7px;
}
.footer .widgettitle{
    border-bottom: none;
}
.footer .widget_tag_cloud .widgettitle{
    font-size: 18px;
}
.footer .widget .tagcloud a{
    padding: 2px 11px 0;
    margin: 0 10px 10px 0;
    color: #666;
    border: 2px solid #e6e6e6;
}
.footer .widget .tagcloud a:hover{
    color: #fff;
}
@media(max-width: 1499px){
    .ovic-custommenu.default .widgettitle,
    .ovic-custommenu.style-1 .widgettitle,
    .footer .widget_tag_cloud .widgettitle{
        font-size: 20px;
    }
}
@media(max-width: 1199px){
    .ovic-custommenu.default .widgettitle,
    .ovic-custommenu.style-1 .widgettitle{
        padding-bottom: 5px;
    }
    .ovic-custommenu.style-2 .widgettitle{
        margin-bottom: 0;
        padding-bottom: 10px;
    }
    .footer .widget_tag_cloud .widgettitle{
        padding-bottom: 1px;
    }
}
/*----- OVIC MAILCHIP -----*/
.newsletter-form-wrap{
    position: relative;
}
.ovic-newsletter.style-1 .text-field,
.ovic-newsletter.style-2 .text-field{
    width: 100%;
}
.ovic-newsletter.style-1 .input-text,
.ovic-newsletter.style-2 .input-text{
    height: 44px;
    line-height: 44px;
    width: 100%;
    border-radius: 3px;
    background-color: #fff;
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
    border:2px solid #e8e8e8;
}
.ovic-newsletter.style-1 .btn-submit,
.ovic-newsletter.style-2 .btn-submit{
    position: absolute;
    top: 0;
    right: 0;
    line-height: 41px;
    font-size: 14px;
    color: #fff;
    padding: 3px 20px 0;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.ovic-newsletter.style-1 .newsletter-form-wrap.processing::after,
.ovic-newsletter.style-2 .newsletter-form-wrap.processing::after{
    top: 7px;
}
.ovic-newsletter.style-2{
    position: relative;
}
.ovic-newsletter.style-2,
.ovic-newsletter.style-2>*{
    display: inline-block;
    vertical-align: middle;
}
.ovic-newsletter.style-2 .title{
    font-weight: bold;
    font-size: 24px;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-right: 27px;
}
.ovic-newsletter.style-2 .newsletter-form-wrap{
    max-width: 535px;
}
.ovic-newsletter.style-2 .input-text{
    width: 535px;
    height: 48px;
}
.ovic-newsletter.style-2 .btn-submit{
    font-size: 14px;
    padding: 3px 24px 0;
    line-height: 45px;
}
.ovic-newsletter.style-2 .return-message{
    display: block;
    position: absolute;
    width: 100%;
}
.ovic-newsletter.style-3{
    max-width: 400px;
}
.ovic-newsletter.style-3 .text-field,
.ovic-newsletter.style-3 .input-text{
    display: block;
    width: 100%;
    text-align: center;
}
.ovic-newsletter.style-3 .input-text{
    font-size: 15px;
    color: #6c757d;
    background-color: #f7f8fa;
    margin-bottom: 20px;
    height: 48px;
    font-weight: normal;
    border-radius: 3px;
    border: none;
}
.ovic-newsletter.style-3 .btn-submit{
    display: block;
    font-size: 15px;
    text-transform: uppercase;
    padding-top: 3px;
    font-weight: bold;
}
@media (max-width: 1199px) {
    .ovic-newsletter.style-2 .return-message{
        position: static;
    }
    .ovic-newsletter.style-2 .title{
        font-size: 20px;
    }
}
@media (max-width: 991px) {
    .ovic-newsletter.style-2 .title{
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .widget-ovic-mailchimp .newsletter-form-wrap{
        max-width: 370px;
    }
    .ovic-newsletter.style-2 .head{
        display: none;
    }
}
@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{
        line-height: 36px;
    }
    .ovic-newsletter.style-2 .input-text{
        width: 450px;
    }
}
@media (max-width: 479px) {
    .ovic-newsletter.style-2 .input-text{
        width: 320px;
    }
}
@media (max-width: 360px) {
    .ovic-newsletter.style-2 .input-text{
        text-align: center;
        margin-bottom: 10px;
        width: 100%;
    }
    .ovic-newsletter.style-2 .btn-submit{
        position: static;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
    }
}
/*----- POPUP-----*/
.white-popup {
    background: transparent;
    max-width: 970px;
    padding: 0;
}
.mfp-content .mfp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0px;
    width: 29px;
    height: 29px;
    line-height: 29px;
    opacity: 1;
    border-radius: 50%;
}
.mfp-content .mfp-close:hover{
    background-color: transparent!important;
}
.mfp-content .mfp-close:before {
    font-family: "Elitex-icon", sans-serif;
    content: "\e91c";
    font-size: 18px;
    color: #aaa;
}
.ovic-disabled-popup span{
    color: #aaa;
}
.ovic-disabled-popup input{
    margin-top: 6px;
}
@media (max-width: 991px) {
    .white-popup {
        max-width: 550px;
    }
    .ovic-newsletter.style-3{
        margin: 0 auto;
    }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
    .ovic-disabled-popup input{
        margin-top: 2px;
    }
}
@media (max-width: 640px) {
    .white-popup {
        max-width: 280px;
    }
    .ovic-newsletter.style-3 {
        max-width: 250px;
    }
    .ovic-newsletter.style-3 .input-text{
        margin-bottom: 10px;
    }
    .mfp-content .mfp-close{
        top: 5px;
        right: 5px;
    }
    .mfp-content .mfp-close:before{
        font-size: 15px;
    }
}
/*==========================================================================
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: 13px;
    text-transform: uppercase;
    line-height: 38px;
    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:hover{
    color: #fff!important;
    border-radius: 50%;
}
.backtotop.show {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.footer .ovic-menu>li{
    display: block;
}
.footer .ovic-title{
    font-size: 18px;
    line-height: 24px;
    color: #222;
    border-bottom: none;
    margin-bottom: 21px;
}
.footer .ovic-title span:before{
    display: none;
}
@media(max-width: 1499px){
    .footer .ovic-title{
        font-size: 20px;
        margin-bottom: 19px;
    }
}
@media(max-width: 1199px){
    .footer .ovic-title{
        margin-bottom: 17px;
    }
}
@media (max-width: 767px) {
    .footer .widgettitle{
        margin-bottom: 15px;
    }
    .ovic-custommenu.default .widgettitle,
    .ovic-custommenu.style-1 .widgettitle{
        padding-bottom: 0;
    }
    .footer .ovic-products .ovic-title{
        margin-bottom: 20px;
    }
}
/*==========================================================================
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: -7px;
    min-height: 10px;
    width: 7px;
}
.widget_shopping_cart_content.scroll-element.scroll-x .scroll-element_outer {
    left: 2px;
}
.widget_shopping_cart_content .scroll-element.scroll-x .scroll-element_size {
    left: -4px;
}
.widget_shopping_cart_content .scroll-element.scroll-y .scroll-element_outer {
    top: 2px;
}
.widget_shopping_cart_content .scroll-element.scroll-y .scroll-element_size {
    top: -4px;
}
/* update scrollbar offset if both scrolls are visible */
.widget_shopping_cart_content .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -11px;
}
.widget_shopping_cart_content .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -11px;
}
/*==========================================================================
UPDATE DESIGN(FONT-SITE)
===========================================================================*/
@media(min-width: 1200px){
    body {
        font-size: 16px;
        line-height: 28px;
    }
    input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="search"], input[type="url"], select, textarea{
        font-size: 16px;
    }
    /***blog***/
    .blog-default .post-item .post-title,
    .blog-grid .post-item .post-title{
        font-size: 24px;
        margin-bottom: 14px;
    }
    .post-info .read-more a{
        font-size: 14px;
    }
    .blog-single .post-item .post-content strong{
        font-size: 18px;
        font-weight: bold;
    }
    /***shop-control***/
    .shop-before-control select{
        padding: 8.5px 17px 6.5px;
    }
    .shop-before-control .woocommerce-result-count{
        margin-top: 5px;
    }
    /***pagination***/
    .woocommerce-pagination a.page-numbers,
    .woocommerce-pagination span.page-numbers,
    .navigation .page-numbers,
    .pagination .page-numbers,
    .post-pagination > *,
    .shop-after-control .pagination-top>*{
        font-size: 16px;
        line-height: 46px;
    }
    .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-size: 16px;
        line-height: 43px;
    }
    .shop-before-control .navigation .page-numbers{
        line-height: 38px;
    }
    .shop-before-control .navigation .page-numbers:before,
    .shop-before-control .navigation .page-numbers:after{
        line-height: 35px!important;
    }
    /***comment-form***/
    .comment-form input[type="text"],
    .comment-form textarea{
        font-size: 16px;
    }
    .wpcf7-form [class^="col-"] > label,
    .wpcf7-form [class*=" col-"] > label,
    .wpcf7-form label{

    }
    .wpcf7-form textarea,
    .wpcf7-form input:not([type="submit"]){
        font-size: 15px;
        line-height: 40px;
    }
    /***product-item***/
    .list-attribute li{
        font-size: 16px;
    }
    /***product-single***/
    .entry-summary .woocommerce-product-details__short-description{
        font-size: 16px;
        line-height: 28px;
    }
    .entry-summary .qty-label,
    .entry-summary .variations label{
        font-size: 16px;
    }
    .woocommerce-Tabs-panel{
        font-size: 16px;
    }
    /***widget***/
    .widgettitle{

    }
    .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{
        font-size: 16px;
    }
    .no-toolkit .widget-area > .widget_ovic_nav_menu ul li a,
    .no-toolkit .widget-area > .widget_product_categories ul li a,
    .no-toolkit .widget-area > .widget_nav_menu ul li a,
    .no-toolkit .widget-area > .widget_layered_nav ul li a,
    .no-toolkit .widget-area > .widget_recent_entries ul li a,
    .no-toolkit .widget-area > .widget_meta ul li a,
    .no-toolkit .widget-area > .widget_pages ul li a,
    .no-toolkit .widget-area > .widget_categories ul li a,
    .no-toolkit .widget-area > .widget_archive ul li a {
        font-size: 16px;
    }
    .widget_search .search-field,
    .widget_product_search .search-field{
        font-size: 16px;
    }
    .widget_price_filter .price_slider_amount .price_label{
        font-size: 16px;
        margin-top: 6px;
    }
    .widget_layered_nav .color-group .term-color:after{
        top: 5px;
    }
    .widget .tagcloud a{
        font-size: 16px!important;
    }
    .widget-area > .widget_archive ul li a:after{
        top: -3px;
    }
    .footer .widget .tagcloud a{
        font-size: 16px!important;
        line-height: 28px;
    }
    /***header***/
    .top-header ul li{
        font-size: 16px;
    }
    .top-header .top-bar-menu>li>a:before{
        top: 14px;
    }
    .header-middle .ovic-menu li > a > .icon{
        margin-top: 5px;
    }
    .header-middle .top-bar-menu>li>.desc{
        font-size: 16px;
    }
    .block-minicart .cart-link{
        font-size: 16px;
    }
    .woocommerce-mini-cart__buttons > *{
        font-size: 14px;
        line-height: 42px;
    }
    .woocommerce-mini-cart__buttons > .button:not(.checkout){
        padding: 3px 0 0;
        line-height: 38px;
    }
    .header .chosen-container-single .chosen-single{
        font-size: 16px;
    }
    .chosen-container .chosen-results li,
    .chosen-container .chosen-results li:first-child{
        font-size: 16px;
    }
    .block-nav-category .vertical-menu{
        padding-bottom: 1px;
    }
    .header.style-1 .header-nav .has-new-menu ul li a{
        padding: 17px 0px 13px 16px;
        font-size: 18px;
        line-height: 24px;
    }
    .header.style-2 .block-userlink .text{
        font-size: 16px;
    }
    .block-nav-category .block-title,
    .header.style-2 .header-nav .has-new-menu ul li a{
        line-height: 24px;
    }
    .top-header .sub-menu,
    .box-header-nav .main-menu .sub-menu{
        font-size: 16px;
    }
    .header.style-3 .header-middle .top-bar-menu>li>a,
    .header.style-3 .header-middle .top-bar-menu>li .desc,
    .header.style-3 .header-middle .top-bar-menu>li:first-child>a,
    .header.style-3 .header-middle .top-bar-menu>li:first-child .desc{
        font-size: 16px;
    }
    .header.style-3 .header-middle .logo{
        padding-right: 70px;
    }
    .header.style-4 .block-userlink .text,
    .header.style-4 .header-nav .has-new-menu ul li a{
        font-size: 16px;
    }
    .header.style-4 .block-nav-category .vertical-menu{
        padding-top: 0;
        padding-bottom: 0;
    }
    .header.style-4 .block-userlink > a{
        padding: 10px 0;
    }
    /***short-code***/
    .ovic-custommenu.default .ovic-menu>li{
        font-size: 16px;
        padding: 3px 0;
    }
    .ovic-custommenu.style-2 .widgettitle,
    .ovic-custommenu.style-2 .ovic-menu>li,
    .ovic-custommenu.style-3 .ovic-menu>li{
        font-size: 16px;
    }
    .ovic-iconbox.style-1 .title{

    }
    .ovic-iconbox.style-1 .text{
        font-size: 16px;
        line-height: 28px;
    }
    .ovic-iconbox.default .text,
    .ovic-iconbox.style-2 .text{
        font-size: 16px;
        line-height: 24px;
    }
    .ovic-iconbox.style-3 .text{
        line-height: 24px;
    }
    .ovic-iconbox.style-4 .text{
        font-size: 16px;
        line-height: 28px;
    }
    .ovic-instagram.style-1 .widgettitle{
        margin-bottom: 20px;
    }
    .post-item.style-2 .post-metas,
    .post-item.style-2 .post-comment .count{
        line-height: 100%;
    }
    .ovic-blog.style-3 .post-item .post-title{
        margin-bottom: 10px;
    }
    .ovic-person.style-1 .positions{
        font-size: 16px;
    }
}
@media(max-width: 1600px){
    .header.style-4 .box-user .has-new-menu{
        display: none;
    }
}
/*FIX UPLOAD*/
.ovic-header-left>h1>small{
    display: none;
}