/* SYSTEM*/
:root {
  --primary_color: #e87101;
  --secondary-color: #012b49;
  --shadow: 2px 2px 4px 0 rgb(0 0 0 / 10%);
  --border-radius-div: 3px;
}
#checkout label {
    font-weight: bold;
    display: block;
}
#travel-info label {
    display: block;
    font-weight: bold;
}
.product-slider {
    overflow: visible;
    width: 100%;
    max-width: 1100px; /* Controla el ancho total del slider */
    margin: auto;
    position: relative; /* Necesario para que los botones "absolutos" se posicionen correctamente */
}

.product-slider .slider-container {
    overflow: hidden;
    width: 100%;
    height: 370px;
}

.product-slider .slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: calc(270px * 4 + 10px * 3); /* 270px es el ancho de cada producto, ajustado para incluir el margen */
}

.product-slider .product-miniature {
    flex: 1 0 270px; /* Cada producto ocupará 270px de ancho */
    transition: all 0.1s;
    box-shadow: var(--shadow);
    background-color: white;
    margin-inline-end: 5px; /* Aumenté el margen para separar más los productos */
    border-radius: var(--border-radius-div);
}

.product-slider .slider-prev, 
.product-slider .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(0 87 162 / 86%); /* Color más oscuro */
    color: white;
    border: none;
    padding: 15px; /* Tamaño del botón */
    cursor: pointer;
    z-index: 10; /* Asegura que los botones estén por encima de otros elementos */
    font-size: 1.5rem; /* Tamaño de la flecha */
    /*border-radius: 50%; /* Hacer los botones circulares */
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Sombra para dar la impresión de que sobresalen */
}

.product-slider .slider-prev {
    left: -25px; /* Sobresalen fuera del contenedor */
}

.product-slider .slider-next {
    right: -25px; /* Sobresalen fuera del contenedor */
}

.product-slider .slider-prev:hover,
.product-slider .slider-next:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Más oscuro al pasar el mouse */
}

.product-slider .product-miniature-img {
    text-align: center;
}

.product-slider .product-name {
    font-size: 1rem;
    color: #333;
    margin-top: 10px;
}

.product-slider .sku {
    font-size: 0.8rem;
    color: #888;
}

body{
    color: #58595b;
    font: 15px/1.2 Helvetica, Arial, sans-serif;
    line-height:1.42857143;
    background-color: #f3f3f4;
    margin:0;
    overflow-x:hidden;
    overflow-y:auto
}
h1, h2, h3, h4 {
    color: var(--secondary-color);
}
.brand_logo {
    width: 100%;
    max-width: 150px;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.button_filter_content {
    padding-top: 25px;
}
.button_filter_content span{  
  font-weight: bold;
}
a.button_filter {
    color: #428bca;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 11px;
    /*margin-right: 10px;*/
    padding: 5px;
    text-transform: uppercase;
}
a.button_filter:hover {
    text-decoration: underline;
}
a.button_filter.active {
    background-color: var(--primary_color);
    color: white;
    border-radius: 3px;
}
.sku {
    display: block;
    font-size: 12px;
    color: #6a6666;
    font-weight: bold;
}
#product_view_type span {
    opacity: .8;
    color: grey;
}
#product_view_type span:hover {
    cursor: pointer;
    opacity: 1;
}
#product_view_type span.active {
    opacity: 1;
    color: #222;
}
.content-ship-contact {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 70px;
}
.content-ship-contact i, .content-ship-contact span, .content-ship-contact a {
    display: block;
    text-align: center;
}
.content-ship-contact i{
    font-size: 36px;
    padding-bottom: 25px;
}
.form-contact {
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius-div);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px; /* Agrega margen superior para separar del borde superior del contenedor Bootstrap */
}

@media (min-width: 768px) {
  .form-contact {
    width: 50%; /* Ajusta el ancho del formulario según tus necesidades */
    margin: 50px auto; /* Centra el formulario horizontalmente */
  }
}
.form-contact label {
  display: block;
  text-align: left;
  margin-bottom: 5px;
}
.col-md-4:nth-child(2) .content-ship-contact {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.form-contact input[type="text"],
.form-contact input[type="email"],
.form-contact input[type="tel"],
.form-contact textarea {
    width: calc(100% - 10px); /* Para dejar un pequeño espacio entre el input y el label */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    max-width: initial;
}

.form-contact textarea {
  height: 100px; /* Ajusta la altura según tus necesidades */
}
.images_product_container_front .swiper {
    display: none;
} 
/* Ajustes para el tamaño de pantalla más pequeño */
@media (max-width: 768px) {
    .images_product_container_front .image-container.desktop {
        display: none !important;
    }
    .images_product_container_front .swiper {
        display: block;
    } 
    .form-contact input[type="text"],
    .form-contact input[type="email"],
    .form-contact input[type="tel"],
    .form-contact textarea {
        max-width: initial;
        width: 100%;
    }
}
.displayFrontFooter3 ul {
    margin-left: 0px;
    padding-left: 0px;
}
.notice_of_privacy_content {
    text-align: justify;
}
.parallax-containe {
    position: relative;
    width: 100%;
    height: 500px; /* Ajusta la altura según tu necesidad */
    overflow: hidden;
}
.parallax-layer {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.about-container {
    min-height: 500px;
    padding-top: 200px;
    text-align: justify;
}
.about-container h1 {
    color: white;
    text-align: center;
}
.about-text-two {
    color: white;
    text-align: justify;
}
.about-text-one {
    background-color: white;
    padding-top: 100px;
    padding-bottom: 100px;
}
.scroll-hidden {
    overflow: hidden;
}
#faceted_search_mobile {
    list-style: none;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0px;
    text-align: right;
    border-bottom: solid 2px #1111;
}
#faceted_search_mobile li a.total_products_count {
    float: left;
    text-decoration: none;
}
.button-show-filters {
    color: var(--primary_color);
    font-weight: bold;
}
#categories_mobile ul, 
#brands_mobile ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
    margin-bottom: 40px;
}
#categories_mobile ul li,
#brands_mobile ul li {
    padding: 10px;
    border-top: solid 1px #1111;
    text-transform: capitalize;
}
.images_product_container_front .image-container {
    display: flex;
    align-items: flex-start;
    position: relative;
}


.images_product_container_front .main-image {
    position: relative;
    /*
    width: 400px;
    height: 400px;
    */
    overflow: hidden;
}

.images_product_container_front .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.images_product_container_front .thumbnail-container {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.images_product_container_front .thumbnail {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    opacity: 0.6;
}
.images_product_container_front .thumbnail.active_thumbnail {
    border: solid 1px #222;
    opacity: 1;
}

.images_product_container_front .thumbnail:hover {
    border-color: #555;
}

#zoomLens {
    position: absolute;
    border: 2px solid #000;
    width: 100px;
    height: 100px;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.3);
    cursor: crosshair;
}

.zoom-result {
    width: 400px;
    height: 400px;
    border: 1px solid #000;
    margin-left: 20px;
    display: none;
    position: absolute;
    z-index: 999 ;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    background-size: 200% 200%;
}

#short_description_content ul {
    padding-left: 20px;
}
.order_total_ {
    min-width: 100px;
    text-align: right;
}
.order_price_row {
    font-size: 12px !important;
}
.cart_list_product_name {
    display: inline-block;
}
.cart_list_product_name  .product_sku {
    display: block !important;
    font-size: 10px;
    color: black;
    font-weight: bold;
}
.usd:before {
  content: "US$";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}
.mxn:before {
  content: "MX$";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}
.avg:before {
  content: "%";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}

.usd_datatable:before {
  content: "US$";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}
.mxn_datatable:before {
  content: "MX$";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}
.avg_datatable:before {
  content: "%";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}
