/*************************************************************************************
* css/style.css                                                                      *
**************************************************************************************
* Software Name: Tienda Virtual                                                      *
* Software URL: https://www.mvcloud.ar/tienda-virtual                                *
* Software Support: tiendavirtual@mvcloud.ar                                         *
* Software Version: 1                                                                *
* Software Release: 2023                                                             *
* Author Name: MvCloud                                                               *
* Author URL: https://www.mvcloud.ar                                                 *
* Author Support: soporte@mvcloud.ar                                                 *
**************************************************************************************
*                   Copyright 2022 - Todos los derechos reservados                   *
*************************************************************************************/

/* GENERAL */
* {
    font-family: 'Open Sans', Arial;
}

body {
    margin: 0;
    padding: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

img {
    width: 100%;
}

input {
    outline: none;
}

/* CONTENT */
.content, section#blog .content, section#marcas .content {
    width: 90%;
    margin: 0 auto;
}

/* HEADER */
header {
    width: 100%;
    display: table;
    padding: 20px 0;
    z-index: 8;
    position: fixed;
    top: 0;
}

header .content .logo {
    float: left;
    width: 12%;
    text-align: center;
    padding: 0;
}

header .content .logo a img {
    width: 95%;
    text-align: center;
}

header .content .logo a h2 {
    font-size: 48px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

header .content nav {
    float: left;
    width: 58%;
}

header.resp .content .buscador-resp form {
    margin: 40px 8px;
}

header.resp .content .buscador-resp form input {
    width: 80%;
    background-color: white;
    background-image: url("../images/search.png");
    background-position: 12px 8px;
    background-repeat: no-repeat;
    padding: 12px 12px 12px 45px;
    border: 1px solid #eee;
    float: right;
    font-size: 12px;
    border-radius: 50px;
}

header.resp .content .buscador-resp form input {
    float: none;
    margin: 0 auto;
    display: table;
}

header .content .accesos {
    float: right;
    width: 30%;
    padding: px 0;
}

header .content .accesos a {
    float: right;
    font-size: 15px;
    color: royalblue;
    text-transform: uppercase;
    display: table;
    margin-right: 15px;
}

header .content .accesos a img {
    width: 24px;
    height: 24px;
}

header .content .accesos .buscador-no-resp {
    float: right;
    margin: -5px 40px 0 0;
}

header .content .accesos .buscador-no-resp input {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 8px 12px;
}

header.no-resp {
    display: table;
}

header.resp {
    display: none;
    position: relative;
}

header.resp .content a.menu {
    float: left;
    width: 10%;
}

header.resp .content .buscador-resp {
    width: 100%;
}

/* TOOLTIP */
.tooltip {
    position: relative;
}
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 130px;
    background-color: #111;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    font-family: 'Open Sans', Arial;
    font-size: 13px;
    font-weight: 100;
}

.tooltip .right {
    top: 10px;
    left: 125%;
}

.tooltip .left {
    top: -5px;
    right: 165%;
}

.tooltip .top {
    bottom: 40px;
    left: 40%;
    margin-left: -60px;
}

.tooltip .bottom {
    top: 150%;
    left: 40%;
    margin-left: -60px;
}

.tooltip .right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #111 transparent transparent;
}

.tooltip .left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #111;
}

.tooltip .top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
}

.tooltip .bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

/* NAV */
nav .content .logo-nav {
    display: none;
}

nav li {
    float: left;
}

nav li a {
    display: table;
    padding: 15px 18px;
    font-size: 15px;
    color: #fff;
    transition: 0.5s;
    position: relative;
}

nav li a:hover::after, nav li:hover a::after {
    top: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    content: "";
    height: 6px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    transition: all .15s ease;
    width: 6px;
}

nav li ul li a {
    border-radius: 5px;
}

nav li:hover ul li a::after {
    display: none;
}

nav li ul {
    display: none;
    position: absolute;
    background: royalblue;
    z-index: 9;
    left: auto;
    width: auto;
    border-radius: 10px;
}

nav li ul .content {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    display: table;
    border-radius: 10px;
}

nav li:hover > ul {
    display: block;
}

nav li ul li {
    position: relative;
    float: left;
    width: 100%;
    transition: 0.5s;
}

nav li ul li:hover {
    background: rgba(0, 0, 0, 0.5);
}

nav ul li a {
    padding: 15px 18px !important;
}

nav.no-resp {
    display: table;
}

/* LISTAS */
#listas .lista {
    margin: 10px 0 20px 0;
}

#listas .lista hr {
    width: 60%;
}

/* TITLE */
.title {
    margin: 0;
    width: 100%;
    display: table;
}

.title a {
    float: left;
    width: auto;
}

.title a strong {
    font-size: 22px;
    font-family: 'Poppins', Arial;
    font-weight: bold;
    text-transform: none;
    padding: 20px 0;
    display: table;
    float: left;
    color: #333;
}

.title .nav {
    float: right;
    width: auto;
    padding: 20px 0;
}

.title .nav a {
    float: left;
    margin-right: 8px;
}

/* ARTICULOS */
.articulo {
    display: table;
    margin: 5px auto;
    width: 95%;
    position: relative;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 8px 0;
    transition: 0.5s;
    border-radius: 2px;
}

.articulo:hover .foto {
    transform: scale(1.2);
}

.articulo .promo, section#post .content .lt .promo, section#post .content .rt .marca, section#post .content .rt span .top .promo {
    background: green;
    color: #fff;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    position: absolute;
    width: auto;
    left: 0;
    top: 0;
    z-index: 1;
}

.articulo .list-foto {
    overflow: hidden;
    position: relative;
}

.articulo .foto {
    width: 100% !important;
    margin: 0 auto !important;
    display: block !important;
    height: 320px !important;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.5s;
    transition: transform 0.3s ease;
}

.articulo h2 {
    font-weight: bold;
    font-family: 'Poppins', Arial;
    padding: 0;
    text-align: left;
    width: 100%;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.articulo h2 a {
    font-size: 15px;
    color: #333;
}

.articulo:hover .next, .articulo:hover .prev {
    color: #333;
}

.articulo p, ul .articulo p a {
    margin: 20px 0 -5px 0;
    padding: 0;
    font-size: 13px;
    font-weight: 100;
    color: gray;
    text-align: left;
    width: 100%;
    float: none;
}

.articulo p a {
    font-size: 13px;
    font-weight: 100;
    color: gray;
}

.articulo .precio {
    width: 100%;
    display: table;
    margin: 5px 0;
}

.articulo .precio strong {
    width: 100%;
    display: table;
    text-align: left;
    font-weight: bold;
    color: black;
    font-size: 16px;
    font-family: 'Open Sans', Arial;
    padding: 0;
}

.articulo .precio span.cuotas, section#post .content .info .rt .precio span.cuotas {
    font-size: 13px;
    width: 100%;
    display: table;
    text-align: left;
    margin: 5px 0 0 0;
    color: gray;
    font-weight: 100;
    font-family: 'Ubuntu', Arial;
}

.modal .modal-content .modal-body .content nav {
    width: auto;
    display: table;
    margin: 40px auto 0 auto;
    background: #fff;
}

