/************************************************
Template Name: Xantana SRL 
Version: 0.1.0
Last update: 02/02/2024
Author: Raúl Ghioldi
Develop By: RDesign.com.ar
Developer URL: https://www.rdesig.com.ar
************************************************/

/***********
Fonts
***********/

@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,900");

/*colores*/
:root {
    --color-azul: #22304f;
    --color-azul-oscuro: rgb(0, 51, 153);
    --color-gris-claro: #767e8f;
    --color-gris-claro-hover: #8d8d8d;
    --color-gris-claro-new: rgb(244, 244, 244);
    --color-gris-claro-new-hover: rgba(179, 179, 179, .35);
    --color-rosado: #f666b1;
    --color-verde: #33CC99;
    --color-naranja: #ff6347;

    /*--main-primary-color: rgb(62, 64, 149);/*azul peptixan*/
    --main-primary-color: rgb(0, 51, 153); /*azul xantana*/
    --main-primary-color-hover: var(--color-naranja);
    --main-primary-color-oscuro: var(--main-primary-color-hover);
    --main-secondary-color: rgb(0, 51, 153);
    --main-secondary-color-hover: rgb(1, 72, 214);

    --main-cart-alert-color: rgb(0, 51, 153);
    --main-green-color: rgb(77, 188, 147);
    --main-oferta-color: rgb(255, 0, 0);
}
* {
    margin: 0;
    padding: 0;
}
html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
}
body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 23px;
    font-weight: 400;
    background: #ffffff;
    color: #1e1e27;
}
div {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul {
    list-style: none;
    margin-bottom: 0px;
}
p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
    color: #989898;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
p a {
    display: inline;
    position: relative;
    color: var(--main-primary-color);
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
a,
a:hover,
a:visited,
a:active,
a:link {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
p a:active {
    position: relative;
    color: #ff6347;
}
p a:hover {
    opacity: 0.6;
}
p a:hover::after {
    opacity: 0.2;
}
::selection {
    background: #fde0db;
    color: var(--main-primary-color);
}
p::selection {
    background: #fde0db;
}
h1 {
    font-size: 72px;
}
h2 {
    font-size: 38px;
}
h3 {
    font-size: 28px;
}
h4 {
    font-size: 24px;
}
h5 {
    font-size: 16px;
}
h6 {
    font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #282828;
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
h6::selection {
}
::-webkit-input-placeholder {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}
:-moz-placeholder /* older Firefox*/ {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}
::-moz-placeholder /* Firefox 19+ */ {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}
:-ms-input-placeholder {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}
::input-placeholder {
    font-size: 16px !important;
    font-weight: 500;
    color: #777777 !important;
}
.text-ellipsis-1 {
    max-width: calc(100% - 1px);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.text-ellipsis-2 {
    max-width: calc(100% - 1px);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-ellipsis-3 {
    max-width: calc(100% - 1px);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-blue {
    color: var(--main-primary-color) !important;
}

.bg-color--facebook {
    background-color: #3a61c9;
}
.bg-color--instagram {
    background: #833ab4;
    background: linear-gradient(
      to right,
      #833ab4,#fd1d1d,#fcb045
    );
}
.bg-color--twetter {
    background-color: #1d9bf0;
}
.bg-color--youtube {
    background-color: #ff0000;
}
.bg-color--linkedin {
    background-color: #0a66c2;
}
section {
    display: block;
    position: relative;
    box-sizing: border-box;
}
.clear {
    clear: both;
}
.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}
.clearfix::after {
    clear: both;
}
.clearfix {
    zoom: 1;
}
.float_left {
    float: left;
}
.float_right {
    float: right;
}
.trans_200 {
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.trans_300 {
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.trans_400 {
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.trans_500 {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.fill_height {
    height: 100%;
}
.super_container {
    width: 100%;
    overflow: hidden;
}
.bg-primary {
    background: var(--main-primary-color) !important;
}
.btn {
    border-radius: 10px;
}
.btn-group-sm > .btn.transparent,
.btn-sm.transparent {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
.btn-outline-dark.transparent {
    border-color: transparent;
}
.btn-outline-dark.transparent.active,
.btn-outline-dark.transparent:hover {
    padding: 0.25rem 0.5rem;
    border-color: #343a40;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.no-padd {
    padding: 0;
}
blockquote {
    background: #f9f9f9;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #626067;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    border-color: #66ccf4;
}
.btn.btn-primary {
    padding: 0.525rem 0.75rem;
    border-color: var(--main-primary-color);
    background: var(--main-primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn.btn-primary:hover {
    border-color: var(--main-primary-color-oscuro);
    background: var(--main-primary-color-oscuro);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn.btn-secondary {
    padding: 0.525rem 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn.btn-outline-dark,
.btn-outline-primary,
.btn-outline-danger,
.btn-outline-success {
    padding: 0.525rem 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn.btn-outline-dark.btn-sm {
    padding: 0.325rem 0.75rem;
    font-size: 11px;
}

.btn.btn-success,
.btn.btn-warning,
.btn.btn-danger {
    padding: 0.525rem 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn.btn-white {
    background-color: #fff;
    border-color: #fff;
    color: var(--main-primary-color);
}
.btn.btn-white:hover,
.btn.btn-white:focus, 
a:hover .btn.btn-white,
a:focus .btn.btn-white {
    color: #fff;
    background: var(--main-primary-color-oscuro);
    border-color: var(--main-primary-color-oscuro);
}

.blog-content.detail blockquote {
    background: #f9f9f9;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #626067;
    font-size: 21px;
    font-weight: 300;
    line-height: 30px;
    border-color: #66ccf4;
    font-family: droid-serif, serif;
    font-style: italic;
}
.only-desktop {
    display: block;
}
.only-mobile {
    display: none;
}
@media only screen and (max-width: 991px) {
    .only-mobile {
        display: block;
    }
}
.img-responsive {
    width: 100%;
    height: auto;
}
.svg-icon-image {
    width: 48px;
    height: 48px;
    margin-right: 10px;
    display: inline-block;
}
.svg-icon-image img,
.svg-icon-image svg {
    width: 100%;
    height: 100%;
}
.js-href {
    cursor: pointer !important;
}

#wrapper {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    /*overflow:hidden;*/
}
.container {
    /*max-width:1170px;*/
    /*margin:0 auto;*/
    position: relative;
}

.internal-page-container {
    margin-top: 150px;
    margin-bottom: 50px;
}

/*********************************
Header
*********************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 20;
}
.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_nav {
    width: 100%;
    height: 50px;
    background: var(--main-primary-color);
}
.top_nav_wrapper {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top_nav_left {
    font-size: 13px;
    line-height: 15px;
    color: #ffffff;
}
    .top_nav_left a {
        font-size: 13px;
        line-height: 15px;
        color: #ffffff;
        text-decoration: none;
    }
.top_nav_list {
    display: flex;
}
    .top_nav_list li {
        padding-right: 20px;
        margin-right: 20px;
        border-right: 1px solid #fff;
    }
        .top_nav_list li:last-child {
            padding-right: 0;
            margin-right: 0;
            border-right: none;
        }

/*********************************
Header Navigation
*********************************/

.main_nav_container {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.15);
}
.navbar {
    width: auto;
    height: 100px;
    float: right;
    padding-left: 0px;
    padding-right: 0px;
}
.navbar_menu li {
    display: inline-block;
}
.navbar_menu li a {
    display: block;
    color: var(--color-azul-oscuro);
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 14px;
    margin: 0 8px;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    position: relative;
}
.navbar_menu li a.active {
    color: var(--main-primary-color);
}
.navbar_menu li.active > a:before,
.navbar_menu li a.active:before {
    content: "";
    display: block;
    position: absolute;
    left: 14px;
    bottom: 4px;
    width: 20px;
    border-bottom: 2px solid var(--color-naranja);
}
    .navbar_menu li a.nav-btn {
        background: var(--main-primary-color);
        color: #ffffff;
        border-radius: 10px;
        padding: 6px 12px;
        line-height: 18px;
    }
        .navbar_menu li a.nav-btn.active:before {
            display: none;
        }
        .navbar_menu li a.nav-btn:hover {
            background: var(--main-primary-color-hover);
            color: #ffffff;
        }
.navbar_menu li a:hover {
    color: #b5aec4;
}
.navbar_user {
    margin-left: 37px;
}
.navbar_user li {
    display: inline-block;
    text-align: center;
}
.navbar_user li a.user-nav-bar-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    color: #444444;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    z-index: 2;
}
    @media (max-width: 991.98px) {
        .navbar_user li a.user-nav-bar-item {
            margin-left: 12px;
        }
    }
.navbar_user .icon-svg svg {
    width: 40px;
    height: 40px;
}
.navbar_user li a.user-nav-bar-item.active {
    color: var(--main-green-color);
}
.navbar_user li a.user-nav-bar-item i {
    font-size: 20px;
    background-color: var(--color-gris-claro-new);
    border-radius: 60px;
}
.navbar_user li a.user-nav-bar-item:hover {
    color: #b5aec4;
}
.navbar_user .dropdown-menu .item-alert {
    color: #ff0000;
}
.user-nav-bar-item-profile-image {
    width: 35px;
    height: 35px;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid #dddddd;
    position: relative;
    top: -3px;
}
    .user-nav-bar-item-profile-image img {
        width: 100%;
        height: auto;
    }
.checkout a {
    background: #eceff6;
    border-radius: 50%;
}
.checkout_items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -9px;
    left: 22px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--main-cart-alert-color);
    font-size: 12px;
    color: #ffffff;
}

/*********************************
Header Submenu
*********************************/
.navbar_menu .drop-down {
    position: relative;
}
.navbar_menu .drop-down ul {
    display: block;
    position: absolute;
    left: 13px;
    top: calc(100% + 50px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 10px;
}

.navbar_menu .drop-down:hover > ul {
    opacity: 1;
    top: calc(100% - 10px);
    visibility: visible;
}

.navbar_menu .drop-down li {
    min-width: 210px;
    position: relative;
    display: block;
    text-align: left;
}
.navbar_menu .drop-down.large li {
    min-width: 300px;
}

.navbar_menu .drop-down ul a {
    display: block;
    position: relative;
    transition: 0.3s;
    padding: 10px 20px;
    font-size: 14px;
}
.navbar_menu .drop-down ul .level-1 a,
.navbar_menu .drop-down ul .level-2 a,
.navbar_menu .drop-down ul .level-3 a {
    padding: 5px 20px;
    font-size: 12px;
}

.navbar_menu .drop-down ul a:hover,
.navbar_menu .drop-down ul .active > a,
.navbar_menu .drop-down ul li:hover > a {
    color: #b5aec4;
}

.navbar_menu .drop-down > a:after {
    content: "\f078";
    font-family: FontAwesome;
    padding-left: 5px;
    position: relative;
    top: -1px;
    font-size: 12px;
    color: #ffffff;
}

.navbar_menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.navbar_menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.navbar_menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.navbar_menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .navbar_menu .drop-down .drop-down ul {
        left: -90%;
    }
    .navbar_menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .navbar_menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}
/*********************************
Header Menu
*********************************/

.hamburger_container {
    display: none;
    margin-left: 40px;
}
.hamburger_container i {
    font-size: 24px;
    color: var(--color-azul-oscuro);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.hamburger_container:hover i {
    color: #b5aec4;
}
.hamburger_menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 1);
    z-index: 200;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.hamburger_menu.active {
    right: 0;
}
.fs_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9;
    background: rgba(255, 255, 255, 0);
    pointer-events: none;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.hamburger_close {
    position: absolute;
    top: 26px;
    right: 10px;
    padding: 10px;
    z-index: 1;
}
.hamburger_close i {
    font-size: 24px;
    color: #1e1e27;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.hamburger_close:hover i {
    color: #b5aec4;
}
.hamburger_menu_content {
    padding-top: 100px;
    width: 100%;
    height: 100%;
    padding-right: 20px;
    padding-left: 20px;
    overflow-y: scroll;
}
.menu_item {
    display: block;
    position: relative;
    border-bottom: solid 1px #f5f4f7;
    vertical-align: middle;
}
.menu_item > a {
    display: block;
    color: #1e1e27;
    font-weight: 500;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-transform: uppercase;
}
.menu_item > a:hover {
    color: #b5aec4;
}
.menu_item > a > i {
    margin-left: 8px;
}
.menu_item.active .menu_selection {
    display: block;
    visibility: visible;
    opacity: 1;
}
.menu_selection {
    margin: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.menu_selection li {
    padding-left: 10px;
    padding-right: 10px;
    line-height: 50px;
}
.menu_selection li a {
    display: block;
    color: #232530;
    border-bottom: solid 1px #dddddd;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}
.menu_selection li a:hover {
    color: #b5aec4;
}
.menu_selection li:last-child a {
    border-bottom: none;
}

/*********************************
Header Search
*********************************/
.search-wrap {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s all ease;
    -o-transition: 0.5s all ease;
    transition: 0.5s all ease;
}
.search-wrap .container {
    position: relative;
    height: 100%;
}
.search-wrap.active {
    opacity: 1;
    visibility: visible;
}
.search-wrap .form-control {
    position: absolute;
    top: 50%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    z-index: 3;
    font-size: 40px;
    font-size: 24px;
    outline: 0;
}
.search-wrap .form-control:focus {
    border: none !important;
    box-shadow: none !important;
}
@media (max-width: 991.98px) {
    .search-wrap .form-control {
        font-size: 13px;
        left: 0;
    }
    .search-wrap ::-webkit-input-placeholder {
        font-size: 12px !important;
    }
    .search-wrap :-moz-placeholder /* older Firefox*/ {
        font-size: 12px !important;
    }
    .search-wrap ::-moz-placeholder /* Firefox 19+ */ {
        font-size: 12px !important;
    }
    .search-wrap :-ms-input-placeholder {
        font-size: 12px !important;
    }
    .search-wrap ::input-placeholder {
        font-size: 12px !important;
    }
}
.search-wrap .search-close {
    z-index: 4;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #333333;
}
.search-wrap .search-close span {
    font-size: 30px;
}

/*********************************
Logo
*********************************/

.logo_container {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
}
.logo_container a {
    font-size: 24px;
    color: #1e1e27;
    font-weight: 700;
    text-transform: uppercase;
}
.logo_container a img {
    width: 150px;
}
.logo_container a span {
    color: var(--main-primary-color);
}

/*********************************
Breadcrumbs
*********************************/
.breadcrumbs {
    width: 100%;
    height: 60px;
    border-bottom: solid 1px #ebebeb;
    margin-bottom: 39px;
}
.breadcrumbs ul li {
    display: inline-block;
    margin-right: 17px;
    text-transform: uppercase;
}
.breadcrumbs ul li.active,
.breadcrumbs ul li.active a {
    color: #b9b4c7;
}
.breadcrumbs ul li i {
    margin-right: 17px;
    color: transparent !important;
}
.breadcrumbs ul li a {
    color: #51545f;
}

/*********************************
Default Slider Nav
*********************************/
.theme-nav-default .owl-theme .owl-nav button {
    position: absolute;
    width: 30px;
    height: 70px;
    margin: -15px 0 0 0;
    background: var(--main-primary-color);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 10px;
}
.theme-nav-default:hover .owl-theme .owl-nav button {
    visibility: visible;
    opacity: 1;
}
.theme-nav-default .owl-theme .owl-nav button span {
    color: #ffffff;
    font-size: 12px;
}
.theme-nav-default .item_slider_nav_left {
    top: 50%;
    left: 0;
}
.theme-nav-default .item_slider_nav_right {
    top: 50%;
    right: 0;
}
.theme-nav-default .owl-theme .owl-prev {
    left: 0;
}
.theme-nav-default .owl-theme .owl-next {
    right: 0;
}
.theme-nav-default .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

/*********************************
Main Slider
*********************************/
.main_slider-wrapper {
    margin-top: 150px;
}
@media only screen and (max-width: 991px) {
    .main_slider-wrapper {
        margin-top: 100px;
    }
}
.main_slider {
    width: 100%;
    /*height: 500px;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.main_slider-wrapper {
    margin-left: 100px;
    margin-right: 100px;
}
@media only screen and (max-width: 991px) {
    .main_slider-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}
.main_slider-wrapper .main_slider {
    border-radius: 20px;
    overflow: hidden;
}



.main_slider-wrapper .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 20px;
    margin: 5px 7px;
}

.main_slider::before {
    /*content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);*/
}
.main_slider_content {
    width: 70%;
}
.main_slider_content.x-100 {
    width: 100%;
}
.main_slider_content h6 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 29px;
}
.main_slider_content h1 {
    font-weight: 400;
    line-height: 1;
    font-size: 52px;
}
.main_slider_content h6 {
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 29px;
}
.main_slider_content.style-clear h1,
.main_slider_content.style-clear h2,
.main_slider_content.style-clear h6 {
    color: #ffffff;
}

.main_slider-wrapper .owl-theme .owl-nav button {
    width: 30px;
    height: 70px;
    margin: -15px 0 0 0;
    background: #d3d3d6;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0;
}
.main_slider-wrapper:hover .owl-theme .owl-nav button {
    visibility: visible;
    opacity: 1;
}
.main_slider-wrapper .owl-theme .owl-nav button span {
    color: #ffffff;
    font-size: 12px;
}
.main_slider-wrapper .owl-theme .owl-prev {
    left: 0;
}
.main_slider-wrapper .owl-theme .owl-next {
    right: 0;
}
.main_slider-wrapper .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}
@media only screen and (max-width: 991px) {
    .main_slider-wrapper .owl-theme .owl-nav {
        display: none;
    }
}
.main_slider-wrapper .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
    margin-bottom: 10px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--main-primary-color);
}

.red_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 25px;
    background: var(--main-primary-color);
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.red_button:hover {
    background: var(--main-primary-color-hover) !important;
}
.red_button a {
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 40px;
    width: 100%;
}
.green_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 30px;
    background: rgb(77, 188, 147);
    color: #ffffff;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.top_nav .green_button {
    margin: 8px 0 0 0;
    height: 32px;
}
.green_button:hover {
    background: rgb(91, 236, 183) !important;
}
.green_button a {
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 40px;
    width: 100%;
}
.white_button {
    display: -webkit-inline-box;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 40px;
    padding: 0 30px;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.white_button a {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    line-height: 40px;
    width: 100%;
}
.top_nav .white_button {
    margin: 0;
    height: 32px;
}
.top_nav .white_button svg {
    height: 22px;
    margin: 0 4px 0 0;
    fill: #ffffff;
    position: relative;
}
.white_button:hover {
    opacity: 0.6;
}
.shop_now_button {
    margin-top: 32px;
}

/*********************************
Banner
*********************************/
.banner-home {
    width: 100%;
    margin-top: 30px;
}
.banner-item-wrapper {
    position: relative;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}
.banner-home .owl-item {
    padding-top: 10px;
    padding-bottom: 10px;
}
    .banner-item-wrapper a:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 0%;
        left: 0px;
        bottom: 0px;
        opacity: 0.6;
        transition: all 200ms ease;
        z-index: 2;
        background: var(--color-gris-claro-new-hover);
    }
        .banner-item-wrapper:hover a:after {
            height: 100%;
        }
.home-banner-slider .banner-item-wrapper {
    margin: 0 7px;
}
.home-banner-slider2 .banner-item-wrapper {
    margin: 0 10px;
}
.banner-item-wrapper img {
    width: 100%;
}
.banner-item-wrapper a {
    position: relative;
    z-index: 3;
}
.banner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
}
.banner-home.home-1 .banner-category {
    padding: 10px calc(40% - 30px) 10px 15px;
    color: #333;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}
@media only screen and (max-width: 991px) {
    .banner-item-wrapper {
        margin-bottom: 20px;
    }
    .banner-item-wrapper a {
        width: 100%;
        display: block;
    }
}

/*********************************
New Arrivals
*********************************/

.new_arrivals {
    width: 100%;
}
.new_arrivals_title {
    margin-top: 74px;
}

/*********************************
New Arrivals Sorting
*********************************/

.new_arrivals_sorting {
    display: inline-block;
    border-radius: 3px;
    margin-top: 59px;
    overflow: visible;
}
.grid_sorting_button {
    height: 40px;
    min-width: 102px;
    padding-left: 25px;
    padding-right: 25px;
    cursor: pointer;
    border: solid 1px #ebebeb;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: #ffffff;
    border-radius: 3px;
    margin: 0;
    float: left;
    margin-left: -1px;
}
.grid_sorting_button:first-child {
    margin-left: 0px;
}
.grid_sorting_button:last-child {
}
.grid_sorting_button.active:hover {
    background: var(--color-naranja) !important;
}
.grid_sorting_button.active {
    color: #ffffff;
    background: var(--main-primary-color);
}

/*********************************
New Arrivals Products Grid
*********************************/
.product-grid {
    width: 100%;
    margin-top: 57px;
}
.product-item {
    /*width: 20%;
    height: 380px;
    cursor: pointer;*/
}
.product-item::after {
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 1px);
    height: 100%;
    pointer-events: none;
    content: "";
    border: solid 1px rgba(235, 235, 235, 1);
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.product-item:hover::after {
    -webkit-box-shadow: 0px 0px 9px 0px rgba(200, 200, 200, 1);
    -moz-box-shadow: 0px 0px 9px 0px rgba(200, 200, 200, 1);
    box-shadow: 0px 0px 9px 0px rgba(200, 200, 200, 1);
}
.product-list-content .product-item:after {
    border: solid 1px rgba(235, 235, 235, 1);
}
.product-list-content .product-item {
    margin-bottom: 30px;
}
.product {
    width: 100%;
}
.product_slider_container .product {
    height: auto;
}
.product_image {
    width: 100%;
}
.product_image img {
    width: 100%;
}
.product_info {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 120px;
}
.product_name {
    margin-top: 20px;
    min-height: 40px;
}
.product_name a {
    color: #1e1e27;
}
.product_name:hover a {
    color: #b5aec4;
}
.product_description,
.product_description p {
    font-size: 12px;
    line-height: 15px;
}
.product_description p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.view-block .product_description p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.discount .product_info .product_price {
    font-size: 14px;
}
.product_price .price-current {
    font-size: 16px;
    color: var(--main-primary-color);
    font-weight: 600;
}
.product_price .price-old {
    font-size: 12px;
    margin-left: 10px;
    color: #b5aec4;
    text-decoration: line-through;
}
.product_bubble_wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
}
.product_bubble {
    position: relative;
    height: 22px;
    padding: 0 8px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.product_bubble span {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}
.product_bubble_right::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 6px;
    right: auto;
    top: auto;
    bottom: -6px;
    border: 6px solid;
}
.product_bubble_left::after {
    content: " ";
    position: absolute;
    width: 0;
    height: 0;
    left: 6px;
    right: auto;
    top: auto;
    bottom: -6px;
    border: 6px solid;
}
.product_bubble_red::after {
    border-color: transparent transparent transparent var(--main-oferta-color);
}
.product_bubble_left::after {
    border-color: transparent transparent transparent #51a042;
}
.product_bubble_red {
    background: var(--main-oferta-color);
}
.product_bubble_green {
    background: #51a042;
}
.btn-add-wrapper {
    padding: 10px 0 20px 0;
    text-align: center;
}
.add_to_cart_button {
    width: auto;
    padding: 0 16px;
    display: inline-block;
    /*visibility: hidden;
    opacity: 0;*/
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.add_to_cart_button a {
    font-size: 12px;
    font-weight: 600;
}
.product-item:hover .add_to_cart_button {
    visibility: visible;
    opacity: 1;
}
.favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 17px;
    height: 17px;
}
.favorite_left {
    left: 15px;
}
.product-item .favorite i {
    opacity: .4;
}
.product-item:hover .favorite i {
    opacity: 1;
}

.favorite i {
    color: #b9b4c7;
}
.favorite:hover i {
    color: var(--main-secondary-color-hover);
}
.favorite .added i {
    color: var(--main-primary-color);
    opacity: 1;
}

/*view list*/
.view-list .product {
    width: auto;
    height: 250px;
    display: flex;
    align-items: center;
}
.view-list .product_image {
    width: 250px;
    height: 250px;
}
.view-list .product_info {
    text-align: left;
}
.view-list .product_name {
    margin-top: 0;
}
.view-list .btn-add-wrapper {
    padding: 10px 20px;
}
.view-list .product_bubble {
    float: right;
    margin-left: 10px;
}
.view-list .btn-to-cart {
    min-width: 200px;
}
/**/

.page-title-2-left {
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}
.page-title-4 {
    padding: 10px 0 20px 0;
    margin: 0;
    font-size: 16px;
    line-height: 22px;
    color: #333;
}
.top {
    background: var(--color-azul);
}
.welcome {
    color: #1c1c1c;
    font-weight: 500;
    float: left;
    padding: 5px 0;
}
.homepage-2 .top {
    background: #fff;
}
.homepage-2.gold .top {
    background: #f0f0f0;
}
.top-support {
    margin: 0;
    padding: 15px 0;
    float: left;
}
.top-support li {
    float: left;
    list-style: none;
    color: #fff;
    font-size: 13px;
}
.top-support li:first-child {
    margin-right: 17px;
}
.top-support li a {
    color: #fff;
}
.top-support li a i {
    color: #2a2955;
}
.top-support li i {
    font-size: 20px;
    color: #2a2955;
    margin-right: 10px;
}
.top-support li i,
.top-support li span {
    float: left;
}
.top-offers {
    max-width: 425px;
    width: 100%;
    float: left;
}
.offers {
    max-width: 300px;
    border: none;
    background: #464479;
    border-radius: 0;
    margin: 0 auto;
    font-size: 13px;
    color: #fff;
}
.offers .close {
    opacity: 10;
    color: #585591;
    text-shadow: none;
}
.offers a:hover {
    color: #fff;
    text-decoration: none;
}
.top-control {
    float: right;
    padding: 15px 0;
}
.top-control a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.top-control span {
    color: #2a2955;
    margin: 0 5px;
}

.for-rsch .side-search {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.top-control a:hover {
    color: var(--main-primary-color);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
#believe-nav {
    padding: 20px 0;
    background-color: var(--color-azul-oscuro);
}
.homepage-2 #believe-nav {
    padding: 15px 0 35px;
}
#believe-nav .navbar-default {
    border: none;
    margin: 0;
    border-radius: 0;
    min-height: 0;
    background: none;
}
#believe-nav .navbar-brand {
    padding: 0 15px;
    height: auto;
}
@media only screen and (max-width: 991px) {
    #believe-nav .navbar-brand {
        margin-right: 0;
    }
}
#believe-nav .navbar-brand img {
    width: 180px;
}
@media only screen and (max-width: 991px) {
    #believe-nav .navbar-brand img {
        width: 100px;
    }
}
@media only screen and (max-width: 991px) {
    .user-nav-bar {
        margin-top: -2px;
        margin-right: 0;
    }
}
.user-nav-bar .nav > li > a {
    margin: 5px 12px;
}
@media only screen and (max-width: 991px) {
    .user-nav-bar .nav > li > a {
        margin: 0 6px;
        padding: 0 4px;
    }
}
.user-nav-bar .nav > li > a:hover img {
    opacity: 0.5;
}
.user-nav-bar .nav > li:last-child > a {
    margin: 5px 0 5px 12px;
}
@media only screen and (max-width: 991px) {
    .user-nav-bar .nav > li:last-child > a {
        margin: 0 6px;
        padding: 0 4px;
    }
}

/*********************************
5. Google Map
*********************************/

.contact_container {
    margin-top: 150px;
    padding-bottom: 80px;
    border-bottom: solid 1px #ebebeb;
}
#google_map {
    width: 100%;
    height: 450px;
}
.map_container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 27px 59px rgba(0, 0, 0, 0.15);
}
#map {
    width: 100%;
    height: calc(100% + 30px);
}