.pzs_datatable:before {
  content: "PZS";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #B5B5B5;
  font-size: 8px;
  margin-right: 10px;
}
.table_legend_title {
    border-bottom: solid 1px #1111;
    margin: 0px;
    color: #333;
    font-weight: 400;
    padding-top: 0px;
    padding-bottom: 10px;
}
.table_legend_title span{
    display: inline-block;
    text-transform: uppercase;
    vertical-align: middle;
}
.table_legend_title i{
  vertical-align: middle;
  font-size: 12px;
  display: inline-block;
}
.table_legend_title .button_header {
    float: right;
    color: var(--primary_color);
}
.table_rendered_content {
  background-color: white;
  padding: 10px;
  padding-top: 0px;
}
.table_rendered_content table {
  padding: 10px;
}
#table_rendered {
  border-collapse: collapse;
  width: 100%;
}
#table_rendered.dataTable  {
    margin-top: 70px;
}
#table_rendered thead {
    border-bottom: solid 2px;
}
#table_rendered thead tr th {
  text-transform: uppercase;
  font-size: 11px;
}
#table_rendered tbody td {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px;
  color: grey;
  font-size: 12px;
}
#table_rendered tbody td.right {
    text-align: right;
    float: initial !important;
}
#table_rendered tbody td.left {
    text-align: left;
    float: initial !important;
}
#table_rendered tbody td.center {
    text-align: center;
    float: initial !important;
}
#table_rendered tbody tr:nth-child(odd){
    background-color: #f8f8f8;
}
#table_rendered tbody tr:nth-child(even){
    background-color: #f1f1f1;
}
#table_rendered .order_by {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 5px;
  padding-right: 15px;
  padding-left: 15px;
}
#table_rendered .current_order_by {
  color: #428bca !important;
}
/*
#table_rendered .order_by:hover::after {
  font-family: 'Material Icons';
  content: "\e5d7";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #428bca;
}
*/
#table_rendered .sort_asc:after {
  font-family: 'Material Icons';
  content: "\e5c5";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #428bca;
}
#table_rendered .sort_desc:after {
  font-family: 'Material Icons';
  content: "\e5c7";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #428bca;
}
#table_rendered_wrapper {
    padding-top: 25px;
}
#table_rendered_wrapper.dataTables_wrapper {
    padding-top: 50px;
}
.table-center {
    text-align: center;
}
.table-left {
    text-align: left;
}
.table-right {
    text-align: right;
}
.main_app {
  padding: 10px;
  border-radius: 4px;
}
.main {
  margin-top: 20px;
  padding: 10px;
}
.tooltip {
  position: relative;
  display: inline-block;
  /*border-bottom: 1px dotted #555; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  transition: opacity .6s;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
.tooltip-top {
  bottom: 125%;
  left: 50%;
  margin-left: -60px
}
.tooltip-top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
}
.tooltip-bottom {
  top: 135%;
  left: 50%;
  margin-left: -60px;
}
.tooltip-bottom::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 45%;
  border-width: 5px;
  border-style: solid;
  border-color:  transparent  transparent rgba(0, 0, 0, 0.7) transparent;
}
.tooltip-right {
  top: 0%;
  right: 100%;
}
.tooltip-right::after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 34%;
  border-width: 5px;
  border-style: solid;
  border-color:  transparent  transparent transparent rgba(0, 0, 0, 0.7) ;
}
.current_price {
    font-weight: bold;
}
.form_content {
    background-color: white;
    width: 100%;
    max-width: 100%;
    padding: 10px;
}
.form_content h3 {
    border-bottom: solid 1px #1111;
    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-transform: uppercase;
    color: #625d5d;
    margin-bottom: 25px;
}
.itivos_form_inline .input_content {
    display: table;
    width: 100%;
    float: left;
    vertical-align: middle;
}
.itivos_form_inline_label {
    display: table-cell;
    width: 150px;
    text-transform: capitalize;
}
.itivos_form_inline .input_content .input_content_input{
    display: table-cell;
    max-width: initial;
    width: initial;
}
.itivos_form_inline .input_content .input_content_input input, select, textarea{
    margin-bottom: 2px;
}
.itivos_form_inline_label label{
    font-weight: bold;
    display: block;
}
.desc_input {
    font-style: italic;
    color: #ccc;
    display: block;
    line-height: 1.2;
    min-height: 10px;
    font-size: 12px;
    margin-bottom: 5px;
}
.input_content {
    margin-bottom: 15px;
}
.input_content_input {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 450px;
}
.margin-bottom-20 {
    margin-bottom: 20px;
}
.desc {
    font-size: 12px;
    font-style: italic;
    display: block;
}
.h2 {
    text-transform: uppercase;
}
.center_div {
    margin: auto;
    width: 50%;
}
.no_account_content {
    padding-top: 20px;
}
.text_form {
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.keep_session_active {
    float: left;
}
.forget_password {
    float: right;
    padding-top: 2px;
}
.message {
    margin-top: 10px;
    padding: 10px;
    margin-bottom: 10px;
}
.tab_menu_wrapper {
  padding-bottom: 10px;
  margin-top: 20px;
}
.tab_menu_wrapper a {
  padding-inline-end: 20px;
  padding: 20px;
  text-decoration: none;
  text-align: center;
  opacity: 0.8;
}
.tab_menu_wrapper a.active{
  border-top: solid 2px #47bfc3;
  color: #577374;
  opacity: 1 !important;
  background-color: white;
  padding: 20px;
} 
.tab_menu_wrapper a:hover{
  border-top: solid 2px #47bfc3;
  opacity: 1 !important;
  background-color: white;
  padding: 20px;
  color: #577374;
  opacity: 1;
} 
.logo_maintenance {
    max-width: 150px;
    width: 100%;
}
.spiner_button {
    display: inline-grid;
    vertical-align: middle;
}
.spiner_button .spiner {
    height: 15px;
    width: 15px;
    position: relative;
    -webkit-animation: spinner 1s infinite linear;
    -moz-animation: spinner 1s infinite linear;
    -o-animation: spinner 1s infinite linear;
    animation: spinner 1s infinite linear;
    border-left: 1px solid #6b8e74;
    border-right: 1px solid #6b8e74;
    border-bottom: 1px solid #d4d4c9;
    border-top: 1px solid #6b8e74;
    border-radius: 100%;
    font-size: 0;
    color: hsla(0,0%,100%,.6);
}
.disabled_cursor {
    cursor: not-allowed;
    pointer-events: none;
}
.display_front_nav_header3 {
    float: right;   
    text-align: right;
}
.bg_white {
    background-color: white;
}
#header_nav {
    background: white;
}
#header_nav ul:not(.product_result_list_search) {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
#header_nav ul li {
    display: block;
    float: left;
    padding: 26px 0 0 30px;
}
#header_nav ul li a {
    display: block;
    transition: .2s;
    color: #58595b;
    font-weight: bold;
    font-size: 1.3rem;
    text-decoration: none;
}
#header_nav  ul li a:hover {
    text-decoration: underline;
}
.hide-on-med-and-down {
    display: initial;
}

.h3_div {
  color: grey;
  text-transform: uppercase;
  margin: 0px;
  border-bottom: solid 1px #2222;
  margin-bottom: 25px;
  padding: 5px;
}
.btnFullWidth{
    width:100%;
}
.disabled{
    cursor:not-allowed !important;
}
.no_quantities_div span, .no_quantities_div i{
    vertical-align: middle;
}
#faceted_search .collapsible {
    padding: 10px;
    user-select: none;
}
#faceted_search .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}
#faceted_search .collapsible.active:after {
    content: "\2212";
}
#faceted_search .collapsible h4 {
    padding: 0px;
    margin: 0px;
}
.right-nav {
    position: absolute;
    right: 0px;
}
.menu_form_back {
    display: block;
}
.inline-table-middle{
  display: inline-table;
  vertical-align: middle;
}
.description_product_container_front h2 {
    margin:  0px;
}
.description_product_container_front {
    padding-left: 25px;
}
.description_product_container_front .itivos_combinations_links_content {
    padding-left: 0px;
}
.product-miniature-description-content {
    position: absolute;
    background-color: white;
    z-index: 99;
}
.product-miniature-description-content .product-name {
    text-transform: uppercase;
}
.tab_container {
    background-color: white;
    margin-top: 80px;
    box-shadow: var(--shadow);
    margin-bottom: 80px;
}
.tab_menu {
    padding: 0px;
    padding-left: 10px;
    margin: 0px;
}
.tab_menu li {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
    color: #58595b;
    font-weight: bold;
}
.tab_content {
    padding: 10px;
    border-top: 0px;
}
.tab_contents {
    display: none;
}
.active_tab { 
    border-bottom: solid 2px var(--primary_color);
    background-color: white;
    color: var(--primary_color) !important;
}
#features_product_content {
    padding-top: 20px;
}
.combinations {
    transition: all 0.3s;
    position: absolute;
    bottom: 2px;
    background-color: white;
    width: 100%;
}
.current_combination_select {
    border-style: double !important;
    border-width: 2px !important;
    opacity: 1 !important;
    width: 35px !important;
    height: 35px !important;
}
.itivos_combinations_links_content {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20p;
}
.itivos_combinations_links_content li{
    display: inline-grid;
    vertical-align: middle;
}
.itivos_combinations_links_content li a {
    transition: all 0.3s;
    opacity: 0.7;
}
.itivos_combinations_links_content li a:hover {
    opacity: 1;
}
.itivos_combinations_div {
    width: 30px;
    height: 30px;
    border: solid 1px #ccc;
}
.name_combinations {
    text-transform: capitalize;
    display: block;
    font-size: 12px;
}
.description_long_container {
    background-color: white;
}
#searchbar_content {
    position: relative;
}
#searchbar_content input{
    width: 100%;
    max-width: 150px;
}
#searchbar_content a {
    vertical-align: middle;
}
.button_search_itivos span[class="label"] {
    display: initial;
}
#searchbar_content i{
    display: inline-grid;
    vertical-align: middle;
    max-width: 30px;
    font-weight: bold;
}
#cancel_content_search {
    display: inline-block;
    vertical-align: middle;
    float: right;
}
#cancel_content_search button{
    height: 30px;
    padding-left: 20px;
    padding-right: 20px;
    text-transform: capitalize;
}
#search_form_itivos {
}
#search_form_itivos input {
    max-width: 100%;
}
.show_form_search {
    top: 0px !important;
}
.show_results_search {
    display: none;
}
.fake_input_search_content {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: white;
    border-radius: 5px;
    margin-left: 5px;
    margin-right: 5px;
}
.fake_input_search_content #content_input input{
    height: 50px;
}
.fake_input_search_content #content_close {
    width: 40px;
}
#content_input_search_mobile {
    border-bottom: solid 1px #1111;
}
#content_close {
    width: 60px;
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}
#content_input {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 65px);
}
#content_input input {
    width: 100%;
    height: 60px;
    border: none;
    padding-left: 10px;
    padding-right: 20px;
    background-color: white !important;
    outline: none !important;
}
#content_input input:focus {
    border: none;
}
#recent_searches_content h3 {
    padding-left: 10px;
}
#content_form_search {
    transition: all 0.5s;
    position: absolute;
    z-index: 9999;
    top: -70px;
    background-color: white;
    height: 60px !important;
    width:  100%;
    max-width: 1000px;
    right: 16px;
    text-align: right;
    padding: 0px;
    margin: 0px;
    align-items: inherit;
    text-align: center;
    padding-top: 17px;
    text-align: right;
}
#content_form_search input[type=search]:focus-visible {
    border: solid 1px #333;
    outline: none;
}
#content_form_search input[type=search] {
    border: solid 1px #333;
    padding: 5px;
    height: 30px;
    width: 403px;
}
#content_form_search input[type=search]:focus {
    border: solid 1px #1a71b1;
}
.modal-instance .products_result_search_bar{
    position: initial;
    z-index: initial;
    top: initial;
}
.modal-instance #count_total_product_search span {
    display: none;
}
.modal-instance #count_total_product_search {
    text-align: center;
}
.modal-instance #count_total_product_search a.right {
    float: initial;
}
.modal-instance .product_result_list_search li a:hover {
    background-color: initial !important;
}
.modal-instance .product_result_list_search li a:hover .product-miniature-description-list-search .product-name {
    color: initial;
}
.modal-instance .product_result_list_search li a:hover .product-miniature-description-list-search .product_sku {
    color: initial;
}
.products_result_search_bar {
    position: absolute;
    z-index: 9999;
    background: white;
    top: 50px;
    max-width: 350px;
    right: 110px;
}
#content_form_search_ {
    display: inline-block;
    vertical-align: middle;
}
.overflow_hidden {
    overflow: hidden;
}
a > i {
    vertical-align: middle;
    display: inline-block;
}
/*
.center-spiner {
  top: 50%;
  left: 50%;
  align-items: center;
  text-align: center;
  position: absolute;
  padding: 5px;
}
*/
.spiner {
  height: 43px;
  width: 43px;
  position: relative;
  -webkit-animation: spinner 1s infinite linear;
  -moz-animation: spinner 1s infinite linear;
  -o-animation: spinner 1s infinite linear;
  animation: spinner 1s infinite linear;
  border-left: 4px solid #8c8c85;
  border-right: 4px solid #8c8c85;
  border-bottom: 4px solid #d4d4c9;
  border-top: 5px solid #8c8c85;
  border-radius: 100%;
  font-size: 0;
  color: hsla(0,0%,100%,.6);
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
#loading_div {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  top: 0px;
  left: 0px;
}
*/

.itivos_ajax_loading {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
}
.itivos_ajax_loading div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #fff;
  animation: itivos_ajax_loading 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.itivos_ajax_loading div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.itivos_ajax_loading div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.itivos_ajax_loading div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes itivos_ajax_loading {
  0% {
    top: 8px;
    height: 64px;
    background-color: var(--primary_color);
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}
.filter_ul {
    padding: 5px;
    margin: 0px;
    margin-top: 10px;
}
.filter_ul li{
    display: inline-grid;
}
.filter_ul li span{
    display: inline-flex;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.filter_block span, .filter_block i {
    vertical-align: middle;
}
.js_active_filters {
   
}
.div_message {
    margin-top: 20px;
    padding: 20px;
}
#order_by_content {
    width: 100%;
    max-width: 350px;
}
#category_header {
    min-height: 50px;
    height: 100%;
}
#total_products_count {
    vertical-align: middle;
    display: inline-block;
}
#total_products_count span{
    padding: 5px;
}
#total_products_count a {
    text-decoration: none;
}
#product_view_type {
    display: inline-block;
    vertical-align: middle;
}
.product-miniature.list {
    border-radius: initial;
    border-bottom: solid 1px #1111;
    box-shadow: var(--shadow);
    max-width: 100% !important;
    display: block;
    box-shadow: initial;
    margin: 0px;
}
#category_footer {
    margin-bottom: 50px;
}
#faceted_search.mobile {
    display: none;
}
#faceted_search {
    background-color: white;
    padding: 10px;
    border-radius: var(--border-radius-div);
    box-shadow: var(--shadow);
}
#faceted_search ul{
    list-style: none;
    padding: 0px;
}
#faceted_search ul li {
    margin-bottom: 2px;
}
#faceted_search ul li label{
    cursor: pointer;
    text-transform: capitalize;
    text-decoration: none;
    font-size: 12px;
}
#faceted_search ul li label span:hover{
    text-decoration: underline;
}
.faceted_search_list {
    display: inline-block;
    vertical-align: middle;
    margin-top: 0px;
    margin-bottom: 0px;
}
.faceted_search_category_no_wrap span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    width: 190px;
    padding: 0px;
    margin: 0px;
    padding-left: 5px;
}
#categories_mobile .faceted_search_category_no_wrap span {
    min-width: 230px;
}
#count_total_product_search {
    padding: 20px;
    width: 100%;
}
.product-miniature.grid .product-miniature-img{

}
.product-miniature-img-list-search {
    max-width: 56px;
    display: inline-grid;
    padding: 5px;
    vertical-align: middle;
}
.product-miniature-description-list-search {
    display: inline-grid;
    vertical-align: middle;
}
.product-miniature-description-list-search .product-name {
    text-transform: uppercase;
}
.product_result_list_search {
    margin: 0px;
    padding: 0px;
}
.product_result_list_search li {
    display: block !important;
    border-block-end: solid 1px #1111;
    float: initial !important;
    padding: initial !important;
}
.product_result_list_search li a {
    padding: 0px !important;
    text-decoration: none;
}
.product_result_list_search li a:hover {
    background-color: red;
    text-decoration: none !important;
}
.product-miniature-description-list-search .product_sku{
    display: block;
    font-size: 10px;
    color: black;
    font-weight: bold;
}
#type_view_content_mobile {
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 150px;
}
#type_view_content_mobile li{
    border-top: solid 5px #1111;
    border-bottom: none;
}
#type_view_content_mobile li a:after{
    content: "" !important;
}
.buttons_type.active {
    color: black !important;
}
.product-miniature {
    transition: all 0.1s;
    width: 100%;
    max-width: 270px;
    display: inline-grid;
    box-shadow: var(--shadow);
    background-color: white;
    margin-inline-end: 2px;
    border-radius: var(--border-radius-div);
}
.product-miniature.grid:hover {
    box-shadow: 2px 2px 8px 0 rgb(0 0 0 / 50%);
}
.product-miniature:hover .combinations {
    bottom: 100px !important;
    z-index: initial !important;
    border-top: solid 1px #ccc;
}
.content-miniature {
    position: relative;
}
.content-miniature a {
    text-decoration: none;
    color: initial;
}
.product-miniature-description {
    padding: 20px;
    background-color: white;
    width: 270px;
    height: 97px;
}
.product-miniature.grid .product-miniature-description {
    border-radius: var(--border-radius-div);
}
.product-miniature.grid .product_img_content{
    padding: 10px;
}
.container_images {
    transition: 0.4s;
}
.product-miniature.grid .product-name {
    display: block;
    color: #999;
    font-size: 12px;
    font-weight: 400 !important;
    width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-name {
    font-size: 20px;
    color: #222;
    font-weight: 300;
}
.product-miniature.list .content-miniature .product-miniature-description-no-wrap {
    padding-left: 25px;
    padding-top: 10px;
    display: inline-block;
    text-align: justify;
    vertical-align: top;
    width: 100%;
    max-width: 620px;
    padding-right: 25px;
}
.product-miniature.list .content-miniature .product-miniature-img {
    max-width: 150px;
    display: inline-block;
    margin: 25px;
}
.product-miniature.list .itivos_drall_line-through {
    display: block;
    color: #999;
    font-size: 12px;
    font-weight: 400 !important;
}
.product-miniature.grid .itivos_drall_line-through {
    color: #999;
    font-size: 11px !important;
    font-weight: 300 !important;
    display: block;
}
.product-miniature.grid .product-price {
    font-size: 16px;
}
.product-miniature.grid .product-miniature-description-content {
    bottom: 20px;
}
.product-miniature-description-no-wrap {
    display: none;
}
.product-miniature-description-no-wrap .product-name{
    /*
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    */
    text-align: left;
    margin: 0px;
    padding-top: 10px;
}
.label_attribute {
    text-transform: capitalize;
}
.product-price {
    bottom: 5px !important;
    font-size: 24px;
    font-weight: 400;
    color: #333;
}
.current-price {
    margin-top: 15px;
}
.price {
    font-size: 16px;
}
#div_load_more_products {
    align-items: center;
    text-align: center;
}
.img-default-product {
    max-width: 100%;
}
.slider-nav-container {
    float: left;
    padding-top: 25px;
}
.slider-product-container {
    float: left;
    padding-left: 10px;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-prev:before, .slick-next:before {
  font-size: 20px !important;
  color: #222 !important;
}
.slider-nav > .slick-list img {
  cursor: pointer;
  opacity: 0.4;
  padding-top: 5px;
}
.slick-list img:hover {
  transition: 0.6;
  opacity: 1;
}
.slick-current  {
  opacity: 1 !important; 
}

/* Popup container - can be anything you want */
.content_popup {
    display: table;
}
.popup {
  position: fixed;
  z-index: 99;
  display: none;
  padding: 2px;
  top: 20%;
  right: 5%;
}
.popuptext {
  position: relative;
  padding: 10px;
  border-left: 0px;
  padding: 15px;
  margin: 0px;
  display: table-cell;
}
.icon_message_success {
  position: relative;
  padding: 10px;
  border-radius: 0px;
  border: solid 1px #84b856;
  color: white;
  display: table-cell;
  vertical-align: middle;
  background: #84b856;
  border-right: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.icon_message_danger {
  position: relative;
  padding: 10px;
  padding-top: 13px;
  border-radius: 0px;
  border: solid 1px #721c24;
  color: white;
  display: table-cell;
  vertical-align: middle;
  background: #721c24;
  border-right: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.success {
  background: #dff0d8;
  color: #3c763d;
}
.danger {
  color: #721c24;
  background-color: #f8d7da;
  border: solid 1px #721c24;
}
.info {
  color: #2179c1; 
  background: #dee9f2;
}

.btn_close {
  position: absolute;
  float: right;
  right: 10%;
  background: red;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  margin-top: -30px;
  margin-right: -20px;
  cursor: pointer;
  padding: 7px;
  background: white;
  border: solid 1px #ccc;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
blockquote {
  padding-left: 20px;
  min-height: 55px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: white;
  border: solid 1px #1111 !important;
}
blockquote[class="blockquote_one"] {
  border-left: solid 5px #35cc99 !important;
}
blockquote[class="blockquote_two"] {
  border-left: solid 5px #567273 !important;
}
.add_comment_view {
  display: none;
}
.content_fullname {
}
.text_list {
  padding-left: 15px;
  margin: 0px;
  margin-top: 10px;
  position: absolute;
}
.img_profile_miniature {
  max-width: 40px;
  border-radius: 50%;
  width: 100%;
}
#form_add_comment {
  padding-bottom: 25px;
}
a {
    color: var(--primary_color);
}
.left_35 {
    padding-left: 35% !important;
}
#logo {
    text-decoration: none;
}
#logo img{
    width: 100%;
    max-width: 150px;
    display: block;
}
#logo-mobile {
    max-width: 145px;
    width: 100%;
    position: absolute;
    top: 17px;
    left: 80px;
}
#header_top {
  margin-bottom: 0px;
}
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  padding-left: 0px;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
  font-size: 10px;
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #428bca;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  text-decoration: underline;
}
#menu-horizontal {
    box-shadow: 0px 0px 0px -3px #d9d2d9 !important;
    border-bottom: solid 1px #1111;
}
.panels_div {
    transition: 0.2s;
    margin-top: 10px;
    text-align: center;
    background-color: white;
    box-shadow: 1px 1px 1px 0px rgb(0 0 0 / 10%);
}
.panels_div:hover {
    box-shadow: 2px 2px 2px 0px rgb(0 0 0 / 20%);
}
.panels_div a {
    padding: 20px;
    display: block;
    color: #4c4e5d;
    text-decoration: none;
}
.panels_div i {
    color: #4c4e5d;
}
.panels_div span {
  display: block;
  margin-bottom: 20px;
}
.wrapper {
    background-color: white;
    padding: 10px;
    margin-top: 20px;
}
.wrapper-menu {
    background-color: white;
    padding: 10px;
    margin-top: 20px;  
    margin-right: 20px;
}
.botones_table {
  background: none !important;
  padding: 5px;
  cursor: pointer;
  border: solid 1px var(--primary_color); !important;
}
.botones_table:hover i {
  color: white;
}
.botones_table:hover {
  background-color: var(--primary_color); !important;
}
.botones_table span {
  color: var(--primary_color);;
}
.buttons_actions_table {
  color: #b2b2b2;
  padding: 10px;
}
.buttons_actions_table .edit {
  color: white;
}
.buttons_actions_table .edit:hover {
  color: #577374;
}
.border-button {
  color: #03b196 !important;
  background: white;
  border: solid 1px #03b196 !important;
  -webkit-box-shadow: none !important;
}
.border-button:hover {
  background: #03b196;
  color: white !important;
}
button.botones_table.disabled span {
  color: #b2b2b2 !important;
}
button.botones_table.disabled  {
  border: solid 1px #b2b2b2 !important;
}
button.botones_table.disabled:hover {
  background: none !important;
}
button.botones_table.disabled:hover i {
  color: #b2b2b2 !important;
}
table.dataTable.hover tbody tr:hover i {
  transition: 0.2s;
}
table.dataTable.hover tbody tr:hover i.delete {
  color: red;
}
table.dataTable.hover tbody tr:hover i.edit {
  color: #03b196;
}
table tr:nth-child(even){background-color: #f2f2f2;}
table tr td {
    padding: 1px;
    padding-left: 5px;
}
table {
    width: 100%;
}
table tr td.title_feature {
    font-size: 13px;
    font-weight: bold;
}
.kpi {
    margin-bottom: 20px;
}
.pointer {
    cursor: pointer;
}
#name_container_mobile {
    display: none;
}
#name_container_desktop {
    display: block;
}
.displayFrontNavHeader2 {
    display: inline-block;
    padding-left: 20px;
    position: relative;
}
.displayFrontNavHeader1 {
    float: left;
}
#btn-menu {
    display: none;
}
#brand_logo {
    display: inline-block;
}
/*CATALOGUE*/
#faceted_search ul {
  list-style: none;
  padding: 0px;
}

