/* Shipper  */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    color: #31302E;
    background-color: #ffffff;
}


/* Elementos */

.clearfix::after {
    content: '';
    clear: both;
    display: table;
}

h1 {
    font-size: 3.8rem;
    font-weight: 300;
    line-height: 1.2;
}

h4 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

strong,
b {
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

.btn-round {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 40px;
}

.btn-round:hover {
    background-color: #198EB0;
    color: #ffffff;
}

.btn-round.b-white {
    border: 2px solid #198EB0;
    background-color: #ffffff;
}

.btn-round.b-white:hover {
    border: 2px solid #198EB0;
    background-color: #198EB0;
}


/* Interletrado */

.ls-1 {
    letter-spacing: 1px;
}


/* Interlineado */

.l-1_2 {
    line-height: 1.2;
}

.l-2 {
    line-height: 2;
}


/* Tamaño */

.s-12 {
    font-size: 0.75rem;
}

.s-14 {
    font-size: 0.85rem;
}

.s-18 {
    font-size: 1.15rem;
}

.s-22 {
    font-size: 1.35rem;
}

.s-36 {
    font-size: 2.25rem;
}


/* Variables */

.f-light {
    font-weight: 300;
}


/* Colores */

.t-white {
    color: #ffffff;
}

.t-orange {
    color: #F9A613;
}

.t-blue {
    color: #198EB0;
}

.b-blue {
    background-color: #198EB0;
}

.b-orange {
    background-color: #F9A613;
}

.b-grey {
    background-color: #31302E;
}


/* Header */

.main-header {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 40px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-nav {
    margin: 0;
    padding: 0;
}

.main-nav li {
    padding: 10px;
    display: inline-block;
}

.main-nav li a {
    color: #ffffff;
    font-weight: 700;
}

.main-nav li a:hover {
    color: #F9A613;
}

.main-nav .btn-login {
    margin-left: 40px;
}

.main-nav .btn-login a {
    border: 2px solid #F9A613;
}

.main-nav .btn-login a:hover {
    color: #ffffff;
    border: 2px solid #198EB0;
}

.main-nav .btn-register a {
    color: #198EB0;
}

.main-nav .btn-register a:hover {
    color: #ffffff;
}

.main-nav .dropdown:hover>.sub-menu {
    left: 0;
}

.sub-menu {
    margin: 10px 0 0 0;
    padding: 0px 0px 10px 0px;
    display: block;
    float: left;
    position: absolute;
    z-index: 99999;
    width: 210px;
    left: -9999px;
    background-color: #1E7B95;
    border-radius: 10px;
}

.sub-menu li {
    padding-top: 10px;
    padding-bottom: 0;
}


/* Small Header */

.main-header.on {
    padding: 10px 40px;
    background-color: #198EB0;
    -webkit-box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
    -moz-box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
    box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
}

.main-header.on #logo svg {
    width: 220px;
}

.main-header.on .iso {
    fill: #F9A613;
}

.main-header.on .textlogo {
    fill: #ffffff;
}

.main-header.on nav {
    display: flex;
    align-items: center;
}

.main-header.on .main-nav {
    margin: 0;
}


/* Nav mobile */

.main-header.open {
    padding-bottom: 520px !important;
    background-color: #31302E;
    -webkit-box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
    -moz-box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
    box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
}

.main-nav.open {
    display: block;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    position: absolute;
    padding: 0;
    left: 0;
    top: 100px;
    width: 100%;
    z-index: 1001;
}

.main-nav.open li {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.main-nav.open li a {
    font-size: 1.5rem;
    font-weight: 300;
}

.main-nav.open .btn-ayuda {
    display: none;
}

.main-nav.open .sub-menu {
    float: none;
    display: block;
    position: inherit;
    left: inherit;
    width: auto;
    margin: 0;
    padding: 0;
    background: none;
}

.main-nav.open .sub-menu li {
    padding-top: 0;
}

.main-nav.open .sub-menu li:last-child {
    padding: 20px 0 0 0;
}

.main-nav.open .btn-login,
.main-nav.open .btn-register {
    padding: 20px 0;
}

.main-nav.open .btn-login a,
.main-nav.open .btn-register a {
    font-size: inherit;
    font-weight: 700;
}


/* Menu mobile */

.menu-mobile-container {
    display: none;
    position: absolute;
    top: 25px;
    right: 20px;
}

.menu-mobile {
    width: 60px;
    height: 40px;
    padding: 10px;
}

.menu-mobile:hover>span {
    border: 2px solid #F9A613;
}

.menu-mobile.open span:first-child {
    -webkit-transform: rotate(45deg) translateY(6px) translateX(6px);
    -ms-transform: rotate(45deg) translateY(6px) translateX(6px);
    -o-transform: rotate(45deg) translateY(6px) translateX(6px);
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

.menu-mobile.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateY(1px) translateX(0px);
    -ms-transform: rotate(-45deg) translateY(1px) translateX(0px);
    -o-transform: rotate(-45deg) translateY(1px) translateX(0px);
    transform: rotate(-45deg) translateY(1px) translateX(0px);
}

.menu-mobile.open span:nth-child(2) {
    display: none;
}

.menu-mobile span {
    width: 100%;
    border: 2px solid #ffffff;
    display: block;
    -webkit-transition: .2s cubic-bezier(0, 0, 0, 1) all;
    -o-transition: .2s cubic-bezier(0, 0, 0, 1) all;
    transition: .2s cubic-bezier(0, 0, 0, 1) all;
    transform-origin: center;
}

.menu-mobile span:nth-child(2) {
    margin: 4px 0;
}

.menu-mobile span:nth-child(3) {
    margin: 4px 0 0 0;
}


/* Cómo Funciona */

#como-funciona {
    padding: 80px 40px 200px 40px;
    background-color: #F5FAFC;
}

.funciona {
    margin: 60px 0 80px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.funciona li {
    width: 22%;
    position: relative;
}

.funciona li div {
    height: 180px;
}

.funciona li:after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #C7CACB;
    position: absolute;
    right: -8%;
    top: 0;
}

.funciona li:last-child img {
    margin-left: -90px;
}

.funciona li:last-child:after {
    content: none;
}


/* Sliders */

#main-slider {
    width: 100%;
    height: 650px;
}