/*********************************
6. Contact Us
*********************************/

.contact_contents {
    padding-right: 30px;
}
.contact_contents h1,
.get_in_touch_contents h1 {
    font-size: 40px;
    font-weight: 500;
}
.follow_us_contents h1 {
    font-size: 26px;
    font-weight: 500;
}
.contact_contents p,
.get_in_touch_contents p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 12px;
    display: inline-block;
}
.contact_contents .contact-blockquote {
    margin-bottom: 20px;
}
.contact_contents p .contact-mail-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    margin: 3px 0 0 0;
    display: block;
}
.contact_contents div {
    margin-top: 22px;
}
.contact_contents div:first-of-type {
    margin-top: 19px;
}
@media only screen and (max-width: 991px) {
    .contact_contents {
        padding-right: 0;
    }
    .contact_contents h1,
    .follow_us_contents h1,
    .get_in_touch_contents h1 {
        font-size: 24px;
    }
}

/*********************************
7. Follow Us
*********************************/

.follow_us_contents {
    margin-top: 32px;
}
.social {
    /*margin-top: 20px;*/
}
.social li {
    margin-right: 12px;
}
.social li:last-child {
    margin-right: 0px;
}
.social li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.social li a i {
    color: #ffffff;
}
.social li:hover a {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/*********************************
8. Contact Form
*********************************/

.form_input {
    display: block;
    width: 100%;
    height: 50px;
    border: solid 1px #e5e5e5;
    padding-left: 20px;
    font-size: 16px;
    margin-bottom: 20px;
}
.input_message {
    width: 100%;
    margin-bottom: 15px;
    font-size: 16px;
    padding-bottom: 15px;
}
.form_input:focus,
#newsletter_email:focus {
    border: solid 1px #7f7f7f !important;
    box-shadow: none !important;
}
.message_submit_btn {
    background: #1e1e27;
    color: #ffffff;
    text-transform: uppercase;
    border: none;
    height: 46px;
    cursor: pointer;
}
.message_submit_btn:hover {
    background: #2b2b34 !important;
}
:focus {
    outline: none !important;
}
.input_ph::-webkit-input-placeholder {
    font-size: 16px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
.input_ph:-moz-placeholder /* older Firefox*/ {
    font-size: 16px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
.input_ph::-moz-placeholder /* Firefox 19+ */ {
    font-size: 16px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
.input_ph:-ms-input-placeholder {
    font-size: 16px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
.input_ph::input-placeholder {
    font-size: 16px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
textarea {
    border: solid 1px #e5e5e5;
    padding-left: 20px;
    padding-top: 15px;
}
textarea:hover {
    border-color: #7f7f7f !important;
}
.input_name {
    margin-bottom: 19px;
    margin-top: 31px;
}
.input_review {
    display: block;
    width: 100%;
    border: solid 1px #e5e5e5;
    margin-top: 23px;
    padding-left: 20px;
    padding-top: 13px;
}
.user_star_rating {
    display: inline-block;
    margin-left: 18px;
}
.user_star_rating li {
    display: inline-block;
    margin-right: -3px;
    cursor: pointer;
}
.user_star_rating li i {
    color: #f5c136;
    font-size: 18px;
}
.review_submit_btn {
    width: 170px;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
@media only screen and (max-width: 991px) {
    .get_in_touch_col {
        margin-top: 40px;
    }
}

/*Autocomplete*/
.search-wrap .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1900;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.search-wrap .dropdown-menu > li > a {
    /*display: block;*/
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    /*white-space: nowrap;*/

    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}
.search-wrap .dropdown-menu > li > .no-result {
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: var(--main-primary-color);
}

.search-wrap .dropdown-menu > .active > a,
.search-wrap .dropdown-menu > .active > a:focus,
.search-wrap .dropdown-menu > .active > a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #999999;
    outline: 0;
}

.typeahead.dropdown-menu > li > a {
    display: block;
    padding: 12px 10px 10px 10px;
    clear: both;
    font-weight: 400;
    line-height: 24px;
    white-space: nowrap;
    text-decoration: none;
}
.typeahead.dropdown-menu > li > a strong {
    font-weight: 700;
}

.user-nav-bar .dropdown-menu {
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 13px;
    border: none;
    box-shadow: none;
    border-radius: 10px;
    z-index: 1900;
    box-shadow: 0 0 16px rgb(0 0 0 / 15%);
}
.user-nav-bar .dropdown-menu > li {
    margin-bottom: 10px;
}
.user-nav-bar .dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 700;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
}

.sidebar-nav {
    padding: 9px 0;
}

.dropdown-menu .sub-menu {
    left: 100%;
    position: absolute;
    top: 0;
    visibility: hidden;
    margin-top: -1px;
}

.dropdown-menu li:hover .sub-menu {
    visibility: visible;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.nav-tabs .dropdown-menu,
.nav-pills .dropdown-menu,
.navbar .dropdown-menu {
    margin-top: 0;
}

.navbar .sub-menu:before {
    border-bottom: 7px solid transparent;
    border-left: none;
    border-right: 7px solid rgba(0, 0, 0, 0.2);
    border-top: 7px solid transparent;
    left: -7px;
    top: 10px;
}
.navbar .sub-menu:after {
    border-top: 6px solid transparent;
    border-left: none;
    border-right: 6px solid #fff;
    border-bottom: 6px solid transparent;
    left: 10px;
    top: 11px;
    left: -6px;
}

#cat-nav {
    background: var(--color-azul);
}
@media screen and (max-width: 768px) {
    #cat-nav.classy-menu {
        /*background-color: #fff;*/
        position: fixed;
        top: 0;
        left: -310px;
        z-index: 1000;
        width: 300px;
        height: 100%;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        padding: 0;
        box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
        display: block;
        overflow-x: hidden;
        overflow-y: scroll;
    }
    #cat-nav.classy-menu.menu-on {
        left: 0;
    }
}
#cat-nav ul {
    margin: 0;
    padding: 0;
}
#cat-nav ul li {
    list-style: none;
    float: left;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
#cat-nav ul li a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 17px;
    display: block;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

#cat-nav ul li.active a.menu-level-0:before,
#cat-nav ul li a.menu-level-0:hover:before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
    border-top: 3px solid var(--main-primary-color);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
@media only screen and (max-width: 991px) {
    #cat-nav ul li.active a.menu-level-0:before,
    #cat-nav ul li a.menu-level-0:hover:before {
        display: none;
    }
}
#cat-nav ul li a:hover {
    color: var(--main-primary-color);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
#cat-nav ul li:first-child a {
    padding-left: 0;
}
#cat-nav ul li {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.homepage-2 #cat-nav ul li {
    border-right: none;
}
#cat-nav ul li:last-child {
    border-right: none;
}
.srch-form {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 30px;
    max-width: 450px;
    padding: 15px;
    background: #fff;
    z-index: 9;
    display: none;
    border-top: 2px solid var(--main-primary-color);
}
.srch-form .search-wid {
    border: 1px solid #d7d7d7;
    border-right: 1px solid transparent;
}
.srch-form .search-wid:focus {
    border: 1px solid #d7d7d7;
    border-right: 1px solid transparent;
}
.srch-form .side-search {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-name {
    color: #2b2a2f;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    line-height: 20px;
    padding: 0 15px;
    text-transform: uppercase;
}
.product-name a {
    color: #2b2a2f;
    text-decoration: none;
}
.product-name a:hover {
    opacity: 0.7;
}
.product-price {
    color: var(--main-primary-color);
    font-size: 18px;
    margin-top: 5px;
}
.star-1 {
    margin: 0 5px;
}
.product-price .price-old {
    display: inline-block;
    text-decoration: line-through;
    color: #878788;
}
.product-price .price-current {
    display: inline-block;
}
.prdct-grid {
    margin-bottom: 40px;
    min-height: 375px;
}
.product-listing.grid .prdct-grid {
    margin-bottom: 40px;
    min-height: 403px;
}

/*Product View list*/
.view-list .pro-page-list .product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.view-list .pro-page-list .product-fade-wrap {
    width: 200px;
    height: 200px;
}
.view-list .pro-page-list .product-detail-wrapper {
    display: flex;
}
.view-list .pro-page-list .product-fade-ct {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 1;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    width: 100%;
    margin: 0 0 9px 0;
    padding: 0 0 9px 0;
    border-bottom: 1px solid #ebebeb;
}
.view-list .pro-page-list .owl-theme.slider-product-image {
    margin-bottom: 0;
}
.view-list
    .pro-page-list
    .owl-theme.slider-product-image
    .owl-nav.disabled
    + .owl-dots {
    top: auto;
    bottom: 20px;
}
.view-list .pro-page-list .product-fade-wrap {
    position: static;
}
.view-list .pro-page-list .product-btn-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    margin: 0 0 30px 0;
    text-align: right;
}

/**/

#cat-nav ul li .to-left a i {
    margin: 0;
}
.prdct-grid {
    min-height: 0;
}
.about-page .list-1 li {
    margin-bottom: 7px;
}
.services .block-counter li p {
    color: #21708e;
}

#content {
}
.home-content {
}
.cat-offers {
    padding-top: 65px;
    padding-bottom: 40px;
    /*border-bottom:1px dashed #d7d7d7;*/
}
.cat-sec-1,
.cat-sec-2,
.cat-sec-3 {
    position: relative;
}
.cat-sec-1 .cat-desc,
.cat-sec-2 .cat-desc,
.cat-sec-3 .cat-desc {
    position: absolute;
    width: 100%;
    padding: 17px;
}
.cat-inner {
    display: inline-block;
}
.cat-sec-1 .cat-desc {
    float: left;
    top: 20%;
    left: 0;
}
.homepage-2 .cat-sec-1 .cat-desc {
    top: 0%;
    padding-top: 25px;
    padding-left: 25px;
    padding-right: 25px;
}
.slide-cat {
    position: relative;
}
.slide-cat .ontop {
    position: absolute;
    padding: 4px 35px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    left: 0;
    top: 0;
    text-transform: uppercase;
    z-index: 4;
    background: #a2855e;
}
.slide-cat .onbottom {
    position: absolute;
    padding: 4px 35px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    z-index: 4;
    background: #a2855e;
}
.homepage-2.gold .cat-sec-1 .cat-desc.all-right {
    text-align: right;
}
.homepage-2.gold .cat-sec-1 .cat-desc .cat-inner {
    max-width: 165px;
}
.homepage-2 .cat-sec-1 .cat-desc.fourth {
    text-align: center;
    right: 0;
}
.cat-sec-2 .cat-desc {
    top: 20%;
    left: 0;
    text-align: center;
}
.cat-sec-3 .cat-desc {
    top: 20%;
    left: 0;
    padding-bottom: 20px;
}
.cat-sec-3 .cat-desc {
    text-align: right;
}

.cat-sec-1 .cat-desc .cat-title,
.cat-sec-2 .cat-desc .cat-title,
.cat-sec-3 .cat-desc .cat-title {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
}
.cat-sec-1 .cat-desc .btn,
.cat-sec-2 .cat-desc .btn,
.cat-sec-3 .cat-desc .btn {
    height: 35px;
    font-size: 16px;
    text-transform: uppercase;
}
.cat-sec-1 .cat-desc .cat-title {
    margin-bottom: 20px;
}
.cat-sec-2 .cat-desc .cat-title {
    margin-bottom: 20px;
}
.cat-sec-3 .cat-desc .cat-title {
    margin-bottom: 20px;
}
.cat-sec-1 .cat-desc .cat-title {
    font-size: 44px;
}
.cat-sec-2 .cat-desc .cat-title {
    font-size: 44px;
}
.cat-sec-3 .cat-desc .cat-title {
    font-size: 44px;
}
.cat-sec-1 .cat-desc .cat-title span,
.cat-sec-2 .cat-desc .cat-title span,
.cat-sec-3 .cat-desc .cat-title span {
    color: #ffffff;
    font-weight: 400;
    font-size: 30px;
    display: block;
    text-transform: capitalize;
    line-height: normal;
}
.cat-sec-3 .cat-desc .cat-title span {
    font-size: 22px;
    text-transform: uppercase;
}

.newest-content {
    padding-top: 36px;
    padding-bottom: 30px;
}
    .newest-content .newest-tab {
        width: 100%;
    }
.newest-content {
    text-align: center;
}
.newest-content .newest {
    display: inline-block;
}
.nav-tabs.newest {
    border: none;
    margin-bottom: 40px;
}
.nav-tabs.newest > li {
    margin-right: 30px;
}
.nav-tabs.newest > li:last-child {
    margin-right: 0px;
}
.nav-tabs.newest > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: none;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    font-weight: 700;
    font-size: 13px;
    color: #808080;
    text-transform: uppercase;
    padding: 10px 0;
}
.nav-tabs.newest > li > a.active,
.nav-tabs.newest > li > a.active:focus,
.nav-tabs.newest > li > a.active:hover {
    color: #2b2a2f;
    cursor: default;
    background-color: #fff;
    border: none;
    border-bottom: 2px solid var(--main-primary-color);
}
.nav-tabs.newest > li > a:hover {
    background: none;
    border: none;
    border-bottom: 2px solid var(--main-primary-color);
}

.product-fade-wrap {
    position: relative;
}
/*.product-fade-wrap:after{
	content:"";
	display:block;
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	background:var(--main-primary-color);
	padding-bottom:75px;
	opacity:0;
	transition:all .3s ease;
	-moz-transition:all .3s ease;
	-webkit-transition:all .3s ease;
	
}
.product-fade:hover .product-fade-wrap:after{
	opacity: .05;
	transition:all .3s ease;
	-moz-transition:all .3s ease;
	-webkit-transition:all .3s ease;
}*/
.product-fade-ct {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    width: 100%;
}

.product-fade:hover .product-fade-ct {
    opacity: 10;
}
@media only screen and (max-width: 991px) {
    .product-fade .product-fade-ct {
        opacity: 10;
    }
}
.product-fade-wrap img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.product-fade:hover .product-fade-wrap img {
    transform: scale(1.1);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.product-fade-ct {
    text-align: left;
}
.bullets {
    height: 6px;
    width: 6px;
    display: block;
    background: var(--main-primary-color);
    border-radius: 50%;
}
.product-fade-control .owl-item {
    width: auto !important;
    cursor: pointer;
}
.product-fade-control .item {
    margin: 0 3px;
}
.product-fade .synced .item .bullets {
    background: #48474a;
}

.to-right {
    float: right;
    width: 46px;
}
.to-left {
    float: left;
}
.to-left a {
    width: 38px;
    height: 38px;
    padding: 10px;
    border-radius: 50%;
    background: var(--main-primary-color);
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}
.to-left a:hover {
    background: var(--main-primary-color-oscuro);
}
.to-left a.added {
    background: #ffffff;
    color: var(--main-primary-color);
    border: 1px solid var(--main-primary-color);
}
.product-fade-control {
    padding: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.btn-to-cart {
    background: var(--main-primary-color);
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    padding: 4px 14px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.btn-to-cart span {
    float: left;
}
.btn-to-cart:hover {
    color: #fff;
    background: var(--main-primary-color-hover);
}
.btn-to-cart.btn-disabled {
    background: var(--color-gris-claro);
    color: #fff;
    cursor: default !important;
}
.btn-to-cart.btn-disabled:hover {
    color: #fff;
    background: var(--color-gris-claro-hover);
}

.product-btn-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 0 10px 0;
    text-align: center;
}

/*Call to action*/
.content-offers {
    width: 100%;
    background: no-repeat left center;
    margin-top: 70px;
    margin-bottom: 50px; 
}
.content-offers .ct-offers-icon img {
    width: auto;
    height: 110px;
    margin-right: 30px;
}
.content-offers .bg-blue .ct-offers-icon img {
    height: 80px;
}
.content-offers.no-home {
   background-color: var(--color-gris-claro-new); 
}
.ct-offers {
    width: 100%;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-gris-claro-new);
    border-radius: 20px;
}
.ct-offers p {
    margin: 0;
    font-size: 18px;
    color: #989898;
    line-height: 24px;
}
.ct-offers .btn {
    font-size: 16px;
    font-weight: 400;
}
.ct-offers-title {
    font-size: 32px;
    font-weight:700;
    line-height: normal;
    color: var(--main-primary-color);
    /*text-transform: uppercase;*/
}
.ct-offers-subtitle {
    font-size: 22px;
    /*font-weight:700;*/
    line-height: normal;
    color: #333;
    /*text-transform: uppercase;*/
}
.ct-offers-btn {
    min-width: 200px;
    text-align: right;
}
.content-offers.v2 {
    padding: 20px;
    text-align: center;
    border-radius: 20px;
} 
    .content-offers.v2 p {
        font-size: 1.075rem;
    } 

.ct-offers.bg-blue {
    background-color: var(--main-primary-color);
}
.ct-offers.bg-blue .ct-offers-title {
    color: #fff;
}
.ct-offers.bg-blue p {
    color: #fff;
}
@media only screen and (max-width: 991px) {
    .ct-offers {
        background-position: center center;
        background-size: cover;
        flex-direction: column;
    }
    .ct-offers-title {
        font-size: 20px;
    }
    .ct-offers-subtitle {
        font-size: 16px;
    }
    .ct-offers-btn {
        margin-top: 20px;
        min-width: 100%;
        text-align: center;
    }
}
/**/

.list-1 {
    margin: 0;
    margin-top: 36px;
    padding: 0;
    padding-left: 15px;
}
.list-1 li {
    list-style-image: url(../../demo/images/list-1.png);
    color: #6a6a6c;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}
.services {
    padding-top: 60px;
    border-top: 1px dashed #d7d7d7;
    display: block;
}

.services h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    margin-bottom: 40px;
    text-align: center;
}

.short-desc {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    color: #7b7a7d;
    line-height: 24px;
    margin-bottom: 70px;
}

.services h4 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}
.services h4 i {
    font-size: 24px;
    margin-right: 5px;
    color: #515054;
}
.services p {
    line-height: 24px;
    color: #7b7a7d;
    font-size: 14px;
    margin-bottom: 70px;
}

.counter {
    margin-top: 125px;
    background: var(--main-primary-color);
    padding: 50px 0;
    margin-bottom: 50px;
}
.block-counter {
    margin: 0;
    padding: 0;
}
.block-counter li {
    list-style: none;
    float: left;
    max-width: 33.333%;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-left: 1px solid #5dbfe5;
}
.block-counter li:first-child {
    border: none;
}
.block-counter li p {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    max-width: 285px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 45px;
}
.conut-title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.count-stat i,
.count-stat span {
    display: block;
    color: #fff;
}
.count-stat i {
    font-size: 60px;
    margin-bottom: 30px;
}
.count-stat span {
    font-size: 72px;
    margin-bottom: 30px;
}
.team {
    /*border-top:1px dashed #d7d7d7;*/
    padding-top: 75px;
}
.team h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    margin-bottom: 25px;
    text-align: center;
}
.team img {
    margin-bottom: 30px;
}
.team-desc {
    padding: 0;
    margin: 0;
}
.team-desc li {
    list-style: none;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.team-desc li span {
    display: block;
    color: #7b7a7d;
    font-weight: 400;
    text-transform: capitalize;
}
.team-block {
    margin-bottom: 140px;
}

.buy-on-page {
    background: var(--color-azul);
    padding: 40px 45px;
    margin-bottom: 125px;
}
.buy-on-page h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 400;
    float: left;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.buy {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    width: 100%;
    max-width: 253px;
    float: right;
    padding: 18px 45px;
    text-align: center;
    text-transform: uppercase;
    background: var(--main-primary-color);
    border-radius: 3px;
    text-decoration: none;
    height: 60px;
}
.buy:hover {
    color: #fff;
    text-decoration: none;
    background: #34b0df;
}

/*********************************
Deal of the week
*********************************/
.deal_ofthe_week {
    width: 100%;
    margin-top: 41px;
    background: #f2f2f2;
}
.deal_ofthe_week_img {
    height: 540px;
}
.deal_ofthe_week_img img {
    height: 100%;
}
.deal_ofthe_week_content {
    height: 100%;
}
.section_title {
    display: inline-block;
    text-align: center;
}
.section_title h2 {
    display: inline-block;
    color: var(--main-primary-color);
}
.section_title::after {
    display: block;
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: var(--color-naranja);
    content: "";
}
.timer {
    margin-top: 66px;
}
.timer li {
    display: inline-block;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    margin-right: 10px;
}
.timer li:last-child {
    margin-right: 0px;
}
.timer_num {
    font-size: 48px;
    font-weight: 600;
    color: var(--main-primary-color);
    margin-top: 10px;
}
.timer_unit {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #51545f;
}
.deal_ofthe_week_button {
    padding: 0 20px;
    background: #93939c;
    margin-top: 52px;
    cursor: default;
}
.deal_ofthe_week_button:hover {
    background: #2b2b34 !important;
}

/*********************************
Best Sellers
*********************************/
.product_slider_container {
    width: 100%;
    /*height: 340px;*/
    margin-top: 73px;
}
.product_slider {
    overflow: visible !important;
}
.product_slider_item {
    padding: 0 10px;
}
.product_slider_item .product-item {
    height: auto;
}
.product_slider_item .product-item {
    width: 100% !important;
}

/*********************************
Slider Nav
*********************************/
.product_slider_container .owl-theme .owl-nav button {
    position: absolute;
    width: 30px;
    height: 70px;
    margin: -15px 0 0 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border-radius: 0;
}
.product_slider_container:hover .owl-theme .owl-nav button {
    visibility: visible;
    opacity: 1;
    background-color: transparent;
}
.product_slider_container .owl-theme .owl-nav button span {
    color: #333;
    font-size: 20px;
}
.product_slider_nav_left {
    top: 50%;
    left: -15px;
}
.product_slider_nav_right {
    top: 50%;
    right: -15px;
}
.product_slider_container .owl-theme .owl-prev {
    left: -15px;
}
.product_slider_container .owl-theme .owl-next {
    right: -15px;
}
.product_slider_container .owl-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}

/*********************************
Benefit
*********************************/
.benefit {
    margin-top: 74px;
}
.benefit_row_wrapper {
    padding: 20px;
    background-color: var(--main-primary-color);
    border-radius: 20px;
}
.benefit_row {
    padding-left: 15px;
    padding-right: 15px;
}
.benefit_col {
    padding-left: 0px;
    padding-right: 0px;
}
.benefit_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.benefit_icon img {
    width: auto;
    height: 60px;
}
.benefit_content {
    padding-left: 15px;
    padding-right: 20px;
}
.benefit_content h6 {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-top: 10px;
    color: #fff;
}
@media only screen and (max-width: 991px) {
    .benefit {
        margin-top: 24px;
    }
    .benefit_item {
        height: auto;
        border-right: none;
        border-bottom: solid 1px #d6d6d6;
        padding: 15px 0;
    }
    .benefit_col:last-child .benefit_item {
        border-bottom: none;
    }
}

/*********************************
9. Blogs
*********************************/