.modal .modal-content .modal-body .content nav a {
    width: auto;
    padding: 12px 25px;
    border-radius: 20px;
    background: #eee;
    color: #333;
    float: left;
    margin: 0 8px 0 0;
    font-size: 13px;
}

.modal .modal-content .modal-body .content nav a.active {
    background: #333;
    color: #fff;
}

.modal .modal-content .modal-body .content .botones {
    width: 90%;
    display: table;
    margin: 15px auto;
}

.modal .modal-content .modal-body .content .botones a, #login-modal .modal-content .rt .content a {
    display: table;
    border-radius: 4px;
    border: none;
    color: #FFFFFF;
    text-align: center;
    padding: 12px !important;
    width: 38%;
    transition: all 0.5s;
    cursor: pointer;
    float: left;
}

.modal .modal-content .modal-body .content .botones a span, #login-modal .modal-content .rt .content a span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-size: 15px;
    text-transform: uppercase;
}

.modal .modal-content .modal-body .content .botones a span.comprar:after, #login-modal .modal-content .rt .content a span.vermas:after  {
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.modal .modal-content .modal-body .content .botones a span.vermas:before, #login-modal .modal-content .rt .content a span.comprar:before {
    position: absolute;
    opacity: 0;
    top: 0;
    left: -20px;
    transition: 0.5s;
}

.modal .modal-content .modal-body .content .botones a span.comprar:after, #login-modal .modal-content .rt .content a span.vermas:after {
    content: '>>';
}

.modal .modal-content .modal-body .content .botones a span.vermas:before, #login-modal .modal-content .rt .content a span.comprar:before {
    content: '+';
}

.modal .modal-content .modal-body .content .botones a:hover span.comprar, #login-modal .modal-content .rt .content a:hover span.vermas {
    padding-right: 25px;
}

.modal .modal-content .modal-body .content .botones a:hover span.vermas, #login-modal .modal-content .rt .content a:hover span.comprar {
    padding-left: 20px;
}

.modal .modal-content .modal-body .content .botones a:hover span:after, #login-modal .modal-content .rt .content a:hover span:after {
    opacity: 1;
    right: 0;
}

.modal .modal-content .modal-body .content .botones a:hover span:before, #login-modal .modal-content .rt .content a:hover span:before {
    opacity: 1;
    left: 0;
}

/* MENSAJES */
.msj {
	width: 100%;
	text-align: center;
	font-size: 13px;
	font-family: 'Ubuntu', Arial;
	font-weight: 100;
	padding: 14px 0;
	margin: 8px auto;
	border-width: 1px;
    border-style: solid;
    border-color: transparent;
    text-transform: none;
    line-height: 24px;
    display: table;
}

.msj.yellow {
	background: transparent;
	color: gray;
	border-color: transparent;
}

/* BOTONES */
.btn {
    padding: 10px 20px;
    display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    font-size: 14px;
    border-radius: 5px;
    font-family: 'Poppins', Arial;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn.blue {
    color: #fff;
    background: #009ef7;
}

.btn.green {
    color: #fff;
    background: #50cd89;
}

/* FOOTER */
footer {
    width: 100%;
    margin: 60px 0 0 0;
}

footer .suscribirse {
    padding: 60px 0;
    width: 100%;
    display: table;
}

footer .suscribirse .content h5 {
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

footer .suscribirse .content h2 {
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}

footer .suscribirse .content p {
    font-size: 14px;
    text-align: center;
    margin: 0;
}

footer .suscribirse .content input {
    padding: 17px 15px;
    display: block;
    width: 60%;
    font-size: 16px;
    border: 1px solid rgba(4,21,69,0.3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #041545;
    fill: #041545;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin: 50px auto 0 auto;
    border-radius: 14px;
}

footer .bottom {
    width: 100%;
    display: table;
    padding: 40px 0 0 0;
}

footer .bottom .content {
    display: table;
}

footer .bottom .content li {
    width: 33%;
    float: left;
}

footer .bottom .content li h2 {
    text-align: center;
}

footer .bottom .content li a {
    width: 100%;
    display: table;
    margin: 8px 0;
    text-align: center;
}

footer .bottom .content li a.contacto {
    width: auto;
    margin: 20px auto;
}

footer .bottom .content li a.contacto img {
    float: left;
    width: 18px;
}

footer .bottom .content li a.contacto p {
    float: left;
    font-size: 15px;
    margin: 0 0 0 8px;
}

footer .social {
    margin: 0 auto;
    width: auto;
    display: table;
}

footer h4 {
    width: 100%;
    text-align: center;
}

footer .social a {
    float: left;
    width: auto;
    margin: 0 12px;
}

footer .social a img {
    width: 68px;
}

footer .copy {
    width: 100%;
    display: table;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 0;
    margin: 40px 0 0 0;
}

footer .copy .content .lt {
    float: left;
    width: auto;
}

footer .copy .content .lt p, footer .copy .content .rt p {
    font-size: 13px;
    font-family: 'Poppins', Arial;
    font-weight: 100;
}

footer .copy .content .rt {
    float: right;
    width: auto;
}

footer .copy .content .rt p, footer .copy .content .rt a {
    float: left;
}

footer .copy .content .rt a {
    margin: 8px 0 0 8px;
}

footer .copy .content .rt a img {
    width: 120px;
}

/* POST */
section#post {
    margin: 150px 0 20px 0;
}

section#post .content .info {
    width: 100%;
    display: table;
    margin: 0 0 50px 0;
}

section#post .content .info .lt {
    float: left;
    width: 60%;
    border-right: 1px solid #eee;
    padding-right: 31px;
}

section#post .content .info .lt h4 {
    font-size: 15px;
    font-weight: bold;
    font-family: 'Open Sans', Arial;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    display: table;
    width: 100%;
}

section#post .content .info .lt h4 a {
    float: left;
    color: gray;
    font-weight: 100;
}

section#post .content .info .lt h4 span {
    float: right;
    color: gray;
    font-weight: 100;
}

section#post .content .info .lt h2 {
    font-size: 34px;
    font-weight: 100;
    font-family: 'Dosis', Arial;
    margin: 0;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #eee;
}

section#post .content .info .lt .no-resp {
    display: table;
}

section#post .content .info .lt .resp, section#post .content .info .sidebar-resp {
    display: none;
}

section#post .content .info .lt .fotos {
    width: 100%;
    margin: 0 0 50px 0;
    position: relative;
}

section#post .content .info .lt .fotos .promo {
    right: 0;
    left: inherit;
}

section#post .content .info .rt .marca, section#post .content .info .rt ul li span .top .promo {
    position: relative;
    float: left;
    background: royalblue;
    margin: 0 0 0 8px;
}

section#post .content .info .rt .marca a {
    color: #fff;
}

section#post .content .info .lt .fotos .lt {
    float: left;
    width: 10%;
    padding: 0;
    border: none;
}

section#post .content .info .lt .fotos .lt a {
    display: table;
    width: 100%;
    margin-bottom: 20px;
    opacity: 0.3;
}

section#post .content .info .lt .fotos .lt a.select {
    opacity: 1;
}

section#post .content .info .lt .fotos .lt a .mini-foto {
    width: 100%;
    height: 80px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
}

