/*------------------------------------*\
  #BASE
\*------------------------------------*/

/**
 * Fonts
 */

@import url(fonts.css);

/**
 * Global
 */
*, h1, h2, h3, h4, h5, h6, figure {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {font: 16px 'Rubik';}

a, a:hover {text-decoration: none;}
a:focus, input:focus, button:focus, select:focus, textarea:focus {outline: 1px solid transparent;}

.container {
    position: relative;
    max-width: 1250px;
    padding: 0 1em;
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 3.5em 0;
    overflow: hidden;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
    transition: .35s all;
}

.img-custom {
    display: block;
    width: 100%;
    height: auto;
    transition: .35s all;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.grid-4a {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}

.grid-4b {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.gg-05 {grid-gap: .5em;}
.gg-1 {grid-gap: 1em;}
.gg-2 {grid-gap: 2em;}

.h2 {
    font: 3.5em 'Apple';
    line-height: 1;
}
.h2-bold {
    font: 4.5em 'Lora BoldItalic';
    line-height: 1;
}

.h3 {
    font: 2em 'Lora BoldItalic';
    margin-bottom: 1em;
    line-height: 1;
}

.h4 {font: .9em 'Rubik';}

.h5 {font: 1.25em 'Lora BoldItalic';}

.h6 {font: 1em 'Rubik Medium';}

.text {
    font: 15px 'Rubik';
    margin-bottom: 1em;
}
.text-center {text-align: center;}
.text-justify {text-align: justify;}
.text-right {text-align: right;}
.text-may {text-transform: uppercase;}
.text_cross-out {text-decoration: line-through;}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font: 1em 'Lora BoldItalic';
    padding: .5rem 1.25rem;

    border: 0;
    cursor: pointer;
    transition: .5s all;
}
.btn span[class^="icon"] {margin-right: 4px;}

.btn-small {
    display: inline-flex;
    justify-content: center;

    font: 12px 'Lora BoldItalic';
    padding: .325rem 1.5rem;

    border: 0;
    cursor: pointer;
    transition: .5s all;
}

.btn-custom {
    display: inline-flex;
    justify-content: center;

    font: 1em 'Rubik Medium';
    padding: .75rem 2rem;

    border: 0;
    cursor: pointer;
    transition: .5s all;
}

/* Buttons */
.btn-cian {
    color: #000;
    background-color: #ffba00;
}
.btn-cian:hover {
    color: #fff;
    background-color: #00b4c4;
}

.btn-cianBlack {
    color: #000;
    background-color: #00b4c4;
    border: 2px solid #00b4c4;
}
.btn-cianBlack:hover {
    color: #00b4c4;
    background-color: #fff;
}

.btn-gray {
    color: #7c96a3;
    background-color: #fff;
    border: 2px solid #efe9ef;
}
.btn-gray:hover {background-color: #efe9ef;}

.btn-pink {
    color: #fff;
    background-color: #e91d64;
    border: 2px solid #e91d64;
}
.btn-pink:hover {
    color: #7c96a3;
    background: #fff;
    border-color: #efe9ef;
}

.btn-yellow {
    color: #36c0c5;
    background-color: #f7d100;
}
.btn-yellow:hover {background-color: #f3f3f3;}

.btn-yellowBlack {
    color: #000;
    background-color: #ffba00;
    border: 2px solid #ffba00;
}
.btn-yellowBlack:hover {
    color: #ffba00;
    background-color: #fff;
}

.btn-yellowWhite {
    color: #fff;
    background-color: #ffba00;
    border: 2px solid #ffba00;
}
.btn-yellowWhite:hover {
    color: #ffba00;
    background-color: #fff;
}

.btn-white {
    color: #000;
    background-color: #f3f3f3;
}
.btn-white:hover {
    color: #f3f3f3;
    background-color: #ffba00;
}

.br-5 {border-radius: 5px;}
.br-10 {border-radius: 10px;}
.br-15 {border-radius: 15px;}
.br-20 {border-radius: 20px;}
.br-25 {border-radius: 25px;}
.br-50 {border-radius: 50%;}

/* Colors */
.white {color: #fff;}
.black {color: #000;}
.cian {color: #36c0c5;}
.cianDark {color: #00b4c4;}
.grayLight {color: #b1b1b1;}
.gray {color: #676767;}
.pink {color: #e91d64;}
.whatsapp {color: #25D366;}
.yellow {color: #ffba00;}

.bg-white {background-color: #fff;}
.bg-black {background-color: #000000;}
.bg-cian {background-color: #36c0c5;}
.bg-cianDark {background-color: #00b4c4;}
.bg-gray {background-color: #676767;}
.bg-grayLight {background-color: #e9ecef;}
.bg-pink {background-color: #e91d64;}
.bg-yellow {background-color: #ffba00;}

/* Title */
.title {position: relative;}

/* Form */
.wrap-form {
    width: 40%;
    margin: 0 auto;
    padding: 2em;
    border: 1px solid #a0a0a0;
}

.form {
    display: flex;
    flex-direction: column;
}
.form-group {
    position: relative;
    margin-bottom: .75em;
}
.form-grid4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.form-group .icon {
    position: absolute;
    left: 30px;
    top: 22px;

    font-size: 1.25em;
    transform: translate(-50%, -50%);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .3rem 1rem;
    font: 14px 'Rubik';
    color: #464646;
    background-color: #fafafa;
    border: 1px solid #eceaeb;
    border-radius: 5px;
}
.form-group select {cursor: pointer;}

.form button {align-self: flex-start;}

/* radioForm */
.labelRadio img {height: 1.5em;}
.labelRadio span {margin-right: 0.4em;}
.inputRadio {display: none;}
.inputRadio + label.labelRadio {
    height: 18px;
    display: flex;
    align-items: center;
    padding-left: 26px;

    font-size: 13px;
    background-repeat: no-repeat;
    background-position: 0 0;
    cursor: pointer;
}
.inputRadio:checked + label.labelRadio {background-position: 0 -18px;}
.labelRadio {
    background-image: url(../img/cssradiobutton.png);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select:none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* checkboxForm */
.labelCheckbox {
    display: inline-flex;
    margin: auto;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer;
}
.labelCheckbox span {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.labelCheckbox span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098A9;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.labelCheckbox span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #FFFFFF;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-delay: 0.1s;
         -o-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.labelCheckbox span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #e91d64;
    display: block;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}
.labelCheckbox span:last-child {padding-left: 8px; }
.labelCheckbox:hover span:first-child {border-color: #e91d64;}
.espaciado {padding-top: 12px; }
.inputCheckbox {display: none;}
.inputCheckbox:checked + .labelCheckbox span:first-child {
    background: #e91d64;
    border-color: #e91d64;
}
.inputCheckbox:checked + .labelCheckbox span:first-child svg {stroke-dashoffset: 0;}
.inputCheckbox:checked + .labelCheckbox span:first-child:before {
    -webkit-transform: scale(3.5);
        -ms-transform: scale(3.5);
            transform: scale(3.5);
    opacity: 0;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

/* Effects */
.shine {
    position: relative;
    overflow: hidden;
}
.shine::before {
    content: '';
    position: absolute;
    left: -85%;
    top: 0;

    display: block;
    width: 50%;

    height: 100%;
    background: linear-gradient(to right,rgba(255,255,255,0) 0,rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
    z-index: 2;
}
.shine:hover::before {animation: shine .75s;}
@keyframes shine {100% {left:125%}}

.cartel:hover {
    animation: cartel 1s 1;
    transform-origin: top center;
}
@keyframes cartel {
    20% {transform: rotate(20deg);}
    40% {transform: rotate(-15deg);}
    60% {transform: rotate(10deg);}
    80% {transform: rotate(-5deg);}
}

.vaiven:hover {animation: vaiven 1s 1;}
@keyframes vaiven {
  15% {transform: translate(-25%);}
  30% {transform: translate(20%);}
  45% {transform: translate(-15%);}
  60% {transform: translate(10%);}
  75% {transform: translate(-5%);}
}

.pulse:hover {animation: 1s pulse 1;}
@keyframes pulse {
    0% {transform: scale(1);}
    50% {transform: scale(1.1);}
    100% {transform: scale(1);}
}

.flotar {transition: .3s all;}
.flotar:hover {transform: translateY(-10%);}


/*------------------------------------*\
  #INDEX
\*------------------------------------*/

/* HEADER */
.header {box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, .5);}
.menu-responsive {display: none;}

/* Block-header */
.block-header {
    font: 14px 'Rubik Medium';
    padding: 1em 0;
    border-bottom: 1px solid #dedede;
}
.block-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-header__item {position: relative;}
.block-header__item:not(:first-of-type) {
    display: inline-flex;
    padding-left: 1em;
}
.block-header__item:not(:last-of-type) {
    padding-right: 1em;
    border-right: 1px solid #dedede;
}
.block-header__item span[class^="icon"] {margin-right: 5px;}

.block-header__item .phone,
.block-header__item .email {
    display: flex;
    align-items: flex-end;
}
.block-header__item .phone {margin-bottom: 5px;}

.block-header__item .pagos p {font-size: 10px;}
.block-header__item .pagos img:first-of-type {
    margin-right: 12px;
    margin-top: 5px;
}

.block-header__item:hover .cian {color: #ffba00;}

.item__icon {
    display: flex;
    align-items: center;
}
.item__icon .icon-shopping-bag {font-size: 2.5em;}
.item__icon .icon-shipped {font-size: 3.25em;}
.item__icon .icon-whatsappColor {font-size: 2.25em;}
.item__icon .icon-user {font-size: 2em;}

.login-dropdown {
    position: absolute;
    top: 35px;
    left: 0;

    width: 125px;
    padding: 15px;
    list-style-type: none;

    transform-origin: 0 0 0;
    transform: scaleY(0);
    box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);

    opacity: 0;
    z-index: 9;
    visibility: hidden;
    transition: all 0.3s ease-in;
}
.login-dropdown.w125-dropdown {width: 125px;}
.login-dropdown.w300-dropdown {width: 300px;}
.login-dropdown.hide {display: none;}

.login-dropdown .h5 {margin-bottom: .75em;}
.login-dropdown p {font-size: 12px;}
.login-dropdown a {transition: all 0.5s;}
.login-dropdown a:not(:last-of-type) {
    display: inline-block;
    margin-bottom: .5em;
}
.login-dropdown a:hover {color: #ffba00;}

.login-dropdown.active {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}

.form-search {display: flex;}
.form-search input {
    font: 14px 'Rubik Medium';
    border: 1px solid #eaeaea;
    padding: .5em 1.5em;
    border-radius: 20px 0 0 20px;
}
.form-search input::-webkit-calendar-picker-indicator {display: none;}
.form-search button {
    display: flex;
    border: 0;
    padding: .5em 1em .5em .75em;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}
.form-search button span {
    margin-right: 0!important;
    font-size: 18px;
}

/* navbar */
.logo {width: 20%;}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 0;
}

.list-navbar {
    display: flex;
    align-items: center;
}
.list-navbar .nav-item {padding: 0 .25em;}
.list-navbar .nav-item .nav-link {
    font: 16px 'Lora BoldItalic';
    padding: .5em 1em;
    transition: .5s all;
}
.list-navbar .nav-item .nav-link:hover {
    color: #fff;
    background-color: #ffba00;
}

/* SLIDER */
.slide {position: relative;}

.slide-caption {
    position: absolute;
    transform: translate(0%, -190%);
}

.slide-caption a {margin-top: 1em;}

/* DESTACADOS */
.slider-destacados {padding: 0 2em;}

/* slider__arrowsMain */
.slider__arrowsMain .owl-nav {
    /*position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
    margin-top: 0;
}
.slider__arrowsMain .owl-nav button.owl-prev {left: 0%;}
.slider__arrowsMain .owl-nav button.owl-next {right: 0%;}

.slider__arrowsMain .owl-nav button.owl-prev,
.slider__arrowsMain .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    margin: 0;
    /*box-shadow: inset 0 0 0 5px transparent;*/
}
.slider__arrowsMain .owl-nav button .icon-arrow-left,
.slider__arrowsMain .owl-nav button .icon-arrow-right {color: #989898;}

.slider__arrowsMain .owl-nav [class*=owl-]:hover {background-color: transparent;}

/* Arrows */
.slider__arrows .owl-nav {
    /*position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
    margin-top: 0;
}
.slider__arrows .owl-nav button.owl-prev {left: 0%;}
.slider__arrows .owl-nav button.owl-next {right: 0%;}

.slider__arrows .owl-nav button.owl-prev,
.slider__arrows .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    margin: 0;
    /*box-shadow: inset 0 0 0 5px transparent;*/
}
.slider__arrows .owl-nav button .icon-arrow-left,
.slider__arrows .owl-nav button .icon-arrow-right {
    font-size: 1.1em;
    padding: .75em;
    color: #fff;

    background-color: #e91d64;
    border-radius: 50%;
}

.slider__arrows .owl-nav [class*=owl-]:hover {background-color: transparent;}
.slider__arrows .owl-nav button .icon-arrow-left:hover,
.slider__arrows .owl-nav button .icon-arrow-right:hover {background-color: #ffba00;/*d01a59*/}

.codigo {
	margin: .5em 0.2em .1em;
}
.producto {
    position: relative;
    padding: 1em;
    border: 5px solid white;
    transition: all 0.3s ease;
}
.producto:hover {border: 5px solid #e91e63!important;}

.producto__boxShadow {box-shadow: 0 0 6px 1px rgba(0,0,0,.35);}

.producto .oferta {
    position: absolute;
    left: 15px;
    top: 25px;

    display: block;
    font: 14px 'Rubik Bold';
    padding: .5em .75em;
    transition: all 0.3s ease;
}
.producto:hover .oferta {transform: translateY(-20%);}

.producto img {margin: 0 auto;}

.producto h4 {margin: .5em 0 .75em;}

.producto figcaption {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.producto .descuento {
    font-size: 10px;
    margin-top: 5px;
}
.producto .detalle {display: flex;}
.producto .numero {
    display: inline-block;
    font: 13px 'Lora BoldItalic';
    padding: .5em;
}

.producto .shopping-bag,
.producto .whatsapp {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5em;
    margin-top: -5px;

    border-radius: 50%;
    transition: .5s all;
}
.producto .shopping-bag {margin-left: 8px;}
.producto .shopping-bag:hover {
    color: #fff;
    background-color: #36c0c5;
}
.producto .whatsapp:hover {
    color: #fff;
    background-color: #25D366;
}

.btn-overlay {
    width: 100%;
    height: 100%;
}
.btn-overlay a {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -100%);
    opacity: 0;
    transition: all 0.3s ease;
}
.producto:hover .btn-overlay a {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Tramado */
.bg-tramado {background-image: url('../img/bg-rosas.png');}

/* PROMOCIONES */
.promociones {background-color: rgba(0, 0, 0, 0.04);}
.grid-promociones {
    display: grid;
    grid-template-columns: 65.65% 1fr;
}

/* arreglos-descuento */
.arreglos-descuento {position: relative;}

.arreglos-descuento__caption {
    position: absolute;
    left: 10%;
    top: 20%;
}
.arreglos-descuento__caption .descuento {display: flex;}
.arreglos-descuento__caption .descuento .numero {
    font: 10em 'Lora BoldItalic';
    line-height: 1;
}
.arreglos-descuento__caption .descuento .porcentaje {
    font: 7em 'Lora BoldItalic';
    line-height: 1;
}
.arreglos-descuento__caption .descuento .dscto {
    font: 2em 'Lora BoldItalic';
    line-height: 1;
}
.arreglos-descuento__captionText {
    font-size: 1.75em;
    margin: .15em 0 1.15em;
}

/* arreglos-funerarios */
.arreglos-funerarios {position: relative;}
.arreglos-funerarios__caption {
    position: absolute;
    left: 12%;
    top: 10%;
}
.arreglos-funerarios__caption h3 {margin-bottom: 0;}
.arreglos-funerarios__caption a {margin-top: 1em;}

/* ARREGLOS */
/* slider-arreglos */
.slider-arreglos {
    border-bottom: 1px solid #f9f5f1;
    border-top: 1px solid #f9f5f1;
}
.slider-arreglos .producto {
    border: 1px solid #f9f5f1;
    padding: 3em .5em 2em;}

/* Arrows */
.slider-arreglos .owl-nav {
    /*position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/
    margin-top: 0;
    padding: 6px 0;
    border: 1px solid #f9f5f1;
}
.slider-arreglos .owl-nav button.owl-prev {left: -3%;}
.slider-arreglos .owl-nav button.owl-next {right: -3%;}

.slider-arreglos .owl-nav button.owl-prev,
.slider-arreglos .owl-nav button.owl-next {
    position: relative;
    margin: 0;
    /*top: 45%;
    box-shadow: inset 0 0 0 5px transparent;*/
}
.slider-arreglos .owl-nav button .icon-arrow-left,
.slider-arreglos .owl-nav button .icon-arrow-right {
    font-size: 10px;
    padding: .75em;
    color: #000;
}

.slider-arreglos .owl-nav button .icon-arrow-left:hover,
.slider-arreglos .owl-nav button .icon-arrow-right:hover {background-color: #fff;}

/* Dots */
.slider-arreglos .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 4px;
    padding: 5px;
    background-color: #e9e9e9;
    border: 2px solid #f9f5f1;
    transition: .25s all;
}
.slider-arreglos .owl-dots .owl-dot.active span,
.slider-arreglos .owl-dots .owl-dot:hover span {background-color: #000;}

.slider-arreglos .owl-dots {
    position: absolute;
    left: 50%;
    top: 100%;

    margin-top: 0 !important;
    transform: translate(-50%, -100%);
}

/* arreglos-bg */
.arreglos-bg {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.arreglos-bg::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;

    transform: scale(1);
    transition: all 0.3s ease;
}
.arreglos-bg:hover::before {transform: scale(1.1);}
.arreglos-bg h3 {z-index: 1;}

/* Tulipanes */
.grid-tulipanes {
    display: grid;
    grid-template-columns: 68% 1fr;
}
.tulipanes-bg::before {background-image: url('../img/banner-tulipanes.jpg');}

/* Rosas */
.grid-rosas {
    display: grid;
    grid-template-columns: 1fr 66%;
}
.rosas-bg::before {background-image: url('../img/banner-rosas.jpg');}

/* ROMANCE */
.slider-romance {padding: 2em;}

/* FOOTER */
.grid-footer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(305px, 1fr));
    grid-gap: 2em;
}

.col-footer {padding: 0 2em;}
.col-footer h5 {margin-bottom: 1em;}

.col-footer ul {list-style-type: none;}
.col-footer .list-footer li {margin-bottom: .75em;}
.col-footer .list-footer a:hover {text-decoration: underline;}

.col-footer .n-cuenta {
    display: flex;
    align-items: center;
}
.col-footer .n-cuenta img {margin-right: 1.25em;}

.wrap-boletin {position: relative;}
.wrap-boletin::before {
    position: absolute;
    top: 50px;
    left: 5px;
    content: "";

    width: 152px;
    height: 181px;
    display: block;

    background-image: url('../img/rose1.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    z-index: 3;
}
.wrap-boletin::after {
    position: absolute;
    left: auto;
    right: -34px;
    top: -50px;
    content: "";

    width: 152px;
    height: 181px;
    display: block;

    background-image: url('../img/rose2.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    z-index: 1;
}

.boletin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 3em 4em 1em;
    padding: 1.5em 5em;
    z-index: 2;
}
.boletin h3,
.form-boletin .form-group {margin-bottom: 0;}
.form-boletin {
    flex-direction: row;
    align-items: center;
}
.form-boletin button {margin-left: 1em;}

.footer-links {padding: 1em 0;}
.footer-links a {padding: 0 .5em;}
.footer-links a:first-of-type {border-right: 1px solid #000;}
.footer-links a:hover {text-decoration: underline;}

/* scrollTop */
#up {display: none;}
.up {
    position: fixed;
    bottom: 5%;
    right: 5%;

    width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    background-color: #ffba00;

    border-radius: 50%;
    z-index: 3;
    transition: .5s all;
}
.up:hover {background-color: #36c0c5;}

/*------------------------------------*\
  #NOSOTROS
\*------------------------------------*/

/* NOSOTROS */
.grid-nosotros {
    display: grid;
    grid-template-columns: 60% 1fr;
}
.nosotros h3 {margin-bottom: .5em;}
.nosotros__info .grid-2 {margin-top: 3em;}

/*------------------------------------*\
  #PRODUCTOS
\*------------------------------------*/

/* PRODUCTOS */
.grid-productos {
    display: grid;
    grid-template-columns: 23% 1fr;
}

/* Categorías */
.categorias__title {
    font: 1.25em 'Rubik Medium';
    padding: .5em .75em;
}

.categorias__title,
.categoria:not(:last-of-type) {margin-bottom: 2px;}
.categoria__heading {
    display: flex;
    align-items: center;

    font: 1em 'Rubik Medium';
    padding: .5em .75em;
    cursor: pointer;
}
.categoria__heading.active {background-color: #e91d64;}
.categoria__heading span[class^="icon-"] {margin-right: 6px;}
.subcategorias {
    padding: .5em 2em;
    list-style-type: none;
}
.collapse {display: none;}
.collapse.active {display: block;}

.categoria__item {
    font-size: 14px;
    padding: .5em 0;
}
.categoria__item a {
    display: flex;
    align-items: center;
}
.categoria__item a .icon-right-circle {margin-right: 4px;}
.categoria__item:not(:last-of-type) {border-bottom: 1px dotted #dbdbdb;}

/* Lista de Productos */
.breadcrumb {
    display: flex;
    justify-content: space-between;

    font-size: 15px;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
}

.breadcrumb-item a {text-decoration: none;}
.breadcrumb-item+.breadcrumb-item {padding-left: .5rem;}
.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    display: inline-block;
    padding-right: .5rem;
    color: #6c757d;
}

.breadcrumb .back:hover {text-decoration: underline;}


/*------------------------------------*\
  #DETALLE PRODUCTO
\*------------------------------------*/

/* DETALLE PRODUCTO */
.grid-detalle {
    display: grid;
    grid-template-columns: 40% 1fr;
}

/* detalle-producto__img */
.detalle-producto__img {position: relative;}

.detalle-producto_tag {
    position: absolute;
    top: -30px;
    left: -30px;

    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    font: 1.45em 'Rubik Medium';
    z-index: 1;
}
.detalle-producto__imgBorder {border: 3px solid #77dbdb;}
.detalle-producto__imgBorder .xzoom {box-shadow: none;}

/* detalle-producto__info */
.detalle-producto__info h3 {margin: .5em 0 1em;}
.detalle-producto__info p {
    width: 70%;
    font-size: 1.25em;
    margin-bottom: 1em;
}
.detalle-producto__info .price {font: 1.5em 'Proxima Nova Bold';}

/* Amount */
.amount {
    display: flex;
    align-items: center;
    margin: 2em 0 2em;
}

.amount span {font-size: 1.35em;}
.amount__content {
    display: inline-grid;
    grid-template-columns: 50px 90px 50px;
    grid-template-rows: 35px;
    margin-left: 1em;
}

.amount .value-button {
    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #77dbdb;
}

.amount .value-button:hover {cursor: pointer;}

.amount .decrease {border-radius: 10px 0 0 10px;}
.amount .increase {border-radius: 0 10px 10px 0;}

.amount input#number {
    text-align: center;
    border: none;
    border-top: 1px solid #77dbdb;
    border-bottom: 1px solid #77dbdb;
}

.amount input[type=number]::-webkit-inner-spin-button,
.amount input[type=number]::-webkit-outer-spin-button {-webkit-appearance: none;}

/* Complementos */
.detalle-producto__info h4 {font: 1.5em 'Lora BoldItalic';}
.grid-complementos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    margin: 1.5em 0 3em;
}
.complemento a:hover img {box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, .5);}
.complemento img {border: 1px solid #77dbdb;}

.detalle-producto__info .btns {display: flex;}
.detalle-producto__info .btns a:last-of-type {margin-left: .75em;}

/* PRODUCTOS RELACIONADOS */
.slider-productosRelacionados {padding: 2em;}

/*------------------------------------*\
  #CONTACTO
\*------------------------------------*/

/* social-networks */
.social-networks {display: flex;}

.contacto__info h5 {margin-bottom: .25em;}
.contacto__info h5:not(:first-of-type) {margin-top: 1em;}
.social-networks a {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-left: .25em;
    border-radius: 50%;
    transition: .5s all;
}
.social-networks a span {font-size: 1em;}
.social-networks .facebook:hover {background-color: #00278d;}
.social-networks .instagram:hover {background-image: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);}
.social-networks .youtube:hover {background-color: #ff073e;}
.social-networks a:hover span {color: #fff;}

/* iframe */
.wrap-iframe {
    position: relative;
    height: 0;
    padding-top: 30px;

    overflow: hidden;
}
.wrap-iframe iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%,-50%);
}
/* Mapa */
.mapa .wrap-iframe {padding-bottom: 30%;}
.mapa .wrap-iframe iframe {
    width: 100%;
    height: 100%;
}

/*------------------------------------*\
  #MODAL PRODUCTO
\*------------------------------------*/

/* Modal Producto */
.modal {padding: 1em;}

.modal-producto__img {
    padding-right: 1em;
    border-right: 1px solid #c8c8c8;
}
.modal-producto__img img {margin: 0 auto 1em;}
.modal-producto__img h3,
.modal-producto__img .precio {margin-bottom: .5em;}

.form-modal h4 {
    font: 13.5px 'Rubik Medium';
    margin-bottom: .5em;
}
.form-group.totalPagar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.form-group a h4:hover {text-decoration: underline;}
.form-group .codigoDescuento {display: none;}

.form-modal button.btn-pink {
    width: 100%;
    margin-top: 10px;
}
.form-modal button.btn-pink:hover {
    color: #fff;
    background-color: #00b4c4;
    border: 2px solid #00b4c4;
}

/* Modal */
.fancybox-slide--iframe .fancybox-content {
    /*width  : 800px;
	height : 600px;
	max-width  : 80%;
	max-height : 40%;
	margin: 0;*/
    width: 992px;
    height: 100%;
    margin: 0.5em 0;
    max-width: calc(100% - 100px);
    max-height: calc(100% - 35px);
}
.fancybox-slide--iframe .fancybox-close-small:after,
.fancybox-slide--image .fancybox-close-small:after {
    font-size: 1.5em;
    color: #fff;
    background-color: #e91d64;
}
.fancybox-close-small:hover::after {background-color: #36c0c5!important;}
.fancybox-close-small {right: 0%!important;}


/*------------------------------------*\
  #REGISTRAR PEDIDO
\*------------------------------------*/

/* Table Carrito */
.table {
    width: 100%;
    max-width: 100%;

    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid #ccc;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    /*vertical-align: top;*/
    border-top: 1px solid #ddd;
}

.table thead tr,
.table tfoot tr {background-color: #f7f7f7;}

.table>tbody>tr>td,
.table>tbody>tr>th {vertical-align: middle;}
.table tbody input[type="number"] {
    width: 30%;
    padding: .5em;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.total-row .form-group {margin-bottom: 0;}
.total-row .form-group input {
    width: 140px;
    background-color: #ffffff;
}

.btns-group {
    display: flex;
    justify-content: space-between;
    margin: 1.5em 0;
}

/* Registrar Pedido - Paso 2 */
.grid-registrarPedido {
    display: grid;
    grid-template-columns: 60% 1fr;
    margin-top: 2em;
}

.form-registrar h4 {
    font: 1em 'Rubik Medium';
    margin-bottom: .5em;
}

#ruc.form-group {display: none;}

/* Tabs */
.tabs {
    max-width: 768px;
    margin: 0 auto;
}

.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 5px;
    overflow: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.tabs-nav li {
    float: left;
    margin-right: 2px;
    padding: 8px 10px;
    /*border: 1px solid #d5d5de;
    border-bottom: none;*/
    cursor: pointer;
    transition: .5s all;
}
.tabs-nav li:hover,
.tabs-nav li.active {background-color: #e91d64;}
.tabs-nav li a {text-decoration: none;}

.tab-content {
    padding: 1em 1em 0;
    border: 5px solid #36c0c5;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.tab-content img {
    display: block;
    max-width: 20%;
    margin: 0 auto;
}
.datosCuenta {
    max-width: 60%;
    margin: 0 auto;
    padding: 1em 0 0;
    margin-bottom: 1em;
    border-top: 1px dashed #a5a5a5;
    border-bottom: 1px dashed #a5a5a5;
}
.tab-content img,
.tab-content a.btn,
.tab-content h5,
.tab-content h6 {margin-bottom: 1em;}
.tab-content .form {
    max-width: 50%;
    margin: 0 auto;
}
.tab-content .form .form-group {display: flex;}
.tab-content .form button {width: 100%;}

/* Registrar Pedido - Paso 3 */
.grid-cuentas {
    width: 90%;
    margin: 0 auto 1em;
}

.col-cuenta {padding: .5em 0;}
.col-cuenta:nth-of-type(1),
.col-cuenta:nth-of-type(3) {border-right: 1px solid #ccc;}

.col-cuenta:nth-of-type(1),
.col-cuenta:nth-of-type(2) {border-bottom: 1px solid #ccc;}


/*------------------------------------*\
  #REGISTRARSE
\*------------------------------------*/

/* REGISTRARSE */
.registrarse h4 {
    font: 1em 'Rubik Medium';
    margin-bottom: .5em;
}

.form-login button {margin: 0 auto;}

/*------------------------------------*\
  #MI CUENTA
\*------------------------------------*/

/* MI CUENTA */
.mi-cuenta h5 {margin-bottom: 1em;}
.mi-cuenta .grid-2 {margin-bottom: 2em;}

.datos-personales h4 {
    font-family: 'Rubik Medium';
    margin-bottom: .5em;
}

.datos-personales .form-group input,
.datos-personales .form-group select,
.datos-personales .form-group textarea {width: 50%;}


/*------------------------------------*\
  #ZONA DE ENVÍO
\*------------------------------------*/

/* Zona de Envío */
.zona-envio h5,
.zona-envio h6 {margin-bottom: .5em;}

.zona-envio p {margin-bottom: .5em;}

.list {list-style-type: none;}
.list__item {
    display: flex;
    align-items: center;
    margin-bottom: .5em;
}
.list__item span[class^="icon"] {margin-right: 5px;}