.blogs {
    margin-top: 72px;
}
.blogs_container {
    margin-top: 53px;
}
.blog_item {
    height: 255px;
    width: 100%;
    margin-bottom: 40%;
}
.blog_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.blog_content {
    position: relative;
    top: 80%;
    left: 30px;
    width: calc(100% - 60px);
    /*height: calc(100% - 60px);*/
    background: rgba(255, 255, 255, 0.9);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    transform-origin: center center;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.blog_item:hover .blog_content {
    transform: scale(1.1);
}
.blog_title {
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0px;
}
.blog_meta {
    font-size: 12px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase;
    color: #51545f;
    margin-bottom: 0px;
    margin-top: 3px;
    letter-spacing: 1px;
}
.blog_more {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: var(--main-primary-color);
    border-bottom: solid 1px var(--main-primary-color);
    margin-top: 12px;
}
.blog_more:hover {
    color: var(--color-naranja);
}
/*Page*/
.blog-image {
    position: relative;
    margin-bottom: 45px;
}
.blog-image img {
    width: 100%;
}
.blog-post-title {
    text-transform: uppercase;
    font-weight: 700;
    text-align: left;
    font-size: 26px;
    margin-bottom: 25px;
}
.blog-post-title a {
    color: #2b2a2f;
    text-decoration: none;
}
.blog-post-title a:hover {
    color: var(--main-primary-color);
}
.blog-meta {
    font-weight: 600;
    color: #a4a4a4;
}
.blog-meta span {
    margin: 0 15px;
}
.blog-meta a {
    color: #a4a4a4;
    text-decoration: none;
}
.blog-meta a:hover {
    color: var(--main-primary-color);
}
.blog-content {
    padding-bottom: 140px;
}
.blog-content p {
    font-weight: 300;
    color: #626067;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 45px;
    line-height: 27px;
}
@media only screen and (max-width: 991px) {
    .blog-block .inner .blog-content p {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
.blog-content .btn-blue {
    height: 45px;
    width: 125px;
    padding-top: 12px;
}
.blog-block {
}
.blog-content .detail .blog-block {
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 50px;
    margin-bottom: 60px;
}
.blog-block .inner {
    /*border-bottom:1px dashed #d7d7d7;*/
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.blog-image i {
    position: absolute;
    left: 0;
    font-size: 30px;
    padding: 20px 20px;
    background: var(--main-primary-color);
    border-radius: 3px;
    color: #fff;
}
.blockquote-post {
    position: relative;
}
.blockquote {
    border: none;
    padding: 100px 80px;
    background: var(--main-primary-color);
    position: relative;
    font-family: "Roboto Slab", serif;
    font-size: 20px;
    color: #fff;
    line-height: 38px;
    font-weight: 300;
    border-radius: 3px;
}
.blockquote span {
    display: block;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
}
.blockquote-post i {
    position: absolute;
    left: 0;
    font-size: 30px;
    padding: 20px 20px;
    background: #3fa7cf;
    border-radius: 3px;
    color: #fff;
    z-index: 2;
}
.pag-center {
    text-align: center;
}
.pagination.believe-pag > li:first-child > a,
.pagination.believe-pag > li:first-child > span,
.pagination.believe-pag > li:last-child > a,
.pagination.believe-pag > li:last-child > span {
    border-radius: 3px;
}

.pagination.believe-pag > li > a,
.pagination.believe-pag > li > span {
    margin-right: 10px;
    padding: 10px 17px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    border: none;
    background: #2b2a2f;
}
.pagination.believe-pag > .active > a,
.pagination.believe-pag > .active > a:focus,
.pagination.believe-pag > .active > a:hover,
.pagination.believe-pag > .active > span,
.pagination.believe-pag > .active > span:focus,
.pagination.believe-pag > .active > span:hover,
.pagination.believe-pag > li > a:hover,
.pagination.believe-pag > li > a:focus {
    background: var(--main-primary-color);
    color: #fff;
}
.pagination.pag-2,
.pagination.pag-1 {
    float: left;
}

.pagination.pag-2 {
    margin-left: 80px;
}
.pagination.pag-2.pager,
.pagination.pag-1.pager {
    float: left;
    margin-left: 0;
}
.search-wid {
    height: 40px;
    border: 1px solid #f9f9f9;
    box-shadow: none;
    background: #f9f9f9;
}
.search-wid:focus {
    border: 1px solid #f9f9f9;
    box-shadow: none;
    background: #f9f9f9;
}
.btn-side-serach {
    font-size: 18px;
    color: #fff;
    background: #66ccf4;
    border: 1px solid #66ccf4;
    padding-left: 23px;
    padding-right: 23px;
}
.btn-side-serach:hover,
.btn-side-serach:focus {
    color: #fff;
    background: #34b0df;
    border: 1px solid #34b0df;
    padding-left: 23px;
    padding-right: 23px;
    border-left: none;
}
.side-search {
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 45px;
    margin-bottom: 45px;
}
.search-widget h4,
.side-recent h4,
.side-last h4,
.blog-side-cat h4,
.blog-side-tag h4,
.side-recent-prdct h4,
.side-top-prdct h4,
.side-range-slider h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2b2a2f;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.side-recent,
.side-last,
.blog-side-cat {
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 15px;
    margin-bottom: 45px;
}
.side-range-slider {
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 50px;
    margin-bottom: 45px;
}
.side-recent h5,
.side-last h5 {
    font-size: 16px;
    font-weight: 700;

    margin: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.side-recent h5 a,
.side-last h5 a {
    color: #2b2a2f;
    text-decoration: none;
    font-size: 14px;
}
.side-recent h5 a:hover,
.side-last h5 a:hover {
    color: var(--main-primary-color);
}
.side-recent p,
.side-last p {
    color: #626067;
}
.side-recent .meta,
.side-last .meta {
    font-size: 13px;
    font-weight: 600;
    color: #a4a4a4;
    margin: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.side-recent .meta a,
.side-last .meta a {
    color: #a4a4a4;
    margin-right: 15px;
    text-decoration: none;
}
.side-recent .meta a:hover,
.side-last .meta a:hover {
    color: var(--main-primary-color);
}
.side-recent img,
.side-last img {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 3px;
}
.side-recent-ct,
.side-last-ct {
    margin-bottom: 30px;
}
@media only screen and (min-width: 991px) {
    .side-recent-ct .col-md-8,
    .side-last-ct.col-md-8 {
        padding-left: 0;
    }
}
.blog-cat-list {
    padding-left: 15px;
}
.blog-cat-list li {
    list-style-image: url(../../demo/images/list-2.png);
    margin-bottom: 25px;
}
.blog-cat-list li a {
    font-size: 13px;
    color: #2b2a2f;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
}
.blog-cat-list li a:hover {
    color: var(--main-primary-color);
}
.blog-side-tag a {
    padding: 8px 15px;
    background: #f9f9f9;
    color: #a4a4a4;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 10px;
    border-radius: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 13px;
}
.blog-side-tag a:hover {
    background: #66ccf4;
    color: #fff;
}
.sub-title {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2a2f;
    margin-bottom: 15px;
}
.sub-title-lvl-2 {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2a2f;
    margin-bottom: 15px;
    font-size: 20px;
}
.align-left,
.align-right {
    margin-bottom: 30px;
}
.align-left p,
.align-right p {
    margin-top: 0px;
    margin-bottom: 15px;
}

.base-list {
    margin: 0;
    padding-left: 15px;
}
.base-list li {
    color: #626067;
    font-size: 16px;
    font-weight: 300;
    line-height: 27px;
    margin-bottom: 5px;
}
.full-text {
    margin-top: 20px;
}
.author {
    margin-top: 70px;
}
.author-block {
    background: #eaf6fa;
    padding: 30px;
    margin-bottom: 80px;
}
.author-name {
    margin-top: 10px;
}
.author-name h3 {
    float: left;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.author-name .btn-purple {
    text-transform: uppercase;
    float: right;
}
.author-date {
    font-weight: 600;
    color: #2b2a2f;
    font-size: 14px;
    margin-left: 8px;
    float: left;
}
.author-block p {
    margin: 0;
    font-size: 14px;
    margin-top: 25px;
}
#comment-sec {
    margin-bottom: 130px;
}
#comment-sec .media {
    margin-bottom: 35px;
    margin-top: 0px;
}
#comment-sec .btn-purple {
    float: none;
    text-transform: uppercase;
    font-weight: 700;
}
#comment-sec .media-heading {
    font-size: 16px;
    font-weight: 700;
    color: #2b2a2f;
}
#comment-sec .media-heading span {
    font-size: 13px;
    font-weight: 600;
    margin-left: 13px;
}
#comment-sec p {
    font-weight: 300;
    color: #626067;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 27px;
}
#comment-sec .media-body .media {
    margin-top: 35px;
    margin-bottom: 0px;
}
#comment-sec .media-left,
.media > .pull-left {
    padding-right: 20px;
}
.comment {
    margin-bottom: 53px;
}
.comment-form input,
.comment-form input:focus {
    max-width: 458px;
    height: 45px;
    box-shadow: none;
    border: 2px solid #e9edef;
}
.comment-form textarea,
.comment-form textarea:focus {
    max-width: 555px;
    width: 100%;
    height: 135px;
    box-shadow: none;
    border: 2px solid #e9edef;
}
.comment-form label {
    font-weight: 300;
    color: #2b2a2f;
    font-size: 16px;
}
.comment-form .btn-blue {
    width: 145px;
    height: 45px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 6px 12px;
}

.faq-main-desc,
.shortcode-main-desc {
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 45px;
    margin-bottom: 45px;
}
.faq-main-desc {
    padding-bottom: 0px;
}
.shortcode-main-desc p {
    margin: 0;
    padding: 0;
    color: #626067;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
}
.faq-page .sub-title {
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 16px;
    margin-bottom: 0;
}

.faq-page p {
    line-height: 26px;
    font-size: 16px;
    color: #7b7a7d;
    margin-bottom: 45px;
}
.faq-page .panel-default > .panel-heading {
    background: none;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    border: none;
    padding-bottom: 20px;
}
.faq-page .panel-default {
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-radius: 0;
    border-bottom: 1px dashed #d7d7d7;
}

.faq-page .panel-default > .panel-heading + .panel-collapse > .panel-body {
    padding-left: 0;
    padding-right: 0;
    border: none;
}

.shortcode-features h1,
.shortcode-features h2,
.shortcode-features h3,
.shortcode-features h4,
.shortcode-features h5,
.shortcode-features h6 {
    color: #2b2a2f;
    font-weight: 700;
    margin-bottom: 35px;
    margin-top: 0;
    text-transform: uppercase;
}

.shortcode-features p {
    line-height: 26px;
    font-size: 16px;
    color: #7b7a7d;
    margin-bottom: 45px;
}
.shortcode-features.heading p {
    margin-bottom: 80px;
}

.shop-page {
    padding-top: 50px;
    padding-bottom: 150px;
}
.shop-control {
    padding-bottom: 30px;
    margin-bottom: 40px;
    border-bottom: 1px dashed #d7d7d7;
}
.shop-control .right {
    float: right;
    max-width: 285px;
    width: 100%;
}
.show-count {
    float: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #747475;
    margin-top: 12px;
}
.shop-control .right .view-opt {
    float: right;
}
.shop-page.sing .shop-control .right .view-opt {
    float: left;
    max-width: 195px;
}
.shop-control label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #747475;
    float: left;
    margin-top: 15px;
    margin-right: 13px;
}
.shop-control .right .view-opt a {
    font-size: 22px;
    padding: 2px 0;
    border: 2px solid #eeeeee;
    color: #eeeeee;
    display: block;
    float: left;
    width: 38px;
    text-align: center;
}
.shop-control .right .view-opt a.v-1 {
    margin-right: -2px;
}
.shop-control .right .view-opt a.active,
.shop-control .right .view-opt a:hover {
    color: var(--main-primary-color);
    border-color: var(--main-primary-color);
    z-index: 2;
    position: relative;
}
.product-listing {
    /*border-bottom:1px dashed #d7d7d7;*/
    padding-bottom: 35px;
}

.product-listing .product-name {
    text-align: left;
    padding: 0;
    margin-top: 20px;
}
.product-listing.grid .star-1 {
    display: inline-block;
    margin: 6px 0;
}
.product-listing.grid .prdct-grid {
    text-align: center;
}
.product-listing.grid .product-name {
    text-align: center;
    padding: 0;
    margin-top: 20px;
}
.product-listing .star-1 {
    margin-left: 0;
    margin-bottom: 35px;
    margin-top: 10px;
}
.product-listing .product-price {
    margin-top: 0px;
    margin-bottom: 24px;
}
.product-srt-dsc p {
    color: #747475;
    font-size: 14px;
    margin: 0;
    line-height: 24px;
}
.prdct-list {
    margin-bottom: 30px;
}
.product-pagination {
    text-align: center;
    margin-top: 0px;
}
.product-pagination .pagination.believe-pag > li:first-child > a,
.product-pagination .pagination.believe-pag > li:first-child > span,
.product-pagination .pagination.believe-pag > li:last-child > a,
.product-pagination .pagination.believe-pag > li:last-child > span,
.product-pagination .pagination.believe-pag > li > a,
.product-pagination .pagination.believe-pag > li > span {
    border-radius: 0;
    background: #fcfcfc;
    border: 2px solid #ededed;
    color: #868687;
}
.product-pagination .pagination.believe-pag > .active > a,
.product-pagination .pagination.believe-pag > .active > a:focus,
.product-pagination .pagination.believe-pag > .active > a:hover,
.product-pagination .pagination.believe-pag > .active > span,
.product-pagination .pagination.believe-pag > .active > span:focus,
.product-pagination .pagination.believe-pag > .active > span:hover,
.product-pagination .pagination.believe-pag > li > a:hover,
.product-pagination .pagination.believe-pag > li > a:focus {
    color: var(--main-primary-color);
    border-color: var(--main-primary-color);
}
.product-pagination .pagination.believe-pag > li.active > span {
    color: var(--main-primary-color);
    border-color: var(--main-primary-color);
}
.shop-sidebar .search-widget .side-search .search-wid {
    background: #ffffff;
    border-color: #ededed;
}
.shop-sidebar .search-widget .side-search .btn-side-serach,
.shop-sidebar .search-widget .side-search .btn-side-serach:hover,
.shop-sidebar .search-widget .side-search .btn-side-serach:focus {
    color: #747475;
    font-size: 15px;
    padding-left: 12px;
    padding-right: 12px;
    background: #fcfcfc;
    border-color: #ededed;
}
.shop-sidebar .search-widget .side-search .btn-side-serach:hover,
.shop-sidebar .search-widget .side-search .btn-side-serach:focus {
    border-color: #ededed;
    background: #fcfcfc;
    color: var(--main-primary-color);
}
.side-recent-prdct,
.side-top-prdct {
    border-bottom: 1px dashed #d7d7d7;
    padding-bottom: 35px;
    margin-bottom: 40px;
}

/*Sidebar*/
.sidebar-filter-btn {
    text-align: right;
}
.sidebar-filter-btn .btn span {
    margin-left: 10px;
}
.sidebar-filter-btn [aria-expanded="false"] > .expanded,
.sidebar-filter-btn [aria-expanded="true"] > .collapsed {
    display: none;
}

.wrap-sidebar {
}
.wrap-sidebar:last-child .sidebar-container {
    /*border-bottom: none;*/
}
.wrap-sidebar ul {
    margin: 0;
    padding: 0;
}
.wrap-sidebar li {
    padding: 0;
    list-style: none;
}
.wrap-sidebar li a {
    padding: 10px 0;
    margin: 0;
    text-decoration: none;
    color: #333;
    display: block;
    box-shadow: #e3e3e3 0 1px 0;
    font-size: 14px;
    transition: all 0.2s;
}
.wrap-sidebar li.active a {
    padding-left: 10px;
    padding-right: 0;
    color: #000;
    box-shadow: #e3e3e3 0 1px 0, inset var(--main-primary-color) 2px 0 0;
}
.wrap-sidebar li a:hover {
    padding-left: 10px;
    padding-right: 0;
    color: #000;
    box-shadow: #e3e3e3 0 1px 0, inset #333333 2px 0 0;
}
/**/

/*********************************
6. Sidebar
*********************************/
.sidebar-section {
    padding-bottom: 35px;
    margin-bottom: 50px;
    border-bottom: solid 1px #ebebeb;
}
.sidebar-section h4 {
    font-size: 22px;
    margin-bottom: 21px;
}
.sidebar_categories li.active a {
    color: #fe4c50;
}
.sidebar_categories li.active:hover a {
    color: #fe4c50;
}
.sidebar_categories li a {
    font-size: 14px;
    line-height: 40px;
    color: #51545f;
}
.sidebar_categories li a:hover {
    color: #b5aec4;
}

.sidebar_categories li a span {
    margin-right: 5px;
}

#slider-range {
    margin-left: 7px !important;
}

@media only screen and (max-width: 991px) {
    .sidebar {
        padding-right: 15px;
        padding-left: 15px;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #fff;
        z-index: 2;
    }
    .sidebar-filter-btn {
        display: inline-block !important;
    }
    .sidebar-section {
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .sidebar-section h4 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

#amount {
    margin-top: 8px;
    color: #1e1e27 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}

.filter_button {
    width: 100%;
    height: 30px;
    background: #1e1e27;
    text-align: center;
    margin-top: 25px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filter_button:hover {
    background: #34343f;
}

.filter_button span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 30px;
    color: #FFFFFF;
}

.checkboxes li {
    height: 40px;
    line-height: 40px;
}

.checkboxes li.active i {
    color: #fe4c50;
    margin-right: 21px;
}

.checkboxes li.active i::after {
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    font-family: 'FontAwesome';
    font-size: 10px;
    content: '\f00c';
    color: #FFFFFF;
}

.checkboxes {
    height: 200px;
    overflow: hidden;
}

.checkboxes.active {
    height: auto;
}

.checkboxes li i {
    position: relative;
    color: #b3b7c8;
    cursor: pointer;
    margin-right: 22px;
}

.checkboxes li span {
    font-family: 'Poppins', sans-serif;
    color: #51545f;
}

.show_more {
    display: inline-block;
    cursor: pointer;
}

.show_more span {
    height: 40px;
    line-height: 40px;
    color: #fe4c50;
}

.show_more span:first-child {
    margin-right: 11px;
}


.img-small {
    width: 100%;
    height: auto;
}
.top-list,
.recent-list {
    margin-bottom: 30px;
}
.top-list .image,
.recent-list .image {
    float: left;
    max-width: 75px;
    border: 3px solid #e6e6e6;
    width: 100%;
}
.top-list .desc,
.recent-list .desc {
    float: left;
    max-width: 180px;
    width: 100%;
    padding-left: 15px;
    padding-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.top-list .desc .product-name,
.recent-list .desc .product-name {
    margin-top: 0;
    text-align: left;
    padding: 0;
    font-size: 13px;
}
.top-list .desc .star-1,
.recent-list .desc .star-1 {
    margin: 0;
}
.top-list .desc .product-price,
.recent-list .desc .product-price {
    font-size: 14px;
    margin-top: 0;
}
.top-list .desc .product-price span,
.recent-list .desc .product-price span {
    text-decoration: line-through;
    color: #2b2a2f;
    font-size: 13px;
}
.price-range-slider {
    margin-bottom: 30px;
    margin-top: 15px;
    padding: 0 10px;
}
.btn-filter {
    border: 2px solid #ededed;
    border-radius: 0;
    color: #747475;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
    width: 78px;
    height: 30px;
    padding: 0;
    float: left;
}
.btn-filter:hover,
.btn-filter:focus {
    border: 2px solid var(--main-primary-color);
    color: var(--main-primary-color);
}
.price-range-value {
    float: right;
}
.price-range-value label {
    font-weight: 700;
    color: var(--color-azul);
    text-transform: uppercase;
}
#amount {
    max-width: 70px;
    border: none;
    font-weight: 700;
    color: var(--color-azul);
}
.product-name-detail {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    font-size: 23px;
    margin-bottom: 10px;
}
.detail-product .product-price {
    font-size: 24px;
    font-weight: 400;
    float: left;
}
.detail-product .product-price span {
    font-size: 14px;
    font-weight: 400;
    color: #878788;
}
.detail-product .star-1 {
    float: right;
}
.product-price-wrap {
    border-bottom: 1px dashed #d7d7d7;
}
.detail-product p {
    color: #626067;
    font-size: 13px;
    margin-top: 20px;
    line-height: 24px;
}
.detail-cat,
.detail-stock,
.detail-restock {
    margin-top: 20px;
}
.detail-cat label,
.detail-stock label,
.detail-restock label {
    color: #2b2a2f;
    font-weight: 400;
}
.detail-cat a {
    text-transform: uppercase;
    text-decoration: none;
}
.detail-stock span {
    color: #fff;
    background: #abcf54;
    border-radius: 4px;
    padding: 3px 5px;
}
.detail-restock span {
    color: #fff;
    background: #ab2e31;
    border-radius: 4px;
    padding: 3px 5px;
}
.gobuy {
    margin-top: 20px;
}

.gobuy .form-control {
    width: 45px;
    height: 33px;
    box-shadow: none;
    border: 2px solid #ededed;
    background: #fff;
    text-align: center;
    color: #2b2a2f;
    border-radius: 3px;
    display: inline-block;
}
.gobuy label {
    color: #2b2a2f;
    font-weight: 400;
}
.gobuy .btn-to-cart {
    float: none;
    background: #f26969;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 15px;
}
.detailin-3 .detail-stock span {
    margin-left: 22px;
}
.review .nav-tabs {
    border-bottom: none;
}
.review {
    margin-top: 90px;
}
.review .nav-tabs > li > a {
    border: 2px solid #ededed;
    border-radius: 0;
    color: #aeb2b4;
    font-weight: 700;
    text-transform: uppercase;
    padding-left: 35px;
    padding-right: 35px;
}

.review .nav-tabs > li > a {
    margin-right: -2px;
}
.review .nav-tabs > li.active > a,
.review .nav-tabs > li.active > a:focus,
.review .nav-tabs > li.active > a:hover,
.review .nav-tabs > li > a:hover {
    border: 2px solid #ededed;
    border-radius: 0;
    color: var(--main-primary-color);
    background: #fcfcfc;
}
.review .tab-content p {
    color: #626067;
    line-height: 24px;
}
.review .tab-content {
    border: 2px solid #ededed;
    border-top: 2px solid #ededed;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.review .nav-tabs > li {
    margin-bottom: -2px;
}
.review .product-title {
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
    margin-bottom: 35px;
}
.reviewer {
    font-size: 16px;
    font-weight: 700;
    color: #2b2a2f;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.reviewer span {
    font-size: 13px;
    font-weight: 400;
    color: #2b2a2f;
    margin-left: 35px;
}
.review h4 {
    margin-top: 15px;
    margin-bottom: 15px;
}
.review-form .form-control {
    border: 2px solid #ededed;
    box-shadow: none;
    border-radius: 0;
}
.review-form .btn-border {
    border: 2px solid #ededed;
    text-transform: uppercase;
}
.product-listing.detail {
    border: none;
}

.related {
    margin-top: 75px;
}
.related .product-name {
    text-align: center;
}
.related .star-1 {
    margin-left: 0;
    margin-bottom: 0px;
    margin-top: 0px;
    display: inline-block;
}
.related .prdct-grid {
    text-align: center;
}
.related .title {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 45px;
}
.detail-2 {
    background: #f9f9f9;
    padding-left: 55px;
    padding-right: 55px;
    padding-top: 45px;
    padding-bottom: 45px;
}
.detail-2 .gobuy .btn-to-cart {
    margin-left: 0;
}
.big-show {
    width: 100%;
}
.big-show img {
    width: 100%;
    height: auto;
}

.thumb-show {
    margin: 0;
    padding: 0;
    width: 100%;
}
.thumb-show img {
    width: 100%;
    height: auto;
}
.thumb-show li {
    list-style: none;
    margin-bottom: 25px;
}
.grey {
    background: #fafafa;
    margin-left: -15px;
    padding-left: 30px;
    min-height: 262px;
}
.row.detail-3 {
    margin: 0;
}
.row.detail-3 .left {
    margin-right: 0;
    padding: 0;
}
.row.detail-3 .right {
    margin-left: 0;
    padding: 0;
}
.detailin-3 {
    background: #292828;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
}
.detailin-3 .product-price-wrap {
    border-color: #fff;
}
.detailin-3 p,
.detailin-3 .product-name-detail {
    color: #fff;
}
.detailin-3 .product-name-detail {
    text-align: left;
}
.detail-product.detail-3 .star-1 {
    float: left;
}
.star-lab {
    float: left;
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    margin-top: 25px;
}
.product-listing .detail-product.detail-3 .star-1 {
    margin-top: 20px;
    margin-bottom: 0px;
    margin-right: 15px;
}
.detailin-3 .detail-cat label,
.detailin-3 .detail-stock label,
.detailin-3 .detail-restock label {
    color: #fff;
}
.detailin-3 .detail-cat {
    color: #d65f5f;
}
.detailin-3 .detail-cat a {
    color: #d65f5f;
    text-transform: lowercase;
}
.to-cart-wrap {
    background: var(--color-azul);
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 28px;
    padding-bottom: 26px;
}
.review.detail-3 .nav-tabs > li > a {
    margin-right: 4px;
}
.review.detail-3 .nav-tabs > li > a {
    border-color: transparent;
    background: #d8f0fa;
    color: #292828;
}
.review.detail-3 .tab-content {
    background: #effaff;
    border-color: transparent;
}
.review.detail-3 .nav-tabs > li.active > a,
.review.detail-3 .nav-tabs > li.active > a:focus,
.review.detail-3 .nav-tabs > li.active > a:hover,
.review.detail-3 .nav-tabs > li > a:hover {
    border-color: transparent;
    color: var(--color-azul);
    background: #effaff;
}
.detail-image-2 {
    position: relative;
}
.klick-thumb {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 10px 4px;
    z-index: 10;
    width: 100%;
}
#detail-control-3 .owl-item {
    width: auto !important;
}
#detail-control-3 .item img {
    border: 2px solid #fff;
    margin-left: 4px;
    margin-right: 4px;
    opacity: 0.5;
}