section#post .content .info .lt .fotos .rt {
    float: right;
    width: 88%;
    border-left: 1px solid #eee;
    border-top: none;
    padding: 0;
}

section#post .content .info .lt .fotos .rt .foto, section#post .content .info .lt .fotos .foto {
    width: 100%;
    background-size: contain;
    background-position: center;
    height: 580px;
    background-repeat: no-repeat;
    background-color: #fff;
}

section#post .content .info .lt .fotos .prev, section#post .content .info .lt .fotos .next {
    margin: 0;
    padding: 0;
    color: #333;
    top: 50%;
}

section#post .content .info .lt .fotos .prev {
    left: -20px;
}

section#post .content .info .lt .fotos .next {
    right: -20px;
}

section#post .content .info .lt .fotos .sin-foto {
    width: 100%;
    height: 580px;
}

section#post .content .info .lt .descripcion ul, section#post .content .info .lt .descripcion ol {
    width: 100% !important;
    padding: 0 0 0 40px;
    list-style: circle;
}
      
section#post .content .info .lt .descripcion ul li, section#post .content .info .lt .descripcion ol li {
    display: list-item;
    list-style: disc;
}
    
section#post .content .info .lt .descripcion ol li {
    list-style: decimal;
}

section#post .content .info .lt .detalles {
    width: 100%;
    display: table;
    margin: 20px 0;
}

section#post .content .info .lt .detalles li {
    width: 100%;
    display: table;
    margin: 0;
    border-bottom: 1px solid #eee;
    transition: 0.5s;
}

section#post .content .info .lt .detalles li:hover {
    background: #EBF5FB !important;
}

section#post .content .info .lt .detalles li .lt {
    float: left;
    width: 48%;
    padding: 12px 5px;
    font-size: 13px;
    font-family: 'Ubuntu', Arial;
    font-weight: bold;
    color: #333;
    text-align: right;
    border: none;
}

section#post .content .info .lt .detalles li .rt {
    float: right;
    width: 48%;
    padding: 12px 5px;
    font-size: 13px;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    color: #333;
    text-align: left;
    border: none;
}

section#post .content .info .rt {
    float: right;
    width: 35%;
    position: sticky;
    top: 200px;
}

section#post .content .info .rt .top-post {
    width: 100%;
    display: table;
    color: gray;
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    margin-bottom: 20px;
}

section#post .content .info .rt .top-post a {
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    color: gray;
}

section#post .content .info .rt .top-post a.favorito-post {
    float: right;
}

section#post .content .info .rt .top-post a.favorito-post img {
    width: 24px;
}

section#post .content .info .rt h2 {
    font-weight: bold;
    font-family: 'Ubuntu', Arial;
    float: left;
    margin: 0 0 25px 0;
}

section#post .content .info .rt .precio {
    width: 100%;
    display: table;
    padding: 0 0 20px 0;
    border-bottom: 1px solid #eee;
    margin: 0;
}

section#post .content .info .rt .precio p {
    width: auto;
    text-transform: uppercase;
    color: gray;
    margin: 0 0 0 12px;
    float: left;
    font-size: 34px;
    font-weight: 100;
    position: relative;
}

section#post .content .info .rt .precio p del {
    font-family: 'Roboto', Arial;
}

section#post .content .info .rt .precio p b {
    background: green;
    color: #fff;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    position: absolute;
    width: auto;
    right: 0;
    top: 0;
    z-index: 1;
}

section#post .content .info .rt .precio strong {
    width: auto;
    float: left;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    font-size: 34px;
    font-family: 'Open Sans', Arial;
    padding: 0;
}

section#post .content .info .rt .precio .codigo {
    font-size: 13px;
    width: 100%;
    color: gray;
    font-weight: 100;
    display: table;
    padding: 40px 0 0 0;
}

section#post .content .info .rt .caracteristicas-especiales {
    width: 100%;
    display: table;
    margin: 15px 0;
}

section#post .content .info .rt .caracteristicas-especiales .caracteristica-especial {
    width: 100%;
    display: table;
    margin: 20px 0;
}

section#post .content .info .rt .caracteristicas-especiales .caracteristica-especial h5 {
    font-size: 15px;
    font-family: 'Open Sans', Arial;
    font-weight: bold;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 8px 0;
    padding: 0;
}

section#post .content .info .rt .caracteristicas-especiales .caracteristica-especial select {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    color: #333;
    padding: 12px 10px;
}

section#post .content .info .rt .caracteristicas-especiales .caracteristica-especial a, .modal .modal-content .modal-body .content .info .lt .cantidad a, section#cotizar .content .rt .cantidad a {
    float: left;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: bold;
    color: gray;
    font-family: 'Ubuntu', Arial;
    border-color: #ccc;
    border-style: solid;
}

section#post .content .info .rt .caracteristicas-especiales .caracteristica-especial input[type="tel"], .modal .modal-content .modal-body .content .info .lt .cantidad input[type="tel"], section#cotizar .content .rt .cantidad input[type="tel"] {
    float: left;
    padding: 10px 12px;
    border-color: #ccc;
    border-width: 1px 0;
    border-style: solid;
    font-size: 15px;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    color: gray;
    width: 30px;
}

section#post .content .info .rt ul {
    width: 100%;
    display: table;
}

section#post .content .info .rt ul li {
    width: 100%;
    display: table;
    padding: 15px 0;
    transition: 0.7s;
    position: relative;
}

section#post .content .info .rt ul li img {
    float: left;
    width: 24px;
    height: 24px;
}

section#post .content .info .rt ul li span {
    float: right;
    width: 94%;
}

section#post .content .info .rt ul li span .top {
    width: 100%;
    display: table;
}

section#post .content .info .rt ul li span .top h5, section#post .content .info .rt ul li span .top h5 strong {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Open Sans', Arial;
    margin: 0;
    padding: 0;
}

section#post .content .info .rt ul li span .top h5 {
    float: left;
}

section#post .content .info .rt ul li span .top h5 strong {
    color: green;
}

section#post .content .info .rt ul li span .top .promo {
    float: left;
    font-size: 11px;
    margin-top: -3px;
}

section#post .content .info .rt ul li span p, section#post .content .info .rt ul li span p a {
    font-size: 12px;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    margin: 5px 0 0 0;
    padding: 0;
}

section#post .content .info .rt ul li span p a {
    color: royalblue;
}

section#post .content .info .rt .comprar {
    width: auto;
    display: table;
    float: left;
    margin: -3px 0 0 12px;
}

section#post .content .info .rt .comprar a {
    display: table;
    border-radius: 4px;
    border: none;
    color: #FFFFFF;
    text-align: center;
    padding: 12px 20px !important;
    width: 40%;
    transition: all 0.5s;
    cursor: pointer;
    margin: 0 auto;
    background: orangered;
    border: 0;
    border-radius: 50px;
}

section#post .content .info .rt .comprar a span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-size: 13px !important;
    text-transform: uppercase;
    font-weight: 100;
}

section#post .content .info .rt .comprar a span:after {
    content: '+';
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    transition: 0.5s;
}

section#post .content .info .rt .comprar a:hover span:after {
    opacity: 1;
}