#faceted_search ul li label {
  cursor: pointer;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 12px;
}
#faceted_search ul li label span{
    vertical-align: middle;
}
.js_active_filters {
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #dededd;
    padding: 10px;
}
.filter_block {
  margin-right: .625rem;
  margin-bottom: .625rem;
  background: #fff;
  padding: .625rem;
  display: inline-block;
  cursor: pointer;
  font-size: 1.5rem;
  color: #686464;
  font-weight: 300;
}
#type_product {
    margin-bottom: 50px;
}
/*END CATALOGUE*/
/* END SYSTEM*/

.border_table {
  border-collapse: collapse;
  width: 100%;
}
.border_table thead tr th {
  text-transform: uppercase;
  font-size: 11px;
}
.border_table tbody td {
  position: relative;
  border: 1px solid #ddd;
  padding: 5px;
  color: grey;
  font-size: 12px;
}
.border_table button {
  margin: 0px !important;
}
.center_table_empty {
  text-align: center;
}
.current_page_pagination {
  padding: 10px;
}
.td_buttons_row {
  min-width: 130px;
  padding: 10px !important;
}
.td_buttons_row .button {
  margin-right: 10px;
  display: inline;
}
.table_pagination {
  text-align: right;
}
.table_pagination li {
  display: inline-block;
}
.table_pagination li a{
  display: block;
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
  padding: 10px;
  color: grey;
  opacity: .8;
}
.table_pagination li.current_page a{
  opacity: 1;
  color: #222;
}
.table_pagination li.current_page{
  border: solid 1px #ccc;
}
.table_pagination li:hover a{
  opacity: 1;
  color: #222;
}
.table_rendered_content_div #header_table{
  height: 50px;
  vertical-align: middle;
  display: table;
  width: 100%;
  margin-bottom: 25px;
  margin-top: 25px;
}
#footer_table_content .show_per_page {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}
#header_table .search_bar {
  display: table-cell;
  text-align: right;
  vertical-align: middle; 
}
#cancel_search {
  cursor: pointer;
  float: left;
  padding-top: 5px;
  color: #428bca;
  opacity: .8;
}
.dataTables_wrapper .dataTables_filter input[type=search] {
    padding: 10px;
    min-width: 250px;
    height: 35px;
    padding: 6px;
}
#cancel_search span, #cancel_search i {
  vertical-align: middle;
}
#cancel_search:hover {
  opacity: 1;
}
#header_table .search_bar input[type="search"] {
  float: left;
  width: 350px;
  height: 40px;
  border: solid 1px #1111;
  margin: 0px;
  padding-left: 10px;
}
#header_table .search_bar input[type="search"]:focus-visible {
    outline: none;
}
#header_table .search_bar input[type="search"]:hover {
    background-color: white !important;
}
#header_table .search-container {
  float: left;
}
#header_table input[type=text] {
  padding: 6px;
  font-size: 17px;
  border: none;
}
#header_table .search-container button {
  float: right;
  padding: 5px;
  margin-right: 16px;
  background: white;
  font-size: 16px;
  border: solid 1px #ddd;
  cursor: pointer;
}
#header_table .search-container button:hover {
  background: #ccc;
}
.footer_table_content .show_per_page select{
  max-width: fit-content !important;
}
.footer_table_content {
  display: table;
  width: 100%;
  margin-top: 20px;
}
.footer_table_content .footer_table_all_records {
  display: table-cell;
  text-align: right;
}
.footer_table_pagination {
  text-align: right;
  display: table-cell;
  vertical-align: middle;
}
.modal{
    display:none;
    background-color:#fff;
    padding:10px
}
.modal-header{
    border-bottom:solid 1px #fbefef
}
.modal-content{
    padding-bottom:10px
}
.modal-footer{
    height:35px
}
.modal-footer a{
    float:right;
    display:inline-grid
}
.slider ul{
    list-style:none
}
.slider{
    padding:50px
}
.fondoElementosSlider{
    padding:5px;
    background-color:rgba(0,0,0,.5);
    color:#fff;
    width:100%;
    max-width:350px
}
#btnSliderBottom{
    margin:10px
}
.controlSli{
    cursor:pointer;
    color:#f5f2f0;
    border:solid 1px grey;
    width:20px;
    height:20px;
    margin:10px;
    display:inline-grid;
    border-radius:50%
}
.activoSli{
    background-color:#0e58a2;
}
.botonDerecha{
    display:none;
    position:relative;
    top:48%;
    float:right;
    font-size:3em;
    color:#fff;
    cursor:pointer
}
.botonDerecha:hover{
    font-size:4em
}
.botonIzquierda{
    display:none;
    position:relative;
    top:48%;
    float:left;
    font-size:3em;
    color:#fff;
    cursor:pointer
}
.botonIzquierda:hover{
    font-size:4em
}
.error_field {
    border-bottom: solid 1px red !important;
}
input{
    border: none;
    color: #666;
    background-color: white;
    border-bottom: solid 1px #ccc;
}
select {
    border: none;
    color: #666;
    background-color: white;
    border-bottom: solid 1px #ccc;   
}
fieldset{
    border:solid 1px #ccc
}
input:hover:not(.button) {
}
input[type=text]{
    padding:5px;
    height:30px;
    width:100%;
    max-width:350px;
    margin-bottom:15px;
}
input[type=number]{
    padding:5px;
    height:30px;
    width:100%;
    max-width:350px;
    margin-bottom:15px;
}
input[type=number]:focus{
    outline:none;
    border-bottom:solid 1px var(--primary_color);
}
input[type=text]:focus{
    outline:none;
    border-bottom:solid 1px var(--primary_color);
}
input[type=text]:hover{
    border-bottom:solid 1px var(--primary_color);
}
input[type=date]{
    padding:5px;
    height:30px;
    width:100%;
    max-width:150px;
}
input[type=date]:focus{
    outline:none;
    border-bottom:solid 1px var(--primary_color);
}
input[type=email]{
    padding:5px;
    height:30px;
    width:100%;
    max-width:350px;
    margin-bottom:15px;
}
input[type=email]:focus{
    outline:none;
    border-bottom: solid 1px #03b196;
}
input[type=email]:hover{
    border-bottom:solid 1px var(--primary_color);
}
input[type=password]{
    padding:5px;
    height:30px;
    width:100%;
    max-width:350px;
    margin-bottom:15px
}
input[type=password]:focus{
    outline:none;
    border-bottom:solid 1px var(--primary_color);
}
input[type=password]:hover{
    border-bottom:solid 1px var(--primary_color);
}
input[disabled]{
    cursor:not-allowed
}
textarea[disabled]{
    cursor:not-allowed
}
select[disabled]{
    cursor:not-allowed
}
select{
    padding:5px;
    height:36px;
    width:100%;
    max-width:262px;
    margin-bottom:15px
}
select:focus{
    outline:none;
    border-bottom:solid 1px var(--primary_color);
}
select:hover{
    border-bottom:solid 1px var(--primary_color);
}
textarea{
    padding:5px;
    height:100px;
    width:100%;
    max-width:350px;
    margin-bottom:15px;
    border:solid 1px #ccc;
}
textarea:focus{
    outline:none;
    border-bottom:solid 1px var(--primary_color);
}
textarea:hover{
    border-bottom:solid 1px var(--primary_color);
}
input[type=checkbox]{
    width:15px;
    height:15px
}
.switch{
    position:relative;
    display:inline-block;
    width:48px;
    height:22px
}
.switch input{
    opacity:0;
    width:0;
    height:0
}
.checkSlider{
    position:absolute;
    cursor:pointer;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#ccc;
    -webkit-transition:.4s;
    transition:.4s
}
.checkSlider:before{
    position:absolute;
    content:"";
    height:15px;
    width:15px;
    left:4px;
    bottom:4px;
    background-color:#fff;
    -webkit-transition:.4s;
    transition:.4s
}
input:checked+.checkSlider{
    background-color:#03b196
}
input:focus+.checkSlider{
    box-shadow:0 0 0 #03b196
}
input:checked+.checkSlider:before{
    -webkit-transform:translateX(26px);
    -ms-transform:translateX(26px);
    transform:translateX(26px)
}
.checkSlider.redondeadoCheck{
    border-radius:34px
}
.checkSlider.redondeadoCheck:before{
    border-radius:50%
}
.contentCheck{
    position:relative;
    padding-left:35px;
    cursor:pointer;
    margin-bottom:12px;
    display:block;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none
}
.contentCheck input{
    position:absolute;
    opacity:0;
    cursor:pointer;
    height:0;
    width:0
}
.checkActivo{
    position:absolute;
    top:0;
    left:0;
    height:22px;
    width:22px;
    border:solid 1px #ccc
}
.contentCheck input:checked~.checkActivo{
    background-color: var(--primary_color);
    border:0
}
.checkActivo:after{
    content:"";
    position:absolute;
    display:none
}
.contentCheck input:checked~.checkActivo:after{
    display:block
}
.contentCheck .checkActivo:after{
    left:9px;
    top:5px;
    width:5px;
    height:10px;
    border:solid #fff;
    border-width:0 3px 3px 0;
    -webkit-transform:rotate(45deg);
    -ms-transform:rotate(45deg);
    transform:rotate(45deg)
}
.entradasForms{
    width:100%;
    max-width:350px;
    margin-bottom:5px
}
.entradasForms input,select,textarea{
    margin-bottom:2px;
}
.entradasForms h2 {
    text-transform: uppercase;
}
.button {
    transition:0.6s;
    color:#fff;
    cursor:pointer;
    text-decoration:none;
    border-style:none;
    padding:5px;
    margin:5px;
    opacity:0.8;
    -webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2);
    box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)
}
.button > span {
  vertical-align: middle;
}
.button:not(.hidden_form_search) > i {
  vertical-align: middle;
}
.button:hover {
  text-decoration: none;
  transition: 0.4s;
  opacity: 1.5;
}
.button-secundary, .button-secondary {
    background-color: var(--secondary-color);
    color: white;
}
.boton, .button{
    color:#fff;
    cursor:pointer;
    text-decoration:none;
    border-style:none;
    padding:5px;
    margin:5px;
    opacity:0.9;
    box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.12),0 1px 5px 0 rgba(0,0,0,.2)
}
.boton:hover, .button:hover{
    text-decoration:none;
    transition:.4s;
    opacity:1
}
.boton-primario, .button-primary{
    background-color: var(--primary_color);
}
.boton-aceptar{
    background-color:#28a745
}
.boton-aceptar:hover{
    background-color:#1e7e34
}
.boton-cancelar{
    background-color:#dc3545
}
.boton-cancelar:hover{
    background-color:#c82333
}
.boton-alerta{
    color:#212529;
    background-color:#ffc107
}
.boton-alerta:hover{
    background-color:#d39e00
}
.boton-ligero{
    color:#000;
    background-color:#deedf9c4
}
.boton-ligero:hover{
    background-color:#deedf9
}
.boton-negro{
    background-color:#000
}
.peque{
    padding:2px
}
.grande{
    padding:10px
}
.deForma{
    width:100%;
    max-width:250px
}
.button_full_with {
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: 100%;
}
.divisor{
    width:2px;
    border-top:solid 1px #f9f9f9
}
.right{
    float:right
}
.left{
    float:left
}
.derecha{
    float:right!important
}
.izquierda{
    float:left!important
}
.derecha-text{
    text-align:right
}
.izquierda-text{
    text-align:left
}
.centro-text{
    text-align:center
}
.ocultar{
    display:none
}
.menuNormal{
    display:none
}
#menu-horizontal{
    -webkit-box-shadow:7px 7px 20px -3px #d9d2d9;
    -moz-box-shadow:7px 7px 20px -3px #d9d2d9;
    box-shadow:7px 7px 20px -3px #d9d2d9
}
#menu-horizontal ul{
    list-style-type:none;
    margin:0
}
#menu-horizontal ul li{
    display: inline-block;
}
#menu-horizontal ul li a{
    text-decoration:none
}
.botonMenu{
    text-decoration:none;
    position:relative;
    display:inline-grid;
    cursor:pointer;
    padding-right: 15px;
}
.navBar .botonMenu {
    padding-top: 5px;
    padding-right: 8px;
    display: block;
    text-align: right;
}
.navBar .botonMenu a i{
    font-size: 32px;
    font-weight: bold;
}
.logo{
    max-width:100%;
    max-width:100px;
    padding-top:12px;
    height:auto;
    float:right
}
.navBar{
    position: fixed;
    top: 0;
    background-color: #fff;
    height: 100%;
    width: 100%;
    z-index: 9999;
    color: #484242;
    overflow-x: hidden;
    transition: all .2s;
}
.navBar::-webkit-scrollbar{
    width:5px
}
.navBar::-webkit-scrollbar-thumb{
    background:grey
}
.navBar::-webkit-scrollbar-track{
    background:#fff
}
.navHide{
    right: 0px;
    width: 0px;
}
.navShow{
    right: 0px;
}
.hijo{
    display:none;
    background-color:rgba(51,51,51,.02)
}
.hijo li>a{
    padding-left:20px!important
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
    background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}