#detail-control-3 .synced .item img {
    opacity: 10;
}
.about-page h3.contact-loc {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 18px;
}
.contact-form input,
.contact-form input:focus {
    height: 45px;
    box-shadow: none;
    border: 2px solid #e9edef;
}
.contact-form textarea,
.contact-form textarea:focus {
    max-width: 555px;
    width: 100%;
    height: 135px;
    box-shadow: none;
    border: 2px solid #e9edef;
}
.contact-form label {
    font-weight: 400;
    color: #2b2a2f;
    font-size: 16px;
    margin-bottom: 15px;
}
.contact-form .btn-blue {
    width: 145px;
    height: 45px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 6px 12px;
}
.contact-form .form-group {
    margin-bottom: 30px;
}
.form-type-contact .apellidotest,
form .apellidotest {
    height: 0 !important;
    overflow: hidden !important;
}
.form-type-contact textarea {
    height: 180px;
}
.form-type-contact input[type="submit"],
.form-type-contact input[type="button"] {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;

    padding: 0.525rem 0.75rem;
    border-color: var(--main-primary-color);
    background: var(--main-primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.form-type-contact input[type="submit"]:hover,
.form-type-contact input[type="button"]:hover {
    border-color: var(--main-primary-color-oscuro);
    background: var(--main-primary-color-oscuro);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

/*Form messages*/
.form-message.error-alert {
    font-size: 14px;
    line-height: 18px;
    color: #f00;
    text-align: center;
}
.form-message.fa {
    padding: 0 0 10px 0;
    color: #f00;
    display: block;
    text-align: center;
}
.form-message.fa:before {
    margin: 0;
    padding: 0;
    font-size: 50px;
}

.form-message.exito-send {
    font-size: 14px;
    line-height: 18px;
    color: #090;
    text-align: center;
}
.form-message.exito-send em {
    padding: 10px 0 0 0;
    display: block;
    font-size: 20px;
    line-height: 20px;
    color: #090;
    text-align: center;
}
.form-message.fa.fa-smile-o {
    color: #090;
}
/*gif*/
.form-message.load-message {
    padding: 0 0 10px 0;
    margin: 0 auto;
    display: block;
}
/**/
.form-message.send-message {
    font-size: 16px;
    line-height: 16px;
    color: #4f68aa;
    text-align: center;
}
.form-message.error-smtp,
.form-message.error-spam {
    font-size: 14px;
    line-height: 14px;
    color: #f00;
    text-align: center;
}
.form-message.error-smtp em,
.form-message.error-spam em {
    display: block;
    margin: 0 auto;
    font-size: 14px;
    line-height: 14px;
    color: #f00;
    text-align: center;
}

.map-sec {
    margin-top: 120px;
    margin-bottom: 40px;
}
#map-canvas {
    width: 100%;
    height: 500px;
}
.map-sec-wrap {
    position: relative;
}
.add-block {
    padding: 35px 25px;
    background: #fff;
    position: absolute;
    z-index: 999;
    left: 20%;
    top: 10%;
    max-width: 260px;
    width: 100%;
    border-radius: 3px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.add-block h3 {
    margin-bottom: 20px;
}

.text-widget a {
    color: #808080;
}
.text-widget p {
    line-height: 20px;
    font-size: 13px;
    margin-top: 25px;
}
.homepage-2 .text-widget p,
.homepage-2 .subscribe p {
    color: #60686f;
}
.wid-title {
    color: #808080;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}
.homepage-2 .wid-title {
    color: #364a62;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 45px;
}
.homepage-2.gold .wid-title {
    color: #a2855e;
}
.ft-soc {
    margin: 0;
    padding: 0;
    margin-top: 15px;
    clear: both;
}
.homepage-2 .ft-soc {
    margin-top: 60px;
}
.ft-soc li {
    float: left;
    list-style: none;
    margin-right: 25px;
}
.author-block .ft-soc li {
    float: left;
    list-style: none;
    margin-right: 15px;
}
.ft-soc li:last-child {
    margin-right: 0px;
}
.author-block .ft-soc {
    float: right;
}

.ft-soc li a {
    color: #808080;
    font-size: 22px;
}
.author-block .ft-soc li a {
    color: #808080;
    font-size: 20px;
}
.homepage-2 .ft-soc li a {
    color: #364a62;
}
.homepage-2.gold .ft-soc li a {
    color: #837f7b;
}
.ft-soc li a:hover {
    color: var(--main-primary-color);
    text-decoration: none;
}
.homepage-2.gold .ft-soc li a:hover {
    color: #a2855e;
    text-decoration: none;
}
.quick-links a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}
.homepage-2 .quick-links a,
.homepage-2 .term a {
    color: #60686f;
    text-transform: uppercase;
    text-decoration: none;
}
.quick-links a:hover {
    color: var(--main-primary-color);
}
.quick-links ul {
    margin: 0;
    padding: 0;
}
.quick-links li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 13px;
}
.term p {
    color: #fff;
    line-height: 25px;
    text-transform: uppercase;
    font-size: 13px;
}
.term a {
    color: #fff;
    text-decoration: none;
}
.term a:hover {
    color: var(--main-primary-color);
}
.subscribe p {
    font-size: 13px;
    color: #fff;
    line-height: 21px;
}
.subscribe .form-control {
    height: 40px;
    border: none;
    box-shadow: none;
}
.subscribe .btn {
    width: 100%;
    border: none;
    background: var(--main-primary-color);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    height: 40px;
    font-size: 13px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.subscribe .btn:hover {
    background: var(--main-primary-color-oscuro);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.btn-purple {
    background: #7d66b4;
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-purple:hover,
.btn-purple:focus {
    color: #fff;
    text-decoration: none;
    background: #614a97;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-magenta {
    background: #f666b1;
    color: #fff;
    font-weight: 700;
    border-radius: 3px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-magenta:hover,
.btn-magenta:focus {
    color: #fff;
    text-decoration: none;
    background: #d03083;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-blue {
    background: var(--main-primary-color);
    color: #fff;
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-blue:hover,
.btn-blue:focus {
    color: #fff;
    text-decoration: none;
    background: var(--main-primary-color-oscuro);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-border {
    background: none;
    color: #ffffff;
    font-weight: 700;
    border-radius: 3px;
    border: 2px solid #ffffff;

    border-radius: 0;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.btn-border:hover,
.btn-border:focus {
    color: var(--main-primary-color);
    text-decoration: none;
    background: none;
    border: 2px solid var(--main-primary-color);
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}

.believe-danger {
    background: #ed6565;
    border: 1px solid #ce4a4a;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-danger-bordered {
    background: none;
    border: 1px solid #ce4a4a;
    border-radius: 0;
    color: #ce4a4a;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-success {
    background: #a1c366;
    border: 1px solid #88ab4b;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-success-bordered {
    background: none;
    border: 1px solid #88ab4b;
    border-radius: 0;
    color: #88ab4b;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-information {
    background: #6ab5e5;
    border: 1px solid #4e9fd2;
    border-radius: 0;
    color: #fff;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-information-bordered {
    background: none;
    border: 1px solid #4e9fd2;
    border-radius: 0;
    color: #4e9fd2;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-warning {
    background: #eecf84;
    border: 1px solid #d7b051;
    border-radius: 0;
    color: #896819;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-warning-bordered {
    background: none;
    border: 1px solid #d7b051;
    border-radius: 0;
    color: #d7b051;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-warning-standard {
    background: #f5f4f2;
    border: 1px solid #e5e4e2;
    border-radius: 0;
    color: #787878;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-warning-standard-bordered {
    background: none;
    border: 1px solid #e5e4e2;
    border-radius: 0;
    color: #787878;
    font-size: 16px;
    margin-bottom: 43px;
}
.believe-danger .close,
.believe-success .close,
.believe-warning .close,
.believe-information .close {
    opacity: 10;
    text-shadow: none;
    color: #fff;
}
.believe-danger-bordered .close,
.believe-success-bordered .close,
.believe-warning-bordered .close,
.believe-information-bordered .close,
.believe-warning-standard-bordered .close {
    opacity: 10;
    text-shadow: none;
}
.believe-warning-standard .close {
    opacity: 10;
    text-shadow: none;
    color: #787878;
}
.pagination.pag-1 > li:first-child > a,
.pagination.pag-1 > li:first-child > span,
.pagination.pag-1 > li:last-child > a,
.pagination.pag-1 > li:last-child > span {
    border-radius: 0;
    color: var(--main-primary-color);
}

.pagination.pag-1 > li > a,
.pagination.pag-1 > li > span {
    border-radius: 0;
    font-size: 16px;
    color: #aaaaac;
    font-weight: 700;
    border: 2px solid #ededed;
    margin-left: -2px;
    padding-left: 25px;
    padding-right: 25px;
}
.pagination.pag-1 > .active > a,
.pagination.pag-1 > .active > a:focus,
.pagination.pag-1 > .active > a:hover,
.pagination.pag-1 > .active > span,
.pagination.pag-1 > .active > span:focus,
.pagination.pag-1 > .active > span:hover,
.pagination.pag-1 > li > a:hover,
.pagination.pag-1 > li > a:focus {
    background: none;
    color: var(--main-primary-color);
    border: 2px solid #ededed;
}

.pagination.pag-2 > li:first-child > a,
.pagination.pag-2 > li:first-child > span,
.pagination.pag-2 > li:last-child > a,
.pagination.pag-2 > li:last-child > span {
    border-radius: 0;
    color: var(--main-primary-color);
}

.pagination.pag-2 > li > a,
.pagination.pag-2 > li > span {
    border-radius: 0;
    font-size: 16px;
    color: #aaaaac;
    font-weight: 700;
    border: 2px solid #ededed;
    margin-left: -2px;

    padding-left: 25px;
    padding-right: 25px;
}
.pagination.pag-2 > .active > a,
.pagination.pag-2 > .active > a:focus,
.pagination.pag-2 > .active > a:hover,
.pagination.pag-2 > .active > span,
.pagination.pag-2 > .active > span:focus,
.pagination.pag-2 > .active > span:hover,
.pagination.pag-2 > li > a:hover,
.pagination.pag-2 > li > a:focus {
    background: var(--main-primary-color);
    border-color: var(--main-primary-color);
    color: #fff;
    z-index: 2;
    position: relative;
}

.pagination.pag-3 > li:first-child > a,
.pagination.pag-3 > li:first-child > span,
.pagination.pag-3 > li:last-child > a,
.pagination.pag-3 > li:last-child > span {
    border-radius: 0;
    color: #52585a;
}

.pagination.pag-3 > li > a,
.pagination.pag-3 > li > span {
    border-radius: 0;
    font-size: 16px;
    color: #52585a;
    font-weight: 700;
    border: 2px solid #ffffff;
    margin-left: -4px;
    padding-left: 25px;
    padding-right: 25px;
    background: #f9f9f9;
}
.pagination.pag-3 > .active > a,
.pagination.pag-3 > .active > a:focus,
.pagination.pag-3 > .active > a:hover,
.pagination.pag-3 > .active > span,
.pagination.pag-3 > .active > span:focus,
.pagination.pag-3 > .active > span:hover,
.pagination.pag-3 > li > a:hover,
.pagination.pag-3 > li > a:focus {
    background: #f9f9f9;
    border-color: #ffffff;
    color: var(--main-primary-color);
    z-index: 2;
    position: relative;
}
.pagination.pag-4 > li:first-child > a,
.pagination.pag-4 > li:first-child > span,
.pagination.pag-4 > li:last-child > a,
.pagination.pag-4 > li:last-child > span {
    border-radius: 0;
    color: #52585a;
}
.pagination.pag-4 > li > a,
.pagination.pag-4 > li > span {
    border-radius: 0;
    font-size: 16px;
    color: #52585a;
    font-weight: 700;
    border: 2px solid #ffffff;
    margin-left: -4px;
    padding-left: 25px;
    padding-right: 25px;
    background: #f9f9f9;
}
.pagination.pag-4 > .active > a,
.pagination.pag-4 > .active > a:focus,
.pagination.pag-4 > .active > a:hover,
.pagination.pag-4 > .active > span,
.pagination.pag-4 > .active > span:focus,
.pagination.pag-4 > .active > span:hover,
.pagination.pag-4 > li > a:hover,
.pagination.pag-4 > li > a:focus {
    background: var(--main-primary-color);
    border-color: #ffffff;
    color: #fff;
    z-index: 2;
    position: relative;
}
.pagination.pag-1.pager,
.pagination.pag-2.pager,
.pagination.pag-3.pager,
.pagination.pag-4.pager {
    width: 100%;
    text-align: center;
}
.pagination.pag-1.pager > li,
.pagination.pag-2.pager > li {
    display: inline-block;
    margin: 0;
    margin-left: -4px;
}
.pagination.pag-3.pager > li,
.pagination.pag-4.pager > li {
    display: inline-block;
    margin-left: 0;
}
.pagination.pag-1.pager > li.previous,
.pagination.pag-2.pager > li.previous,
.pagination.pag-3.pager > li.previous,
.pagination.pag-4.pager > li.previous {
    float: left;
    margin-left: 0px;
}
.pagination.pag-1.pager > li.next,
.pagination.pag-2.pager > li.next,
.pagination.pag-3.pager > li.next,
.pagination.pag-4.pager > li.next {
    float: right;
    margin-left: 0px;
}
.group {
    margin-bottom: 85px;
}
.tab-1 .nav-tabs > li > a {
    margin-right: -2px;
    line-height: 1.42857143;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ededed;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    color: #2b2a2f;
    background: #fafafa;
}

.tab-1 .nav-tabs {
    border-bottom: none;
}
.tab-1 .tab-content {
    border: 2px solid #ededed;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
}
.tab-1 .nav-tabs > li {
    margin-bottom: -2px;
}
.tab-2 .nav-tabs > li > a {
    margin-right: -2px;
    line-height: 1.42857143;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ededed;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    color: #2b2a2f;
    background: #fafafa;
}
.tab-1 .nav-tabs > li.active > a,
.tab-1 .nav-tabs > li.active > a:focus,
.tab-1 .nav-tabs > li.active > a:hover,
.tab-1 .nav-tabs > li > a:hover {
    border: 2px solid #ededed;
    color: var(--main-primary-color);
    background: none;
    border-bottom: 2px solid #fff;
}
.tab-2 .nav-tabs > li.active > a,
.tab-2 .nav-tabs > li.active > a:focus,
.tab-2 .nav-tabs > li.active > a:hover,
.tab-2 .nav-tabs > li > a:hover {
    border: 2px solid #ededed;
    color: var(--main-primary-color);
    background: none;
    border-right: 2px solid #fff;
}
.tab-2 .nav-tabs {
    border-bottom: none;
    float: left;
    width: 27%;
}
.tab-2 .tab-content {
    border: 2px solid #ededed;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
    float: left;
    width: 73%;
}
.tab-2 .nav-tabs > li {
    margin-bottom: -2px;
    float: none;
    width: 100%;
    text-align: center;
}
.tab-3 .nav-tabs > li > a {
    margin-left: -2px;
    line-height: 1.42857143;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ededed;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    color: #aaaaac;
}
.tab-3 .nav-tabs > li.active > a,
.tab-3 .nav-tabs > li.active > a:focus,
.tab-3 .nav-tabs > li.active > a:hover,
.tab-3 .nav-tabs > li > a:hover {
    border: 2px solid #ededed;
    color: var(--main-primary-color);
    background: none;
}

.tab-3 .nav-tabs {
    border-bottom: none;
    float: left;
    width: 27.5%;
}
.tab-3 .tab-content {
    border: 2px solid #ededed;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    padding-bottom: 30px;
    font-size: 16px;
    line-height: 26px;
    float: left;
    width: 72.5%;
}
.tab-3 .nav-tabs > li {
    margin-bottom: -2px;
    float: none;
    width: 100%;
    text-align: center;
}
.tab-5 .nav-tabs > li > a {
    margin-right: -2px;
    line-height: 1.42857143;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ededed;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    color: #2b2a2f;
    background: #fafafa;
}
.tab-5 .nav-tabs > li.active > a,
.tab-5 .nav-tabs > li.active > a:focus,
.tab-5 .nav-tabs > li.active > a:hover,
.tab-5 .nav-tabs > li > a:hover {
    border: 2px solid #ededed;
    color: var(--main-primary-color);
    background: none;
    border-bottom: 2px solid #fff;
}

.tab-5 .nav-tabs {
    border-bottom: none;
    display: inline-block;
    margin-bottom: -5px;
    padding: 0;
}
.tab-5 .tab-content {
    border: 2px solid #ededed;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
}
.tab-5 .nav-tabs > li {
    margin-bottom: -2px;
}
.tab-5 {
    text-align: center;
    margin-bottom: 140px;
}
.tab-1,
.tab-4 {
    margin-bottom: 140px;
}

.tab-4 .nav-tabs > li > a {
    margin-right: -2px;
    line-height: 1.42857143;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #ededed;
    border-radius: 0;
    padding-left: 25px;
    padding-right: 25px;
    color: #aaaaac;
}
.tab-4 .nav-tabs > li.active > a,
.tab-4 .nav-tabs > li.active > a:focus,
.tab-4 .nav-tabs > li.active > a:hover,
.tab-4 .nav-tabs > li > a:hover {
    border: 2px solid #ededed;
    color: var(--main-primary-color);
    background: none;
}
.tab-4 .nav-tabs {
    border-bottom: none;
}
.tab-4 .tab-content {
    border: 2px solid #ededed;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 26px;
}
.tab-4 .nav-tabs > li {
    margin-top: -2px;
    margin-bottom: 0px;
}
.sbHolder {
    background-color: #292828;
    border: solid 2px #414141;
    font-size: 14px;
    font-weight: normal;
    height: 35px;
    position: relative;
    width: 80%;
    float: left;
}
.sbHolder:focus .sbSelector {
}
.sbSelector {
    display: block;
    height: 30px;
    left: 0;
    line-height: 30px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 100%;
}
.sbSelector:link,
.sbSelector:visited,
.sbSelector:hover {
    color: #fff;
    outline: none;
    text-decoration: none;
}
.sbToggle {
    background: url(../../demo/images/down.png) no-repeat center center;
    display: block;
    height: 33px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 43px;
    border-left: solid 2px #414141;
}
.sbToggle:hover {
    background: url(../../demo/images/down.png) no-repeat center center;
}
.sbToggleOpen {
    background: url(../../demo/images/down.png) no-repeat center center;
}
.sbToggleOpen:hover {
    background: url(../../demo/images/down.png) no-repeat center center;
}
.sbHolderDisabled {
    background-color: #3c3c3c;
    border: solid 1px #515151;
}
.sbHolderDisabled .sbHolder {
}
.sbHolderDisabled .sbToggle {
}
.sbOptions {
    background-color: #292828;
    border: solid 2px #414141;
    list-style: none;
    left: -2px;
    margin: 5px 0 0 0;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    overflow-y: auto;
}
.sbOptions li {
    padding: 0 7px;
    width: 100%;
    margin: 0;
}
.sbOptions a {
    display: block;
    outline: none;
    padding: 7px 0 7px 3px;
}
.sbOptions a:link,
.sbOptions a:visited {
    color: #fff;
    text-decoration: none;
}
.sbOptions a:hover,
.sbOptions a:focus,
.sbOptions a.sbFocus {
    color: #fff;
}
.sbOptions li.last a {
    border-bottom: none;
}
.sbOptions .sbDisabled {
    border-bottom: dotted 1px #515151;
    color: #999;
    display: block;
    padding: 7px 0 7px 3px;
}
.sbOptions .sbGroup {
    border-bottom: dotted 1px #515151;
    color: #fff;
    display: block;
    font-weight: bold;
    padding: 7px 0 7px 3px;
}
.sbOptions .sbSub {
    padding-left: 17px;
}
#short {
}
#short .sbHolder {
    background-color: #fff;
    border: solid 2px #ededed;
    font-size: 14px;
    font-weight: normal;
    height: 39px;
    position: relative;
    width: 100%;
    float: left;
}

#short .sbSelector {
    display: block;
    height: 39px;
    left: 0;
    line-height: 35px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 100%;
}
#short .sbSelector:link,
#short .sbSelector:visited,
#short .sbSelector:hover {
    color: #747475;
    outline: none;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
}
#short .sbToggle {
    background: #fcfcfc url(../../demo/images/down.png) no-repeat center center;
    display: block;
    height: 36px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 43px;
    border-left: solid 2px #ededed;
}
#short .sbToggle:hover {
    background: url(../../demo/images/down.png) no-repeat center center;
}
#short .sbToggleOpen {
    background: url(../../demo/images/down.png) no-repeat center center;
}
#short .sbToggleOpen:hover {
    background: url(../../demo/images/down.png) no-repeat center center;
}
#short .sbHolderDisabled {
    background-color: #3c3c3c;
    border: solid 1px #515151;
}

#short .sbOptions {
    background-color: #fff;
    border: solid 2px #ededed;
    list-style: none;
    left: -2px;
    margin: 5px 0 0 0;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    overflow-y: auto;
}
.sbOptions li {
    padding: 0 7px;
    width: 100%;
    margin: 0;
}
#short .sbOptions a {
    display: block;
    outline: none;
    padding: 7px 0 7px 3px;
}
#short .sbOptions a:link,
.sbOptions a:visited {
    color: #747475;
    text-decoration: none;
}
#short .sbOptions a:hover,
#short .sbOptions a:focus,
#short .sbOptions a.sbFocus {
    color: #747475;
}
#short .sbOptions li.last a {
    border-bottom: none;
}
#short .sbOptions .sbDisabled {
    border-bottom: dotted 1px #515151;
    color: #999;
    display: block;
    padding: 7px 0 7px 3px;
}
#short .sbOptions .sbGroup {
    border-bottom: dotted 1px #515151;
    color: #fff;
    display: block;
    font-weight: bold;
    padding: 7px 0 7px 3px;
}
#short .sbOptions .sbSub {
    padding-left: 17px;
}
.opt label {
    color: #fff;
    font-weight: 400;
    width: 20%;
    float: left;
    margin-top: 6px;
}

.val-plus {
    height: 33px;
    width: 25px;
    border: 2px solid #ededed;
    float: left;
    margin-right: -2px;
    display: block;
    color: #d6d6d6;
    background: #fff;
    padding-top: 5px;
}
.val-min {
    height: 33px;
    width: 25px;
    border: 2px solid #ededed;
    float: left;
    margin-left: -2px;
    display: block;
    color: #d6d6d6;
    background: #fff;
    padding-top: 5px;
}
.input-val {
    width: 45px;
    height: 33px;
    border: 2px solid #ededed;
    text-align: center;
    float: left;
    position: relative;
    z-index: 1;
}
.spin-pos {
    text-align: center;
    margin: 0 auto;
}
.gobuy.form-inline {
    margin-top: 0;
}
.tab-1,
.tab-2,
.tab-3,
.tab-4,
.tab-5 {
    margin-bottom: 15px;
}