section#post .content .info .rt .comprar a:hover span {
    padding-left: 20px;
}

section#post .content .otros, section#buscador .content .sin-resultados .otros {
    width: 100%;
    margin: 35px 0;
}

section#buscador .content .sin-resultados h2.titulo {
    font-size: 18px;
    font-family: 'Poppins', Arial;
    font-weight: bold;
    text-transform: none;
    padding: 20px 0;
    border-bottom: 3px solid orangered;
    margin-bottom: -5px;
    color: #333;
}

/* CARRITO MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 9;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
  
.modal-content {
    position: relative;
    background-color: #fff;
    padding: 0;
    width: 45%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    height: 90%;
    margin: 2% auto;
    border-radius: 20px;
    display: table;
}

.modal .modal-content .modal-header {
    margin: 0;
    padding: 30px 0;
    width: 100%;
    display: table;
}

.modal .modal-content .modal-header .content h2 {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu', Arial;
    font-size: 38px;
    font-weight: 100;
    color: orangered;
    float: left;
}

.modal .modal-content .modal-header .content h2 span {
    font-size: 15px;
    color: gray;
    font-style: italic;
    float: right;
    padding: 14px 12px;
}

.modal .modal-content .modal-header .content a {
    float: right;
    color: gray;
    font-weight: bold;
    font-size: 34px;
    padding: 0;
}

.modal .modal-content .modal-body {
    width: 100%;
    display: table;
    background: #fff;
    border-radius: 20px;
}

.modal .modal-content .modal-body .content li, .favoritos li {
    width: 100%;
    display: table;
    margin: 20px 0;
    border-bottom: 1px dotted #ddd;
    padding: 15px 0;
    position: relative;
}

.modal .modal-content .modal-body .content li h4 {
    margin: 0;
    padding: 0;
}

.modal .modal-content .modal-body .content li h2 {
    margin: 8px 0;
    padding: 0;
}

.modal .modal-content .modal-body .content li a.close, .favoritos li a.close {
    position: absolute;
    top: -15px;
    right: 0;
    color: orangered;
    font-family: 'Open Sans', Arial;
    font-weight: bold;
    font-size: 20px;
}

.modal .modal-content .modal-body .content li .pic, .favoritos li .pic {
    float: left;
    width: 20%;
}

.modal .modal-content .modal-body .content li .pic .foto, .favoritos li .pic .foto {
    width: 100%;
    height: 120px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.modal .modal-content .modal-body .content li .pic img, .favoritos li .pic img {
    width: 90%;
    text-align: left;
}

.modal .modal-content .modal-body .content .info, .favoritos li .info {
    float: right;
    width: 78%;
}

.modal .modal-content .modal-body .content .info .lt, .favoritos li .info .lt {
    float: left;
    width: 70%;
}

.modal .modal-content .modal-body .content .info .lt h2 {
    font-family: 'Dosis', Arial;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
}

.modal .modal-content .modal-body .content .info .lt p, .favoritos li .info .lt p {
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    color: gray;
    margin: 8px 0 0 0;
    padding: 0;
    font-weight: 100;
}

.modal .modal-content .modal-body .content .info .lt .cantidad {
    width: 100%;
    display: table;
    margin: 12px 0;
}

.modal .modal-content .modal-body .content .info .rt, .favoritos li .info .rt {
    float: right;
    width: 28%;
}

.modal .modal-content .modal-body .content .info .rt p, .favoritos li .info .rt p {
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    font-family: Verdana, Arial;
    color: gray;
    margin: 0;
    display: inline-block;
    text-align: center;
}

.modal .modal-content .modal-body .content .info .rt p del, .favoritos li .info .rt p del {
    font-size: 12px;
}

.modal .modal-content .modal-body .content .info .rt p b, .favoritos li .info .rt p b {
    font-weight: 400;
    color: green;
    font-size: 12px;
}

.modal .modal-content .modal-body .content .info .rt strong, .favoritos li .info .rt strong {
    width: 100%;
    display: table;
    text-align: center;
    font-weight: bold;
    color: royalblue;
    text-transform: uppercase;
    font-size: 34px;
    font-family: 'Open Sans', Arial;
    padding: 0;
}

.modal .modal-content .modal-body .content .totales {
    width: 100%;
    display: table;
    margin: 50px 0;
}

.modal .modal-content .modal-body .content .totales .lt {
    float: left;
    width: 48%;
}

.modal .modal-content .modal-body .content .totales .lt h5 {
    font-family: 'Dosis';
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 5px;
    color: orangered;
    margin: 0;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
}

.modal .modal-content .modal-body .content .totales .rt {
    float: right;
    width: 48%;
}

.modal .modal-content .modal-body .content .totales .rt h5 {
    text-align: right;
    font-size: 34px;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    color: #333;
    margin: 0;
    padding: 0;
}

.modal .modal-content .modal-body .content .botones {
    margin: 0 auto 50px auto !important;
}

.modal .modal-content .modal-body .content .botones a {
    padding: 20px !important;
    border-radius: 50px;
}

.modal .modal-content .modal-body .content .sin-productos {
    width: 100%;
    display: table;
    text-align: center;
    margin: 80px auto;
}

.modal .modal-content .modal-body .content .sin-productos img {
    width: 40%;
    margin: 0 auto;
}

.modal .modal-content .modal-body .content .sin-productos h2 {
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    font-size: 18px;
    width: 100%;
    display: table;
    text-align: center;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

/* FADE */
#login-modal .modal-content .lt .modal-body .content form li {
    position: relative;
}

#login-modal .modal-content .lt .modal-body .content form li label {
    position: absolute;
    top: 12px;
    left: 10px;
    background: #fff;
    transition: 0.5s;
    padding: 0 5px;
    font-size: 13px;
}

#login-modal .modal-content .lt .modal-body .content form li label.fade {
    top: -10px;
    left: 8px;
    color: royalblue;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    } 

    to {
        top: 0;
        opacity: 1;
    }
}
  
@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

/* LISTA */
section#lista {
    margin: 20px 0 50px 0;
    display: table;
    width: 100%;
}

section#lista .content .title select, section#buscador .content .rt .top select {
    font-family: 'Open Sans', Arial;
    font-size: 13px;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 2px;
    margin: 12px 0;
    float: right;
}

section#lista .content .lista {
    float: left;
    width: 25%;
    margin: 0;
    padding: 0;
}

/* BUSCADOR */
section#buscador {
    width: 100%;
    margin: 150px 0 20px 0;
}

section#buscador .content .lt {
    float: left;
    width: 20%;
    position: sticky;
    top: 150px;
}

section#buscador .content .lt .top {
    width: 100%;
    display: table;
    margin: 10px 0 0 0;
}

section#buscador .content .lt .top h2 {
    margin: 0;
    padding: 0;
    font-size: 24px;
    font-weight: bold;
    font-family: 'Ubuntu', Arial;
}

section#buscador .content .lt .top p {
    margin: 5px 0 0 0;
    padding: 0;
    font-size: 13px;
    font-weight: 100;
    font-family: 'Open Sans', Arial;
    color: gray;
}

