@font-face {
    font-family: 'HighlandGothicFLF Regular';
    font-style: normal;
    font-weight: normal;
    src: local('HighlandGothicFLF Regular'), url('../fonts/HighlandGothicFLF.woff') format('woff');
}

@font-face {
    font-family: 'Balibold';
    font-style: normal;
    font-weight: normal;
    src: local('Balibold'), url('../fonts/Balibold.woff') format('woff');
}

@font-face {
    font-family: 'Hackney';
    font-style: normal;
    font-weight: normal;
    src: local('Hackney'), url('../fonts/Hackney.woff') format('woff');
}

* {
    user-select: none;
    -webkit-user-select: none;
}

body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #fff;
    position: relative;
    overflow-x: hidden;
    user-select: none;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar:vertical {
  display: block;
  width: 5px;
}
  
::-webkit-scrollbar-track:vertical {
  background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
  background: #5b5b5b;
}

/**** NAVEGADOR */

.nav {
    width: 100%;
    height: 100px;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: #000; */
    z-index: 10;
    /* box-shadow: 0px 0px 4px 2px #cecece; */
}

.nav.active {
    background-color: #fff;
}

.header-nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-logo {
    width: 80px;
    position: absolute;
    top: 10px;
    left: 25px;
}

.nav-logo img {
    width: 100%;
}

.icons-header-nav {
    width: auto;
    height: 35px;
    margin-right: 20px;
    display: flex;
}

.icon-header-nav {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    margin: 0 2.5px;
    cursor: pointer;
    color: #fff;
}

.icon-header-nav.active {
    color: #000;
}

.nav-ops {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
    background-color: rgba(173, 169, 169, 0.2);
}

.nav-ops.active {
    background-color: #F3F3F3;
}

.nav-op {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

.nav-op.active {
    color: #000;
}

.nav-ham {
    display: none;
}

.nav-ham.alt {
    color: #fff;
}

.nav-ops-mob {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background-color: #000;
    z-index: 50;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    transition: 1s all ease;
    -webkit-transition: 1s all ease;
    -moz-transition: 1s all ease;
    -ms-transition: 1s all ease;
    -o-transition: 1s all ease;
}

.nav-ops-mob.alt {
    right: 0;
}

.close-nav-ops-mob {
  font-size: 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  color: #fff;
  cursor: pointer;
}

.nav-op-mob {
  width: 90%;
  margin: 15px auto;
  text-align: right;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1319px) {
    .nav-ham {
        display: block;
    }

    .nav-ops {
        display: none;
    }
}

/**** GENERAL */

.main {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 170px);
    margin: 20px auto;
    margin-top: 170px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
}

@media(max-width: 950px) {

    .main {
        margin-top: 100px;
        min-height: calc(100vh - 100px);
    }
}

.titulo-main {
    width: 90%;
    height: auto;
    margin: 0 auto;
    text-align: center;
    font-family: 'Hackney', sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    color: #000;
}

.texto-main {
    width: 100%;
    margin: 10px auto;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7D7D7D;
}

form {
    width: 320px;
    height: auto;
    margin: 0 auto;
}
  