.slider-text {
    position: absolute;
    top: 55%;
    left: 100px;
    width: 38%;
    color: #ffffff;
    transform: translateY(-50%);
    z-index: 2;
}

.slider-text h1 {
    line-height: 0.95;
}

.slider-content {
    width: 100%;
    height: 650px;
    position: relative;
}

.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide-image:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgb(16, 16, 17);
    background: linear-gradient(130deg, rgba(16, 16, 17, 0.7) 0%, rgba(8, 8, 8, 0) 100%);
    z-index: 2;
    top: 0;
    right: 0;
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.logo-slider {
    margin: 60px 0;
}

.logo-slider .shop {
    width: 180px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.logo-slider .shop img {
    max-height: 60px;
}

.logo-slider .slick-dots {
    margin: 50px auto 0 auto;
    padding: 0;
    text-align: center;
    list-style-type: none;
}

.logo-slider .slick-dots li {
    display: inline-block;
    margin: 0 4px;
    border: 1px solid #F9A613;
    border-radius: 100%;
}

.logo-slider .slick-dots button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    background-color: transparent;
    text-indent: -9999px;
}

.logo-slider .slick-dots li:hover {
    background-color: #F9A613;
}

.logo-slider .slick-dots li.slick-active {
    background-color: #F9A613;
}


/* Banners */

.btn-play {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    position: relative;
}

.btn-play:hover {
    background-color: #31302E;
}

.btn-play:after {
    content: '';
    position: absolute;
    /* background-image: url('../img/icons/play.svg'); */
    background-image: url('/public/img/icons/play.svg');
    width: 20px;
    height: 35px;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
}

.banner-somos {
    padding: 80px 40px;
}

.imagen-traer {
    display: flex;
    align-items: center;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-image: url('/public/img/banner/que-puedo-traer.jpg');
    position: relative;
}

.imagen-traer div {
    padding-left: 90px;
    position: relative;
    z-index: 2;
}

.imagen-traer:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
}

.contenido-traer {
    padding: 80px 70px 10px 70px;
}

.contenido-traer .small a {
    color: #ffffff;
    font-weight: 900;
    border-bottom: 1px solid #ffffff;
}

.contenido-traer .small a:hover {
    color: #F9A613;
    border-bottom: 1px solid #F9A613;
}

.contacto-pyme {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

.contacto-pyme:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
}


/* Calculadora */

.calculadora-container {
    margin: -120px auto 40px auto;
    background: #198EB0;
    border-radius: 10px;
    -webkit-box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
    -moz-box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
    box-shadow: 2px 6px 10px 0px rgba(72, 69, 69, 0.3);
}

@media screen and (max-width: 767px) {
    .calculadora-container {
        margin-top: 20px;
    }
}

#calculator-form label {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
}

#calculator-form .form-control {
    border-radius: 0;
}

.destacado-prohibidos {
    background-color: #1E7B95;
    border-radius: 0 0 10px 10px;
}

.destacado-prohibidos a {
    color: #ffffff;
}

.destacado-prohibidos a:hover {
    color: #F9A613;
}

.destacado-prohibidos a strong {
    margin-left: 10px;
    border-bottom: 1px solid #ffffff;
}


/* Registrate */

#form-registro label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
}

#form-registro input[type="text"],
#form-registro input[type="email"],
#form-registro textarea,
#form-registro input[type="password"] {
    padding: 20px;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 20px;
}

#form-registro select {
    border-radius: 0;
    margin-bottom: 20px;
}

.destacado-registrate {
    background-color: #1E7B95;
    border-radius: 0 0 10px 10px;
}


/* Ventajas */

.ventajas {
    padding: 80px 40px;
    background-color: #F5FAFC;
    overflow-x: hidden;
}