section#buscador .content .lt .filtros {
    margin: 15px 0;
}

section#buscador .content .lt .filtros, section#buscador .content .lt .filtros li {
    width: 100%;
    display: table;
}

section#buscador .content .lt .filtros li a {
    display: table;
    width: auto;
    padding: 8px 10px;
    border-radius: 2px;
    color: gray;
    background: #eee;
    font-size: 10px;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    margin: 5px 0;
    text-transform: uppercase;
}

section#buscador .content .lt ul, section#buscador .content .lt ul li {
    width: 100%;
    display: table;
    list-style: none;
    margin: 0;
    padding: 0;
}

section#buscador .content .lt ul li {
    margin: 0 0 15px 0;
}

section#buscador .content .lt ul li label {
    width: 100%;
    display: table;
    margin: 0 0 8px 0;
    padding: 0;
    font-size: 13px;
    font-family: 'Verdana', Arial;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
}

section#buscador .content .lt ul li a {
    display: table;
    margin: 5px 0;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    color: gray;
    font-size: 13px;
}

section#buscador .content .rt {
    float: right;
    width: 78%;
}

section#buscador .content .rt .top {
    width: 100%;
    display: table;
}

section#buscador .content .rt .resultados-buscador {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

section#buscador .content .banner {
    width: 100%;
    display: table;
    margin: 0 0 40px 0;
}

section#buscador .content .banner .pic {
    height: 280px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* SIN RESULTADOS */
section#buscador .content .sin-resultados {
    width: 100%;
}

section#buscador .content .sin-resultados .pic {
    width: 100%;
    display: table;
    text-align: center;
}

section#buscador .content .sin-resultados .pic img {
    width: 30%;
    text-align: center;
}

section#buscador .content .sin-resultados h1 {
    font-size: 24px;
    color: gray;
    font-family: 'Dosis', Arial;
    font-weight: 100;
    width: 100%;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    margin: 0;
    padding: 0;   
}

/* LOGIN MODAL */
#login-modal .modal-content {
    height: auto;
    width: 40%;
    margin: 0 auto;
    float: none;
    top: 20%;
    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -moz-transform 0.4s;
    -o-transition: -o-transform 0.4s;
    transition: transform 0.4s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    padding: 40px 0;
    border-radius: 8px;
}

#login-modal .modal-content.flipped {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

#login-modal .modal-content .registro-body {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
    
#login-modal .modal-content .lt {
    float: left;
    width: 100%;
    display: table;
    background: #fff;
}

#login-modal .modal-content .lt .modal-header .content h2 {
    color: #333;
    font-size: 34px;
    text-align: center;
    width: 100%;
}

#login-modal .modal-content .lt .modal-body .content form li {
    margin: 20px 0;
    width: 100%;
    display: table;
    border: none;
    padding: 0;
}

#login-modal .modal-content .lt .modal-body .content form li input {
    float: left;
    width: 90%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 2px;
    color: gray;
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    border-radius: 0 2px 2px 0;
    background: transparent;
    transition: 0.7s;
    position: relative;
}

#login-modal .modal-content .lt .modal-body .content form li a {
    float: right;
    padding: 11px 0;
    color: #333;
}

#login-modal .modal-content .lt .modal-body .content form li input[type="submit"] {
    color: #fff;
    width: auto;
    float: left;
    background: royalblue;
    border: none;
    border-radius: 5px;
}

#login-modal .modal-content a.close {
    position: absolute;
    top: 0;
    right: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    padding: 8px 0;
    font-family: 'Open Sans', Arial;
}

#login-modal .modal-content .lt .modal-body .content a.btn-registro {
    font-size: 15px;
    width: 100%;
    display: table;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

/* CHECKBOX Y RADIO BUTTOM */
.container {
    display: block;
    position: relative;
    padding-left: 38px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container a {
    float: none !important;
    margin: 0;
    padding: 0;
    color: royalblue !important;
}
  
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark {
    position: absolute;
    top: -3px;
    left: 4px;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

.container:hover input ~ .checkmark {
    background-color: #ccc;
}
  
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.container input:checked ~ .checkmark:after {
    display: block;
}
  
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* MI CUENTA */
section#mi-cuenta {
    margin: 12px 0 40px 0;
}

section#mi-cuenta .content {
    display: table;
}

section#mi-cuenta .box {
    float: left;
    width: 70%;
}

section#mi-cuenta .box h2, section#cotizar .content h2 {
    font-size: 34px;
    font-family: 'Ubuntu', Arial;
    text-transform: uppercase;
    color: #333;
    font-weight: bold;
}

section#mi-cuenta .box h2 strong, section#cotizar .content h2 strong {
    font-size: 24px;
    margin-left: 8px;
    font-family: 'Roboto', Arial;
    font-style: italic;
    color: gray;
    font-weight: 100;
}

section#mi-cuenta .box h4 {
    margin: 20px 0 5px 0;
    padding: 0;
}

section#mi-cuenta .box input[type="submit"] {
    float: right;
    width: auto;
    margin: 10px 0;
    padding: 10px 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    font-size: 14px;
    border-radius: 5px;
    font-family: 'Poppins', Arial;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

section#mi-cuenta .sidebar {
    float: right;
    width: 25%;
    position: sticky;
    top: 20px;
}

section#mi-cuenta .sidebar h2 {
    font-size: 24px;
    font-weight: bold;
    font-family: 'Roboto', Arial;
    color: #333;
    text-transform: uppercase;
}

section#mi-cuenta .sidebar nav {
    width: 100%;
    display: table;
    background: transparent;
}

section#mi-cuenta .sidebar nav li {
    width: 100%;
    display: table;
    margin: 10px 0;
    padding: 0;
}

section#mi-cuenta .sidebar nav li a {
    width: 100%;
    display: table;
    border-bottom: 3px solid #ccc;
    transition: 0.7s;
}

section#mi-cuenta .sidebar nav li a:hover {
    border-color: #333;
}

section#mi-cuenta .sidebar nav li a strong {
    border-bottom: 3px solid #333;
    margin-bottom: -3px;
    padding: 8px 0;
    display: table;
    font-size: 13px;
    font-family: 'Open Sans', Arial;
    font-weight: 100;
    color: #333;
    text-transform: uppercase;
}

section#mi-cuenta .sidebar nav li.active a:hover {
    border-color: orangered;
}

section#mi-cuenta .sidebar nav li.active a strong {
    border-color: orangered;
}

/* SEPARADORES */
ul.sp-1, ul.sp-2 {
    width: 100%;
    display: table;
}

ul.sp-1 li, ul.sp-2 li {
    width: 100%;
    display: table;
    margin: 12px 0;
    padding: 0;
}

ul.sp-2 li {
    width: 48% !important;
    float: left;
}

ul.sp-1 li label, ul.sp-2 li label {
    width: 100%;
    display: table;
    font-size: 13px;
    font-weight: 100;
    color: gray;
    margin: 0 0 5px 0;
    padding: 0;
}

ul.sp-1 li input, ul.sp-1 li select, ul.sp-1 li textarea, ul.sp-2 li input, ul.sp-2 li select, .totales-compra span strong input {
    padding: 12px 15px;
    font-size: 13px;
    color: gray;
    border: 1px solid #eee;
    border-radius: 2px;
    transition: 0.5s;
}