.hijoDropdown{
    border:solid 1px #222;
    position:absolute;
    padding:0;
    background-color:#fff
}
.hijoDropdown ul li{
    list-style:none;
    border-bottom:solid 1px #ccc
}
.hijoDropdown ul li a{
    text-decoration:none;
    padding:5px
}
.lisDrop{
    padding:0;
    margin:0
}
.clearNavModal{
    padding-left:25%;
    padding-right:25%;
    padding-top:5%;
    left:0;
    display:block;
    height:100%;
    width:100%;
    background-color:rgba(0,0,0,.48);
    position:fixed;
    top:0;
    z-index:98
}
#clearNav{
    display:none;
    height:100%;
    width:100%;
    background-color:rgba(0,0,0,.48);
    position:fixed;
    top:0;
    z-index:98
}
.listBar{
    text-decoration:none;
    list-style:none;
    padding-left:0;
    margin-top:10px;
    margin-bottom:10px
}
.listBar li a{
    text-decoration:none;
    color:#484242;
    display:block;
    padding: 10px;
    font-weight: bold;
    font-size: 20px;
}
.listBar li a:hover{
    background-color:#ebebeb
}
.listBar li.login_link {
    float: initial !important;
}
.listBar li i {
    display: none;
}
.padding-left10{
    padding-left:10px
}
.padding-top10{
    padding-top:10px
}
.margin-top10{
    margin-top:10px
}
.espacio-arriba10{
    padding-top:10px
}
footer{
    bottom:0;
    padding: 0px;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: white;
    margin-top: 20px;
}
footer a{
    text-decoration:none
}
footer ul{
    list-style:none!important
}
footer .all_rights {
    text-align: center;
    border-top: solid 1px #1111;
    padding-top: 70px;
}
.displayFrontFooter4 {
    text-align: right;
}
.displayFrontFooter4 ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.displayFrontFooter4 ul li{
    display: inline-grid;
    padding-left: 10px;
    text-align: right;
}
.iconDrop{
    color:#908787;
    font-size:20px;
    vertical-align: middle;
}
.navNegro{
    background-color:#000
}
.navNegro ul li a{
    color:#fff
}
.navNegro ul li a:hover{
    background-color:#2b2929
}
.navBlanco{
    background-color:#fff
}
.navBlanco ul li a{
    color:#000;
    display:block
}
.navBlanco ul li span {

}
.navBlanco ul li:hover {
    background-color: #8080801a;
}
.navTurquesa{
    background-color:#018174
}
.navTurquesa ul li a{
    color:#fff
}
.navTurquesa ul li a:hover{
    background-color:#108c7f
}
.bg-black{
    background-color:#000
}
.fondo-negro{
    background-color:#000
}
.white-text{
    color:#fff
}
html{
    font-family:sans-serif;
    -ms-text-size-adjust:100%;
    -webkit-text-size-adjust:100%
}
*{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
}
*:before,*:after{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box
}
html{
    font-size:10px;
    -webkit-tap-highlight-color:transparent
}
.img-responsive{
    display:block;
    max-width:100%;
    height:auto
}
.container{
    margin-right:auto;
    margin-left:auto;
    padding-left:15px;
    padding-right:15px
}
.fondoFormas{
    background-color:#ddd;
    padding:10px
}
.ocultar-en-movil{
    display:none
}
.ocultar-en-tablet{
    display:inline-grid
}
@media(min-width:599px){
    .ocultar-en-movil{
        display:inline-grid
    }
}
@media(min-width:768px){
    .ocultar-en-tablet{
        display:none
    }
    .container{
        width:750px
    }
    .botonMenu{
    }
    .logo{
        float:left
    }
    .menuNormal{
        display:block
    }
    .ocultar-desde-tablet{
        display:inline-grid
    }
}
@media(min-width:992px){
    .container{
        width:970px
    }
    .ocultar-en-tablet{
        display:none
    }
    .ocultar-desde-tablet{
        display:none
    }
}
@media(min-width:1200px){
    .container{
        width:1170px
    }
    .ocultar-en-tablet{
        display:none
    }
    .ocultar-desde-tablet{
        display:none
    }
}
.container-fluid{
    margin-right:auto;
    margin-left:auto;
    padding-left:15px;
    padding-right:15px
}
.row{
    margin-left:0;
    margin-right:0;
    margin-bottom:5px
}
.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{
    position:relative;
    min-height:1px;
    padding-left:15px;
    padding-right:15px
}
.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{
    float:left
}
.col-xs-12{
    width:100%
}
.col-xs-11{
    width:91.66666667%
}
.col-xs-10{
    width:83.33333333%
}
.col-xs-9{
    width:75%
}
.col-xs-8{
    width:66.66666667%
}
.col-xs-7{
    width:58.33333333%
}
.col-xs-6{
    width:50%
}
.col-xs-5{
    width:41.66666667%
}
.col-xs-4{
    width:33.33333333%
}
.col-xs-3{
    width:25%
}
.col-xs-2{
    width:16.66666667%
}
.col-xs-1{
    width:8.33333333%
}
.col-xs-pull-12{
    right:100%
}
.col-xs-pull-11{
    right:91.66666667%
}
.col-xs-pull-10{
    right:83.33333333%
}
.col-xs-pull-9{
    right:75%
}
.col-xs-pull-8{
    right:66.66666667%
}
.col-xs-pull-7{
    right:58.33333333%
}
.col-xs-pull-6{
    right:50%
}
.col-xs-pull-5{
    right:41.66666667%
}
.col-xs-pull-4{
    right:33.33333333%
}
.col-xs-pull-3{
    right:25%
}
.col-xs-pull-2{
    right:16.66666667%
}
.col-xs-pull-1{
    right:8.33333333%
}
.col-xs-pull-0{
    right:auto
}
.col-xs-push-12{
    left:100%
}
.col-xs-push-11{
    left:91.66666667%
}
.col-xs-push-10{
    left:83.33333333%
}
.col-xs-push-9{
    left:75%
}
.col-xs-push-8{
    left:66.66666667%
}
.col-xs-push-7{
    left:58.33333333%
}
.col-xs-push-6{
    left:50%
}
.col-xs-push-5{
    left:41.66666667%
}
.col-xs-push-4{
    left:33.33333333%
}
.col-xs-push-3{
    left:25%
}
.col-xs-push-2{
    left:16.66666667%
}
.col-xs-push-1{
    left:8.33333333%
}
.col-xs-push-0{
    left:auto
}
.col-xs-offset-12{
    margin-left:100%
}
.col-xs-offset-11{
    margin-left:91.66666667%
}
.col-xs-offset-10{
    margin-left:83.33333333%
}
.col-xs-offset-9{
    margin-left:75%
}
.col-xs-offset-8{
    margin-left:66.66666667%
}
.col-xs-offset-7{
    margin-left:58.33333333%
}
.col-xs-offset-6{
    margin-left:50%
}
.col-xs-offset-5{
    margin-left:41.66666667%
}
.col-xs-offset-4{
    margin-left:33.33333333%
}
.col-xs-offset-3{
    margin-left:25%
}
.col-xs-offset-2{
    margin-left:16.66666667%
}
.col-xs-offset-1{
    margin-left:8.33333333%
}
.col-xs-offset-0{
    margin-left:0%
}
@media(min-width:768px){
    .col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{
        float:left
    }
    .col-sm-12{
        width:100%
    }
    .col-sm-11{
        width:91.66666667%
    }
    .col-sm-10{
        width:83.33333333%
    }
    .col-sm-9{
        width:75%
    }
    .col-sm-8{
        width:66.66666667%
    }
    .col-sm-7{
        width:58.33333333%
    }
    .col-sm-6{
        width:50%
    }
    .col-sm-5{
        width:41.66666667%
    }
    .col-sm-4{
        width:33.33333333%
    }
    .col-sm-3{
        width:25%
    }
    .col-sm-2{
        width:16.66666667%
    }
    .col-sm-1{
        width:8.33333333%
    }
    .col-sm-pull-12{
        right:100%
    }
    .col-sm-pull-11{
        right:91.66666667%
    }
    .col-sm-pull-10{
        right:83.33333333%
    }
    .col-sm-pull-9{
        right:75%
    }
    .col-sm-pull-8{
        right:66.66666667%
    }
    .col-sm-pull-7{
        right:58.33333333%
    }
    .col-sm-pull-6{
        right:50%
    }
    .col-sm-pull-5{
        right:41.66666667%
    }
    .col-sm-pull-4{
        right:33.33333333%
    }
    .col-sm-pull-3{
        right:25%
    }
    .col-sm-pull-2{
        right:16.66666667%
    }
    .col-sm-pull-1{
        right:8.33333333%
    }
    .col-sm-pull-0{
        right:auto
    }
    .col-sm-push-12{
        left:100%
    }
    .col-sm-push-11{
        left:91.66666667%
    }
    .col-sm-push-10{
        left:83.33333333%
    }
    .col-sm-push-9{
        left:75%
    }
    .col-sm-push-8{
        left:66.66666667%
    }
    .col-sm-push-7{
        left:58.33333333%
    }
    .col-sm-push-6{
        left:50%
    }
    .col-sm-push-5{
        left:41.66666667%
    }
    .col-sm-push-4{
        left:33.33333333%
    }
    .col-sm-push-3{
        left:25%
    }
    .col-sm-push-2{
        left:16.66666667%
    }
    .col-sm-push-1{
        left:8.33333333%
    }
    .col-sm-push-0{
        left:auto
    }
    .col-sm-offset-12{
        margin-left:100%
    }
    .col-sm-offset-11{
        margin-left:91.66666667%
    }
    .col-sm-offset-10{
        margin-left:83.33333333%
    }
    .col-sm-offset-9{
        margin-left:75%
    }
    .col-sm-offset-8{
        margin-left:66.66666667%
    }
    .col-sm-offset-7{
        margin-left:58.33333333%
    }
    .col-sm-offset-6{
        margin-left:50%
    }
    .col-sm-offset-5{
        margin-left:41.66666667%
    }
    .col-sm-offset-4{
        margin-left:33.33333333%
    }
    .col-sm-offset-3{
        margin-left:25%
    }
    .col-sm-offset-2{
        margin-left:16.66666667%
    }
    .col-sm-offset-1{
        margin-left:8.33333333%
    }
    .col-sm-offset-0{
        margin-left:0%
    }
}
@media(min-width:992px){
    .col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{
        float:left
    }
    .col-md-12{
        width:100%
    }
    .col-md-11{
        width:91.66666667%
    }
    .col-md-10{
        width:83.33333333%
    }
    .col-md-9{
        width:75%
    }
    .col-md-8{
        width:66.66666667%
    }
    .col-md-7{
        width:58.33333333%
    }
    .col-md-6{
        width:50%
    }
    .col-md-5{
        width:41.66666667%
    }
    .col-md-4{
        width:33.33333333%
    }
    .col-md-3{
        width:25%
    }
    .col-md-2{
        width:16.66666667%
    }
    .col-md-1{
        width:8.33333333%
    }
    .col-md-pull-12{
        right:100%
    }
    .col-md-pull-11{
        right:91.66666667%
    }
    .col-md-pull-10{
        right:83.33333333%
    }
    .col-md-pull-9{
        right:75%
    }
    .col-md-pull-8{
        right:66.66666667%
    }
    .col-md-pull-7{
        right:58.33333333%
    }
    .col-md-pull-6{
        right:50%
    }
    .col-md-pull-5{
        right:41.66666667%
    }
    .col-md-pull-4{
        right:33.33333333%
    }
    .col-md-pull-3{
        right:25%
    }
    .col-md-pull-2{
        right:16.66666667%
    }
    .col-md-pull-1{
        right:8.33333333%
    }
    .col-md-pull-0{
        right:auto
    }
    .col-md-push-12{
        left:100%
    }
    .col-md-push-11{
        left:91.66666667%
    }
    .col-md-push-10{
        left:83.33333333%
    }
    .col-md-push-9{
        left:75%
    }
    .col-md-push-8{
        left:66.66666667%
    }
    .col-md-push-7{
        left:58.33333333%
    }
    .col-md-push-6{
        left:50%
    }
    .col-md-push-5{
        left:41.66666667%
    }
    .col-md-push-4{
        left:33.33333333%
    }
    .col-md-push-3{
        left:25%
    }
    .col-md-push-2{
        left:16.66666667%
    }
    .col-md-push-1{
        left:8.33333333%
    }
    .col-md-push-0{
        left:auto
    }
    .col-md-offset-12{
        margin-left:100%
    }
    .col-md-offset-11{
        margin-left:91.66666667%
    }
    .col-md-offset-10{
        margin-left:83.33333333%
    }
    .col-md-offset-9{
        margin-left:75%
    }
    .col-md-offset-8{
        margin-left:66.66666667%
    }
    .col-md-offset-7{
        margin-left:58.33333333%
    }
    .col-md-offset-6{
        margin-left:50%
    }
    .col-md-offset-5{
        margin-left:41.66666667%
    }
    .col-md-offset-4{
        margin-left:33.33333333%
    }
    .col-md-offset-3{
        margin-left:25%
    }
    .col-md-offset-2{
        margin-left:16.66666667%
    }
    .col-md-offset-1{
        margin-left:8.33333333%
    }
    .col-md-offset-0{
        margin-left:0%
    }
}
@media(min-width:1200px){
    .col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{
        float:left
    }
    .col-lg-12{
        width:100%
    }
    .col-lg-11{
        width:91.66666667%
    }
    .col-lg-10{
        width:83.33333333%
    }
    .col-lg-9{
        width:75%
    }
    .col-lg-8{
        width:66.66666667%
    }
    .col-lg-7{
        width:58.33333333%
    }
    .col-lg-6{
        width:50%
    }
    .col-lg-5{
        width:41.66666667%
    }
    .col-lg-4{
        width:33.33333333%
    }
    .col-lg-3{
        width:25%
    }
    .col-lg-2{
        width:16.66666667%
    }
    .col-lg-1{
        width:8.33333333%
    }
    .col-lg-pull-12{
        right:100%
    }
    .col-lg-pull-11{
        right:91.66666667%
    }
    .col-lg-pull-10{
        right:83.33333333%
    }
    .col-lg-pull-9{
        right:75%
    }
    .col-lg-pull-8{
        right:66.66666667%
    }
    .col-lg-pull-7{
        right:58.33333333%
    }
    .col-lg-pull-6{
        right:50%
    }
    .col-lg-pull-5{
        right:41.66666667%
    }
    .col-lg-pull-4{
        right:33.33333333%
    }
    .col-lg-pull-3{
        right:25%
    }
    .col-lg-pull-2{
        right:16.66666667%
    }
    .col-lg-pull-1{
        right:8.33333333%
    }
    .col-lg-pull-0{
        right:auto
    }
    .col-lg-push-12{
        left:100%
    }
    .col-lg-push-11{
        left:91.66666667%
    }
    .col-lg-push-10{
        left:83.33333333%
    }
    .col-lg-push-9{
        left:75%
    }
    .col-lg-push-8{
        left:66.66666667%
    }
    .col-lg-push-7{
        left:58.33333333%
    }
    .col-lg-push-6{
        left:50%
    }
    .col-lg-push-5{
        left:41.66666667%
    }
    .col-lg-push-4{
        left:33.33333333%
    }
    .col-lg-push-3{
        left:25%
    }
    .col-lg-push-2{
        left:16.66666667%
    }
    .col-lg-push-1{
        left:8.33333333%
    }
    .col-lg-push-0{
        left:auto
    }
    .col-lg-offset-12{
        margin-left:100%
    }
    .col-lg-offset-11{
        margin-left:91.66666667%
    }
    .col-lg-offset-10{
        margin-left:83.33333333%
    }
    .col-lg-offset-9{
        margin-left:75%
    }
    .col-lg-offset-8{
        margin-left:66.66666667%
    }
    .col-lg-offset-7{
        margin-left:58.33333333%
    }
    .col-lg-offset-6{
        margin-left:50%
    }
    .col-lg-offset-5{
        margin-left:41.66666667%
    }
    .col-lg-offset-4{
        margin-left:33.33333333%
    }
    .col-lg-offset-3{
        margin-left:25%
    }
    .col-lg-offset-2{
        margin-left:16.66666667%
    }
    .col-lg-offset-1{
        margin-left:8.33333333%
    }
    .col-lg-offset-0{
        margin-left:0%
    }
}
.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{
    content:" ";
    display:table
}
.clearfix:after,.container:after,.container-fluid:after,.row:after{
    clear:both
}
.center-block{
    display:block;
    margin-left:auto;
    margin-right:auto
}
.pull-right{
    float:right!important
}
.pull-left{
    float:left!important
}
.hide{
    display:none!important
}
.show{
    display:block!important
}
.invisible{
    visibility:hidden
}
.text-hide{
    font:0/0 a;
    color:transparent;
    text-shadow:none;
    background-color:transparent;
    border:0
}
.hidden{
    display:none!important
}
.affix{
    position:fixed
}
@media (min-width:320px)  { 
/* smartphones, iPhone, portrait 480x320 phones */ 
}
@media (min-width:481px) { 
/* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ 
}
@media (min-width:641px) { 
/* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ 
}
@media (min-width:961px) { 
/* tablet, landscape iPad, lo-res laptops ands desktops */ 
}
@media (min-width:1025px) { 
/* big landscape tablets, laptops, and desktops */ 
}
@media (min-width:1281px) { 
/* hi-res laptops and desktops */ 
}
@media only screen and (max-width: 600px) {
    /** MOBILE ONLY */
    .brand-logo {
        padding-bottom: 50px;
    }
    .displayFrontFooter3 ul, .displayFrontFooter4 ul {
        padding: 0px;
        margin: 0px;
    }
    .displayFrontFooter3 ul li, .displayFrontFooter4 ul li  {
        display: block;
        text-align: left;
        border-bottom: solid 1px #1111;
        padding: 10px;
        padding-left: 10px;
    }
    footer .all_rights {
        border-top: initial;
    }
    #itivos_social_list_link {
        text-align: left !important;
    }
    .display_front_nav_header3 .menu-item {
        display: none !important
    }
    .button_search_itivos span[class="label"] {
        display: none;
    }
    #search_form_itivos {
        width: initial;
    }
    #content_form_search {
        right: initial;
        left: 0px;
        padding-left: 10px;
        width: 100%;
        text-align: center;
    }
    #content_form_search_ {
        width: calc(100% - 55px);
    }
    #cancel_content_search button {
        padding-left: 10px;
        padding-right: 10px;
    }
    .product-miniature-description-list-search {
        width: calc(100% - 65px);
    }
    .left_35 {
        padding-left: initial !important;
    }
    .wrapper {
        padding: 20px !important;
    }
    .slider-nav-container {
        display: none;
    }
    .description_product_container_front {
        padding-left: 0px;
        padding-top: 25px;
    }
    .breadcrumb_content  {
        display: none;
    }
    .images_product_container_front {
        padding-top: 50px;
    }
    #name_container_mobile {
        display: block;
    }
    #name_container_desktop {
        display: none;
    }
    .login_link a i{
        font-size: 32px;
    }
    .login_link a span{
    }
    .botonMenu i {
        font-size: 32px;
    }
    #searchbar_content i {
        font-size: 32px;
    }
    #cancel_content_search {
        float: initial;
    }
    #header_top {
        margin-right: 15px;
    }
    #menu-horizontal {
        height: 50px;
    }
    .hide-on-med-and-down {
        display: none;
    }
    .displayFrontNavHeader1 {
        position: absolute;
        left: 0px;   
    }
    .display_front_nav_header3 {
        display: inline-block;
        padding-right: initial;
    }
    #header_nav .nav-wrapper ul li {
        padding-left: 25px;
        padding-top: 12px;
        padding-bottom: 3px;
    }
    #logo img {
        max-width: 95px;
    }
    #btn-menu {
        display: inline-block;
    }
    #btn-menu a {
        display: block;
        width: 100%;
        height: 100%;
    }
    #btn-menu a i {
        font-size: 36px;
    }
    #brand_logo {
        vertical-align: middle;
    }
    .product-miniature.list .content-miniature .product-miniature-img {
        margin: 0px;
        width: 100px;
        padding: 5px;
    }
    .product-miniature.list .content-miniature .product-miniature-description-no-wrap {
        width: calc(100% - 100px);
        position: absolute;
    }
    .product-miniature-description-no-wrap .product-name {
        font-size: 10px;
    }
    .product-miniature-description-no-wrap .product-name .sku {
        font-size: 8px;
    }
    .product-miniature.grid {
        max-width: 100%;
    }
    #product_view_type {
        display: none;
    }
    .filter_block {
        padding: 0px;
        width: 100%;
    }
    .filter_ul {
        display: flex;
    }
    .filter_ul li a {
        text-overflow: initial;
        overflow: initial;
    }
    .filter_block span {
        padding: 5px;
    }
    .js_active_filters {
        overflow: auto;
    }
    .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    #total_products_count {
        display: none;
    }
    #category_header { 
        min-height: 1px;
    }
    #target_form_container .button-primary i{
        color: white;
    }
    body[page="home"] #header_nav {
        background: white !important;
    }
}
.button_table_actions{
    cursor: pointer;
}
.no_allow_cursor {
    cursor: not-allowed;
}
#maintenance {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Opcional: ajusta la altura según tus necesidades */
}