.cart {
    margin-top: 55px;
    margin-bottom: 55px;
}
.table > thead > tr > th {
    border: 2px solid #ededed;
    border-top: 2px solid #ededed !important;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fcfcfc;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    color: #727475;
    padding-left: 30px;
    padding-right: 30px;
}
.dif-ship > thead > tr > th span {
    font-size: 20px;
    float: left;
    display: block;
    color: #2b2a2f;
}
.table > tbody > tr > td {
    border-bottom: 2px solid #ededed;
    vertical-align: middle;
    padding-left: 30px;
    padding-right: 30px;
}
.total-cart .table > tbody > tr > td {
    font-weight: 400;
    text-transform: uppercase;
}
.table > tbody > tr > td.lab {
    color: #2b2a2f;
    text-transform: uppercase;
    background: #fcfcfc;
    font-weight: 700;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.calculate .table > tbody > tr > td {
    border: none;
    padding-top: 33px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}
.calculate .table > thead > tr > th > i {
    float: right;
}
.calculate .table > tbody > tr > td .form-control {
    border-radius: 0;
    border: 2px solid #ededed;
    box-shadow: none;
    height: 45px;
}
.table > tbody > tr > td.img-product {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.table > tbody > tr > td h4 {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}
.table > tbody > tr > td img {
    max-width: 100px;
    display: inline-block;
    border: 2px solid #ededed;
}
.del {
    text-align: center;
}
.delete {
    font-size: 24px;
    color: #b84b4b;
}
.form-cart .form-control {
    width: 100%;
    border-radius: 0;
    border: 2px solid #ededed;
    box-shadow: none;
    height: 40px;
    font-weight: 700;
    text-transform: uppercase;
}
.form-cart .form-group {
    max-width: 280px;
    width: 100%;
    margin-right: 15px;
}
.form-cart-right {
    float: right;
}
.form-cart-right .btn {
    border-radius: 0;
    box-shadow: none;
    margin-right: 15px;
    height: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 13px;
    text-transform: uppercase;
}
.form-cart-right .btn-blue,
.form-cart .btn-blue {
    width: 155px;
}
.form-cart-right .btn-magenta {
    width: 245px;
    background: #f26969;
    margin-right: 0;
}
.form-cart-right .btn-magenta:hover {
    background: #e46161;
}
.form-cart .btn {
    border-radius: 0;
    box-shadow: none;
    margin-right: 15px;
    height: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 13px;
    text-transform: uppercase;
}
.total-cart {
    margin-top: 100px;
    margin-bottom: 150px;
}
.total-cart .table > thead > tr > th {
}
.country .sbHolder {
    background-color: #ffffff;
    border: solid 2px #ededed;
    font-size: 14px;
    font-weight: normal;
    height: 45px;
    position: relative;
    width: 100%;
    float: left;
    text-transform: none;
}

.country .sbSelector {
    display: block;
    height: 45px;
    left: 0;
    line-height: 30px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 100%;
    padding-top: 5px;
}
.country .sbSelector:link,
.country .sbSelector:visited,
.country.sbSelector:hover {
    color: #555;
    outline: none;
    text-decoration: none;
}
.country .sbToggle {
    background: #f5f5f5 url(../../demo/images/down-drk.png) no-repeat center
        center;
    display: block;
    height: 41px;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 43px;
    border-left: solid 2px #ededed;
}

.country .sbHolderDisabled {
    background-color: #3c3c3c;
    border: solid 1px #515151;
}

.country .sbOptions {
    background-color: #fff;
    border: solid 2px #ededed;
    list-style: none;
    left: -2px;
    margin: 5px 0 0 0;
    padding: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    overflow-y: auto;
}
.country .sbOptions li {
    padding: 0 7px;
    width: 100%;
    margin: 0;
}
.country .sbOptions a {
    display: block;
    outline: none;
    padding: 7px 0 7px 3px;
    color: #555;
}
.country sbOptions a:link,
.sbOptions a:visited {
    color: #555;
    text-decoration: none;
}
.country .sbOptions a:hover,
.country .sbOptions a:focus,
.country .sbOptions a.sbFocus {
    color: #555;
}
.country .sbOptions li.last a {
    border-bottom: none;
}

.country .sbOptions .sbSub {
    padding-left: 17px;
}
.calculate .btn {
    border-radius: 0;
    box-shadow: none;
    margin-right: 15px;
    height: 40px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    font-size: 13px;
    text-transform: uppercase;
    width: 150px;
    float: right;
    margin-right: 0;
}
.checkout {
    padding-top: 57px;
    padding-bottom: 125px;
}
.checkout .form-control {
    width: 100%;
    height: 45px;
    border-radius: 0;
    border: 2px solid #ededed;
    box-shadow: none;
}
.checkout textarea.form-control {
    height: 155px;
}
.checkout label {
    text-transform: uppercase;
    margin-bottom: 12px;
}
.check-total h3,
.checkout h3 {
    text-transform: uppercase;
    font-weight: 700;
    color: #2b2a2f;
    font-size: 18px;
    margin-bottom: 23px;
}

.check-total .table > tbody > tr > td h4 {
    font-size: 15px;
    text-transform: uppercase;
    color: #2b2a2f;
}
.ck-sub {
    background: #fcfcfc;
}
.check-total .table > tbody > tr.ck-tot > td {
    background: var(--main-primary-color);
    border-color: var(--main-primary-color);
    font-weight: 700;
}
.dif-ship h3 {
    float: left;
}
.dif-ship .checkbox {
    float: right;
}
.dif-ship .checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background: #fff;
}
.dif-ship .checkbox {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}
.pay-opt {
    margin-top: 45px;
    margin-bottom: 85px;
}
.pay-opt .radio {
    margin-bottom: 35px;
}
.pay-opt .radio label {
    font-weight: 700;
    width: 100%;
}
.pay-opt .radio label span span {
    font-weight: 400;
    text-transform: none;
    font-size: 13px;
    line-height: 24px;
    display: block;
}
.pay-opt .radio label img {
    float: right;
}
.checkout .btn-magenta {
    background: #f37878;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    width: 155px;
    height: 35px;
    text-transform: uppercase;
}
.checkout .btn-magenta:hover {
    background: #d65353;
}
.form-inline.gobuy.det-1 {
    margin-top: 25px;
}
.spin {
    width: 160px;
}
.spinner {
    display: inline-block;
    width: 93px;
}
.checkout .btn-magenta.show-mobile {
    display: none;
}

#cat-nav .navbar-default {
    border: none;
    background: none;
    margin: 0;
    border-radius: 0;
    padding: 0;
}
#cat-nav .navbar-default .navbar-collapse,
#cat-nav .navbar-default .navbar-form {
    border: none;
    background: none;
}
#cat-nav .navbar-default .navbar-nav > .active > a,
#cat-nav .navbar-default .navbar-nav > .active > a:focus,
#cat-nav .navbar-default .navbar-nav > .active > a:hover {
    background: none;
}
#cat-nav .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}
#cat-nav ul li:first-child a {
    padding-left: 17px;
}
.menu-large {
    position: static !important;
}
.megamenu {
    padding: 20px 0px;
    width: 100%;
}
.dropdown-menu.megamenu {
    z-index: 1900;
}
@media only screen and (max-width: 991px) {
    #cat-nav .dropdown-menu.megamenu {
        position: relative;
        background-color: transparent;
        color: #ffffff;
    }
}
.megamenu > li > ul {
    padding: 0;
    margin: 0;
}
.megamenu > li > ul > li {
    list-style: none;
}
.megamenu > li > ul > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: normal;
}
.megamenu > li ul > li > a:hover,
.megamenu > li ul > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5;
}
.megamenu.disabled > a,
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
    color: #999999;
}
.megamenu.disabled > a:hover,
.megamenu.disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed;
}
.megamenu.dropdown-header {
    color: #428bca;
    font-size: 18px;
}
@media (max-width: 768px) {
    .megamenu {
        margin-left: 0;
        margin-right: 0;
    }
    .megamenu > li {
        margin-bottom: 30px;
    }
    .megamenu > li:last-child {
        margin-bottom: 0;
    }
    .megamenu.dropdown-header {
        padding: 3px 15px !important;
    }
    .navbar-nav .open .dropdown-menu .dropdown-header {
        color: #fff;
    }
}
#cat-nav ul li ul li {
    float: none;
    border: none;
}
.mega-offers {
    float: left;
    max-width: 234px;
    width: 100%;
}
@media only screen and (max-width: 991px) {
    .mega-offers {
        display: none;
    }
}
.mega-offers img {
    width: 100%;
    height: auto;
    max-width: none;
}

#cat-nav ul li ul li .mega-offers a {
    padding: 0;
}
#cat-nav .dropdown-menu > li {
    margin-bottom: 0;
}
.mega-sub {
    float: left;
    border-right: 1px dashed #d7d7d7;
    margin-bottom: 20px;
    margin-top: 20px;
    max-width: 220px;
    width: 100%;
    padding: 5px 30px 30px 20px;
}
@media only screen and (max-width: 991px) {
    .mega-sub {
        border-right: none;
        padding: 5px 0 10px 40px;
    }
}
#cat-nav .mega-sub ul li a {
    color: #2b2a2f;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 7px;
}
@media only screen and (max-width: 991px) {
    #cat-nav .mega-sub ul li a {
        color: #ffffff;
    }
}
#cat-nav .mega-sub ul li.active a:before,
#cat-nav .mega-sub ul li a:hover:before,
#cat-nav .mega-sub ul li:hover,
#cat-nav .mega-sub ul li a:hover,
#cat-nav .mega-offers a:before,
#cat-nav .mega-offers a:hover:before {
    background: none !important;
    border: none;
}
#cat-nav .mega-product a:before,
#cat-nav .mega-product a:hover:before {
    border: none;
}
.mega-product {
    max-width: 694px;
    width: 100%;
    float: left;
    padding: 0 20px;
    margin-top: 15px;
    padding-top: 8px;
}
@media only screen and (max-width: 991px) {
    .mega-product {
        display: none;
    }
}
.homepage-2 .navbar,
.homepage-2.gold .navbar {
    min-height: 0;
    margin-bottom: -2px !important;
}
#cat-nav .mega-product .btn-to-cart {
    padding: 8px 12px;
}
#cat-nav .mega-product .to-left a {
    padding: 10px 13px;
    color: #fff !important;
}
#cat-nav .mega-product a {
    color: #fff;
}
#cat-nav .mega-product a:hover {
    color: #fff;
}
#cat-nav .mega-product .product-name {
    padding: 0 5px;
}
#cat-nav .mega-product .product-name a {
    padding: 0;
    color: #2b2a2f;
    max-height: 40px;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
#cat-nav .mega-product .product-price {
    text-align: center;
}
#cat-nav .mega-product .star-1 {
    text-align: center;
}
.mega-sub-title {
    font-size: 13px;
    color: #747475;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
#cat-nav .mega-product .prdct-grid {
    margin-bottom: 0;
}
#cat-nav ul li span.bag,
.homepage-2 #cat-nav ul li span.bag,
.homepage-2.gold #cat-nav ul li span.bag {
    width: 16px;
    height: 18px;
    display: block;
    background: url(../../demo/images/bag-white.png) no-repeat !important;
    margin-right: 10px;
    float: left;
}
#cat-nav .mega-product .btn-to-cart span {
    float: left;
    color: #fff;
    background: none;
}
.homepage-2 #cat-nav .btn-to-cart span {
    padding: 0 8px;
    color: #fff;
}
.homepage-2.gold #cat-nav ul li .btn-to-cart span {
    background: none;
    color: #fff;
}
.homepage-2 #cat-nav ul li .product-price span,
.homepage-2.gold #cat-nav ul li .product-price span {
    background: none;
    font-size: 18px;
    text-decoration: line-through;
    color: #878788;
    font-weight: 400;
    padding: 0;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
#cat-nav ul li a {
    padding: 15px 21px;
}
#cat-nav ul li.cat-img-off a {
    padding: 0;
}
#cat-nav ul li.cat-img-off span {
    display: none;
}
@media only screen and (max-width: 991px) {
    #cat-nav ul li.cat-img-off img {
        display: none;
    }
    #cat-nav ul li.cat-img-off a {
        padding: 15px 21px;
    }
    #cat-nav ul li.cat-img-off span {
        display: block;
    }
}
#cat-nav ul li a i {
    margin-left: 15px;
}
#cat-nav ul li a::after {
    display: none !important;
}
#cat-nav .mega-sub ul li a {
    padding: 0;
}
.short-form {
    float: right;
    max-width: 200px;
    width: 100%;
}
.tab-1,
.tab-2,
.tab-5 {
    margin-bottom: 80px;
}
.cent {
    text-align: center;
}

.fx-color-hover {
    position: relative;
}
.fx-color-hover:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
.fx-color-hover:hover:before {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff1a25+0,ffffff+100&0.8+0,0+100 */
    background: -moz-linear-gradient(
        top,
        var(--main-primary-color-hover) 0%,
        rgba(255, 255, 255, 0) 100%
    ); /* FF3.6-15 */
    background: -webkit-linear-gradient(
        top,
        var(--main-primary-color-hover) 0%,
        rgba(255, 255, 255, 0) 100%
    ); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(
        to bottom,
        var(--main-primary-color-hover) 0%,
        rgba(255, 255, 255, 0) 100%
    ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccff1a25', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}
.mt-4 {
    margin-top: 40px;
}

.banner-novedades {
    position: relative;
}
.banner-novedades-image {
    display: block;
}
.banner-novedades-link {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.cat-img-axares-simbol {
    position: relative;
}
.cat-img-axares-simbol a {
    padding-right: 46px !important;
}
.cat-img-axares-simbol img {
    width: 30px;
    position: absolute;
    top: 9px;
    right: 14px;
}
@media only screen and (max-width: 991px) {
    .cat-img-axares-simbol img {
        width: 20px;
        top: 13px;
        right: auto;
        left: 100px;
    }
}

/*Google maps*/
.api-gmap-wrap {
}
.api-gmap-wrap:before {
    content: "";
    width: 100%;
    display: block;
    margin: 20px 0 0 0;
    float: left;
    clear: both;
}
.api-gmap-map {
    width: 100%;
    /*height: 400px;*/
    height: 400px;
}
.api-gmap-infowindow-title {
    font: bold 14px/20px "Open Sans", sans-serif;
    color: #4f68aa;
}

/*deco fiestas*/
.deco--navidad {
}
	.deco--navidad a {
		margin-left: 14px;
		position: relative;
	}
		.deco--navidad a:before {
			content: "";
			width: 76px;
			height: 63px;
			display: block;
			position: absolute;
			top: -30px;
			left: -20px;
			background: url(../fiestas/navidad2.png) no-repeat 0 0;
			background-size: contain;
            z-index: 1;
		}
/**/

/*Call to Whatsapp*/
.call-to-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    margin: 0;
    z-index: 100;
}
.call-to-whatsapp a {
    width: 48px;
    height: 48px;
    display: inline-block;
    color: #f2f2f2;
    background: #039f22;
    text-align: center;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -ms-border-radius: 48px;
    -o-border-radius: 48px;
    -webkit-box-shadow: 0px 1px 12px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 12px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 12px 2px rgba(0, 0, 0, 0.2);
}
.call-to-whatsapp a i {
    font-size: 28px;
    line-height: 48px;
    position: relative;
    top: -1px;
    z-index: 2;
}
@media (max-width: 768px) {
    .call-to-whatsapp {
        margin: 0 4px 4px 0;
    }
    .call-to-whatsapp a {
        width: 40px;
        height: 40px;
    }
    .call-to-whatsapp a i {
        font-size: 20px;
        line-height: 42px;
        position: relative;
        top: -1px;
    }
}

.circle-wrapper {
    position: absolute;
    top: 0;
    left: 0;
}
.circle {
    border-radius: 50%;
    background-color: #039f22;
    width: 48px;
    height: 48px;
    position: absolute;
    opacity: 0;
    animation: scaleIn 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}
@media (max-width: 768px) {
    .circle-wrapper {
        top: -4px;
        left: -4px;
    }
}
@keyframes scaleIn {
    from {
        transform: scale(0.5, 0.5);
        opacity: 0.5;
    }
    to {
        transform: scale(2.5, 2.5);
        opacity: 0;
    }
}
/**/

.login-window .modal-dialog .modal-content {
    border-radius: 10px;
}
@media (min-width: 576px) {
    .login-window .modal-dialog {
        max-width: 400px;
    }
    .login-window .modal-dialog .modal-content {
        padding: 1rem;
    }
}
.login-window .modal-header .close {
    margin-top: -1.5rem;
}
.login-window .form-title {
    margin: -2rem 0rem 2rem;
}
.login-window .delimiter {
    padding: 1rem;
}
.login-window .social-buttons .btn {
    margin: 0 0.5rem 1rem;
}
.login-window .signup-section {
    padding: 0.3rem 0rem;
}
.login-window input:-internal-autofill-selected {
    background-color: #ffffff;
}
.login-window .btn.btn-network-login {
    border: 2px solid #333;
}
.login-window .icon-wrapper {
    height: 18px;
    margin-right: 8px;
    min-width: 18px;
    width: 18px;
    display: inline-block;
    position: relative;
    top: 3px;  
}
	.login-window .icon-wrapper svg {
		display: block;
        height: 100%;
        width: auto;
	}
    .login-window .login-option-title {
        text-align: center;
        position: relative;
        margin-bottom: 20px;
    } 
        .login-window .login-option-title:before {
            content: "";
            border-bottom: 1px solid #ddd;
            position: absolute;
            top: 10px;
            left: 0;
            right: 0;
        } 
    .login-window .login-option-title span {
        display: inline-block;
        background-color: #ffffff;
        padding: 0 20px;
        position: relative;
        z-index: 1;
        text-transform: uppercase;
    } 
    .login-option-divider {
        text-align: center;
        position: relative;
        margin: 0 0 20px 0;
    }
        .login-option-divider span {
            display: inline-block;
            background-color: #ffffff;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }  
        .login-option-divider:before {
            content: "";
            border-bottom: 1px solid #ddd;
            position: absolute;
            top: 10px;
            left: 0;
            right: 0;
        }

.card-pre-login{
    border: none !important;
}
.card-pre-login-content {
    display: flex;
    justify-content: space-between;
}
.card-pre-login-col {
    width: 50%;
    padding: 10px;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
        border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.user-nav-bar .dropdown-toggle::after {
    display: none !important;
}
.user-nav-bar a.js--menu-mi-cuenta em.alert-menu-header {
    position: absolute;
    top: -8px;
    right: 5px;
    font-size: 18px;
    color: #ff0000;
}
/*menú carrito*/
.rd--header-cart-menu {
    width: 400px;
    padding: 10px !important;
}
@media only screen and (max-width: 991px) {
    .rd--header-cart-menu {
        width: 100%;
        position: fixed;
        top: 70px;
    }
}
.rd--header-cart-menu > ul {
    width: 100%;
    display: block;
    overflow-y: auto;
    max-height: 360px;
    margin: 0;
    padding: 0;
}
body.fixed-style .rd--header-cart-menu {
    top: 30px;
    right: -28px;
}
.rd--header-cart-menu li {
    width: 100%;
    margin: 0 0 4px 0;
    color: #6f9e33;
}
.rd--header-cart-menu li > div {
    padding: 4px 6px 8px 0;
    display: table-cell;
    vertical-align: middle;
    font-size: 13px;
    color: #333;
    text-align: left;
}
.rd--header-cart-menu li > div.cart-titles-image {
    width: 30px;
}
.rd--header-cart-menu li > div.cart-titles-quantity {
    padding: 4px 0 8px 0;
    text-align: right;
}
.rd--header-cart-menu li.cart-titles div {
    padding: 4px 6px 14px 0;
    font-size: 11px;
    text-align: left;
    color: #777;
}
.rd--header-cart-menu li.cart-items {
    padding: 0 0 5px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
}
.rd--header-cart-menu li.cart-items div {
    padding: 5px 6px 5px 0;
    vertical-align: middle;
    font-size: 13px;
    color: #333;
    text-align: left;
}
.rd--header-cart-menu li.cart-items div.cart-items-price {
    margin-left: auto;
    white-space: pre;
    font-size: 16px;
}
.rd--header-cart-menu li.cart-items .cart-wrapper-items {
    padding: 5px;
}
.rd--header-cart-menu li.cart-items .cart-wrapper-items .cart-items-name p {
    padding: 0;
    margin: 0;
}
.rd--header-cart-menu li.cart-items .cart-wrapper-items .cart-items-code {
    padding: 0 6px 5px 0;
    margin: 0;
}
.rd--header-cart-menu li.cart-items-total {
    text-align: right;
    padding: 5px !important;
    color: #000000;
    font-size: 20px;
}
.rd--header-cart-menu li.cart-items-total span {
    font-weight: 700;
}
.rd--header-cart-menu li > div.cart-items-name p {
    width: 160px;
    padding: 3px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.rd--header-cart-menu li > div img {
    width: 60px;
    height: 60px;
}
.rd--header-cart-menu li:last-child {
    padding: 4px 0;
    margin: 0;
    border: none;
}
.rd--header-cart-menu li a {
    display: block;
    font-size: 13px;
    color: #4f68aa;
    text-decoration: none;
    text-transform: uppercase;
}
.rd--header-cart-menu li a:hover {
    color: #6f9e33;
}
.rd--header-cart-menu li a i {
    float: right;
    font-size: 13px;
    color: #ccc;
}
.rd--header-confirmar-modificar {
    margin: 20px auto;
    text-align: center;
    display: none;
    /*update 11/02/19*/
    position: absolute;
    top: 0;
    /**/
}
.tooltip-btn-group {
    display: flex;
    justify-content: space-between;
}
/**/

.wrap-cart-item,
.only-modal {
    display: none !important;
}
.wrap-cart-wind-set .wrap-cart-item,
.wrap-cart-wind-set .only-modal {
    display: block !important;
}
.wrap-cart-wind-set .slider-product-image,
.wrap-cart-wind-set .product-fade-ct,
.wrap-cart-wind-set .product-detail-btn-wrapper {
    display: none !important;
}
.wrap-cart-wind-set .item img {
    width: 200px;
}
/**/
.add-controls {
    margin: 0 auto;
}
.pro-add-wrap-controls {
    display: flex;
    align-items: center;
    margin: 0 0 20px 0;
    justify-content: right;
}
.pro-add-wrap-controls .cart-item-label {
    margin-right: 5px;
}
.pro-confirm-containter .pro-add-wrap-controls {
    margin: 0;
}
@media only screen and (max-width: 991px) {
    .pro-add-wrap-controls {
        justify-content: center;
    }
}
.add-controls .btn-menos,
.add-controls .btn-mas {
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    color: #fff;
    background: var(--main-primary-color);
    cursor: pointer;
    border-radius: 8px;
}
.add-controls .btn-menos:hover,
.add-controls .btn-mas:hover {
    background: var(--main-primary-color-oscuro);
}
.add-controls .btn-menos i,
.add-controls .btn-mas i {
    font-size: 18px;
    line-height: 40px;
}
.add-controls .btn-menos.disable,
.add-controls .btn-mas.disable,
.add-controls .btn-menos.disable:hover,
.add-controls .btn-mas.disable:hover {
    color: #fff;
    background: #ccc;
    cursor: default;
}
.add-controls .input-number {
    width: 80px;
    height: 40px;
    padding: 0 8px;
    margin: 0 4px;
    border: 1px solid #ccc;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-order-radius: 3px;
    border-radius: 3px;
    text-align: center;
    font: 400 14px/40px "Open Sans", sans-serif;
}

.pro-confirm-containter {
    width: 100%;
}
.pro-confirm-containter .table-cell.pro-image {
    /*width: 20%;*/
}
.pro-confirm-containter .table-cell.pro-precio {
    width: 16%;
}
.pro-confirm-containter .table-cell.pro-precio .price-tag-wrapper {
    margin-right: 20px;
}
.pro-confirm-containter .table-cell .pro-codigo {
    margin-top: 6px;
    font: 300 15px/22px "Open Sans", sans-serif;
}
.pro-confirm-containter .table-cell .pro-codigo strong {
    font: 700 15px/22px "Open Sans", sans-serif;
}
.pro-confirm-containter .table-cell.pro-name {
    width: 40%;
}
.pro-confirm-containter .table-cell.pro-name h2 {
    font-size: 15px;
}
.pro-confirm-containter .table-cell.pro-quantity {
    width: 24%;
}

.conformar-compra-title {
    margin: 25px 0 0 0;
    font: 700 16px/20px "Open Sans", sans-serif;
}
.conformar-compra-subtitle {
    margin: 10px 0 15px 0;
    font: 700 18px/22px "Open Sans", sans-serif;
}

/*Modal alert*/
.modal-win-canvas {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99999999;
    background: rgb(200, 200, 200);
    background: rgba(200, 200, 200, 0.8);
}
.modal-win-canvas-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: center;
    justify-content: center;
}
/*Para videos*/
.modal-win-canvas-flex.restyle-popup-video {
    display: -webkit-block;
    display: -moz-block;
    display: -ms-block;
    display: -webkit-block;
    display: block !important;
}
/**/
.modal-win-alert {
    padding: 40px;
    margin: 20%;
    position: relative;
    background: #ffffff;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}
.modal-win-alert p {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
@media only screen and (max-width: 991px) {
    .modal-win-alert {
        padding: 30px 20px;
        margin: 5% 0;
    }
}
.modal-win-alert.cart-modal {
    /*background: var(--color-gris-claro-new);*/
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}
.modal-win-close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 30px;
    background: transparent;
    color: #000;
    text-decoration: none;
}
.modal-win-close.disable {
    display: none;
}
.modal-win-close:before {
    padding: 0;
    margin: 0;
    font-size: 24px;
}
.modal-win-close:hover {
    color: #ccc;
    text-decoration: none;
}
.modal-win-close.size-small {
    width: 20px;
    height: 20px;
    line-height: 18px;
    background: transparent;
    color: #999999;
}
.modal-win-close.size-small:before {
    font-size: 14px;
}

/*Modal Standar*/
.btn-rounded-close {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}
.modal .btn-rounded-close {
    position: absolute;
    top: -25px;
    right: -25px;
}
#modalPromo .modal-content-radius {
    border-radius: 20px !important;
    overflow: hidden;
}
#modalPromo,
#modalPromo .modal-dialog,
#modalPromo .modal-content,
#modalPromo .modal-body {
    background-color: transparent !important;
    border: none !important;
}
#modalPromo .img-container {
    text-align: center;
}

/**/
.modal-full .modal-dialog {
    width: 98%;
    height: 92%;
    padding: 0;
}
.modal-full .modal-content {
    height: 99%;
}
@media only screen and (max-width: 767px) {
    .modal-full .modal-dialog {
        width: auto;
    }
}
.map-agency-modal {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 1px);
    width: 100%;
    border: none;
    margin-top: 1px;
    z-index: 1;
}
.map-agency-modal
    .gmnoprint.gm-bundled-control.gm-bundled-control-on-bottom
    + div[dir="ltr"] {
    left: 315px !important;
}
.map-agency-modal .gm-control-active.gm-fullscreen-control {
    display: none !important;
}
#gmapsRetiroModal .wrapper-sidebar-agency {
    top: 5px;
}
@media only screen and (max-width: 767px) {
    .wrapper-sidebar-agency {
        display: none;
    }
    .wrapper-sidebar-agency.active {
        display: block;
    }
    #gmapsRetiroModal .wrapper-sidebar-agency {
        width: 100%;
        display: none;
        top: 0;
        bottom: 0;
        left: -100%;
        box-sizing: border-box;
        padding-top: 40px;
    }
    #gmapsRetiroModal .wrapper-sidebar-agency.active {
        display: block;
        left: 0;
    }
    #gmapsRetiroModal .cart-type {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    #gmapsRetiroModal .modal-title {
        display: table;
    }
    #gmapsRetiroModal #map_ad_retiro_save span {
        display: none;
    }
}
#gmapsRetiroModal .modal-lg {
    max-width: inherit;
}
/**/