ul.sp-1 li input {
    width: 96%;
}

ul.sp-1 li select, ul.sp-2 li select {
    width: 100%;
}

ul.sp-2 li input {
    width: 92%;
}

/* APPLE SWITCH */
label.apple-switch {
    width: 50% !important;
    margin-right: 3% !important;
    float: left;
}

label.apple-switch p {
    float: left;
    width: auto;
    margin-right: 10px;
}

label.apple-switch input {
    position: relative;
    appearance: none;
    outline: none;
    width: 65px !important;
    height: 35px;
    background-color: #ccc;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: inset -20px 0 0 0 #ccc;
    transition-duration: 0.7s !important;
    cursor: pointer;
    float: left;
}

label.apple-switch input:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 25px;
    height: 25px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

label.apple-switch input:checked {
    border: none !important;
    box-shadow: inset 34px 0 0 0 #4ED164;
    background-color: #4ed164;
}

label.apple-switch input:checked:after {
    left: 34px;
    box-shadow: -2px 4px 3px rgba(0,0,0,0.05);
}

/* FAVORITOS */
.favoritos li .info .lt h2 {
    font-family: 'Open Sans', Arial !important;
    font-weight: bold !important;
    font-size: 18px !important;
    color: #333 !important;
    margin: 0;
    padding: 0;
    text-transform: uppercase !important;
}

/* MIS COMPRAS */
.compras, .compras ul {
    width: 100%;
    display: table;
}

.compras ul {
    border: 1px solid #eee;
    border-radius: 5px;
    transition: 0.7s;
    margin: 20px 0;
}

.compras ul:hover {
    box-shadow: 0 0 10px rgb(12 12 12 / 5%);
}

.compras ul .top {
    background: #f5f5f5;
    width: 100%;
    display: table;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.compras ul .top p {
    padding: 0 0 0 15px;
    width: auto;
    float: left;
    margin: 0;
    font-size: 13px;
    color: gray;
}

.compras ul .top span {
    padding: 0 15px 0 0;
    width: auto;
    float: right;
    margin: 0;
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.compras ul .favoritos li .content, .compras ul .footer .content {
    width: 95%;
}

.compras ul .footer {
    margin: -10px 0 10px 0;
    padding: 0;
    width: 100%;
    display: table;
}

.compras ul .footer .content p {
    float: left;
    width: auto;
    font-size: 13px;
}

.compras ul .footer .content a {
    float: right;
}

/* VER COMPRA */
.top-detalles-compra {
    padding: 0 0 15px 0;
    border-bottom: 1px dashed #eee;
    display: table;
    width: 100%;
    color: gray;
}

.top-detalles-compra p {
    float: left;
    font-size: 13px;
    font-weight: 100;
    width: auto;
    margin: 0;
}

.top-detalles-compra span {
    float: right;
    width: auto;
    font-size: 13px;
    font-weight: 100;
}

.totales-compra {
    width: 30%;
    float: right;
    display: table;
    margin: 20px 0;
}

.totales-compra span {
    width: 100%;
    display: table;
    margin: 12px 0;
}

.totales-compra span p {
    float: left;
    width: 48%;
    font-size: 15px;
    font-weight: 100;
    text-align: right;
    margin: 0;
    padding: 10px 0;
}

.totales-compra span strong {
    float: right;
    width: 48%;
    font-size: 15px;
    font-weight: 100;
    text-align: right;
}

.totales-compra span strong input {
    width: 75%;
}

.info-detalles-compra {
    width: 100%;
    display: table;
    text-align: center;
    border-top: 1px dashed #eee;
    background: #f5f5f5;
}

.info-detalles-compra .lt {
    float: left;
    width: 48%;
}

.info-detalles-compra .lt h2 {
    font-size: 18px;
    color: royalblue;
}

.info-detalles-compra .rt {
    float: right;
    width: 48%;
}

.info-detalles-compra .lt p, .info-detalles-compra .rt p {
    font-size: 13px;
    color: #50cd89;
    font-weight: bold;
    margin: 12px 0;
    padding: 0;
    font-family: 'Ubuntu', Arial;
    text-transform: uppercase;
}

.info-detalles-compra .lt a, .info-detalles-compra .rt a {
    margin: 0 auto;
    float: none;
}

.info-detalles-compra .lt img, .info-detalles-compra .rt img {
    width: 34px;
    margin-bottom: 5px;
}

/* MEDIOS DE PAGO MODAL */
#list-medios-de-pago-modal li {
    width: 100%;
    display: table;
    padding: 25px 0;
}

#list-medios-de-pago-modal li h4 {
    font-size: 24px;
    font-family: 'Ubuntu', Arial;
    font-weight: bold;
    color: #333;
    margin: 0;
    padding: 0;
}

#list-medios-de-pago-modal li p {
    font-size: 15px;
    color: gray;
    font-weight: 100;
    font-family: 'Open Sans', Arial;
    margin: 18px 0;
    padding: 0;
}

#list-medios-de-pago-modal li span {
    font-size: 15px;
    color: #00a650;
    font-weight: 100;
    font-family: 'Open Sans', Arial;
    margin: 0;
    padding: 0;
    width: 100%;
    display: table;
}

/* PROMOCIONES */
section#promociones, section#marcas, section#secciones {
    padding: 40px 0;
    display: flex;
}

section#promociones .content .lt {
    float: left;
    width: 20%;
    border-radius: 5px;
    background: #dc3545;
    padding: 108px 0;
}

section#promociones .content .lt h2 {
    font-size: 38px;
    text-transform: uppercase;
    font-family: 'Ubuntu', Arial;
    font-weight: 100;
    line-height: 50px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #fff;
}

section#promociones .content .lt p {
    font-size: 13px;
    color: #fff;
    font-family: 'Ubuntu', Arial;
    text-align: center;
    margin: 10px 0 0 0;
    padding: 0;
}

section#promociones .content .rt {
    float: right;
    width: 75%;
}

/* COTIZAR */
section#cotizar {
    width: 100%;
    display: table;
    margin: 20px 0;
}

section#cotizar .content .lt {
    float: left;
    width: 68%;
}

section#cotizar .content .lt li .info .lt h2 {
    margin: 5px 0;
}

section#cotizar .content .lt li .info .lt span {
    color: royalblue;
    font-weight: 100;
}

section#cotizar .content .lt li .info .rt {
    margin: 0;
}

section#cotizar .content .lt li .info .rt .cantidad {
    display: table;
    padding: 25px 0;
    float: left;
}

section#cotizar .content .lt li .info .rt a.close {
    position: relative;
    font-size: 48px;
    padding: 10px 20px;
    float: right;
    margin: 0;
    top: 0;
    bottom: 0;
}

section#cotizar .content .rt {
    float: right;
    width: 30%;
    margin: 20px 0;
}

section#cotizar .content .rt h2 {
    font-size: 18px;
    text-align: center;
    width: 100%;
    margin: 30px 0 12px 0;
}

section#cotizar .content .rt form {
    width: 100%;
    display: table;
    border-radius: 5px;
    background: #f5f5f5;
}