.ventajas-img {
    height: 200px;
}

.ventajas-top,
.ventajas-bottom {
    position: relative;
}

.ventajas-top:before {
    content: '';
    position: absolute;
    background-image: url('/public/img/line-top.svg');
    top: -75px;
    right: -70px;
    width: 1168px;
    height: 241px;
}

.ventajas-bottom:before {
    content: '';
    position: absolute;
    background-image: url('/public/img/line-bottom.svg');
    top: 80px;
    left: -100px;
    width: 1003px;
    height: 149px;
}


/* Contacto */

#contacto {
    padding: 80px 0 140px 0;
}

#contacto h1 {
    margin-bottom: 60px;
}

#contacto .datos a {
    color: #198EB0;
    border-bottom: 1px solid #198EB0;
}

#contacto .datos a:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
}

#contacto .datos .wa a {
    color: #000;
    border-bottom: none;
}

#contacto .datos .wa img {
    margin-right: 10px;
}

#contacto .datos a:hover {
    color: #198EB0;
}

#contacto .datos .social {
    margin: 30px 0 10px 0;
}

#contacto .datos .social a {
    border-bottom: none;
}


/* Form */

::-webkit-input-placeholder {
    color: #7E7D7B;
}

:-ms-input-placeholder {
    color: #7E7D7B;
}

::placeholder {
    color: #7E7D7B;
}

#form-contact {
    margin-top: 30px;
}

#form-contact label {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 700;
}

#form-contact input[type="text"],
#form-contact input[type="email"],
#form-contact textarea {
    padding: 20px;
    font-size: 14px;
    border-radius: 0;
    width: 100%;
    margin-bottom: 30px;
    background-color: #F1FBFE;
}

#form-contact #btn_envio_email_contacto {
    float: right;
    padding: 10px 40px;
}


/* Social */

.social {
    margin: 0;
    padding: 0;
}

.social li {
    width: auto;
    display: inline-block;
}

.social li a {
    width: auto;
    display: block;
    min-width: 15px;
    margin-right: 15px;
}

.social li a:hover {
    opacity: 0.6;
}


/* Whatsapp */

.btn-whatsapp {
    position: fixed;
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    border-radius: 70px;
    background-color: #4dc247;
}

.icon-whatsapp {
    line-height: 1;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Modal */

.modal {
    z-index: 99999;
}

.modal-header {
    padding: 2rem;
    border-bottom: none;
    justify-content: center;
}

.modal-header .close {
    font-size: 3rem;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 10px;
    font-weight: 300;
    color: #ffffff;
    opacity: 1;
    text-shadow: none;
}

.modal-header h5 {
    font-weight: 300;
    font-size: 2.5rem;
    color: #ffffff;
}

.modal-content {
    color: #ffffff;
    background-color: #198EB0;
    border-radius: 10px;
}

.modal-body ul {
    padding-left: 20px;
    list-style: disc;
}

.modal-backdrop.show {
    opacity: .85;
}


/* Footer */

footer {
    padding: 40px;
    background-color: #FAF5EE;
}

footer a {
    color: #000000;
}

footer a:hover {
    color: #F9A613;
}


/* DROPSHIPPING */


/* Cómo Funciona */

#que-necesitas {
    padding: 80px 40px 200px 40px;
    background-color: #F5FAFC;
}

.necesitas {
    margin: 60px 0 80px 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    #que-necesitas {
        padding: 60px 40px;
    }
    .necesitas {
        margin: 60px 0 80px 0;
    }
}


/*
.necesitas li {
	width: 30%;
	position: relative;
}
*/

.necesitas li div {
    height: 180px;
}


/*
.necesitas li:after {
	content: '';
	width: 1px;
	height: 100%;
	background-color: #C7CACB;
	position: absolute;
	right: -8%;
	top: 0;
}
*/

.necesitas li:last-child img {
    margin-left: 0px;
}


/*
.necesitas li:last-child:after {
	content: none;
}
*/


/* Ventajas */

.dropshipping-ventajas {
    padding: 140px 40px;
    background-color: #F5FAFC;
    overflow-x: hidden;
}

@media screen and (max-width: 767px) {
    .dropshipping-ventajas {
        padding: 60px 15px;
    }
}

.dropshipping-ventajas-img {
    height: 200px;
}

.dropshipping-ventajas-top,
.dropshipping-ventajas-bottom {
    position: relative;
}

.dropshipping-ventajas-top:before {
    content: '';
    position: absolute;
    background-image: url('/public/img/line-top.svg');
    top: -75px;
    right: -70px;
    width: 1168px;
    height: 241px;
}

.dropshipping-ventajas-bottom:before {
    content: '';
    position: absolute;
    background-image: url('/public/img/line-bottom.svg');
    top: 80px;
    left: -100px;
    width: 1003px;
    height: 149px;
}

.disabled{
    background-color: #dddddd;
    color: #999999;
}

.swal2-custom-zindex{
    z-index: 1060;
}

.swal2-container{
    z-index: 99999  !important;
}