/*Tlite section*/
.header-collections-snippet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    text-align: center;
}
@media screen and (min-width: 768px) {
    .header-collections-snippet {
        overflow: hidden;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

.header-collections-snippet .content,
.header-collections-snippet .thumbnail-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.header-collections-snippet .content {
    background-color: var(--color-gris-claro-new);
    width: 100%;
    margin-top: 20px;
    padding: 15px 30px;
    position: relative;
    border-radius: 30px 30px 0 0;
    align-items: start !important;
}
@media screen and (min-width: 768px) {
    .header-collections-snippet .content {
        width: 40%;
        margin-top: 0;
        padding: 16px 40px;
        border-radius: 30px 0 0 30px;
    }
}

.heading-1 {
    font-weight: 400;
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.22em;
}
@media screen and (min-width: 768px) {
    .heading-1 {
        font-size: 32px;
    }
}
.header-collections-snippet .heading-1 {
    margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
    .header-collections-snippet .heading-1 {
        margin-bottom: 12px;
    }
}
.text-upper {
    text-transform: uppercase;
}
.header-collections-snippet .heading-1,
.header-collections-snippet .rte {
    color: #282828;
    text-align: left;
    max-width: 80%;
    min-width: 300px;
}
.header-collections-snippet .heading-1,
.header-collections-snippet .rte p {
    color: #282828;
}
@media screen and (min-width: 768px) {
    .header-collections-snippet .heading-1,
    .header-collections-snippet .rte {
        max-width: 60%;
    }
}
.header-collections-snippet .heading-1 span {
    color: var(--color-rojo);
}

.thumbnail-container {
    position: relative;
    width: 100%;
    height: 245px;
}
@media screen and (min-width: 768px) {
    .thumbnail-container {
        height: auto;
        width: 62.5%;
    }
}
.header-collections-snippet .content,
.header-collections-snippet .thumbnail-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header-collections-snippet.bg-grey {
    background-color: var(--color-gris-claro-new);
    border-radius: 30px;
}
.header-collections-snippet picture img {
    border-radius: 30px;
}
@media screen and (max-width: 768px) {
    .header-collections-snippet picture img {
        border-radius: 0 0 30px 30px;
    }
}

.thumbnail-container {
    position: relative;
    width: 100%;
    height: 245px;
}
@media screen and (min-width: 768px) {
    .thumbnail-container {
        height: auto;
        width: 62.5%;
    }
}
.thumbnail-container picture,
.thumbnail-container picture img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.thumbnail-container .owl-carousel,
.thumbnail-container .owl-carousel .item,
.thumbnail-container .owl-carousel .owl-item,
.thumbnail-container .owl-stage-outer,
.thumbnail-container .owl-stage,
.thumbnail-container .owl-carousel .item img,
.thumbnail-container .owl-carousel .item .image-div {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.thumbnail-container .owl-carousel .image-div {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.link-category {
    font-size: 13px;
    line-height: 13px;
    display: block;
    margin-bottom: 10px;
}
.link-category a {
    text-decoration: none;
}
.level-0 {
    padding-left: 0px;
}
.level-1 {
    padding-left: 10px;
}
.level-2 {
    padding-left: 20px;
}
.level-3 {
    padding-left: 30px;
}
.level-4 {
    padding-left: 40px;
}
.level-5 {
    padding-left: 50px;
}
.level-6 {
    padding-left: 60px;
}
.level-7 {
    padding-left: 70px;
}
.level-8 {
    padding-left: 80px;
}
.level-9 {
    padding-left: 90px;
}
.level-10 {
    padding-left: 100px;
}

.view-items-type {
    margin: 15px 0;
}
.view-items-type-btn {
    font-size: 20px;
    color: #282828;
}
.view-items-type-btn.activo {
    color: #dddddd;
    cursor: default;
}
@media screen and (max-width: 768px) {
    .view-items-type {
        display: none;
    }
}

.classy-nav {
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
}
.search-nav-bar-close {
    display: none;
}
.search-btn {
    display: none;
}
@media only screen and (max-width: 991px) {
    .search-nav-bar {
        position: absolute;
        top: -12px;
        right: 0;
        left: 0;
        z-index: 5;
        display: none;
    }
    .search-nav-bar-close {
        display: inline-block;
        position: absolute;
        top: 15px;
        right: 20px;
    }
    .search-nav-bar-close i {
        font-size: 24px;
        color: #ffffff;
    }
    .search-btn {
        display: inline-block;
    }
}

@media only screen and (max-width: 991px) {
    #cat-nav ul.nav {
        display: block;
    }
}

.classy-nav-container * {
    box-sizing: border-box;
}
.classy-navbar-toggler {
    border: none;
    margin-right: 10px;
    background-color: transparent;
    cursor: pointer;
    display: none;
}
@media only screen and (max-width: 991px) {
    .classy-navbar-toggler,
    .classycloseIcon {
        display: block;
    }
}
.breakpoint-on .classy-navbar-toggler,
.breakpoint-on .classycloseIcon {
    display: block;
}
.classy-navbar-toggler .navbarToggler {
    display: inline-block;
    cursor: pointer;
    margin: 4px 10px 0 0;
}
.classy-navbar-toggler .navbarToggler span {
    position: relative;
    background-color: #ffffff;
    border-radius: 3px;
    display: block;
    height: 3px;
    margin-top: 5px;
    padding: 0;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    width: 30px;
    cursor: pointer;
}
.classy-navbar-toggler .navbarToggler.active span:nth-of-type(1) {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    top: 8px;
}
.classy-navbar-toggler .navbarToggler.active span:nth-of-type(2) {
    opacity: 0;
}
.classy-navbar-toggler .navbarToggler.active span:nth-of-type(3) {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    top: -8px;
}

/*favoritos btn*/
.favorito-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.favorito-wrapper.list {
    margin: 6px 0 0 5px;
}
.modal-win-canvas .favorito-wrapper {
    display: none;
}
.favorito-wrapper.list {
    margin: 6px 0 0 5px;
}
.view-block .favorito-wrapper.list {
    margin: 16px 0 0 15px;
}
.favorito-wrapper .btn {
    background-color: transparent;
    font-size: 20px;
    color: #ccc;
}
.favorito-wrapper .btn i.enabled {
    color: var(--main-primary-color);
    display: none;
    padding-top: 4px;
}
.favorito-wrapper .btn:hover i.disabled {
    color: var(--main-primary-color);
}
.favorito-wrapper .btn.added i.disabled {
    display: none;
}
.favorito-wrapper .btn.added i.enabled {
    display: block;
}
.favorito-wrapper .btn.active.focus,
.favorito-wrapper .btn.active:focus,
.favorito-wrapper .btn.focus,
.favorito-wrapper .btn:active.focus,
.favorito-wrapper .btn:active:focus,
.favorito-wrapper .btn:focus,
.favorito-wrapper button.active.focus,
.favorito-wrapper button.active:focus,
.favorito-wrapper button.focus,
.favorito-wrapper button:active.focus,
.favorito-wrapper button:active:focus,
.favorito-wrapper button:focus {
    background: transparent !important;
    box-shadow: none !important;
}

/*Socialmedia share*/
.links-share-tools {
    width: 100%;
    height: 40px;
    display: block;
    position: relative;
    margin: 0;
}
.socialmendia-share-this-tools {
    display: block;
    height: 40px;
}
.modal-win-alert .socialmendia-share-this-tools {
    display: none !important;
}
.socialmendia-share-this-tools span {
    margin: 2px 4px 0 0;
}
.socialmendia-share-this-tools ul {
    padding: 0;
    margin: 9px auto 0 auto;
}
.socialmendia-share-this-tools ul li {
    display: inline-block;
}
.socialmendia-share-this-tools ul li a {
    width: 40px;
    margin: 0 3px;
    display: inline-block;
    text-align: center;
    color: #fff;
}
.socialmendia-share-this-tools ul li a.disable {
    display: none;
}
.socialmendia-share-this-tools ul li a i {
    font-size: 14px;
}
.btn-facebook {
    color: #fff !important;
    background-color: #3b5998 !important;
}
.btn-linkedin {
    color: #fff !important;
    background-color: #0082ca !important;
}
.btn-pinterest {
    color: #fff !important;
    background-color: #c61118 !important;
}
.btn-twitter {
    color: #fff !important;
    background-color: #55acee !important;
}
.btn-whatsapp {
    color: #fff !important;
    background-color: #25d366 !important;
}
.btn-mail {
    color: #fff !important;
    background-color: #ee618c !important;
}
/**/

/*Video containter*/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/**/

.accordion-conten .card {
    margin-bottom: 5px;
    border: 1px solid #f0f0f0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}
.accordion-conten .card .card-header {
    padding: 0;
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}
.accordion-conten .card .card-header a {
    padding: 12px 20px;
    display: block;
    color: #000;

    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.accordion-conten .card .card-header a span {
    float: right;
}
.accordion-conten .card .card-header a span i {
    color: var(--main-primary-color);
}

.accordion-conten .card-body {
    border: 1px solid transparent;
}
.accordion-conten .card-body p {
    color: #4d4d4d !important;
}

.accordion-conten [aria-expanded="false"] > .expanded,
.accordion-conten [aria-expanded="true"] > .collapsed {
    display: none;
}

.pro-detalle-slider {
    position: relative;
}
.pro-detalle-slider .owl-theme {
    position: relative;
}
.pro-detalle-slider .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
}
.pro-detalle-slider .owl-next,
.pro-detalle-slider .owl-prev {
    width: 22px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
}
.pro-detalle-slider .owl-prev {
    left: 10px;
}
.pro-detalle-slider .owl-next {
    right: 10px;
}
.pro-detalle-slider .owl-dots {
    top: -60px;
    position: relative;
}

/**/
.price-tag-wrapper {
    margin-bottom: 10px;
}
.price-tag {
	position: relative;
	display: inline-block;
}
	.price-tag-wrapper .price-tag {
        color: var(--main-primary-color);
		font-size: 34px;
		font-weight: 400;
		margin-right: 8px;
		line-height: 1.25;
	}
.price-tag-symbol {
	margin-right: 6px;
}
.price-tag.disabled {
    align-items: center;
    color: #999;
    font-size: 12px;
    margin-top: 4px;
}
.price-tag.disabled:after {
    position: absolute;
    display: block;
    top: 40%;
    width: 100%;
    height: 1px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    content: "";
}
/**/



/*********************************
4.1 Product Sorting
*********************************/
.product_sorting_container_bottom {
    margin-top: 24px;
}

.product_sorting_container_bottom .product_sorting {
    float: right;
}

.product_sorting {
    display: inline-block;
    position: relative;
    z-index: 10;
}

.product_sorting>li {
    display: inline-block;
    position: relative;
    width: 185px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    border: solid 1px #ecedee;
    padding-left: 20px;
    padding-right: 7px;
    margin-right: 16px;
}

.product_sorting_container_bottom .product_sorting>li {
    width: 144px;
    margin-right: 0px;
    padding-right: 12px;
}

.product_sorting_container_bottom .product_sorting li span:nth-child(2) {
    margin-left: 24px;
}

.product_sorting li i {
    float: right;
    line-height: 40px;
    color: #51545f;
}

.product_sorting li ul {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
    margin: 0;
    width: 100%;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.product_sorting>li:hover ul {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 1px);
}

.product_sorting li ul li {
    display: block;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.product_sorting li ul li span {
    display: block;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #dddddd;
    color: #51545f;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}
    .product_sorting li ul li .active span {
        border-left: 2px solid var(--main-primary-color);
        color: var(--main-primary-color);
        margin-right: -10px;
        margin-left: -10px;
    }

.product_sorting li ul li span:hover {
    color: #b5aec4;
}

.product_sorting li ul li:last-child span {
    border-bottom: none;
}

.product_sorting li span:nth-child(2) {
    margin-left: 71px;
}

.pages {
    display: inline-block;
    float: right;
}
@media only screen and (max-width: 991px) {
    .pages {
        display: none !important;
    }
}

.product_sorting_container_bottom .pages {
    float: left;
}

.page_current {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    text-align: center;
    border: solid 1px #ecedee;
    border-radius: 5px;
    border-radius: 5px;
    margin-right: 16px;
}
.page_current.last-item {
    margin-right: 0;
}

.product_sorting_container_bottom .pages .page_current {
    background: #fe4c50;
    border: none;
}

.page_current span {
    color: #51545f;
}

.product_sorting_container_bottom .pages .page_current span {
    color: #FFFFFF;
}

.page_selection {
    display: block;
    position: absolute;
    right: 0;
    top: 120%;
    margin: 0;
    width: 100%;
    background: #FFFFFF;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.page_selection li {
    display: block;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.page_selection li a {
    display: block;
    height: 40px;
    line-height: 40px;
    border-bottom: solid 1px #dddddd;
    color: #51545f;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: all 0.3s ease;
}

.page_selection li a:hover {
    color: #b5aec4;
}

.page_current:hover .page_selection {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 1px);
}

.page_total {
    display: inline-block;
    line-height: 40px;
    margin-right: 31px;
}

.page_total span {
    margin-right: 14px;
}

.page_next {
    display: inline-block;
    line-height: 40px;
    cursor: pointer;
}

.page_next:hover i {
    color: #b5aec4;
}

.page_next i {
    font-size: 18px;
    color: #51545f;
}

.showing_results {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    float: right;
    margin-right: 34px;
}

.nav-map {
    margin: 10px 0 30px 0;
    padding: 0;
}
@media only screen and (max-width: 767px) {
    .nav-map {
        display: none !important;
    }
    .wrapper-nav-map-detail {
        margin: 105px 0 0 0;
    }
    .wrapper-nav-map-detail .nav-map {
        display: block !important;
    }
}
.nav-map li {
    display: inline-block;
    margin: 0 10px 0 0;
    padding: 0 4px 0 0;
}
.nav-map li,
.nav-map li a {
    font-size: 12px;
}
.nav-map li.active,
.nav-map li.active a {
    color: #ee618c;
}
.nav-map li i {
    font-size: 9px;
    color: #c7c7c7;
    position: relative;
    top: 1px;
    right: -4px;
}

.pro-detail-name {
    font-size: 1.5rem;
}

.single-product-details .marca-name {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #787878;
    margin-bottom: 10px;
    display: block;
}
.shop-list .marca-name {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    color: #787878;
    margin-bottom: 10px;
    display: none;
}
.cart-modal .shop-list .marca-name {
    display: block;
}
.single-product-details .marca-name img {
    height: 40px;
    border: 1px solid #ebebeb;
    display: none !important
}
.single-product-details h1 {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}
.cart-modal .single-product-details h1 {
    font-size: 25px;
    text-transform: uppercase;
}

/**/
.wrapper-dropdown-variant .btn-dropdown {
    width: 100%;
    position: relative;
    /*z-index: 100;*/
    border: 1px solid #ebebeb;
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    height: 30px;
    margin: 0;
    text-transform: uppercase;
    text-align: left;
}
.product-variant-wrapper .btn-dropdown.disabled-custom {
    cursor: default;
}
.wrapper-dropdown-variant .dropdown-menu {
    right: 0;
    border-radius: 0;
    background-color: #f6f6f6;
    text-transform: uppercase;
}
.wrapper-dropdown-variant .dropdown-menu a {
    display: block;
    padding: 0.375rem 0.75rem;
    color: #212529;
    text-decoration: none;
    font-size: 13px;
}
.wrapper-dropdown-variant .dropdown-menu a:hover {
    opacity: 0.7;
}
.wrapper-dropdown-variant .pro-btn-variant {
    width: 100%;
    display: inline-block;
}
.wrapper-dropdown-variant .dropdown-toggle::after {
    margin-left: -0.555em;
}

.product-variant-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.product-variant-wrapper .wrapper-dropdown-variant {
    width: 210px;
}
@media only screen and (max-width: 991px) {
    .product-variant-wrapper .wrapper-dropdown-variant {
        width: 50%;
    }
}

.dropdown-profile {
    text-align: center;
    border-bottom: 1px solid #dddddd;
    padding: 0.25rem 1.5rem;
}
    .dropdown-profile .dropdown-profile-image {
        width: 70px;
        height: 70px;
        margin: 10px auto;
        border-radius: 100px;
        overflow: hidden;
        border: 1px solid #dddddd;
    }
        .dropdown-profile .dropdown-profile-image img {
            width: 100%;
            height: auto;
        }
    .dropdown-profile .dropdown-profile-network {
        font-size: 11px;
    }
.pro-descripcion-corta {
    font-size: 16px;
}
.pro-code {
    font-size: 12px;
}
.pro-detalle .pro-code {
    display: none;
}
.pro-tamanos {
    font-size: 14px;
}
.multimedia-video {
    margin: 0 0 30px 0;
}
.multimedia-video-title {
    font-size: 1.3rem;
}

#cat-nav ul li .product-item {
    margin-bottom: 15px;
    overflow: hidden;
}

/*Modal cart*/
.wrap-cart-wind-set.wind-set-comprar {
    width: 600px;
}
@media only screen and (max-width: 991px) {
    .wrap-cart-wind-set.wind-set-comprar {
        width: 100%;
    }
}
.wrap-cart-wind-set.wind-set-comprar .product-item {
    display: flex;
}
@media only screen and (max-width: 991px) {
    .wrap-cart-wind-set.wind-set-comprar .product-item {
        display: block;
    }
}
.wrap-cart-wind-set .pro-add-title-cart {
    margin: 0 0 20px 0;
    font-size: 22px;
}
@media only screen and (max-width: 991px) {
    .wrap-cart-wind-set .pro-add-title-cart {
        margin: 6px 0 10px 0;
        font-size: 15px;
    }
}

@media only screen and (max-width: 991px) {
    .pro-add-wrap-controls .cart-item-label {
        display: none;
    }
}
.wrap-cart-wind-set .pro-add-wrap-btn {
    display: block;
    text-align: right;
}
.wrap-cart-wind-set .product-detail-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.wrap-cart-wind-set .product-name {
    font-size: 15px;
    text-align: left;
    margin: 0 0 6px 0;
    line-height: inherit;
    padding: 0;
}
.wrap-cart-wind-set .pro-descripcion-corta {
    display: none;
}
@media only screen and (max-width: 991px) {
    .wrap-cart-wind-set .product-fade-wrap {
        text-align: center;
    }
    .wrap-cart-wind-set .product-name {
        text-align: center;
    }
    .wrap-cart-wind-set .product-detail-wrapper {
        align-items: center;
        text-align: center;
    }
    .wrap-cart-wind-set .pro-add-wrap-btn {
        display: block;
        text-align: center;
    }
    .wrap-cart-wind-set .pro-add-wrap-btn .btn {
        width: 100%;
        margin: 0 0 10px 0;
    }
    .wrap-cart-wind-set .product-price {
        margin: 0 0 10px 0;
        font-size: 24px;
    }
}

/*Modal add cart*/
.modal-win-canvas .no-modal {
    display: none !important;
}
.modal-win-canvas .product {
    width: 100%;
    height: auto;
    border: none;
    display: flex;
}
	@media (max-width: 768px){
		.modal-win-canvas .product {
            flex-direction: column;
        }
	}
.modal-win-canvas .product-item::after {
    display: none;
}
.modal-win-canvas .product-item:hover::after {
    box-shadow: none;
    border: none;
}
.modal-win-canvas .product_image {
    width: 300px;
}
.modal-win-canvas .product_image img {
    width: 100%;
}
	@media (max-width: 768px){
		.modal-win-canvas .product_image {
            display: none !important;
        }
	}
.modal-win-canvas .product_info {
    text-align: left;
    padding: 0 0 0 20px;
}
.modal-win-canvas .product_price span {
    font-size: 25px;
    margin-left: 0;
}
.modal-win-canvas .product_name {
    margin-top: 0;
    font-size: 25px;
    text-transform: uppercase;
}
/**/
/*Modal*/
.modal.modal-custom .btn-rounded-close {
    position: absolute;
    top: -25px;
    right: -25px;
}
	@media (max-width: 768px){
		.modal.modal-custom .btn-rounded-close {
			top: -30px;
			right: 0px;
		}
	}
.modal.modal-custom .modal-content-info img {
	max-width: 100%;
    height: auto;
}

.msj-modal-sin-stock {
	padding: 10px;
	text-align: center;
}
	.msj-modal-sin-stock li {
		font-size: 18px;
		font-weight: 700;
		list-style: none;
		padding-bottom: 5px;
	}
	.msj-modal-sin-stock-redirect {
		font: 400 14px/18px 'Open Sans', sans-serif;
		text-align: center;
	}

.error-login-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
#responseAjax .preloader {
	z-index: 999;
}
	.error-login-wrapper > div{
		padding: 20px;
	}
	.error-login-title {
		padding-bottom: 10px;
		display: block;
		text-align: center;
	}
	.error-login-text {
		font-size: 14px;
		line-height: 16px;
	}			


.card.no-border {
    border: none;
}
.card.no-border .card-body {
    padding: 0;
}

/**/
.stepper {
    display: -ms-flexbox;
    display: flex;
}
.stepper-body {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.15s;
}
.stepper-item {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.stepper-item:hover {
    text-decoration: none;
}
.stepper-item:not(:last-child) {
    -ms-flex: auto;
    flex: auto;
}
.stepper-item:not(:last-child):after {
    content: " ";
    -ms-flex: auto;
    flex: auto;
    margin: 10px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
}
.stepper-circle {
    display: inline-block;
    vertical-align: middle;
    height: 31px;
    width: 31px;
    border-radius: 31px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Roboto Slab";
    text-align: center;
    color: #444;
    background-color: transparent;
    border: 1px solid #ccc;
    box-sizing: border-box;
    opacity: 0.8;
    transition: background-color 0.15s;
}
.stepper-item.active .stepper-circle {
    border-color: var(--color-azul);
    background-color: var(--color-azul);
}
.stepper-item.active .stepper-circle,
.stepper-item.default .stepper-circle,
.stepper-item.info .stepper-circle,
.stepper-item.warning .stepper-circle {
    color: #fff;
}
.stepper-item.success .stepper-circle.check {
    border-color: var(--color-azul);
    color: var(--color-azul);
}
.stepper-item.success .stepper-circle:first-child {
    display: none;
}
.stepper-item.success:hover .stepper-circle.check {
    display: none;
}
.stepper-item.success:hover .stepper-circle:first-child {
    display: inline-block;
    border-color: var(--color-azul);
    background-color: var(--color-azul);
    color: #ffffff;
}
.stepper-circle:not(.empty) + .stepper-body {
    margin-left: 10px;
}

.stepper-title {
    font-size: 14px;
    font-weight: 400;
    color: #444;
}
.stepper-item.active .stepper-title,
.stepper-item.success .stepper-title {
    color: var(--color-azul);
}
@media only screen and (max-width: 991px) {
    .stepper {
        position: relative;
    }
    .stepper:after {
        content: "";
        -ms-flex: auto;
        flex: auto;
        margin: 15px 0 10px 0;
        width: 100%;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.08);
        position: absolute;
        left: 0;
        right: 0;
        z-index: 1;
    }
    .stepper-item {
        width: 33.333333%;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }
    .stepper-item .stepper-circle {
        align-self: center;
        position: relative;
        background-color: rgba(235, 235, 235, 1);
    }
    .stepper-item .stepper-body {
        display: block;
        align-self: center;
        margin: 6px 0 0 0 !important;
    }
    .stepper-item .stepper-title {
        font-size: 13px;
    }
    .stepper-item:after {
        display: none;
    }
}

/*Cart / Checkout*/
/**/
.summary-table {
    padding: 0;
    margin-top: 0;
    margin-bottom: 1rem;
}
.summary-table li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 0;
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 0;
    border-bottom: 2px solid #ebebeb;
    font-weight: 600;
    position: relative;
}
.summary-table li span:last-child {
    font-weight: 700;
}
.summary-table li span.total-price {
    font-size: 20px;
}
.summary-table li span.envio-estimado {
    font-size: 13px;
    font-weight: normal;
    color: #039f22;
    position: absolute;
    bottom: -1px;
    right: 0;
    left: 0;
    text-align: right;
    text-transform: initial;
}
.summary-table li span.envio-free {
    font-size: 13px;
    font-weight: normal;
    color: #039f22;
    position: absolute;
    top: 1px;
    right: 0;
    left: 0;
    text-align: right;
    text-transform: initial;
}
.summary-table .tooltip-note {
    font-size: 12px;
    text-decoration: underline;
    color: #777;
}

.ckeckount-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}
.card-checkout {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-checkout:last-child {
    border-bottom: none !important;
}
.card-checkout:hover {
    background-color: rgba(0, 0, 0, 0.03);
}
.card-checkout .btn.focus,
.card-checkout .btn:focus {
    outline: 0;
    box-shadow: none;
}
.card-checkout .card-header {
    background-color: transparent;
    border-bottom: none !important;
}
.card-checkout .card-header h2 label {
    margin: 0;
}
.card-checkout .btn-link span {
    position: relative;
    top: -2px;
    font-size: 14px;
}
.card-checkout .btn-link input[type="radio"] {
    position: relative;
    left: -14px;
}
.card-checkout .btn-link:hover,
.card-checkout .btn.focus,
.card-checkout .btn:focus {
    text-decoration: none;
}
.card-checkout .card-body {
    padding: 0 1.25rem 1.25rem 50px;
    font-size: 13px;
    line-height: 16px;
}
.card-checkout .checkout-card-logo img {
    width: 80px;
    margin-bottom: 10px;
}

.card-checkout-response {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-checkout-response:last-child {
    border-bottom: none !important;
}
.card-checkout-response:hover {
    background-color: rgba(0, 0, 0, 0.03);
}
.card-checkout-response .address-title {
    display: flex;
    align-items: center;
}
.card-checkout-response .address-title img {
    height: 35px;
    margin-right: 10px;
}
.checkout-card-banner {
    max-width: 100%;
}
.wrapper-centred {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-checkout-response-title {
    padding-left: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-left: 2px solid #2e9d9a;
}
.card-checkout-response-title .checkout-card-logo img {
    height: 50px;
    padding-right: 6px;
}

.card-checkout-list {
    margin: 0;
    padding: 0;
}
.card-checkout-list li {
    margin-bottom: 10px;
    font-size: 0.9em;
    list-style: none;
}

.checkout-table-compra .checkout-table-compra-producto img {
    width: 60px;
}
.checkout-table-compra .checkout-table-compra-producto a {
    font-size: 0.8em;
    line-height: 1.2em;
}

/*Confirmar pro*/
.page-confirmar-compra .pro-lista {
    margin: 0 0 20px 0;
    padding: 0 0 10px 0;
}
.page-confirmar-compra .pro-lista .pro-li {
    list-style: none;
    margin: 9px 0;
    padding: 9px 0 18px 0;
    border-bottom: 1px solid #ebebeb;
}
.page-confirmar-compra .table-row {
    display: flex;
    align-items: center;
}
.page-confirmar-compra .pro-image {
    width: 100px;
}
.page-confirmar-compra .pro-image > div {
    margin: 0 10px 0 0;
}
.page-confirmar-compra .pro-image > div img {
    width: 80px;
}
.page-confirmar-compra .pro-image > div,
td.pro-cuenta-image > div {
    padding: 3px;
    border: 1px solid #ebebeb;
    background: #fff;
}
.page-confirmar-compra .pro-name {
    margin: 0 10px 0;
}

.page-confirmar-compra .pro-title {
    font-size: 12px;
}
.page-confirmar-compra .pro-codigo {
    font-size: 13px;
}
.page-confirmar-compra .price-tag-wrapper {
    min-width: 90px;
    text-align: right;
}
.page-confirmar-compra .price-tag-wrapper .price-tag {
    font-size: 16px;
    font-weight: 400;
    margin-right: 0;
    line-height: 1.25em;
}
@media only screen and (max-width: 991px) {
    .page-confirmar-compra.cart-list .table-row {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        text-align: center;
    }
    .page-confirmar-compra.cart-list .table-row .table-cell {
        align-self: center;
        width: 100%;
    }
    .page-confirmar-compra.cart-list .table-row .table-cell.pro-image {
        width: 50%;
    }
    
        .page-confirmar-compra.cart-list .pro-image > div {
            margin: 0 auto 10px auto;
            text-align: center;
        }
            .page-confirmar-compra.cart-list .pro-image > div img {
                width: 100%;
            }
        .page-confirmar-compra.cart-list .pro-confirm-containter .table-cell .pro-codigo {
            margin-top: 6px;
            margin-bottom: 6px;
        }
        .page-confirmar-compra.cart-list .pro-confirm-containter .table-cell.pro-quantity {
            width: auto;
        }
        .page-confirmar-compra.cart-list .pro-confirm-containter .table-cell.pro-precio .price-tag-wrapper {
            margin-right: 0;
            text-align: center;
        }
        .page-confirmar-compra.cart-list .page-confirmar-compra .price-tag-wrapper .price-tag {
            font-size: 20px;
        }
}

/*Checkout pro*/
.pro-confirm-checkout .table-row {
    display: flex;
    align-items: center;
}
    .pro-confirm-checkout .table-row .pro-precio {
        margin-left: auto;
    }
.pro-confirm-checkout .pro-image {
    width: 100px;
}
.pro-confirm-checkout .pro-image > div {
    margin: 0 10px 0 0;
}
.pro-confirm-checkout .pro-image > div img {
    width: 80px;
}
.pro-confirm-checkout .pro-image > div,
td.pro-cuenta-image > div {
    padding: 3px;
    border: 1px solid #ebebeb;
    background: #fff;
}
.pro-confirm-checkout .pro-name {
    margin: 0 10px 0;
}

.pro-confirm-checkout .pro-title {
    font-size: 12px;
}
.pro-confirm-checkout .pro-codigo {
    font-size: 13px;
}
.pro-confirm-checkout .price-tag-wrapper {
    min-width: 90px;
    text-align: right;
}
.pro-confirm-checkout .price-tag-wrapper .price-tag {
    font-size: 16px;
    font-weight: 400;
    margin-right: 0;
    line-height: 1.25em;
}
.price-tag-symbol {
    margin-right: 6px;
}

/*Timeline*/

.timeline {
    display: table;
    width: 100%;
    margin-bottom: 25px;
}
.timeline:before {
    content: " ";
    display: table-caption;
    height: 10px;
    width: 100%;
    border-radius: 10px;
    background-color: #e3e3e3;
}
.timeline-item:first-child,
.timeline-item:last-child {
    width: 1%;
}
.timeline-item:first-child {
    padding-right: 25px;
}
@media (min-width: 768px) {
    .timeline-item:first-child {
        padding-right: 40px;
    }
}
.timeline-item {
    position: relative;
    display: table-cell;
    top: -10px;
}
@media (min-width: 768px) {
    .timeline-item {
        width: 25%;
    }
}
.timeline-circle {
    position: absolute;
    z-index: 1;
    display: block;
    top: -10px;
    height: 30px;
    width: 30px;
    line-height: 32px;
    font-size: 18px;
    border-radius: 30px;
    text-align: center;
    color: #fff;
    background-color: #888;
    box-sizing: border-box;
}
.timeline-circle .fa {
    position: relative;
    top: -1px;
    font-size: 20px;
}
.timeline-item.warning .timeline-circle-current {
    background-color: #f1cd7d;
}
.timeline-item.success .timeline-circle-current {
    background-color: #4dbd74;
}
.timeline-circle-sm {
    top: -4px;
    height: 18px;
    width: 18px;
    border-radius: 18px;
    background-color: #fff;
    box-shadow: inset 0 0 0 5px #e3e3e3;
}
@media (min-width: 768px) {
    .timeline-item:last-child .timeline-circle {
        right: 0;
    }
    .timeline-item:last-child.line-success:after {
        margin-left: -10px;
    }
}
.timeline-item.pending-payment
    .timeline-circle-sm
    .timeline-item.warning
    .timeline-circle-sm {
    box-shadow: inset 0 0 0 5px #f1cd7d;
}
.timeline-item.success .timeline-circle-sm {
    box-shadow: inset 0 0 0 5px #4dbd74;
}
.timeline-body {
    display: block;
    margin-top: 25px;
    line-height: 1;
    white-space: nowrap;
}
.timeline-subtitle {
    line-height: 15px;
    font-size: 11px;
    font-weight: 400;
    color: #333;
}
.timeline-title {
    line-height: 18px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}
.timeline-item.done:after,
.timeline-item.pending-payment:after,
.timeline-item.pending:after,
.timeline-item.success:last-child:after,
.timeline-item.warning:after,
.timeline-item.success:after {
    content: " ";
    position: absolute;
    top: 0;
    height: 10px;
    width: 100%;
    border-radius: 10px;
    /*background-color: #c6e2b4;*/
}
.timeline-item.done:after,
.timeline-item.pending-payment:after,
.timeline-item.pending:after,
.timeline-item.warning:after,
.timeline-item.success:after {
    border-radius: 10px 0 0 10px;
}
.timeline-item.pending-payment:after,
.timeline-item.line-warning:after {
    background-color: #f1cd7d;
}
.timeline-item.line-success:after {
    background-color: #4dbd74;
}

.address-item h4 {
    font-size: 13px;
    font-weight: 700;
}
.address-item .address-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}
.address-item p {
    font-size: 13px;
    margin-bottom: 2px;
}

.temp-display-none {
    display: none !important;
}

.alert-note-secondary,
.alert-note-secondary p {
    font-size: 0.9em;
    line-height: 1.2em;
}
.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #e1e1e1;
}
.alert-note-light p {
    font-size: 0.9em;
    line-height: 1.2em;
}
.alert p:last-child {
    margin-bottom: 0;
}

/*Table history*/
.wrap-table-history {
    margin: 0 0 30px 0;
}
.table-history {
    width: 100%;
}
.table-history th {
    padding: 10px 6px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    border-bottom: 1px solid #e3e3e3;
}
.table-history td {
    padding: 10px 6px;
    vertical-align: middle;
    border-bottom: 1px solid #e3e3e3;
    font-size: 14px;
}
.table-history tr:hover td {
    background: #f3f3f3;
}
.table-history .td-date {
    width: 170px;
    text-align: center;
}
.table-history .td-center {
    text-align: center;
}
.table-history .td-view {
    width: 120px;
    text-align: center;
    font-size: 12px;
}
.table-history .td-view i {
    font-size: 18px;
    line-height: 10px;
    position: relative;
    bottom: -2px;
    margin-left: 4px;
}
.table-history .td-view a:hover {
    color: #fff;
}

.total-history {
    padding: 10px 0;
    margin: 20px 0;
}
.total-history .table-div {
    float: right;
}
.total-history .table-cell {
    padding: 6px;
}
.total-history span {
    font-size: 14px;
}
.total-history strong {
    font-size: 20px;
    font-weight: bold;
}

.block-title-bold {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    color: #555;
}
.address-item h4 {
    font-size: 13px;
    font-weight: 700;
}
.address-item p {
    font-size: 13px;
    margin-bottom: 2px;
}

/*preloader*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(255, 255, 255, 0.8);
}
#preloader.canvas-cover {
    background-color: rgba(255, 255, 255, 1);
}
.modal-win-alert #preloader {
    position: relative;
    height: auto;
    margin: 80px 0 10px 0;
    background-color: transparent;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #4f68aa;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #849ad6;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #a8b9e7;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
.modal-win-alert #loader {
    width: 50px;
    height: 50px;
    margin: -80px 0 0 -25px;
}

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

input[type="text"].error-validate,
input[type="password"].error-validate,
select.error-validate,
textarea.error-validate {
    border-color: rgba(242, 9, 25, 1);
    -webkit-box-shadow: 0px 0px 11px -3px rgba(242, 9, 25, 1);
    -moz-box-shadow: 0px 0px 11px -3px rgba(242, 9, 25, 1);
    box-shadow: 0px 0px 11px -3px rgba(242, 9, 25, 1);
}
input[type="radio"].error-validate,
input[type="checkbox"].error-validate {
    border-color: rgba(242, 9, 25, 1);
    -webkit-box-shadow: 0px 0px 11px -3px rgba(242, 9, 25, 1);
    -moz-box-shadow: 0px 0px 11px -3px rgba(242, 9, 25, 1);
    box-shadow: 0px 0px 11px -3px rgba(242, 9, 25, 1);
}
input[type="text"].form-element-selected,
input[type="password"].form-element-selected,
select.form-element-selected,
textarea.form-element-selected {
    border-color: rgb(16, 180, 234);
    -webkit-box-shadow: 0px 0px 11px -3px rgba(16, 180, 234, 1);
    -moz-box-shadow: 0px 0px 11px -3px rgba(16, 180, 234, 1);
    box-shadow: 0px 0px 11px -3px rgba(16, 180, 234, 1);
}

/*Custom fileupload*/
.drag-and-drop-zone {
    min-height: 100px;
    padding: 20px 20px;
    margin: 0 0 20px 0;
    border: 2px dashed #999;
    border-radius: 5px;
    background: white;
    text-align: center;
}
.drag-and-drop-zone > div {
    margin: 20px 0;
    font-size: 20px;
    line-height: 20px;
    color: #ccc;
}
.fileupload-buttonbar .table-striped {
    background: #f3f3f3;
}
.template-upload {
    width: 100%;
}
.file-preview {
    width: 80px;
    vertical-align: middle !important;
}
.file-filename {
    width: 100px;
    vertical-align: middle !important;
}
.file-filename-no-image {
    vertical-align: middle !important;
}
.file-filename p {
    width: 100px;
    margin: 5px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.file-filesize {
    width: 120px;
    vertical-align: middle !important;
}
.file-filesize .progress {
    background-color: #eee;
}
.file-filebutton {
    vertical-align: middle !important;
    text-align: right;
}
.file-filebutton .btn {
    margin: 2px 0;
    font-size: 12px;
}

.file-upload-wrapper .lead {
    padding: 0 0 10px 0;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    color: #333;
}
.file-upload-wrapper .lead-recommend-note {
    padding: 0 0 20px 0;
    font-size: 14px;
    line-height: 18px;
    color: #333;
    list-style: none;
}
.fade.in {
    opacity: 1;
}
/**/

.table.table-mis-compras {
    border-collapse: separate;
    border-spacing: 0;
    border: none;
    border-bottom: 1px solid #dee2e6;
}
.table.table-mis-compras td,
.table.table-mis-compras th {
    padding: 0.75rem;
    vertical-align: middle;
    border: none;
    border-top: 1px solid #dee2e6;
}
.table.table-mis-compras .table-list-image {
    width: 120px;
}
.table.table-mis-compras .table-list-detail {
    font-size: 13px;
}
.table.table-mis-compras .table-list-precio {
    text-align: right;
}

.table.checkout-table-compra .table-item-precio.total{
    font-size: 1.2rem;
} 

.resumen-total-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 0.75rem;
}
.resumen-total-mis-compras {
    width: 40%;
    font-size: 14px;
}
.resumen-total-mis-compras strong {
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}
.resumen-total-mis-compras .item-precio {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.resumen-total-mis-compras .item-precio.total {
    margin-top: 15px;
    font-size: 20px;
}
.resumen-total-mis-compras .item-precio.total strong {
    font-size: 20px;
    font-family: "Roboto", sans-serif;
}

.carrier-agency {
    display: block;
}
    .carrier-agency img {
        height: 30px;
        margin: 0 10px;
    }

/*********************************
Newsletter
*********************************/
.newsletter {
    width: 100%;
    background: #f2f2f2;
    margin-top: 81px;
}
.newsletter_text {
    height: 120px;
}
.newsletter_text h4 {
    margin-bottom: 0px;
    line-height: 24px;
}
.newsletter_text p {
    margin-top: 10px;
    margin-bottom: 0px;
    line-height: 1.5;
    text-align: left;
}
.newsletter_form {
    height: 120px;
}
#newsletter_email {
    width: 300px;
    height: 46px;
    background: #ffffff;
    border: none;
    border-radius: 10px 0 0 10px;
    padding-left: 20px;
    position: relative;
    right: -10px;
}
#newsletter_email:focus {
    border: solid 1px #7f7f7f !important;
    box-shadow: none !important;
}
:focus {
    outline: none !important;
}
#newsletter_email::-webkit-input-placeholder {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
#newsletter_email:-moz-placeholder /* older Firefox*/ {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
#newsletter_email::-moz-placeholder /* Firefox 19+ */ {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
#newsletter_email:-ms-input-placeholder {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
#newsletter_email::input-placeholder {
    font-size: 14px !important;
    font-weight: 400;
    color: #b9b4c7 !important;
}
.newsletter_submit_btn {
    width: 160px;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: var(--main-primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.newsletter_submit_btn:hover {
    background: var(--color-naranja);
}

/*********************************
RD
*********************************/
#responseAjax {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100%;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: none;
    color: #3398cc;
    text-align: center;
}
#responseAjax img {
    margin: 130px auto 0 0; /*179px*/
    border: none;
}
#responseAjax h1 {
    font-size: 16px;
    margin: 60px 0 0 0;
}
#responseAjax h3 {
    font-size: 12px;
    margin: 10px 0 0 0;
}