section#cotizar .content .rt form ul.sp-1 li input, section#cotizar .content .rt form ul.sp-1 li select, section#cotizar .content .rt form ul.sp-1 li textarea {
    width: 90%;
}

section#cotizar .content .msj, section#cotizar .content .msj a {
    margin: 20px 0;
}

section#cotizar .content .msj a {
    color: royalblue;
}

/* MI DOMICILIO */
.mi-domicilio {
    width: 100%;
    background: #eee;
    border-radius: 5px;
    padding: 12px 0;
    margin-top: 20px;
}

.mi-domicilio .content h5 {
    font-size: 18px;
    color: #333;
    margin: 0;
    padding: 0;
}

.mi-domicilio .content p {
    margin: 8px 0;
    padding: 0;
    font-size: 15px;
    color: gray;
}

.mi-domicilio .content a {
    color: royalblue;
    font-size: 13px;
    margin: 0;
    padding: 0;
}

/* LOAD */
#load {
    background-color: #fff;
    background-image: url('https://cdn.dribbble.com/users/1573707/screenshots/3712012/aug-4-2017-6-11-pm.gif');
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: opacity 0.2s ease-out 0.2s, visibility 0.3s ease-out 0.2s;
    -moz-transition: opacity 0.2s ease-out 0.2s, visibility 0.3s ease-out 0.2s;
    -o-transition: opacity 0.2s ease-out 0.2s, visibility 0.3s ease-out 0.2s;
    transition: opacity 0.2s ease-out 0.2s, visibility 0.3s ease-out 0.2s;
}

/* PAGINADOR */
.paginador, section#blog {
    width: 100%;
    display: table;
    margin: 40px 0;
}

.paginador ul {
    margin: 0 auto;
    width: auto;
    display: table;
}

.paginador ul li {
    float: left;
    width: auto;
}

.paginador ul li a {
    display: table;
    font-size: 13px;
    padding: 12px 15px;
    background: #eee;
    color: gray;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.paginador ul li.active {
    background: none;
}

.paginador ul li.active a {
    background: #333;
    color: #fff;
}

/* BLOG */
section#blog .content .lt {
    float: left;
    width: 70%;
}

section#blog .content .lt a img {
    width: 100%;
}

section#blog .content .lt h2 {
    font-size: 24px;
    font-family: 'Poppins', Arial;
    font-weight: 600;
    color: #333;
}

section#blog .content .lt li {
    float: left;
    width: 48%;
    margin: 0 0 25px 0;
    min-height: 620px;
}

section#blog .content .lt li h5, section#blog .content .lt .noticia .top p {
    font-size: 11px;
    color: gray;
    font-weight: 100;
    padding: 0;
    margin: 15px 0 0 0;
    display: table;
    font-family: 'Poppins', Arial;
}

section#blog .content .lt li a h2, section#blog .content .lt .noticia h2 {
    font-size: 15px;
    font-weight: bold;
    margin: 8px 0;
    padding: 0;
    font-family: 'Poppins', Arial;
}

section#blog .content .lt li p {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Arial;
}

section#blog .content .lt li a {
    float: left;
    color: royalblue;
    width: 100%;
    display: table;
}

section#blog .content .lt li .pie {
    width: 100%;
    display: table;
    margin: 20px 0 0 0;
    border-top: 1px solid #eee;
    padding: 12px 0 0 0;
}

section#blog .content .lt li .pie .lt, section#blog .content .lt .noticia .top p {
    float: left;
    width: 48%;
}

section#blog .content .lt li .pie .lt a {
    color: royalblue;
    font-family: 'Poppins', Arial;
}

section#blog .content .lt li .pie .lt a img, section#blog .content .lt li h5 img, section#blog .content .lt .noticia .top p img {
    float: left;
    width: 15px;
    margin-right: 8px;
}

section#blog .content .lt li .pie .rt, section#blog .content .lt .noticia .top .rt {
    float: right;
    width: 48%;
}

section#blog .content .lt li .pie .rt a, section#blog .content .lt .noticia .top .rt a {
    float: right;
    display: table;
    width: 24px;
    margin-left: 8px;
}

section#blog .content .lt li .pie .rt a img, section#blog .content .lt .noticia .top .rt a img {
    width: 100%;
}

section#blog .content .rt {
    float: right;
    width: 28%;
}

section#blog .content .rt .resultados {
    width: 100%;
    display: table;
    margin: 0 0 8px 0;
}

section#blog .content .rt .resultados h2 {
    font-size: 15px;
    font-family: 'Poppins', Arial;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

section#blog .content .rt .resultados p {
    font-size: 13px;
    font-family: 'Poppins', Arial;
    font-weight: 100;
    color: gray;
    margin: 5px 0;
    padding: 0;
}

section#blog .content .rt .resultados a {
    width: auto;
    display: table;
    padding: 10px 15px;
    font-size: 12px;
    font-family: 'Poppis', Arial;
    color: #333;
    background: #eee;
    border-radius: 5px;
}

section#blog .content .rt .box {
    width: 100%;
    margin: 20px 0;
    display: table;
}

section#blog .content .rt .box h4 {
    margin: 0 0 8px 0;
    width: 100%;
    display: table;
    background: #eee;
    border-radius: 0 5px 5px 0;
}

section#blog .content .rt .box h4 strong {
    font-size: 15px;
    font-family: 'Poppins', Arial;
    font-weight: 500;
    padding: 12px 20px 12px 20px;
    display: table;
    border-radius: 5px 0 0 5px;
}

section#blog .content .rt .box form select {
    width: 30%;
    float: left;
    border-width: 0 0 3px 0;
    border-color: #333;
    border-style: solid;
    outline: none;
    padding: 12px 0;
}

section#blog .content .rt .box form input[type="text"] {
    width: 65%;
    float: left;
    border-width: 0 0 3px 0;
    border-color: #eee;
    border-style: solid;
    outline: none;
    padding: 13px 0 13px 8px;
}

section#blog .content .rt .box form input[type="submit"] {
    float: right;
    margin-top: 12px;
}

section#blog .content .rt .box li {
    width: 100%;
    display: table
}

section#blog .content .rt .box li a {
    color: gray;
}

/* VER NOTICIA */
section#blog .content .lt .noticia {
    width: 100%;
    display: table;
}

section#blog .content .lt .noticia .top {
    width: 100%;
    display: table;
}

section#blog .content .lt .noticia .top p {
    margin: 0;
}

section#blog .content .lt .noticia h2 {
    font-size: 24px;
    margin: 5px 0 20px 0;
    padding: 0;
    font-weight: 100;
}

section#blog .content .lt .noticia .pie {
    border-top: 1px solid #eee;
    margin: 0;
    padding: 20px 0;
    width: 100%;
    display: table;
}

section#blog .content .lt .noticia .pie img {
    width: 24px;
    float: left;
    margin: 10px 8px 12px 0;
}

section#blog .content .lt .noticia .pie li {
    float: left;
    margin: 5px 5px 5px 0;
    color: gray;
    background: #eee;
    width: auto;
    padding: 10px;
    font-size: 12px;
    border-radius: 5px;
    min-height: auto;
}

