*{
	margin: 0;
	padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif, 'Arial';
}

input,
button,
textarea{
    font-family: inherit;
}

.button-n{
    color: #fff!important;
    background: #57b7df;
    padding: .5rem 1.25rem;
    border-radius: 4px;
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.wrapper{
	width: 90%;
	margin: 0 auto;
	max-width: 85rem;
}

a.nostylelink{
    color: inherit;
    text-decoration: inherit;
}

.nos{
    display: flex;
}

.nos .col{
    width: 50%;
    padding: 2rem;
}

.nos ul{
    margin-bottom: 1.5rem;
}

.nos h2{
    margin-bottom: .5rem;
    border-bottom: 1px solid #000;
    padding-bottom: .25rem;
    font-size: 1.25rem;
}

.nos ul li{
    margin-left: .5rem;
    list-style: none;
    line-height: 1.4;
}

.nos ul li:before{
    content: '\f058';
    margin-right: .75rem;
    font-family: 'FontAwesome';
}

.scrollUp{
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    background: #57B7DF;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scrollUp svg{
    height: 1rem;
    width: 1rem;
}

.scrollUp:hover{
    transform: scale(1.1);
}

.thx{
    text-align: center;
}

main.thx{
    padding: 7rem 0;
}

.thx img{
    margin-bottom: 2rem;
    max-height: 7rem;
    max-width: 100%;
}

.thx h1, h2{
    margin: 0;
    font-weight: normal;
}

.thx h2{
    margin: .5rem 0;
    color: #444;
}

.thx a{
    margin-top: 3rem;
    display: inline-block;
    color: #57B7DF;
    font-size: 1.125rem;
}

/*

header .top{
    width: 100%;
    text-align: left;
    border-bottom: 2px solid #000;
    padding: 2rem 0rem;
    position: relative;
    background: #fff;
    z-index: 5;
}

header .top div{
    color: #444;
    font-size: 1.25rem;
    line-height: 1.5;
}

header .top .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header .bottom{
    border-bottom: 4px solid #000;
    background: #fff;
    position: relative;
    z-index: 4;
}

header .bottom .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

header nav .wrapper > ul > li{
    display: inline-block;
    text-decoration: none;
    position: relative;
}

header nav .wrapper > ul > li > a{
    padding: 1rem  1.5rem;
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

header nav .wrapper > ul > li.dropdown > a:after{
    content: '\f107';
    padding-left: .25rem;
    font-family: 'FontAwesome';
}

header nav .wrapper > ul > li.dropdown > ul{
    position: absolute;
    width: 20rem;
    background: #fff;
    border: 1px solid #000;
    top: calc(100% + 3px);
    padding: 1rem;
    box-shadow: 2px 2px 0 0 #000;
    transition: all .22s cubic-bezier(0.86, 0, 0.07, 1);
    transform: translate3d(0, 10%, 0);
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

header nav .wrapper > ul > li.dropdown:hover > ul{
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
}

header nav .wrapper > ul > li.dropdown > ul > li{
    list-style: none;
    transition: all .22s;
}

header nav .wrapper > ul > li.dropdown > ul > li:hover{
    transform: translate3d(5px, 0, 0);
}

header nav .wrapper > ul > li.dropdown > ul > li > a{
    color: #000;
    padding: .5rem 0;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: .875rem;
}

header .search-form input{
    padding: .75rem;
    border: none;
    border-left: 2px solid #000;
}

header .search-form input:focus{
    outline: 0;
}

header .search-form button{
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

*/

.above-header{
    position: relative;
    z-index: 21000;
    background: #57B7DF;
    text-align: center;
    color: #fff;
    padding: .5rem 0;
}

header{
    height: 8.75rem;
    overflow: visible;
    z-index: 2000000;
    box-shadow: 0 3px 8px 0 rgba(0,0,0,.06);
    position: relative;
    display: flex;
}

header .wrapper{
    justify-content: space-between;
    display: flex;
}

header .hamb{
    width: 10rem;
    height: 10rem;
    background: #57B7DF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .22s;
}

header .hamb.active{
    height: 8.75rem;
}

header .hamb:hover{
    background: #222;
}

header .hamb span{
    width: 3rem;
    height: 4px;
    background: #fff;
    display: block;
}

header .hamb div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 2.5rem;
}