.errorAjax {
    margin: 100px;
    color: #c30;
    font-size: 14px;
}
/*----------------------------------------------------------------------------------------------------------------------------*/

.msj-ajax-input-loading {
    width: 20px;
    position: absolute;
    right: 16px;
    bottom: 24px;
}
.msj-ajax-input-ok {
    position: absolute;
    top: 36px;
    right: 20px;
    font-size: 24px;
    color: #090;
}
.msj-ajax-input-error {
    /*margin: -10px 0 20px 0;*/
    color: #f00;
    font: 11px/16px Arial, Helvetica, sans-serif;
}
.msj-response-html {
    margin: 30px 0;
}

.cont-input-form {
    position: relative;
}

.confirmacion-registro {
    padding-bottom: 20px;
}
.exitoPage {
}
.exitoPage h1 {
    margin: 0 0 10px 0;
    font-size: 22px;
}
.exitoPage h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
}
.exitoPage p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 18px;
}
.exitoPage p strong {
    font-weight: bold;
}

.noEncontrado h1 {
    margin: 0 0 10px 0;
    font-size: 22px;
}
.noEncontrado h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
}
.noEncontrado p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 18px;
}
.noEncontrado p strong {
    font-weight: bold;
}

.lista-numerada {
    padding: 0 0 30px 22px;
}
.lista-numerada li {
    padding: 0 0 6px 0;
    font-size: 13px;
    line-height: 18px;
    list-style: decimal;
}

/*Mostrar password*/
.show-password {
    position: relative;
}
.show-password .show-password-btn {
    position: absolute;
    right: 8px;
    bottom: 4px;
    color: #ccc;
    padding: 4px;
    cursor: pointer;
}
.show-password .show-password-btn:before {
    margin: 0;
    font-size: 20px;
}
.cont-input-form.show-password .show-password-btn {
    right: 12px;
    bottom: 20px;
}
.form-group.show-password .show-password-btn {
    right: 16px;
    top: 34px;
    bottom: auto;
}
.login-window .form-group.show-password .show-password-btn {
    right: 6px;
    top: auto;
    bottom: 6px;
}

/**/

/*file icons*/
.icono-image-file {
    width: 73px;
    height: 85px;
    background: url(../icons-file/all-files.png) no-repeat;
}
.file-upload-pdf .icono-image-file {
    background-position: -121px -213px;
}
.file-upload-word .icono-image-file {
    background-position: 0 -213px;
}
.file-upload-jpg .icono-image-file {
    background-position: 0 0;
}
.file-upload-png .icono-image-file {
    background-position: -121px 0;
}
.file-upload-gif .icono-image-file {
    background-position: -484px -106px;
}
.icono-image-file.left {
    margin: 0 20px 0 0;
}

/*filters*/
.wrap-filters {
}
.wrap-filters .sidebar-container {
    overflow: hidden;
    /*border-bottom: 1px solid #DDD;*/
}
.wrap-filters:last-child .sidebar-container {
    /*border-bottom: none;*/
}
.wrap-filters ul {
    margin: 0 0 0 10px;
}
.wrap-filters li a {
    padding: 4px 0;
    margin: 4px 0;
    text-decoration: none;
    color: #282828;
    position: relative;
    line-height: 20px;
    font-size: 14px;
}
.wrap-filters li.level-0 {
    margin-top: 25px;
}
.wrap-filters li.level-0:first-child {
    margin-top: 0;
}
.wrap-filters li.level-0 a {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-primary-color);
}
    .wrap-filters li.active a {
        color: var(--main-primary-color);
    }
    .wrap-filters li.active a::before {
        content: "\f101";
        display: inline-block;
        margin-right: 5px;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: var(--main-primary-color);
    }
.wrap-filters ul > ul {
    margin: 0 0 10px 10px;
    overflow: hidden;
    position: relative;
    /*float: left;*/
}
.wrap-filters ul > ul:after {
    content: "";
    width: 1px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 15px;
    left: 0;
    border-left: 1px solid #ccc;
}
.wrap-filters ul > ul li {
    padding: 1px 0 1px 14px;
    position: relative;
}
.wrap-filters ul > ul li:before {
    content: "";
    width: 10px;
    height: 1px;
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    border-top: 1px solid #ccc;
}
.wrap-filters ul > ul li a {
    padding: 4px 0;
    margin: 6px 0;
    text-decoration: none;
}

#muestraUsuDisponible {
    position: static;
}
.wrap-news-clear.sticky-top {
    z-index: 10;
}

/*********************************
Footer
*********************************/
.footer {
    /*margin-top: 40px;
    border-top: 1px solid rgba(235, 235, 235, 1);*/
}
.footer-logo-container {
    margin: 0 0 10px 0;
}
.footer-logo-container img {
    width: 180px;
}
@media only screen and (max-width: 991px) {
    .footer-data {
        text-align: center;
    }
}
.footer-data p {
    font-size: 12px;
    color: #51545f;
    margin-bottom: 4px;
}
.footer_nav_container {
    padding-top: 30px;
    padding-bottom: 30px;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.footer_nav {
    text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
    .footer_nav_container {
        height: auto;
    }
}
.footer_nav_container-legal {
    padding: 40px 0;
    text-align: center;
}
.footer_nav li {
    display: inline-block;
    margin-right: 45px;
}
.footer_nav li:last-child {
    margin-right: 0px;
}
.footer_nav li a,
.cr {
    font-size: 14px;
    color: #51545f;
    line-height: 30px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.footer_nav li a:hover,
.cr a,
.cr i {
    color: var(--main-primary-color);
}
.footer_social {
    height: 100%;
}
.footer_social ul {
    text-align: right;
}
.footer_social ul li {
    display: inline-block;
}
.footer_social ul li:last-child {
    margin-right: 0px;
}
.footer_social ul li a {
    color: #51545f;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    padding: 8px;
    font-size: 20px;
}
.footer_social ul li a svg {
    width: auto;
    height: 20px;
}
.footer_social ul li:last-child a {
    padding-right: 0px;
}
.footer_social ul li a:hover {
    color: var(--main-primary-color);
}

.footer .credits {
    color: #989898;
}
.footer .credits img,
.footer .credits svg {
    height: 24px;
    margin-left: 5px;
}
.footer .medios-pago-envio .medio-item {
    display: block;
    margin: 20px 0 0 0;
}
    .footer .medios-pago-envio .medio-item img {
        width: 200px;
        height: auto;
    }
/**/

/*********************************
Editor
*********************************/
.page-text-editor {
}
.page-text-editor h2 {
    font-size: 1.7em;
}
.page-text-editor h3 {
    font-size: 1.4em;
}

/**/

@media (min-width: 768px) {
    .collapse.dont-collapse-sm {
        display: block;
        height: auto !important;
        visibility: visible;
    }
}

/*--------------------------------------------------------------
# Industrial
--------------------------------------------------------------*/
.industrial-banner-header {
    min-height: 200px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed !important;
}
.industrial-wrap {
    display: block;
    width: 100%;
    height: 500px;
}
@media (max-width: 767.98px) {
    .industrial-wrap {
        height: auto;
        margin-bottom: 40px;
    }
}
.industrial-wrap .img {
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.industrial-wrap .text {
    position: relative;
}
.industrial-wrap .text .subheading {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #000000;
    font-weight: 600;
}
.industrial-wrap .text h2 {
    font-size: 40px;
    display: inline-block;
    line-height: 1.3;
    letter-spacing: 2px;
}
@media (max-width: 767.98px) {
    .industrial-wrap .text h2 {
        font-size: 9vw;
    }
}
.industrial-wrap .text h2 a {
    color: #000000;
    padding-bottom: 5px;
}
.industrial-wrap .text .desc {
    position: relative;
    width: 100%;
}
.industrial-wrap .text .desc .custom-btn {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 3px;
    color: #000000;
    font-weight: 700;
    border: 1px solid #d9d9e1;
    padding: 7px 10px;
    border-radius: 5px;
}
.industrial-wrap .text .desc p {
    margin-bottom: 30px;
}
.industrial-wrap .text .desc .top {
    position: relative;
}
@media (max-width: 767.98px) {
    .industrial-wrap .text .desc .top:after {
        display: none;
    }
}
.industrial-wrap .text .icon .img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}
.industrial-wrap .text .icon .position h4 {
    font-size: 16px;
    color: black;
}
.industrial-wrap .text .icon .position span {
    font-size: 12px;
    letter-spacing: 3px;
    font-size: 600;
}
.industrial-wrap .industrial-list {
    margin-bottom: 20px;
}
.industrial-wrap .industrial-list li i {
    color: var(--main-green-color);
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
    padding: 0;
}
.why-us .content {
    padding: 60px 50px 0 50px;
}
.why-us .content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
}
.why-us .video-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 400px;
    position: relative;
}
.why-us .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(rgb(0, 51, 153) 50%, rgba(0, 51, 153, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}
.why-us .play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.why-us .play-btn::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(0, 51, 153, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(0, 51, 153, 0);
}
.why-us .play-btn:hover::after {
    border-left: 15px solid rgb(0, 51, 153);
    transform: scale(20);
}
.why-us .play-btn:hover::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}
@media (max-width: 1024px) {
    .why-us .content {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 992px) {
    .why-us .content {
        padding-top: 30px;
    }
}
@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}
@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(0, 51, 153, 1), rgba(0, 51, 153, 0.8)),
        url("../../upload/static/nosotros/team2.jpg") fixed center center;
    background-size: cover;
    padding: 60px 0;
}
.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    padding: 20px 100px;
}
@media only screen and (max-width: 991px) {
    .cta h3 {
        padding: 20px 20px;
    }
}
.cta p {
    color: #fff;
    font-size: 1.3rem;
}
.cta .cta-btn {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}
.cta .cta-btn:hover {
    background: var(--main-green-color);
    border-color: var(--main-green-color);
}

/*--------------------------------------------------------------
# Brand-carousel
--------------------------------------------------------------*/
.brand-carousel {
    margin: 60px 0;
}
    .brand-carousel  .industrial-title-item {
        text-align: center;
        margin-bottom: 30px;
    }
    .brand-carousel .item{
        text-align: center;
    }
    .brand-carousel .item img{
        display:inline-block;
        padding: 0 20px;
        max-width: 100%;
        height: auto;
        filter: gray; /* IE */
        -webkit-filter: grayscale(1); /* Old WebKit */
        -webkit-filter: grayscale(100%); /* New WebKit */
        filter: grayscale(100%); /* Current draft standard */
    }
        .brand-carousel .item a:hover img{
            filter: none; /* IE */
            -webkit-filter: grayscale(0); /* Old WebKit */
            -webkit-filter: grayscale(0%); /* New WebKit */
            filter: grayscale(0%); /* Current draft standard */
        }

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.js--slider-detalle-juntos-rel.owl-carousel .owl-stage-outer {
    padding-bottom: 40px;
}