section#blog .content .lt .noticia .pie li a {
    float: none;
    color: royalblue;
}

/* PRODUCTO DESTACADO */
nav .content li ul .rt h2 {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', Arial;
    width: 100%;
    display: table;
    text-align: center;
    margin: 15px 0;
    padding: 0;
    color: #333;
}

nav ul .articulo:hover {
    box-shadow: none;
}

nav ul .articulo h4 a, nav ul .articulo h2 a, nav ul .articulo p a {
    padding: 0 !important;
    color: royalblue;
    transition: none;
    text-align: center;
    float: none;
    width: 100%;
    text-transform: none;
}

nav ul .articulo p a {
    color: gray;
    margin: 8px 0 0 0;
    padding: 5px 0 !important;
}

nav ul .articulo h4 a:hover, nav ul .articulo h2 a:hover, nav ul .articulo p a:hover, nav ul .articulo a:hover {
    border-color: transparent !important;
    background: transparent !important;
}

nav ul .articulo:hover h2, nav ul .articulo:hover h2 a {
    color: royalblue;
    cursor: pointer;
}

nav ul .articulo:hover img {
    opacity: 1;
}

nav li.carrito {
    display: none;
}

nav.top li.carrito {
    display: block;
}

nav.top li.carrito a {
    width: 24px;
    display: table;
    padding: 38px 8px 0 8px;
    padding-bottom: 0 !important;
}

nav.top li.carrito a {
    border: none;
}

nav.top li.carrito a:hover {
    background: transparent;
}

/* FONDO TRANSPARENTE */
.fondo-transparente {
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
}

/* MENU RESP */
.modal .modal-content .modal-body .content ul.mnu {
    margin: 40px 0 20px 0;
}

.modal .modal-content .modal-body .content ul.mnu li {
    margin: 0;
    padding: 20px 0;
}

.modal .modal-content .modal-body .content ul.mnu li a.active {
    background: transparent;
}

.modal .modal-content .modal-body .content ul.mnu li ul {
    padding: 0 0 0 30px;
    background: transparent;
}

/* MARCAS */
section#marcas {
    background: #f5f5f5;
}

section#marcas .content .marcas-box li .foto {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 60px;
    width: 80%;
    margin: 0 auto;
    filter: grayscale(1);
    transition: 0.5s;
}

section#marcas .content .marcas-box li:hover .foto {
    filter: none;
}

/* ALERT */
.alert {
    padding: 20px 40px;
    min-width: 420px;
    position: fixed;
    right: 10px;
    top: 10px;
    border-radius: 4px;
    border-left: 8px solid transparent;
    overflow: hidden;
    display: none;
    z-index: 9000;
}

.alert.success {
    background: #d4edda;
    border-color: darkgreen;
}

.alert.warning {
    background: #ffdb9b;
    border-color: #ffa502;
}

.alert.error {
    background: #f8d7da;
    border-color: brown;
}

.alert.show {
    animation: show_slide 1s ease forwards;
    display: block;
}

@keyframes show_slide {
    0% {
        transform: translateX(100%);
    }
    
    40% {
        transform: translateX(-10%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-10px);
    }
}

.alert.hide {
    animation: hide_slide 1s ease forwards;
}

@keyframes hide_slide {
    0% {
        transform: translateX(-10px);
    }

    40% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(-10%);
    }

    100% {
        transform: translateX(100%);
    }
}
 
.alert.success .fa-circle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/success.png");
    width: 24px;
    background-size: 100%;
    font-size: 30px;
    background-position: 0;
    height: 24px;
}

.alert.warning .fa-circle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/warning.png");
    width: 24px;
    background-size: 100%;
    font-size: 30px;
    background-position: 0;
    height: 24px;
}

.alert.error .fa-circle {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/error.png");
    width: 24px;
    background-size: 100%;
    font-size: 30px;
    background-position: 0;
    height: 24px;
}

.alert .msj {
    padding: 0 55px;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    width: auto;
}

.alert.success .msj {
    color: #155724;
}

.alert.warning .msj {
    color: #ce8500;
}

.alert.error .msj {
    color: #721c24;
}

.alert .close-btn {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    padding: 20px 18px;
    cursor: pointer;
}

.alert .close-btn:hover {
    color: rgba(0, 0, 0, 0.5);
}

.alert .close-btn .fas {
    font-size: 28px;
    line-height: 40px;
}

.alert.success .close-btn .fas {
    color: #155724;
}

.alert.warning .close-btn .fas {
    color: #ce8500;
}

.alert.error .close-btn .fas {
    color: #721c24;
}

/* CONFIRM */
.confirm {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    padding: 0px auto;
    left: 0;
    top: 0;
    overflow: hidden;
    position: fixed;
    background: rgb(0, 0, 0, 0.3);
    z-index: 999999;
}

.confirm .box {
    background: #fff;
    min-height: 400px;
    width: 300px;
    box-shadow: 5px 5px 10px rgb(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0;
    margin: 0;
    animation: open-frame 1s ease forwards;
}

.confirm .box .top {
    display: flex;
    background: url(../images/fondo.jpg);
    flex-direction: row;
    height: 175px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-size: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: relative;
}
  
.confirm .box .top .close {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    cursor: pointer;
    line-height: 30px;
    color: #fff;
    font-size: 48px;
    position: absolute;
    top: 0;
    right: 10px;
}

.confirm .box .body {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
  
.confirm .box .body .title {
    font-size: 18px !important;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 5px;
    color: #222;
    align-self: center;
    border: none;
}
  
.confirm .box .body .msj {
    font-size: 15px !important;
    color: #666;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    margin-bottom: 5px;
    line-height: 1.6;
    align-self: center;
}

.confirm .box .body #input {
    padding: 8px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 98%;
    margin-bottom: 20px;
}
  
.confirm .box .body .buttons {
    width: 100%;
    display: table;
}

.confirm .box .body .buttons .btn {
    color: #fff;
    margin: 0 5px;
}

.confirm .box .body .buttons .btn.yes {
    background: #50cd89;
}

.confirm .box .body .buttons .btn.no {
    background: #dc3545;
}

.confirm.show {
    display: flex !important;
}
  
@keyframes open-frame {
    0% {
      transform: scale(1);
    }

    50% {
      transform: scale(0.97);
    }

    100% {
      transform: scale(1);
    }
}

/* SECCIONES */
section#secciones .content .box-secciones {
    gap: 10px;
    grid-template-columns: repeat(3,1fr);
    display: grid;
    grid-template-rows: 1fr
}

section#secciones .content .box-secciones li {
    position: relative;
    flex: auto;
    border-radius: 10px;
    max-width: 100%;
    min-height: 100px;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

section#secciones .content .box-secciones li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: 0.3s;
    background: transparent;
}

section#secciones .content .box-secciones li h2 {
    display: none;
    width: 100%;
    text-align: center;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
}

section#secciones .content .box-secciones li:hover a {
    background: rgba(0, 0, 0, 0.6);
}

section#secciones .content .box-secciones li:hover a h2 {
    display: block;
}

/* MARGIN */
.box-margin {
    width: 100%;
    display: table;
    margin-top: 75px;
}