header .logo{
    align-self: center;
    margin: 0 2rem;
}

header .logo img{
    height: 4rem;
}

header nav > ul{
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

header nav > ul > li{
    display: inline-block;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

header nav > ul > li.sp-new a:after{
    content: 'Nuevo';
    position: absolute;
    font-size: .475rem;
    font-weight: bold;
    background: #ff0f0f;
    border-radius: 4px;
    color: #fff;
    padding: 3px 5px;
    top: 37px;
}

header nav > ul > li > ul:after{
    content: '';
    background: transparent;
    top: -1.5rem;
    left: 0;
    display: block;
    position: absolute;
    width: 100%;
    height: 1.5rem;
}

header nav > ul > li > ul:before{
    content: '';
    width: 100%;
    height: 3px;
    background: #57B7DF;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

header{
    perspective: 400px;
    background: #fff;
}

header nav > ul > li > ul{
    width: 16rem;
    transition: all .22s;
    top: calc(100% - 1.5rem);
    box-shadow: 0 3px 10px 0 rgba(0,0,0,.1);
    padding: 2rem 2.5rem;
    background: #fff;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transform: scale(.5);
}

header nav > ul > li:hover > ul{
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

header nav > ul > li > ul > li{
    list-style: none;
}

header nav > ul > li > ul > li > a{
    line-height: 1.5;
    color: #222;
    text-decoration: none;
}

header nav > ul > li > a{
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: #222;
    padding: 0 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .22s;
    transition-delay: .22s;
}

header nav > ul > li > a > span{
    position: relative;
}

header nav > ul > li > a > span:after{
    background: #444;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    z-index: 2;
    transition: all .22s;
    bottom: -1.5rem;
    transform-origin: 0% 50%;
    transform: scaleX(0);
}

header nav > ul > li > a > span:before{
    transform-origin: 0% 50%;
    transform: scaleX(0);
    bottom: -1.5rem;
    background: #57B7DF;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 3px;
    z-index: 6;
    transition: all .22s;
    transition-delay: .22s; 
}

header nav ul li a:hover{
    color: #57B7DF;
}

header nav ul li a:hover span:before,
header nav ul li a:hover span:after{
    transform: scaleX(1);
}

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

header .contact-info{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin: 0 2rem;
    line-height: 1.5;
}

header .search{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
    font-size: 2rem;
    color: #444;
    transition: all .22s;
    padding: 2rem;
}

header .search:hover{
    color: #57B7DF;
}

header .sub-menu{
    transition: all .22s;
    transform: translate3d(0, -100%, 0);
    position: absolute;
    background: #222;
    display: flex;
    align-items: center;
    width: 100%;
    height: 8.75rem;
}

header .sub-menu.active{
    transform: translate3d(0, 0, 0);
}

header .sub-menu ul li a{
    color: #f1f1f1;
    display: inline-block;
    padding: 0 1.5rem;
    text-decoration: none;
}

header .sub-menu ul li{
    font-size: 1.375rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

header .close-header{
    font-size: 2rem;
    color: #888;
    padding: 2rem;
    cursor: pointer;
    transition: all .22s;
}

header .close-header:hover{
    color: #57B7DF;
}

header .sub-menu .hidden{
    display: none;
}

.slider-mask{
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .4;
    z-index: 5;
    top: 0;
    left: 0;
    background: url(images/mask.png);
}

.slider .slide{
    height: 30rem;
    display: flex;
    align-items: center;
}

.slider .slide.sps{
    height: 18rem;
}

.slider .slide .caption{
    display: inline-block;
    background: rgba(87, 183, 223,0.6);
    padding: 1.25rem;
    position: relative;
    z-index: 10;
    color: #fff;
}

.slider .slide.sps .caption{
    display: none;
    visibility: hidden;
    opacity: 0;
}

.slider .p1{
    font-size: 3.5rem;
}

.slider .p4{
    font-size: 2rem;
    font-family: 'Raleway';
    max-width: 40rem;
    line-height: 1.3;
    font-weight: bold;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.slider .slide a{
    padding: .75rem 2rem;
    border: 1px solid #fff;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: .875rem;
    text-transform: uppercase;
    box-shadow: 2px 2px 0 0 #fff;
}

.slider-wrapper{
    position: relative;
}

.feats{
    margin-top: -2rem;
}

.feats .wrapper{
    display: flex;
    padding: 1rem 0;
}

.feat{
    margin: 1rem;
    width: 100%;
    overflow: hidden;
    position: relative;
    border: 1px solid #fff;
}

.feat img{
    width: 100%;
    transition: all .22s;
    display: block;
}

.feat:hover img{
    transform: scale(1.2);
}

.feat .feat-text{
    position: absolute;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    padding: 1.5rem;
}

.feat .p2{
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.feat .p6{
    color: rgb(52, 171, 211);
    margin-bottom: 2rem;
}

.feat a{
    color: #000;
    text-transform: uppercase;
    font-weight: bold;
    font-size: .875rem;
}

.products-show{
    background: #f1f1f1;
    padding: 4rem 0;
}

.products-show .col{
    width: calc((100% / 6) - 2rem);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    margin: 1rem;
    box-shadow: 0 7px 18px 0 rgba(0,0,0,.1);
    text-decoration: none;
}

.products-show .col .name{
    font-size: 1rem;
}

.products-show .col .price{
    color: #57B7DF;
    font-size: 1.25rem;
    margin-top: .25rem;
}

.products-show .col .bottom{
    padding: 1rem;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid #ebebeb;
    background: #fff;
    font-weight: bold;
    font-size: .875rem;
    color: #222;
}

.products-show .col img{
    width: 100%;
}

.products-show .wrapper{
    display: flex;
    flex-wrap: wrap;
}

.product-show-item{
    width: 25%;
    margin: 1rem;
    border: 1px solid #fff;
}

.product-show-item:hover{
    border: 1px solid #000;
}

.product-show-item:hover .actions{
    border: none;
    border-top: 1px solid #000;
    transform: translateY(1px);
}

.product-show-item .picture{
    background: #f1f1f1;
}

.product-show-item .picture img{
    width: 100%;
}

.product-show-item .data{
    text-align: center;
    padding: 2rem;
}

.product-show-item .data .p4{
    font-size: 1.25rem;
}

.product-show-item .data .p5{
    font-weight: bold;
    font-size: 1.125rem;
    margin-top: .5rem;
}

.product-show-item .actions{
    display: flex;
    border: 1px solid #000;
}

.product-show-item .actions a{
    width: 50%;
    display: block;
    text-align: center;
    padding: 1.25rem;
    text-decoration: none;
    font-size: .875rem;
    color: #000;
    text-transform: uppercase;
}

.product-show-item .actions a:hover{
    background: #000;
    color: #fff;
}

.product-show-item .actions a:first-child{
    border-right: 1px solid #000;
}

.brand-slider .div-margin{
}

.brand-slider img{
    padding: 1.75rem;
}

.index-map{
    height: 26rem;
}

.index-map iframe{
    width: 100%;
    display: block;
    height: 100%;
}

footer{
    background: #2f3340;
}

footer .cols{
    display: flex;
    padding: 2rem 0;
}

footer .col{
    width: 25%;
}

footer .col-1{
    display: flex;
    align-items: center;
}

footer .col-2 a{
    display: block;
    color: #fff;
    font-size: .875rem;
    text-decoration: none;
    line-height: 1.5;
}

footer .col-2 a:hover{
    text-decoration: underline;
}

footer .p3{
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

footer .col-3 .p6,
footer .col-4 .p6{
    color: #fff;
    font-size: .875rem;
    margin-bottom: .5rem;
}

footer .col-3 input{
    width: 90%;
    padding: .75rem;
    border: none;
}

footer .col-3 button{
    float: right;
    margin-right: 10%;
    padding: .5rem;
    border: none;
    background: #fff;
    color: #2F3340;
    font-size: .875rem;
    margin-top: 1rem;
    text-transform: uppercase;
    cursor: pointer;
}

footer .col-4{
    width: 15%;
}

footer .col-4 i{
    font-size: 1.25rem;
    color: #fff;
    margin-right: .5rem;
    margin-top: 1rem;
}

.under-footer{
    background: #20222C;
}

.under-footer .wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: #fff;
    font-size: .875rem;
}

main{
    background: #f1f1f1;
    padding: 4rem 0;
}

.results{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.results .col{
    width: calc(25% - 2rem);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    margin: 1rem;
    box-shadow: 0 7px 18px 0 rgba(0,0,0,.1);
    text-decoration: none;
}

.results .c4 .top{
    background: #fff;
}

.results .c4 .top.tp-sp{
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 100%;
}

.results .c4 .top .top-bg{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.results .c4 .top img{
    width: 90%;
    margin: 0 auto;
    display: block;
}

.results .c4 .bottom{
    padding: 1rem;
    text-transform: uppercase;
    text-align: center;
    border-top: 1px solid #ebebeb;
    background: #fff;
    font-weight: bold;
    font-size: .875rem;
    color: #222;
}

.results .c4 .price{
    color: #57B7DF;
    font-size: 1.25rem;
    margin-top: .25rem;
}

.results .c4 .name{
    font-size: 1.375rem;
}

main h1{
    font-weight: normal;
}

main.special h1{
    margin: 1rem;
}

.prc{
    text-align: center;
}

.go-back-wrap{
    position: relative;
}

.go-back-wrap img{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 2rem;
}

.go-back-wrap a{
    background: #57B7DF;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    left: -15px;
    top: 20px;
}

.go-back-wrap a i{
    margin-right: .25rem;
}

.prc .spies{
    width: 4rem;
    margin: -1rem auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prc .spies div{
    width: 14px;
    height: 14px;
    background: #888;
    cursor: pointer;
    margin: 0 4px;
    border-radius: 100%;
}

.prc .spies div:not(.active):hover{
    opacity: .6;
}

.prc .spies div.active{
    background: #111;
}

.prc-name{
    font-size: 2.5rem;
    font-weight: normal;
}

.prc-code{
    font-size: 1.25rem;
    font-weight: normal;
    color: #666;
    margin-bottom: .75rem;
}

.prc-price{
    font-size: 1.75rem;
    color: #57B7DF;
    font-weight: normal;
    margin-bottom: 2.5rem;
}

.prc-data img{
    height: 1rem;
}

.prc-data ul li{
    list-style: none;
    font-size: 1.25rem;
    line-height: 1.5;
}

.prc-data ul li b{
    color: #222;
    font-size: 1.125rem;
}

.prc-data ul li img{
    vertical-align: -1px;
}

.prc-description{
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #444;
    line-height: 1.5;
}

.prc-description-top{
    margin: 2.5rem 0 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    color: #57B7DF;
    text-transform: uppercase;
}

.m-us .cols{
    display: flex;
}

.m-us .col{
    width: calc(50% - 1rem);
}

.m-us .col-1{
    margin-right: 2rem;
}

main:not(.special) p{
    margin-bottom: 1rem;
}

.m-us .col-2 img{
    width: 100%;
}

.m-ctc .cols{
    display: flex;
}

.m-ctc .col{
    width: calc(50% - 1rem);
}

.m-ctc .col-1{
    margin-right: 2rem;
}

.m-ctc .col-2{

}

.m-ctc form label{
    display: block;
    margin-bottom: .25rem;
}

.m-ctc form textarea{
    height: 5rem;
}

.m-ctc form input,
.m-ctc form textarea{
    width: 100%;
    padding: .75rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,.05);
    border: none;
    margin-bottom: 1.25rem;
}

.m-ctc button{
    background: #57B7DF;
    color: #fff;
    padding: .675rem 2rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.m-ctc button:hover{
    background: #222;
}

.m-ctc .col-2 iframe{
    margin-top: 22px;
    width: 100%;
    height: 10rem;
    margin-bottom: 1rem;
}

main h2{
    font-weight: normal;
    margin-bottom: 2rem;
}

.m-ctc .info-line{
    display: flex;
    align-items: center;
    margin-bottom: .75rem;
}

.m-ctc .info-line p{
    margin-bottom: 0;
    color: #777;
}

.m-ctc .info-line svg{
    height: 1rem;
    width: 1rem;
    margin-right: .5rem;
}

.above-header .contact-info{
    display: none;
}

.ven .col{
    width: 100%;
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.ven .col{
    display: flex;
}

.ven .col-info{
    width: calc(100% - 12rem);
}

.ven .col-grid{
    width: 12rem;
    display: flex;
    flex-wrap: wrap;
}

.ven .col-grid:after{
    content: 'Click para hacer zoom';
    width: 100%;
    text-align: center;
    font-size: .75rem;
    color: #666;
    margin-top: .5rem;
}

.ven .col h3{
    margin-bottom: 1.5rem;
}

.ven .col:not(.col-right) .col-grid{
    margin-left: 1.5rem;
}

.ven .col-right .col-grid{
    margin-right: 1.5rem;
}

.ven .col-grid img{
    align-self: center;
    transition: all .22s;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    width: calc(50% - 10px);
}

.ven .col-grid img:hover{
    filter: brightness(80%);
}

.novedades .cols{
    width: calc(100% + 2rem);
    margin-left: -1rem;
    display: flex;
    flex-wrap: wrap;
}

.novedades .cols .col{
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 7px 18px 0 rgba(0,0,0,.1);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 5px solid #fff;
    position: relative;
}

.novedades .cols .col div{
    border-radius: 3px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    transition: all .22s;
    padding-bottom: 100%;
    height: 0;
}

.novedades .cols .col:after{
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transition: all .22s;
    opacity: 0;
    background: rgba(0,0,0,.4);
}

.novedades .cols .col:hover div{
    transform: scale(1.2) rotate(0.0001deg);
}

.novedades .cols .col i{
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    position: absolute;
    transition: all .22s;
    display: block;
    z-index: 5;
    font-size: 2rem;
    text-shadow: 0 2px 7px rgba(0,0,0,0.8);
}

.novedades .cols .col:hover i{
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.novedades .cols .col:hover:after{
    opacity: 1;
}

.zoom-overlay{
    background: rgba(5,5,5,0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1000000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-overlay img{
    max-width: 80%;
    border: 4px solid #fff;
    border-radius: 5px;
    position: relative;
    z-index: 20;
    max-height: 60%;
}

.zoom-overlay i{
    position: absolute;
    padding: 2rem;
    z-index: 25;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    right: 0;
    top: 0;
}

.zoom-overlay .click-to-close{
    background: transparent;
    top: 0;
    z-index: 5;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.breadcrumb{
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    margin-top: -4rem;
    color: #666;
    font-size: 1.125rem;
    margin-bottom: 1rem
}

.breadcrumb a{
    text-decoration: none;
    color: #666;
}

.breadcrumb a:hover{
    color: #111;
}

.breadcrumb span{
    font-size: 1rem;
    display: inline-block;
    margin: 0 .5rem;
    color: #aaa;
}

.pancake-menu{
    display: none;
    align-items: center;
    cursor: pointer;
}

.pancake-menu p{
    font-size: 1.125rem;
    font-weight: bold;
    margin-left: .5rem;
    text-transform: uppercase;
}

.pancake-menu span{
    width: 2rem;
    display: block;
    background: #000;
    height: 2px;
    transition: all .22s;
}

.pancake-menu > div{
    border: 1px solid #222;
    width: 3rem;
    height: 2.5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: all .22s;
    justify-content: center;
}

.pancake-menu > div > div{
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.pancake-menu.active > div{
    background: #000;
}

.pancake-menu.active span{
    background: #f1f1f1;
}

.pancake-menu.active span:nth-child(1){
    transform: translate3d(0, 2px, 0);
}


.pancake-menu.active span:nth-child(3){
    transform: translate3d(0, -2px, 0);
}

.pancake-overlay{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20000;
    transition: all .22s;
    opacity: 0;
    pointer-events: none;
}

main:not(.special) p.p1{
    color: #111;
    font-weight: bold;
}

.faq .p1:hover{
    color: #57B7DF;
    cursor: pointer;
    font-weight: bold;
}

main:not(.special) p{
    color: #666;
    line-height: 1.5;
}

.nos.s{
    align-items: center;
}

.pet-picture{
    flex-grow: 5;
    background: url(images/proyecto.jpg);
    margin-left: 20rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    height: 12rem;
}

.fw{
    width: 100%;
    border-radius: 5px;
    margin-top: 2rem;
}

.itm h3{
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.itm .cols{
    display: flex;
    align-items: center;
}

.itm .col-1,
.itm .col-2{
    width: 50%;
}

.itm .col-2{
    margin-left: 2rem;
}

.itm .col-2 img{
    width: 100%;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.05);
    display: block;
    border-radius: 5px;
}

.cal .cols{
    display: flex;
    width: calc(100% + 2rem);
    margin-left: -1rem;
}

.cal .col{
    width: calc((100% / 3) - 2rem);
    margin: 1rem;
    padding: .5rem;
    box-shadow: 0 4px 12px 0 rgba(0,0,0,0.05);
    background: #fff;
    border-radius: 4px;
    text-align: center;
}

.cal .col h3{
    margin-bottom: 1.5rem;
}

.cal .col img{
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.carrito-li{
    font-weight: 600;
}

.carrito-li span.amount{
    color: #666;
    margin-left: .375rem;
    text-transform: initial;
}

.carrito-li i{
    margin-right: .5rem;
}

.add-to-cart{
    background: #57B7DF;
    color: #fff;
    border: none;
    padding: .5rem 1.5rem;
    margin: 1rem 0 2rem;
    cursor: pointer;
}

.add-to-cart i{
    margin-right: .5rem;
}

.add-to-cart:hover{
    background: #444;
}

.add-to-cart:active,
.add-to-cart:focus{
    background: #111;
}

.data-carrito-hidden{
    display: none;
    visibility: hidden;
}

.empty-checkout .if-b{
    width: 100%;
    display: flex;
    align-items: center;
}

.empty-checkout p{
    font-size: 1.125rem;
    margin-left: 1rem;
    margin-bottom: 0!important;
}

.empty-checkout i{
    font-size: 1.5rem;
    border-radius: 100%;
    background: #57B7DF;
    color: #fff;
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-checkout a{
    color: #57B7DF;
}

.loading-checkout{
    width: 100%;
    text-align: center;
    color: #57B7DF;
    margin: 2rem auto;
    font-size: 1.75rem;
}

.empty-checkout,
.full-checkout{
    display: none;
}

.full-checkout .cols{
    display: flex;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    flex-wrap: wrap;
}

.full-checkout .info-form,
.full-checkout .check-container{
    width: calc(50% - 2rem);
    margin: 0 1rem;
}

.full-checkout .info-form{
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    padding: 1.5rem;
}

.full-checkout .info-form h3{
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.checkout-item{
    background: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.1);
}

.checkout-item-title{
    font-size: 1.125rem;
    font-weight: 600;
    width: 40%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0!important;
}

.checkout-item-actions{
    display: flex;
    align-items: center;
}

.checkout-item-actions span{
    font-size: 1.5rem;
    font-weight: bold;
}

.checkout-item-actions i{
    font-size: 1.25rem;
    margin: 0 12px;
    color: #aaa;
    cursor: pointer;
    display: inline-block;
}

.checkout-item-delete{
    font-size: 1.25rem;
    color: #c42622;
    cursor: pointer;
}

.checkout-item:not(:first-child){
    margin: 1rem 0;
}

.full-checkout .info-form label{
    font-weight: bold;
    font-size: .875rem;
    display: block;
    color: #666;
    margin-bottom: .25rem;
}

.full-checkout .info-form textarea,
.full-checkout .info-form input{
    background: #ddd;
    width: 100%;
    border: none;
    margin-bottom: 1rem;
    padding: .575rem;
}

.full-checkout .info-form textarea{
    height: 5rem;
}

.full-checkout .input-group{
    width: calc(100% + 2rem);
    margin-left: -1rem;
    display: flex;
}

.full-checkout .input-group > div{
    width: calc(50% - 2rem);
    margin: 0 1rem;
}

.full-checkout .info-form button{
    background: #57b7df;
    color: #fff;
    padding: .5rem 1rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: .875rem;
}

.full-checkout .info-form button i{
    margin-right: .5rem;
}



@media screen and (max-width: 108rem){
    header{
        height: 6rem;
    }

    header .logo{
        margin: 0 2rem 0 0;
    }

    header .logo img{
        height: 3rem;
    }

    header nav ul li{
        font-size: .875rem;
    }

    header .hamb{
        height: 7.5rem;
        width: 7.5rem;
    }

    header .sub-menu{
        height: 6rem;
    }

    header .hamb.active{
        height: 6rem;
    }

    header .sub-menu ul li{
        font-size: 1.125rem;
    }

    header .sub-menu ul{
        margin-left: 1rem;
    }

    header .contact-info{
        font-size: 1rem;
    }
}

@media screen and (max-width: 86rem){
    header .sub-menu{
        height: 100vh;
        position: fixed;
        text-align: center;
        display: none;
        width: 100%;
    }

    header .sub-menu i{
        position: fixed;
        top: 1rem;
        right: 1rem;
    }

    header .sub-menu.active{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header .sub-menu .hidden{
        display: block;
    }

    header .sub-menu li{
        display: block;
        width: 100%;
    }

    header .sub-menu li a{
        font-weight: normal;
        line-height: 1.5;
    }

    header .head-sep{
        color: #57B7DF;
        font-size: 1.25rem;
        margin: 1rem 0 .5rem;
        padding-top: 2rem;
        text-decoration: underline;
    }

    header .sub-menu li a:hover{
        text-decoration: underline;
    }
}

@media screen and (max-width: 1280px){
    header .contact-info{
        display: none;
    }

    .above-header .contact-info{
        display: block;
    }

    .slider .p4{
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 72rem){
    .pet-picture{
        margin-left: 10rem;
    }

    .itm .cols{
        display: block;
    }

    .itm .col-1,
    .itm .col-2{
        width: 100%;
        margin: 0;
    }

    .itm .col-1{
        margin-bottom: 1.5rem;
    }

    .feats .wrapper{
        flex-wrap: wrap;
    }

    footer .cols{
        display: block;
    }

    footer .col{
        text-align: center;
        width: 100%;
        margin: 3rem 0;
    }

    footer .col-1 img{
        margin: 0 auto;
    }

    footer .col-3 button{
        float: none;
        margin: 1rem 0 0 0;
    }

    .m-us .cols{
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .m-us .col{
        width: 100%;
        margin: 0;
    }

    .m-us .col-2 img{
        box-shadow: 0 4px 12px 0 rgba(0,0,0,0.1);
        border-radius: 5px;
    }

    .m-us .col-2{
        margin-bottom: 1.5rem;
    }

    .results .col{
        width: calc((100% / 3) - 2rem);
    }

    .products-show .col{
        width: calc(50% - 2rem);
    }
}

@media screen and (max-width: 64rem){
    .nos{
        display: block;
    }

    .nos.s{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        flex-direction: column-reverse;
    }

    .pet-picture{
        width: 100%;
        margin-left: 0;
    }

    .nos .col{
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .feats{
        margin-top: 0;
    }

    .pancake-overlay.active{
        opacity: 1;
        pointer-events: all;
    }

    header nav{
        position: absolute;
        width: 20rem;
        opacity: 0;
        transform: translateY(-1rem);
        visibility: hidden;
        transition: all .22s;
        top: calc(100% + 1.5rem);
        background: red;
        right: 1.5rem;
        padding: 1.5rem;
        border-radius: 5px;
        background: #fff;
        box-shadow: 0 3px 12px 0 rgba(0,0,0,0.1);
    }

    header nav.active{
        visibility: visible;
        transform: translateY(0);
        opacity: 1;
    }

    header nav > ul{
        display: block;
    }

    header nav > ul > li{
        display: block;
        position: relative;
        padding-left: .25rem;
    }

    header nav > ul > li > a span:before,
    header nav > ul > li > a span:after{
        content: none;
    }

    header nav > ul > li:before{
        content: '\f111';
        transform: scale(.4);
        color: #aaa;
        font-family: 'FontAwesome';
        position: absolute;
        left: -.745rem;
        top: 3px;
    }

    header nav > ul > li.dropdown:after{
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        right: -1rem;
        color: #57B7DF;
        top: 4px;
    }

    header nav > ul > li > a{
        padding: .25rem 0;
    }

    header nav > ul > li > ul{
        visibility: visible;
        opacity: 1;
        pointer-events: all;
        position: static;
        transform: none;
        border: none;
        box-shadow: none;
        margin: .25rem 0 1.5rem 1.5rem;
        padding: 0;
    }

    header nav > ul > li > ul:before{
        content: none;
    }

    header nav > ul > li.sp-new a:after {
        top: 5px;
        left: 65px;
    }

    .pancake-menu{
        display: flex;
    }


    .feats .wrapper{
        display: flex;
    }

    header .wrapper{
        align-items: center;
    }

    .feat{
        height: 20rem;
        margin: 0 0 2rem 0;
        overflow: hidden;
    }

    .feat:hover img,
    .feat img{
        transform: translateY(-30%);
    }

    .under-footer .wrapper{
        display: block;
        text-align: center;
    }

    .under-footer p{
        margin-bottom: 1rem;
    }

    .m-ctc .cols{
        display: block;
    }

    .m-ctc .col{
        width: 100%;
    }

    .m-ctc .col-1{
        margin: 0 0 1.5rem 0;
    }

    .m-ctc .col-2{
        margin: 0;
    }
}

@media screen and (max-width: 56rem){
    .cal .cols .col{
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .cal .cols{
        display: block;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 48rem){

    .ven .cols .col{
        display: block;
    }

    .ven .col-info{
        width: 100%;
    }

    .ven .col:not(.col-right) .col-grid{
        margin: 0 auto;
    }

    .ven .col .col-grid{
        margin: 0 auto;
    }

    .novedades .cols .col{
        width: calc(50% - 1rem);
        margin: .5rem;
    }

    .results .col{
        width: calc((100% / 2) - 2rem);
    }
}

@media screen and (max-width: 40rem){
    .feat{
        height: auto;
    }

    .feat:hover img,
    .feat img{
        transform: none;
    }

    .products-show .col{
        width: calc(100% - 2rem);
    }
}

@media screen and (max-width: 32rem){
    header nav{
        width: calc(100% - 3rem);
    }

    .results .col{
        width: calc((100% / 1) - 2rem);
    }

    .novedades .cols .col{
        width: 100%;
        margin: 0 0 1.5rem 0;
    }

    .novedades .cols{
        width: 100%;
        margin-left: 0;
    }
}