/*--------------------------------------------------------------
# Services productos
--------------------------------------------------------------*/
.services-productos-header {
    min-height: 420px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed !important;
    margin-top: 150px;
}
    @media only screen and (max-width: 991px) {
        .services-productos-header {
            margin-top: 70px;
        }
    }
    .services-productos-header h1 {
        font-size: 52px;
        color: #ffffff;
        text-shadow: 2px 2px 8px rgb(0 0 0 / 58%);
        letter-spacing: -0.01em;
        line-height: 1.3;
    }
    .services-productos-header h1 {
        font-size: 52px;
        color: #ffffff;
        text-shadow: 2px 2px 8px rgb(0 0 0 / 58%);
        letter-spacing: -0.01em;
        line-height: 1.3;
    }
    @media only screen and (max-width: 991px) {
        .services-productos-header h1 {
            font-size: 40px;
            line-height: 1.1;
        }
    }

.services-productos-wrapper {
    background-color: #f2f2f2;
    padding: 20px 0 40px 0;
}
.services-productos .icon-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
    margin-bottom: 20px;
}
    .services-productos .icon-box .icon {
        margin: 0 20px;
    }
    .services-productos .icon-box .icon img {
        width: 100%;
        padding: 30px;
        transition: 0.3s;
    }
    .services-productos .icon-box h4 {
        font-weight: 500;
        margin-bottom: 15px;
        font-size: 24px;
    }
    .services-productos .icon-box h4 a {
        color: var(--main-primary-color);
        transition: ease-in-out 0.3s;
    }
    .services-productos .icon-box p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }
    .services-productos .icon-box:hover {
        transform: translateY(-10px);
    }
    .services-productos .icon-box:hover h4 a {
        color: var(--main-primary-color-hover);
    }

.pseudo-alert {
    margin: 12px;
    padding: 30px;
    border: 2px solid #f2f2f2;
}
    .pseudo-alert .icon-mail {
        font-size: 30px;
        color: #333333;
    }
    .pseudo-alert h5 {
        padding: 10px;
    }

.productos-xantana-detalle {
    margin: 40px 0 0 0;
} 
.productos-xantana-detalle h2 {
    font-size: 32px;
    line-height: 45px;
    padding-bottom: 20px;
    margin-bottom: 50px;
    position: relative;
}
    .productos-xantana-detalle h2::after {
        display: block;
        position: absolute;
        top: calc(100% - 5px);
        left: 30px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 60px;
        height: 5px;
        background: var(--main-primary-color);
        content: "";
    }
.productos-xantana-detalle p {
} 
.productos-xantana-detalle .item-list {
} 
    .productos-xantana-detalle .item-list li {
        margin-bottom: 30px;
    } 
    .productos-xantana-detalle .item-list h3 {
        font-size: 20px;
        margin-bottom: 10px;
    } 
    .productos-xantana-detalle .item-list li .dosis {
        display: block;
        margin: 5px 0 5px 10px;
    } 
        .productos-xantana-detalle .item-list li .dosis .fa {
            font-size: 20px;
            color: var(--main-primary-color);
        } 


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
  .section-bg {
    background-color: white;
  }
  
  .section-title {
    text-align: center;
    
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 0;
    line-height: 1;
    margin: 30px 0 0 0;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
  }
  .section-sub-title {
    margin: 0 0 5px 0;
    font-size: 32px;
    line-height: 38px;
    display: block;
    color: var(--main-primary-color);
  }
.section-sub-title-2 {
    margin: 0 0 10px 0;
    font-size: 32px;
    line-height: 38px;
    display: block;
    color: var(--color-gris-claro);
}

  
  .section-title h3 span {
    /*color: #e43c5c;*/
  }
  
  .section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
  }
  
  @media (min-width: 1024px) {
    .section-title p {
      width: 80%;
    }
  }
.about-item-wrapper.tecnologia-alimenticia {
    margin: 150px 0 220px 0;
}
.about-item-wrapper.logros {
    margin: 100px 0 120px 0;
}
  .about-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .about-item ul {
      list-style: none;
    }
  .about-item.align-right {
    text-align: right;
  }
  
    .about-item .img-animate.align-right {
      text-align: right;
    }
      .about-item .img-animate img {
        width: 70%;
        margin: 0 auto;
      }
      .about-item .img-animate img.img-60x100 {
        width: 60%;
      }
    .about-list li {
      padding-bottom: 10px;
    }
      .about-list li i {
        color: #e43c5c;
        font-size: 22px;
      } 
      
      .logros-list li {
        padding-bottom: 4px;
      }
        .logros-list li i {
            padding-right: 10px;
        }

  /*Deco lines*/
.deco-line {
    width: 130px;
    margin: 100px auto;
    border-top: 6px dashed #003399;
    position: relative;
    top: -80px;
  } 
  .deco-line.horizontal-reflex {
    transform: scaleY(-1);
    top: 0;
  }
  .deco-line.top-left .curve.left {
    width: 100px;
    height: 106px;
    position: absolute;
    overflow: hidden;
    top: -6px;
    left: -102px;
    z-index: 1;
  }
    .deco-line.top-left .curve.left:before {
      content: "";
      width: 200px;
      height: 200px;
      display: block;
      border-radius: 100%;
      border: 6px dashed #003399;
      position: absolute;
      top: 0;
      left: 0;
    } 
  .deco-line.top-left .curve.right {
    width: 100px;
    height: 106px;
    position: absolute;
    overflow: hidden;
    top: -100px;
    right: -102px;
  }
    .deco-line.top-left .curve.right:before {
      content: "";
      width: 200px;
      height: 200px;
      display: block;
      border-radius: 100px;
      border: 6px dashed #003399;
      position: absolute;
      top: -100px;
      right: 0;
    } 
    .deco-line.top-left:before {
      content: "";
      width: 20px;
      height: 20px;
      display: block;
      border-radius: 20px;
      background: #003399;
      position: absolute;
      top: 100px;
      left: -108px;
    } 
    .deco-line.top-left:after {
      content: "";
      width: 20px;
      height: 20px;
      display: block;
      border-radius: 20px;
      background: #003399;
      position: absolute;
      top: -122px;
      right: -108px;
    } 
  
    /*custom*/
    .deco-line.horizontal-reflex.nodo-1 {
      width: 10px;
      transform: scaleY(-1);
      top: 20px;
      margin-bottom: 50px;
    }
    .deco-line.nodo-2 {
      top: -114px;
      margin-bottom: 50px;
    }
    .deco-line.horizontal-reflex.nodo-3 {
      margin-bottom: 70px;
    }
  
    @media (max-width: 768px) {
      .deco-line.horizontal-reflex.nodo-1 {
          margin-bottom: 150px;
      }
      .deco-line.nodo-2 {
        width: 10px;
        top: -24px;
        margin-bottom: 150px;
      }
      .deco-line.horizontal-reflex.nodo-3 {
        width: 10px;
        margin-bottom: 150px;
      }
      .about-item .img-animate,
      .about-item .img-animate.align-right {
        text-align: center;
      }
    }


/*Paginador*/
.pagination {
    margin: 0 0 80px 0;
}
.page-link,
.page-item:first-child .page-link,
.page-item:last-child .page-link {
    color: var(--main-primary-color);
    background-color: #fff;
    border-radius: 18px;
    margin: 0 2px;
}
    .page-link.page-number {
        width: 35px;
        height: 35px;
        border-radius: 35px;
        text-align: center;
    } 
    .page-item:first-child .page-link.page-number,
    .page-item:last-child .page-link.page-number {
        border-radius: 35px;
    }     
    .page-item .page-link.active,
    .page-item:first-child .page-linka.ctive,
    .page-item:last-child .page-link.active {
        z-index: 1;
        color: #fff;
        background-color: var(--main-primary-color);
        border-color: var(--main-primary-color);
    }

.modal-alert-group .alert {
    display: none;
} 

.check-out-cupon-descuento {
    padding: 10px;
    border-radius: 10px;
    border: 2px dashed #ccc;
}
    .check-out-cupon-descuento .cupon-alert {
        position: relative;
    }
    .check-out-cupon-descuento .cupon-alert-status {
        position: absolute;
        bottom: 21px;
        right: 30px;
        font-size: 20px;
    }
        .check-out-cupon-descuento .cupon-alert-status.success {
            color: #28a745;
        }


        
.bd-callout {
    padding: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    border: 1px solid #eee;
    border-left-width: 0.25rem;
    border-radius: 0.25rem;
}
.bd-callout-info {
    border-left-color: var(--main-primary-color);
}
.bd-callout-user {
    display: flex;
    align-items: center;
}
    .bd-callout-user .profile-image {
        display: inline-block;
        width: 96px;
        height: 96px;
        margin-right: 20px;
        border-radius: 100px;
        overflow: hidden;
        border: 1px solid #dddddd;
    }
        .bd-callout-user .profile-image img {
            width: 100%;
            height: auto;
        }

.socialmedia-target {
    display: flex;
    margin: 8px 0;
    justify-content: start; 
}
    .socialmedia-target .title {
        font-weight: 800;
        margin-right: 10px;
        color: #51545f;
    }
    @media (max-width: 768px) {
        .socialmedia-target {
            justify-content: center;
        }
    } 
           
/**/
.summary-shipping .shippinp-container {
    padding: 8px 0 16px 0;
}
.product-detail-shipping .shippinp-container {
    padding: 24px 0 0 0;
}
.wrap-cart-wind-set .summary-shipping .shippinp-container,
.wrap-cart-wind-set .product-detail-shipping .shippinp-container {
    /*isplay: none !important;*/
}
.shippinp-form a {
    padding: 5px 0;
    font-size: 11px;
    text-decoration: underline;
}
.shipping-data {
    width: 100%;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f8f8;
}
    .shipping-data .shipping-value {
        font-size: 16px;
        font-weight: 700;
    }
    .shipping-data .shipping-message {
        margin-right: 20px;
    }
        .shipping-data .shipping-message span {
            display: block;
        }
    .shipping-data .shipping-message .envio-estimado {
        font-size: 13px;
        color: #039f22;
    }
    .shipping-data .shipping-message .envio-title {
        font-size: 13px;
    }
    .shipping-data .shipping-message .envio-free {
        font-size: 14px;
        color: #039f22;
    }
    .shipping-data + .shipping-data-change {
        padding: 5px 0;
        font-size: 11px;
        text-decoration: underline;
    } 
    
    
.shop-list .product-detail-shipping,
.shop-list .free-shipping {
    display: none;
}  
.cart-modal .shop-list .product-detail-shipping,
.cart-modal .shop-list .free-shipping {
    display: block;
} 
    
.video-preview {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-preview iframe {
  width: 100%;
  height: 220px;
  pointer-events: none; /* evita clicks directos */
  border-radius: 10px;
}



.nav-tabs .nav-link {
    margin-bottom: -1px;
    border: 1px solid #dee2e6;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    text-transform: uppercase;
    color: var(--main-primary-color);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #ffffff;
    background-color: var(--main-primary-color);
    border-color: #dee2e6 #dee2e6 #fff;
}

.card-color {
    padding: 20px;
    background-color: var(--main-primary-color);
    color: #fff;
    border-radius: 20px;
    display: flex;
}
.card-color.bg-grey {
    background-color: var(--color-gris-claro-new);
    color: var(--main-primary-color);
}
     a.card-color {
        text-decoration: none;
    }
    .card-color-header {
        flex: 0 0 auto;
        margin-right: 20px;
    }
        .card-color-header img {
            width: 100px;
            height: auto;
        }
    .card-color-header.small {
        text-align: right;
    }
        .card-color-header.small .card-color-icon {
            width: 60px;
            height: auto;
        }

    .card-color-body h2 {
        color: #fff;
        font-size: 1.5rem;
    }
    .card-color-body p {
        color: #fff;
        font-size: .8rem;
        line-height: 1.2rem;
    }
    .card-color-btn {
        text-align: right;
    }
    .bg-grey .card-color-body h2 {
        color: var(--main-primary-color);
        font-weight: 700;
    }
    .bg-grey .card-color-body p {
        color: rgb(166, 166, 166);
    }
   

.tab-content-static p {
    font-size: 1.075rem;
}

.nosotros-empresa .empresa-item {

}
.empresa-title {
    display: flex;
    margin: 0 0 50px 0;
}
    .empresa-title .section_title {
        text-align: left;
        position: relative;
    }
    .empresa-title .section_title::after {
        left: 0;
        transform: none;
        top: auto;
        bottom: -10px;
    }
    .labels-group {
        min-width: 740px;
        text-align: center;
    }
        @media (max-width: 768px) {
            .empresa-title {
                flex-direction: column;
            }
            .labels-group {
                margin-top: 40px;
                min-width: inherit;
            }
        } 
        .labels-group .badge-pill {
            font-size: 18px;
            margin: 0 10px 20px 10px;
            padding: .4em .9em;
            font-weight: 400;
        }
        .labels-group .badge-pill.color-blue {
            color: #fff;
            background-color: var(--main-primary-color);
        }
        .labels-group .badge-pill.color-green {
            color: #fff;
            background-color: var(--color-verde);
        }
        .labels-group .badge-pill.color-orange {
            color: #fff;
            background-color: var(--color-naranja);
        }

    .empresa-item .empresa-img img {
        border-radius: 20px;
    }
    .empresa-item .empresa-text {
        border-radius: 20px;
        background-color: var(--color-gris-claro-new);
    }
    .empresa-item .empresa-text .custom-box {
        padding: 20px 0;
    }
    .empresa-item .empresa-text .custom-box h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--main-primary-color);
    }
    .empresa-item .empresa-text .custom-box p {
        font-size: .975rem;
        line-height: 1.2rem;
    }
        .empresa-item .empresa-text .custom-box p strong {
            color: var(--main-primary-color);
        }

.empresa-box {
    display: flex;
    margin-bottom: 60px;
}
    .empresa-box .box-title {
        font-size: 30px;
        font-weight: 500;
        color: var(--main-primary-color);
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
    }
        .empresa-box .box-title::after {
            width: 80px;
            height: 5px;
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            background: var(--color-naranja);
            content: "";
        }
    .empresa-box .empresa-text {
        display: flex;
        flex-direction: column;
    }
    .empresa-box .empresa-img img {
        border-radius: 20px;
        object-fit: cover;
        height: 100%;
    }
    .empresa-box .box-2 {
        display: flex;
        align-items: stretch;
    }
    .empresa-box .box-text {
        padding: 15px 20px;
        font-size: 1rem;
        line-height: 1.3rem;
        border-radius: 20px;
    }
    .empresa-box .box-text.color-blue {
        color: #fff;
        background-color: var(--main-primary-color);
    }
    .empresa-box .box-text.color-grey {
        background-color: var(--color-gris-claro-new);
    }
    .empresa-box .box-text.color-green {
        color: #fff;
        background-color: var(--color-verde);
    }
    .empresa-box .box-text.color-orange {
        color: #fff;
        background-color: var(--color-naranja);
    }
    .empresa-box .box-img img {
        border-radius: 20px;
        object-fit: cover;
        max-height: 140px;
    }

    @media (max-width: 768px) {
        .empresa-box .box-img img {
            max-height: inherit;
        }
        .empresa-box .box-2 {
            flex-direction: column;
        }
    } 

    /*Historia*/
    .empresa-box.custom-historia .empresa-text {
        margin-left: 20px;
    }
    .empresa-box.custom-historia .color-blue {
        margin-bottom: 20px;
    }
    .empresa-box.custom-historia .box-2 .box-img {
        margin-left: 20px;
    }
    @media (max-width: 768px) {
        .empresa-box.custom-historia .empresa-img {
            display: none;
        }
        .empresa-box.custom-historia .empresa-text {
            margin-left: 0;
        }
        .empresa-box.custom-historia .box-2 .box-img {
            margin-left: 0;
            margin-top: 20px;
        }
    } 

    /*Visión*/
    .empresa-box.custom-vision .empresa-text {
        margin-right: 20px;
    }
    .empresa-box.custom-vision .color-grey {
        margin-bottom: 20px;
    }
    .empresa-box.custom-vision .box-2 .box-img {
        margin-right: 20px;
    }
    @media (max-width: 768px) {
        .empresa-box.custom-vision .empresa-img {
            display: none;
        }
        .empresa-box.custom-vision .empresa-text {
            margin-right: 0;
        }
        .empresa-box.custom-vision .box-2 .box-img {
            margin-right: 0;
            margin-bottom: 20px;
        }
    } 
    
    /*Misión*/
    .empresa-box.custom-mision .empresa-text {
        margin-left: 20px;
    }
    .empresa-box.custom-mision .box.box-2:last-child {
        margin-top: 20px;
    }
    .empresa-box.custom-mision .box-2 .box-img,
    .empresa-box.custom-mision .color-green {
        margin-left: 20px;
    }
    .empresa-box.custom-mision .empresa-img {
        max-width: 200px;
    }
    @media (max-width: 768px) {
        .empresa-box.custom-mision .empresa-text {
            margin-left: 0;
        }
        .empresa-box.custom-mision .empresa-img {
            display: none;
        }
        .empresa-box.custom-mision .box-2 .box-img,
        .empresa-box.custom-mision .color-green {
            margin-left: 0;
            margin-top: 20px;
        }
        .empresa-box.custom-mision .empresa-img {
            max-width: inherit;
        }
    } 

    /*Valores*/
    .empresa-box.custom-valores .empresa-text {
        margin-right: 20px;
    }
    .empresa-box.custom-valores .color-blue {
        margin-bottom: 20px;
    }
    .empresa-box.custom-valores .box-2 .box-img {
        margin-right: 20px;
    }
    @media (max-width: 768px) {
        .empresa-box.custom-valores .empresa-img {
            display: none;
        }
        .empresa-box.custom-valores .empresa-text {
            margin-right: 0;
        }
        .empresa-box.custom-valores .box-2 .box-img {
            margin-right: 0;
            margin-bottom: 20px;
        }
    }   

    .logros-section {
        margin-bottom: 70px;
    }
        .logros-section .section_title {
            margin-bottom: 60px;
        }
    .logro-slider {
        padding: 20px 28px;
        background-color: var(--color-gris-claro-new);
        border-radius: 20px;
    }
        .logro-slider h4 {
            font-size: 55px;
            font-weight: 700;
            color: var(--main-primary-color);
        }
            .logro-slider h4 small {
                font-size: 35px;
                font-weight: 700;
            }
            .logro-slider p {
                min-height: 80px;
                font-size: 1rem;
                line-height: 1.2rem;
            }
        @media (max-width: 768px) {
            .logro-slider p {
                min-height: inherit;
            }
        } 


    .testimonial-slider {
        padding: 20px 28px;
        background-color: var(--color-gris-claro-new);
        border-radius: 20px;
    }
        .testimonial-slider .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
            .testimonial-slider .testimonial-header img {
                width: 32px;
                height: auto;
                margin-right: 10px;
            }
        .testimonial-slider h4 {
            font-size: 1.1rem;
            margin-bottom: 0;
        }
            .testimonial-slider p {
                min-height: 110px;
                font-size: 1rem;
                line-height: 1.2rem;
            }
            .home-testimonials-slider .banner-item-wrapper {
                margin: 0 7px;
            }
        @media (max-width: 768px) {
            .testimonial-slider p {
                min-height: inherit;
            }
        }
        .reviews-rating {
            font-size: 1rem;
            position: relative;
            top: -10px;
        } 
        .reviews-rating .review-stars {
            position: relative;
            top: -3px;
            margin-right: 4px;
        } 

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: var(--color-naranja);
}
.owl-theme .owl-nav .disabled {
    opacity: .25;
}


.autoComplete_wrapper {
    display: inline-block;
    position: relative
}

.autoComplete_wrapper>input {
    height: 3rem;
    width: 370px;
    margin: 0;
    padding: 0 2rem 0 4rem;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-size: 1rem;
    text-overflow: ellipsis;
    color: rgba(0, 51, 153,.3);
    outline: 0;
    border-radius: 10rem;
    border: .05rem solid rgba(0, 51, 153,.5);
    /*background-image: url(images/search.svg);
    background-size: 1.4rem;
    background-position: left 1.05rem top .8rem;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-color: #fff;*/
    transition: .4s
}
    @media (max-width: 768px) {
        .autoComplete_wrapper>input {
            padding: 0 2rem 0 2rem;
        }
    } 

.autoComplete_wrapper>input::placeholder {
    color: rgba(255,122,122,.5);
    transition: .3s
}

.autoComplete_wrapper>input:hover::placeholder {
    color: rgba(255,122,122,.6);
    transition: .3s
}

.autoComplete_wrapper>input:focus::placeholder {
    padding: .1rem .6rem;
    font-size: .95rem;
    color: rgba(255,122,122,.4)
}

.autoComplete_wrapper>input:focus::selection {
    background-color: rgba(255,122,122,.15)
}

.autoComplete_wrapper>input::selection {
    background-color: rgba(255,122,122,.15)
}

.autoComplete_wrapper>input:hover {
    color: rgba(255,122,122,.8);
    transition: .3s
}

.autoComplete_wrapper>input:focus {
    color: #ff7a7a;
    border: .06rem solid rgba(255,122,122,.8)
}

.autoComplete_wrapper>ul {
    position: absolute;
    max-height: 226px;
    overflow-y: scroll;
    box-sizing: border-box;
    left: 0;
    right: 0;
    margin: .5rem 0 0;
    padding: 0;
    z-index: 1;
    list-style: none;
    border-radius: .6rem;
    background-color: #fff;
    border: 1px solid rgba(33,33,33,.07);
    box-shadow: 0 3px 6px rgba(149,157,165,.15);
    outline: 0;
    transition: opacity .15s ease-in-out;
    -moz-transition: opacity .15s ease-in-out;
    -webkit-transition: opacity .15s ease-in-out
}

.autoComplete_wrapper>ul:empty,.autoComplete_wrapper>ul[hidden] {
    display: block;
    opacity: 0;
    transform: scale(0)
}

.autoComplete_wrapper>ul>li {
    margin: .3rem;
    padding: .3rem .5rem;
    text-align: left;
    font-size: 1rem;
    color: #212121;
    border-radius: .35rem;
    background-color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .2s;
    display: flex;
    justify-content: space-between
}
    @media (max-width: 768px) {
        .autoComplete_wrapper>ul>li {
            flex-direction: column;
        }
    } 

.autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: #ff7a7a;
    font-weight: 700
}

.autoComplete_wrapper>ul>li:hover {
    cursor: pointer
}

@media only screen and (max-width: 600px) {
    .autoComplete_wrapper>input {
        width:18rem
    }
}

.autoComplete_wrapper .result-text {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.autoComplete_wrapper .result-text-category {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 100;
    text-transform: uppercase;
    color: rgba(0,0,0,.4)
}
    @media (max-width: 768px) {
        .autoComplete_wrapper .result-text-category {
            font-size: 9px;
            font-weight: 100;
            position: relative;
            top: -12px;
            left: 50px;
        }
    } 
.autoComplete_wrapper .result-thumbnail img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 3px;
    margin-right: 10px;
}

.autoComplete_wrapper>ul>li:hover .result-text-category,.autoComplete_wrapper>ul>li[aria-selected=true] .result-text-category {
    color: rgba(0,0,0,.8)
}

.navy .autoComplete_wrapper {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.navy .autoComplete_wrapper.active {
    opacity: 1;
    visibility: visible
}

.navy .autoComplete_wrapper>input {
    position: absolute;
    top: 50%;
    width: 100%;
    border-radius: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    z-index: 3;
    font-size: 18px;
    outline: 0;
    /*background-image: url(../images/svg/isotipo.svg);*/
    background-size: 10px
}

.navy .autoComplete_wrapper>input:focus {
    color: var(--main-primary-color);
    border: none
}

.navy .autoComplete_wrapper>ul {
    top: 52px;
    overflow-y: auto;
    max-height: 500px;
    border-radius: 0 0 .6rem .6rem
}

.navy .autoComplete_wrapper>ul>li mark {
    background-color: transparent;
    color: var(--main-primary-color);
    font-weight: 700;
    padding: 0
}
.navy .autoComplete_wrapper>ul>p .not-found {
    margin: .3rem;
    padding: .3rem .5rem;
    display: inline-block
}
.navy .autoComplete_wrapper .search-close {
    z-index: 4;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #333;
    background-color: #fff;
    cursor: pointer
}

.navy .autoComplete_wrapper .search-close span {
    font-size: 30px
}
.navy .autoComplete_wrapper>ul>li:hover,
.navy .autoComplete_wrapper>ul>li[aria-selected=true] {
    background-color: rgba(0, 51, 153,.15)
}

.modal-promo .modal-header h3 {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}
.modal-promo .modal-body h4 {
    color: var(--main-primary-color);
}
.modal-promo .modal-body .p-4 p {
    font-size: 16px;
    line-height: 22px;
}

.content-banner-blue {
    background-color: var(--main-primary-color);
    padding: 20px;
}
    .content-banner-blue h4 {
        color: #fff;
        font-size: 26px;
        line-height: 26px;
        text-transform: uppercase;
        padding: 0;
        margin: 0;
    }

.card-btn-arrow {
    display: inline-flex;
    align-items: end;
    text-decoration: none;
}
    .card-btn-arrow .icon-img {
        width: auto;
        height: 14px;
        transition: transform 0.3s ease;
    }
    a:hover .card-btn-arrow .icon-img {
        transform: translateX(5px);
    } 
    
.card-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: space-between;
    margin-right: 0;
    margin-left: 20px;
} 
.card-2-col p {
    font-size: 1.1rem;
    line-height: 1.4rem;
}  



.review-stars {
    margin-bottom: 10px
}

.review-stars i {
    color: #ffbc00
}

.review-stars i.far {
    color: #ddd
}

.review-stars svg {
    width: auto;
    height: 18px
}

.review-stars svg path {
    fill: #ffbc00
}

.review-stars svg.hide path {
    fill: #ddd
}