input {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
  
label {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.textfield {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background-color: transparent;
    height: calc(3em + 2px);
    padding: 1em;
    font-size: 1em;
    border: none;
    border-bottom: 1px solid #5b5b5b;
    border-radius: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-shadow: none;
    box-shadow: none;
    resize: none;
    outline: none;
    color: #5b5b5b;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

input[value="0000-00-00"]::-webkit-datetime-edit {
    color: transparent; 
}

.textfield:focus,
.textfield:active {
    border-bottom: 1px solid #E4131E;
}

.textfield:focus + label:before,
.textfield:active + label:before {
    color: #5b5b5b;
}

.textfield + label {
    display: block;
    font-size: 1em;
    height: 3em;
    line-height: 3em;
    margin-top: calc(-3em - 1px);
    margin-bottom: 1em;
    pointer-events: none;
}

.textfield + label:before {
    content: attr(placeholder);
    display: inline-block;
    color: #5D5D5D;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0 calc(1em + 2px);
    white-space: nowrap;
    transition-property: color, -webkit-transform;
    -webkit-transition-property: color, -webkit-transform;
    transition-property: transform, color;
    transition-property: transform, color, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0;
    transition-delay: 0;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.textfield:focus + label:before,
.textfield.active + label:before,
.textfield:valid + label:before {
    background: #ffffff;
    line-height: 1;
    padding: 0 1.5px;
    -webkit-transform: translateY(calc(-3em / 2 - 1px/2)) scale(0.8, 0.8);
    transform: translateY(calc(-3em / 2 - 1px/2)) scale(0.8, 0.8);
}

.contenedorRelativeForm {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
  
.btnOpForm {
    position: absolute;
    top: 15px;
    left: calc(100% - 40px);
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 15px;
    color: #E4131E;
    cursor: pointer;
}

.olvide {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #6A6A6A;
    text-decoration: underline;
    cursor: pointer;
}

.btn2 {
    width: 140px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin: 20px 0;
    background-color: #EBEBEB;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #848484;
    cursor: pointer;
}

.btn3 {
    width: 200px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin: 20px auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-decoration: underline;
    color: #848484;
    cursor: pointer;
    border-radius: 5px;
}

.contenido {
    width: 100%;
    height: auto;
    margin: 0 auto;
    /* margin-top: 70px; */
    display: flex;
    flex-wrap: wrap;
}

.sombra-imgs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    line-height: 52px;
    text-align: center;
    background-color: #25D366;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: 50;
}

.contenedor-flex {
    width: 100%;
    height: auto;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
}

.contenedor-wrap-reverse {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap-reverse;
}

.sombra,
.sombra-filtros {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 49;
    display: none;
}

.sombra.active,
.sombra-filtros.active {
    display: block;
}

.contenedor-principal-filtrar {
    position: fixed;
    top: 0;
    right: -330px;
    width: 330px;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
    z-index: 999;
    overflow-y: scroll;
}

.contenedor-principal-filtrar::-webkit-scrollbar {
    display: none;
}

.contenedor-principal-filtrar.active {
    right: 0;
}

.close-contenedor-filtrar {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    color: #f0f0f0;
    font-size: 17px;
}

.leyenda-filtros {
    width: 90px;
    height: 30px;
    line-height: 30px;
    margin: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    color: #f0f0f0;
    cursor: pointer;
    text-decoration: underline;
    font-size: 13px;
}

.contenedor-filtro {
    width: 90%;
    height: auto;
    margin: 15px auto;
    display: flex;
    flex-wrap: wrap;
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #5b5b5b;
}

.titulo-filtro {
    width: 100%;
    height: auto;
    margin: 10px;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #f0f0f0;
}

.opciones-filtro {
    width: 100%;
    height: 120px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow-y: scroll;
}

.contenedor-labels-precios {
    width: 80%;
    height: auto;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
}

.label-precio {
    width: 50%;
    height: auto;
    margin: 0 auto;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #f0f0f0;
}

.noUi-connect {
    height: 10px;
    background: #9c9c9c;
}

.noUi-horizontal {
    height: 10px;
    background: transparent;
}

.noUi-horizontal .noUi-handle {
    width: 24px;
    height: 18px;
    background-color: #cecece;
}

.noUi-handle:after, .noUi-handle:before {
    width: 0;
}

.noUi-background {
    background: #fff;
}

.btn-aplicarfiltros {
    width: 220px;
    height: 45px;
    line-height: 45px;
    margin: 10px auto;
    background-color: #E4131E;
    color: #fff;
    font-size: 15px;
    text-align: center;
    font-family: 'Balibold', sans-serif;
    font-style: normal;
    cursor: pointer;
}

/********* CHECKBOX FILTROS */

.container-filtros {
    width: 100%;
    display: block;
    position: relative;
    padding-left: 35px;
    margin: 10px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #f0f0f0;
}

.container-filtros input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark-filtros {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border: 1px solid #bdbdbd;
    background-color: transparent;
}

.container-filtros:hover input ~ .checkmark-filtros {
    border: 1px solid #545454;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-filtros:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container-filtros input:checked ~ .checkmark-filtros:after {
    display: block;
}

/* Style the checkmark/indicator */
.container-filtros .checkmark-filtros:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #E4131E;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

/* ********* CARRITO */

.panel-carrito {
    width: 100%;
    max-width: 450px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -500px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px 2px #929292;
    -webkit-box-shadow: 0px 0px 4px 2px #929292;
    z-index: 9999;
    overflow-y: scroll;
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
}

.panel-carrito::-webkit-scrollbar {
    display: none;
}

.show {
    right: 0;
}

.header-panel-carrito {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.titulo-header-panel-carrito {
    width: 90%;
    height: 20px;
    line-height: 20px;
    text-align: left;
    margin: 14px auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #302F2F;
    text-transform: uppercase;
    font-weight: 600;
}

.cerrar-header-panel-carrito {
    width: 10%;
    height: 20px;
    line-height: 20px;
    text-align: right;
    margin: 14px auto;
    font-size: 20px;
    color: #302F2F;
    cursor: pointer;
}

.mensaje-header-panel-carrito {
    width: 100%;
    height: auto;
    margin: 14px auto;
    margin-top: 0;
    background-color: #c2c2c2;
    padding: 14px 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 300;
}

.filas-panel-carrito {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #DEDEDE;
}

.fila-panel-carrito {
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: flex;
    position: relative;
}

.img-fila-panel-carrito {
    width: 102px;
    height: 132px;
    margin: 0 auto;
    border: 1px solid #D1D1D1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contenido-fila-panel-carrito {
    width: calc(100% - 140px);
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.titulo-contenido-fila-panel-carrito {
    width: calc(100% - 10px);
    height: auto;
    text-align: left;
    margin: 5px 0;
    margin-left: 5px;
    font-size: 17px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #302F2F;
    text-transform: uppercase;
}

.descripcion-contenido-fila-panel-carrito {
    width: calc(100% - 10px);
    height: auto;
    text-align: left;
    margin: 5px 0;
    margin-left: 5px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #000000;
    text-transform: uppercase;
}

.contenedor-accesorios-fila-panel-carrito {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 5px auto;
    border-top: 1px solid #e4131d98;
}

.titulo-accesorios-fila-panel-carrito {
    width: calc(100% - 10px);
    text-align: left;
    margin: 5px 0;
    margin-left: 5px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 600;
}

.accesorio-fila-panel-carrito {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.nombre-accesorio-fila-panel-carrito {
    width: 90%;
    text-align: left;
    margin: 5px 0;
    margin-left: 5px;
    font-size: 11px;
    font-family: 'Montserrat', sans-serif;
    color: #5b5b5b;
}

.btn-accesorio-fila-panel-carrito {
    margin: 5px 0;
    text-align: center;
    font-size: 13px;
    color: #bdbdbd;
    cursor: pointer;
}

.precio-contenido-fila-panel-carrito {
    width: 90px;
    height: 36px;
    line-height: 36px;
    margin: 10px auto;
    margin-left: 5px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800px;
    font-size: 15px;
    color: #000;
}

.contenendor-cantidad-contenido-fila-panel-carrito {
    width: 90px;
    height: 34px;
    margin: 10px auto;
    background-color: #ffffff;
    border: 1px solid #E4131E;
    display: flex;
}

.menos-contenendor-cantidad-contenido-fila-panel-carrito{
    width: 30px;
    height: 34px;
    margin: 0 auto;
    line-height: 34px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    color: #E4131E;
}

.cantidad-contenendor-cantidad-contenido-fila-panel-carrito {
    width: 30px;
    height: 34px;
    margin: 0 auto;
    line-height: 34px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300px;
    font-size: 12px;
    color: #000000;
}

.mas-contenendor-cantidad-contenido-fila-panel-carrito {
    width: 30px;
    height: 34px;
    margin: 0 auto;
    line-height: 34px;
    text-align: center;
    font-size: 12px;
    cursor: pointer;
    color: #E4131E;
}

.borrar-fila-carrito {
    width: 100px;
    height: 15px;
    line-height: 15px;
    text-align: right;
    margin: 10px auto;
    margin-left: calc(100% - 100px);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300px;
    font-size: 12px;
    color: #bdbdbd;
    text-decoration: underline;
    cursor: pointer;
}

.shipping-panel-carrito {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #DEDEDE;
}

.titulo-shipping-panel-carrito {
    width: 100%;
    height: 20px;
    line-height: 20px;
    margin: 5px auto;
    margin-top: 10px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.texto-shipping-panel-carrito {
    width: 100%;
    height: auto;
    margin: 0;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300px;
    font-size: 12px;
    color: #000000;
}

.subtotal-panel-carrito {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #DEDEDE;
}

.texto-subtotal-panel-carrito {
    width: 50%;
    height: 20px;
    line-height: 20px;
    margin: 12px auto;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.numero-subtotal-panel-carrito {
    width: 50%;
    height: 20px;
    line-height: 20px;
    margin: 12px auto;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.btncontinue-panel-carrito {
    width: 300px;
    height: 44px;
    line-height: 44px;
    margin: 7px calc(50% - 140px);
    margin-top: 25px;
    color: #FFFFFF;
    background-color: #E4131E;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300px;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
}

/**** HOME */

.portada-inicio {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.portada-inicio video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.texto-portada {
    width: 100%;
    margin-bottom: 40px;
    font-size: 60px;
    font-family: 'Hackney', sans-serif;
    color: #fff;
    text-align: center;
    z-index: 4;
    user-select: none;
}

.btn-portada {
    width: 200px;
    height: 45px;
    line-height: 45px;
    background-color: #E4131E;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Balibold', sans-serif;
    font-size: 15px;
    cursor: pointer;
    z-index: 4;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    user-select: none;
}

.flecha-portada-home {
    position: absolute;
    bottom: 10%;
    left: calc(50% - 15px);
    width: 30px;
    text-align: center;
    z-index: 4;
    font-size: 20px;
    color: #fff;
}

.seccion {
    width: 90%;
    /* max-width: 1200px; */
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.titulo-seccion {
    width: 100%;
    margin: 20px auto;
    margin-top: 40px;
    text-align: center;
    font-family: 'Hackney', sans-serif;
    font-size: 40px;
}

.elemento-seccion {
    width: 280px;
    height: 400px;
    margin: 10px;
}

.img-elemento-seccion {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.titulo-elemento-seccion {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: 'Balibold', sans-serif;
    font-size: 18px;
    color: #4C4B4C;
}

/**** TOPS */

.tops {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    /* background-color: #000000; */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.elementos-tops {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative;
    display: none;
}

.contenedor-elemento {
    width: 300px;
    height: auto;
}

.img-elemento2 {
    width: 100%;
    height: 300px;
    margin: 7px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
}

.nombre-elemento {
    margin: 7px 0;
    text-align: center;
    font-family: "Balibold", sans-serif;
    font-size: 20px;
    color: #FFF;
}

.cantidad-elemento {
    margin: 7px 0;
    text-align: center;
    font-family: 'Balibold', sans-serif;
    font-size: 18px;
    color: #969696;
}

.precio-elemento {
    margin: 7px 0;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    color: #fff;
}

.btns {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    margin: 0 auto;
}

.btn1 {
    width: 140px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    margin: 20px 0;
    background-color: #E4131E;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
}

.select {
    width: 300px;
    height: 38px;
    margin: 40px calc(50% - 150px);
    margin-top: 6px;
    border: 1px solid #E4131E;
    display: flex;
    position: relative;
}

.select i {
    width: 40px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    font-size: 16px;
    color: #E4131E;
    position: absolute;
    top: 0;
    right: 4px;
    cursor: pointer;
    z-index: 1;
}

.cborder {
    width: calc(100% - 10px);
    height: 38px;
    line-height: 38px;
    margin: 0;
    margin-left: 10px;
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 0;
    font-family: 'Balibold', sans-serif;
    font-size: 16px;
    text-align: left;
    color: #E4131E;
    position: relative;
    z-index: 2;
}

/**** LISTADO PRODUCTOS */

ul {
    width: 90%;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
}

.hiding {
    opacity: 1;
}

.hidden {
    display: none;
}

.elemento {
    width: 220px;
    height: auto;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.img-elemento {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* border: 1px solid #D1D1D1; */
    margin: 0 auto;
    cursor: pointer;
}

@media(max-width: 650px) {
    .elemento {
        width: 155px;
    }
    
    .img-elemento {
        width: 100%;
        height: 220px;
    }
}

.textos-elemento {
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.titulo-elemento {
    width: 100%;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    font-family: 'Balibold', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    color: #545454;
    margin-top: 8px;
}

.subtitulo-elemento {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #969696;
    margin-top: 2px;
}

.contenedor-precio-elemento {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-elemento {
    height: auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0C0C0C;
    margin: 12px 3px;
}

/**** SWIPER TOPS */

.elementos-tops-movil {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.swiper2 {
    width: 100%;
    max-width: 440px;
    height: 100%;
    margin: 20px auto;
    position: relative;
    padding-top: 40px;
    overflow: hidden;
}

@media(min-width: 1100px) {
    .elementos-tops-movil {
        display: none;
    }

    .elementos-tops {
        display: flex;
    }
}

/**** PRODUCTO */

.swiper {
    width: 90%;
    max-width: 420px;
    height: 510px;
    background-size: cover;
    background-position: center;
    margin: 10px auto;
    /* border: 1px solid #d1d1d1; */
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.swiper-slide-active,
.swiper-slide-duplicate-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.4;
}

.swiper-pagination-bullet {
    background-color: #000;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 15px;
  color: #000;
}

.contenido-elemento-big {
    width: 90%;
    max-width: 500px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    margin: 20px auto;
    position: relative;
}

.titulo-elemento-big {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'Hackney', sans-serif;
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
    margin: 0 auto;
}

.subtitulo-elemento-big {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'Balibold', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ADA9A9;
    margin: 7px auto;
}

.precio-elemento-big {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #0e0e0e;
    margin: 0 auto;
}

.texto-elemento-big {
    width: 100%;
    height: auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #4C4B4C;
    margin: 0 auto;
    margin-top: 20px;
    white-space: pre-wrap;
}

.separador-elemento-big {
    width: 100%;
    height: 1px;
    background-color: #E4131E;
    margin: 30px auto;
}

.titulo-accesorios {
    width: 100%;
    height: auto;
    text-align: left;
    font-family: 'Balibold', sans-serif;
    font-size: 18px;
    color: #000;
    text-transform: uppercase;
    margin: 0 auto;
}

.contenedor-checks {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
}

/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    line-height: 25px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid black;
    background-color: transparent;
}
  
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: transparent;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: transparent;
}
  
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}
  
/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #E4131E;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.opciones-elemento-big {
    width: 280px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.contenedor-cantidad {
    width: 100px;
    height: 36px;
    margin: 0 auto;
    display: flex;
    border: 1px solid #E4131E;
}

.icono-contenedor-cantidad {
    width: 25px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #4C4B4C;
    cursor: pointer;
    font-size: 15px;
    margin: 0 auto;
    user-select: none;
}

.texto-contenedor-cantidad {
    width: 50px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    color: #4C4B4C;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0 auto;
}

/**** CUENTA */

.opciones-cuenta {
    width: 90%;
    max-width: 400px;
    height: auto;
    margin: 20px auto;
    position: relative;
}

.opcion-cuenta {
    width: 100%;
    height: 90px;
    line-height: 90px;
    margin: 0 auto;
    border-bottom: 1px solid #E4131E;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #5D5D5D;
    cursor: pointer;
    position: relative;
}

.opcion-cuenta i {
    width: 30px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    color: #E4131E;
    font-size: 10px;
}

/**** MIS PEDIDOS */.contenedor-pedidos {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
}

.contenedor-pedido {
    width: 300px;
    height: auto;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #E4131E;
    position: relative;
}

.numero-pedido {
    width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #545454;
}

.fecha-pedido {
    width: 90%;
    height: auto;
    margin: 10px auto;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #aeaeae;
}

.estado-pedido {
    width: 90%;
    height: auto;
    margin: 5px auto;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #aeaeae;
}

.total-pedido {
    width: 90%;
    height: auto;
    margin: 5px auto;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.vermas-pedido {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 70px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    cursor: pointer;
    text-decoration: underline;
}

/****** INFO PEDIDO */


.contenedor-info-pedido {
    width: 100%;
    max-width: 950px;
    height: auto;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
}

.pedido-info-section {
    width: 90%;
    max-width: 450px;
    height: auto;
    margin: 20px auto;
    margin-bottom: 0;
}

.pedido-info-header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #E4131E;
    padding-bottom: 10px;
}

.pedido-info-header-title {
    width: 90%;
    height: 25px;
    line-height: 25px;
    margin: 15px auto;
    margin-bottom: 10px;
    text-align: left;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
}

.pedido-info-header-text {
    width: 90%;
    height: 20px;
    line-height: 20px;
    margin: 5px auto;
    text-align: left;
    color: #989898;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pedido-info-header-text a {
    text-decoration: none;
    color: #888888;
}

.pedido-info-header-text i {
    width: 20px;
    text-align: left;
    color: #000;
}

.pedido-status {
    width: 100%;
    height: 100px;
    margin: 20px auto;
    margin-bottom: 0;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    border: 1px solid #E4131E;
}

.rastreo-statu {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    position: relative;
    background-color: #ffffff;
    border: 2px solid #8d8d8d;
    border-radius: 1000px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    -ms-border-radius: 1000px;
    -o-border-radius: 1000px;
}

.rastreo-statu-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    color: #8d8d8d;
}

.rastreo-statu-text {
    width: 100%;
    height: 14px;
    line-height: 14px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #bbbbbb;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.filas-pedido {
    width: 90%;
    max-width: 450px;
    height: auto;
    margin: 20px auto;
    padding-bottom: 15px;
    background-color: #ffffff;
    border: 1px solid #E4131E;
}

.header-filas-pedido {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #a0a0a0;
}

.titulo-header-filas-pedido {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: left;
    margin: 14px auto;
    font-size: 20px;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.filas-filas-pedido {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #a0a0a0;
}

.fila-pedido {
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: flex;
    position: relative;
}

.img-fila-pedido {
    width: 120px;
    height: 135px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contenido-fila-pedido {
    width: calc(100% - 135px);
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.titulo-contenido-fila-pedido {
    width: calc(100% - 10px);
    height: 15px;
    line-height: 15px;
    text-align: left;
    margin: 5px 0;
    margin-left: 10px;
    font-size: 17px;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.texto-contenido-fila-pedido {
    width: calc(100% - 10px);
    height: auto;
    text-align: left;
    margin: 5px 0;
    margin-left: 10px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
}

.precio-contenido-fila-pedido {
    width: calc(100% - 10px);
    height: 34px;
    margin: 5px 0;
    margin-left: 10px;
    line-height: 34px;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #000000;
}

.subtotal-filas-pedido {
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    border-bottom: 1px solid #a0a0a0;
}

.texto-subtotal-filas-pedido {
    width: 50%;
    height: 18px;
    line-height: 18px;
    margin: 10px auto;
    text-align: left;
    color: #545454;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
}

.numero-subtotal-filas-pedido {
    width: 50%;
    height: 18px;
    line-height: 18px;
    margin: 10px auto;
    text-align: right;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
}

/**** DIRECCIONES */

.direcciones {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.leyenda-direcciones {
    width: 100%;
    margin-top: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #6A6A6A;
}

.direccion {
    width: 90%;
    height: auto;
    margin: 12px auto;
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #C9C9C9;
    border-bottom: 1px solid #C9C9C9;
    padding: 20px 0;
}

.titulo-direccion {
    width: 100%;
    height: auto;
    margin: 5px auto;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #707070;
}

.subtitulo-direccion {
    width: 100%;
    height: auto;
    margin: 0 auto;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #AFAFAF;
}

.texto-direccion {
    width: 100%;
    height: auto;
    margin: 20px auto;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #707070;
}

.formulario {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background-color: #ffffff;
    border-top: 1px solid #cecece;
    position: fixed;
    top: 105vh;
    left: 0;
    transition: 0.6s all ease-out;
    -webkit-transition: 0.6s all ease-out;
    z-index: 99;
}

.formulario.active {
    top: 0;
}

.formulario::-webkit-scrollbar {
    display: none;
}

.cerrar-formulario {
    width: 50px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #5b5b5b;
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 0;
}

.titulo-formulario {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #5b5b5b;
    cursor: pointer;
    position: absolute;
    top: 100px;
    right: 0;
}

.contenido-formulario {
    width: 90%;
    max-width: 900px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin: 60px auto;
    margin-top: 160px;
    position: relative;
}

/********* CHECKOUT */

.secciones-checkout {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}

.seccion-checkout {
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
}

.titulo-seccion-checkout {
    width: 100%;
    height: auto;
    margin: 10px auto;
    margin-top: 25px;
    font-size: 30px;
    font-family: 'Hackney', sans-serif;
    font-style: normal;
    color: #545454;
}

.contenedor-direccion {
    width: 100%;
    height: auto;
    margin: 10px auto;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #E4131E;
    position: relative;
}

.nombre-direccion {
    width: 90%;
    height: auto;
    margin: 0 auto;
    margin-top: 10px;
    font-family: 'Balibold', sans-serif;
    font-style: normal;
    font-size: 18px;
    color: #545454;
}

.telefono-direccion {
    width: 90%;
    height: auto;
    margin: 0 auto;
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #989898;
    font-size: 16px;
}

.texto2-direccion {
    width: 90%;
    height: auto;
    margin: 20px auto;
    font-family: futura-pt, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    color: #545454;
}

.container-direccion {
    display: block;
    position: absolute;
    padding-left: 35px;
    top: 10px;
    right: 0;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #f0f0f0;
}
  
.container-direccion input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark-direccion {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border: 1px solid #929292;
    background-color: transparent;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
  
.container-direccion:hover input ~ .checkmark-direccion {
    border: 1px solid #545454;
}
  
.checkmark-direccion:after {
    content: "";
    position: absolute;
    display: none;
}
  
.container-direccion input:checked ~ .checkmark-direccion:after {
    display: block;
}
  
.container-direccion .checkmark-direccion:after {
    left: 1px;
    top: 1px;
    width: 15px;
    height: 15px;
    background-color: #E4131E;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.agregar-nueva-checkout {
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #989898;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 10px;
}

.contenedor-envio {
    width: 100%;
    height: auto;
    margin: 10px auto;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
    border: 1px solid #E4131E;
    position: relative;
}

.nombre-envio {
    /* width: 80%; */
    margin: 0;
    /* margin-top: 10px; */
    height: 28px;
    line-height: 28px;
    margin-left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: #545454;
    text-align: left;
}

.dias-envio {
    width: 80%;
    height: auto;
    margin: 0;
    margin-bottom: 10px;
    margin-left: 45px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 13px;
    color: #aeaeae;
    text-align: left;
}

.precio-envio {
    /* position: absolute;
    top: calc(50% - 14px);
    right: 45px; */
    /* width: 70px; */
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.container-envio {
    display: block;
    position: absolute;
    padding-left: 15px;
    top: calc(50% - 8.5px);
    left: 15px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #f0f0f0;
}
 
.container-envio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
 
.checkmark-envio {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    border: 1px solid #929292;
    background-color: transparent;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
 
.container-envio:hover input ~ .checkmark-envio {
    border: 1px solid #545454;
}
 
.checkmark-envio:after {
    content: "";
    position: absolute;
    display: none;
}
 
.container-envio input:checked ~ .checkmark-envio:after {
    display: block;
}
 
.container-envio .checkmark-envio:after {
    left: 1px;
    top: 1px;
    width: 15px;
    height: 15px;
    background-color: #E4131E;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.contenedor-descuento {
    width: 90%;
    max-width: 380px;
    height: auto;
    margin: 0;
    display: flex;
}

.textfield-descuento {
    width: calc(100% - 100px);
    height: 40px;
    line-height: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    color: #aeaeae;
    text-align: center;
    border: 1px solid #E4131E;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    resize: none;
    outline: none;
}

.textfield-descuento:focus {
    outline: none;
}

.btn-descuento {
    width: 100px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #E4131E;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    cursor: pointer;
}

.contenedor-resumen {
    width: 100%;
    height: auto;
    margin: 40px auto;
    background-color: #f0f0f0;
    display: flex;
    flex-wrap: wrap;
}

.titulo-contenedor-resumen {
    width: 90%;
    height: 30px;
    line-height: 30px;
    margin: 10px auto;
    font-size: 30px;
    font-family: 'Hackney', sans-serif;
    font-style: normal;
    color: #545454;
    border-bottom: 1px solid #5b5b5b;
    position: relative;
}

.titulo-contenedor-resumen i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.linea-resumen {
    width: 90%;
    height: 50px;
    margin: 0 auto;
    border-bottom: 1px solid #b3b3b3;
    display: flex;
}

.texto-linea-resumen {
    width: 50%;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #000000;
    text-align: left;
}

.numero-linea-resumen {
    width: 40%;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    color: #000000;
    text-align: right;
}

.filas-resumen {
    width: 90%;
    height: auto;
    margin: 10px auto;
    display: none;
}

.filas-resumen.active {
    display: block;
}

.fila-resumen {
    width: 100%;
    height: auto;
    display: flex;
    margin: 5px auto;
}

.imagen-fila-resumen {
    width: 40px;
    height: 65px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #b3b3b3;
    margin: 0 auto;
}

.contenido-fila-resumen {
    width: calc(100% - 60px);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.titulo-contenido-fila-resumen {
    width: 100%;
    height: 18px;
    line-height: 18px;
    text-align: left;
    font-family: 'Balibold', sans-serif;
    font-size: 14px;
    color: #000000;
    overflow: hidden;

}

.subtitulo-contenido-fila-resumen {
    width: 100%;
    height: 16px;
    line-height: 16px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 10px;
    color: #727272;
}

.texto-contenido-fila-resumen {
    width: 100%;
    height: 18px;
    line-height: 18px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
}

.btn-pagar-checkout {
    width: 100%;
    height: 38px;
    line-height: 38px;
    margin: 0;
    display: flex;
    background-color: #848484;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
}

.contenido-btn-pagar-checkout {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    display: flex;
}

.texto-btn-pagar-checkout {
    width: 50%;
    height: 100%;
    margin: 0 auto;
}

.icono-btn-pagar-checkout {
    width: 40%;
    height: 100%;
    margin: 0 auto;
    text-align: right;
}

/*POPUP CARGANDO*/
.contenedor-popup-cargando {
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.1);
    z-index: 15;
}

/* ********* POPUP */

.popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #030405;
    display: none;
}
  
.icono-popup {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 calc(50% - 30px);
    margin-top: 30vh;
    z-index: 99;
    border: 4px solid #fff;
    color: #fff;
    font-size: 40px;
    border-radius: 1000px;
}
  
.mensaje-popup {
    width: 95%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #fff;
    margin: 0 auto;
    margin-top: 20px;
}
  
.spinner-popup {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0 calc(50% - 30px);
    margin-top: 30vh;
    z-index: 99;
    color: #fff;
    font-size: 50px;
}
  
.btn-popup {
    width: 160px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    color: #030405;
    margin: 25px calc(50% - 80px);
    border-radius: 5px;
    cursor: pointer;
}

/***** RECIBO */

.logo-recibo {
    height: 130px;
    margin-bottom: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.logo-recibo img {
    height: 100%;
}

.titulo-recibo {
    width: 100%;
    height: auto;
    margin: 10px auto;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    text-align: center;
}

.mensaje-recibo {
    width: 100%;
    height: auto;
    margin: 10px auto;
    margin-bottom: 70px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    text-align: center;
}

.numeropedido-recibo {
    width: 100%;
    height: auto;
    margin: 10px auto;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #fff;
    text-align: center;
}

.btn-recibo {
    width: 200px;
    height: 40px;
    line-height: 40px;
    margin: 20px auto;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    background-color: #fff;
    color: #4C4B4C;
    cursor: pointer;
}

/* ********* LEGAL */

.seccion-legal {
    width: 90%;
    max-width: 1100px;
    height: auto;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.titulo-seccion-legal {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-bottom: 15px;
    text-align: left;
    font-family: futura-pt, sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
}

.separador-seccion-legal {
    width: 100%;
    height: 2px;
    background-color: #E4131E;
    margin: 5px auto;
}

.texto-seccion-legal {
    width: 100%;
    height: auto;
    margin: 10px auto;
    text-align: left;
    font-family: futura-pt, sans-serif;
    font-size: 17px;
    color: #302F2F;
}

.texto-seccion-legal a {
    color: #E4131E;
}

.subtitulo-seccion-legal {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 15px;
    text-align: left;
    font-family: futura-pt, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #E4131E;
    text-transform: uppercase;
}

/************** FOOTER */

.footer {
    width: 100%;
    height: auto;
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    position: relative;
}

.seccion-footer {
    width: 90%;
    max-width: 320px;
    height: auto;
    margin: 10px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.title-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #fff;
    width: 100%;
    height: 24px;
    line-height: 24px;
    margin: 10px auto;
    margin-top: 25px;
    /* letter-spacing: 2px; */
}

.text-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #ddd;
    width: 100%;
    height: auto;
    margin: 5px auto;
    cursor: pointer;
    /* letter-spacing: 2px; */
}

.text-footer a {
    color: #ddd;
    text-decoration: none;
}

.icon-footer {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
    margin-right: 15px;
}

.text-alt-footer {
    width: 100%;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    /* letter-spacing: 2px; */
}

.text-alt-footer a {
    color: #cecece;
    text-decoration: none;
}

.line-footer {
    width: 98%;
    height: 1px;
    background-color: #5b5b5b;
    margin: 20px auto;
}

.powered {
    width: 100%;
    margin: 0 auto;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.somm {
    font-family: 'HighlandGothicFLF Regular';
    color: #fff;
    font-size: 10px;
    padding-left: 5px;
    cursor: pointer;
}