@charset "UTF-8";

/*** mixins and variables ***/

/*** colores ***/

/*** z-index ***/

/*** fonts ***/

/*** structe and commons ***/

/*
@font-face {
	font-family: circular-book;
	src: url(/fonts/circular/CircularStd-Book.otf);	
}
@font-face {
	font-family: circular-regular;
	src: url(/fonts/circular/CircularStd-Medium.otf);	
}
@font-face {
	font-family: circular-bold;
	src: url(/fonts/circular/CircularStd-Bold.otf);	
}
@font-face {
	font-family: circular-black;
	src: url(/fonts/circular/CircularStd-Black.otf);	
}
*/

/*** Poppins fonts ***/

@font-face {
  font-family: poppins-light;
  src: url(/fonts/poppins/Poppins-Light.ttf);
}

@font-face {
  font-family: poppins-light-italic;
  src: url(/fonts/poppins/Poppins-LightItalic.ttf);
}

@font-face {
  font-family: poppins-regular;
  src: url(/fonts/poppins/Poppins-Regular.ttf);
}

@font-face {
  font-family: poppins-regular-italic;
  src: url(/fonts/poppins/Poppins-Italic.ttf);
}

@font-face {
  font-family: poppins-medium;
  src: url(/fonts/poppins/Poppins-Medium.ttf);
}

@font-face {
  font-family: poppins-medium-italic;
  src: url(/fonts/poppins/Poppins-MediuItalic.ttf);
}

@font-face {
  font-family: poppins-semibold;
  src: url(/fonts/poppins/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: poppins-medium-italic;
  src: url(/fonts/poppins/Poppins-SemiBoldItalic.ttf);
}

@font-face {
  font-family: poppins-bold;
  src: url(/fonts/poppins/Poppins-Bold.ttf);
}

@font-face {
  font-family: poppins-bold-italic;
  src: url(/fonts/poppins/Poppins-BoldItalic.ttf);
}

@font-face {
  font-family: poppins-extrabold;
  src: url(/fonts/poppins/Poppins-ExtraBold.ttf);
}

@font-face {
  font-family: poppins-extrabold-italic;
  src: url(/fonts/poppins/Poppins-ExtraBoldItalic.ttf);
}

@font-face {
  font-family: poppins-black;
  src: url(/fonts/poppins/Poppins-Black.ttf);
}

@font-face {
  font-family: poppins-extrabold-italic;
  src: url(/fonts/poppins/Poppins-BlackItalic.ttf);
}

.c-font-size-16 {
  font-size: 16px;
}

/** cols definition **/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
}

.container {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 8px;
}

.container-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-box-orient: horizontal;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 0 16px 16px 16px;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.row {
  margin: -8px;
  display: inherit;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 8px;
}

.img-responsive {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1023px) {
  .visible-xs {
    display: block !important;
  }

  .visible-md {
    display: none !important;
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    max-width: 990px;
  }

  .col-md-1 {
    width: 8.33%;
  }

  .col-md-2 {
    width: 16.66%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33%;
  }

  .col-md-5 {
    width: 41.66%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33%;
  }

  .col-md-8 {
    width: 66.66%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33%;
  }

  .col-md-11 {
    width: 91.66%;
  }

  .col-push-6 {
    left: 50%;
  }

  .col-pull-6 {
    right: 50%;
  }

  .visible-xs {
    display: none !important;
  }

  .visible-md {
    display: block !important;
  }

  .container-flex .two {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .container-flex .one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .container-flex .three {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .container-flex .four {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .container-flex .five {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .container-flex .six {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media only screen and (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }
}

* {
  color: #000000;
  text-decoration: none;
  font-family: poppins-medium;
  padding: 0;
  margin: 0;
  font-weight: inherit;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0px;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

.float-right {
  float: right;
}

body {
  background: #f8efe4;
}

ul {
  list-style: none;
}

.no-padding {
  padding: 0;
}

.margin-b32 {
  margin-bottom: 32px;
}

.margin-b16 {
  margin-bottom: 16px;
}

.main {
  position: relative;
  padding: 0;
  background: #f8efe4;
  margin: 64px auto 0 auto;
  min-height: 500px;
  clear: both;
}

.gen-icon {
  font-size: 26px;
  display: block;
}

.gen-icon.down {
  display: block;
  text-align: center;
  margin: 28% auto 0;
}

.caption-title {
  font-family: poppins-semibold;
  text-align: center;
  width: 100%;
  padding-top: 32px;
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: -0.12px;
}

.caption-title:after {
  content: '';
  height: 3px;
  width: 54px;
  border-top: 4px solid #eb6975;
  display: block;
  margin: 0 auto 16px auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.caption-text {
  color: #eb6975;
  text-align: center;
  display: block;
  max-width: 514px;
  margin: 0 auto 16px auto;
  font-family: poppins-medium-italic;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.17px;
}

.sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -o-sticky;
  position: -ms-sticky;
  position: sticky;
  top: 85%;
  z-index: 1;
}

.text-justify {
  text-align: justify;
}

.normal-text {
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

.normal-text.disabled {
  color: rgba(0, 0, 0, 0.2);
}

.normal-text.quote {
  color: #eb6975;
  text-align: center;
  font-family: poppins-regular-italic;
}

.normal-text b {
  font-family: poppins-bold;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #d6d7e5;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #d6d7e5;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #d6d7e5;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #d6d7e5;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

.gn-modal-content-blue-info {
  padding: 32px;
  background: #77deee;
  position: relative;
  text-align: center;
}

.gn-modal-content-white {
  padding: 32px;
  background: #ffffff;
  position: relative;
  text-align: center;
}

@media only screen and (min-width: 1600px) {
  .gn-modal-content-white {
    height: 80%;
  }
}

@media only screen and (max-width: 1599px) {
  .gn-modal-content-white {
    height: 98%;
  }
}

.img-responsive-stripe {
  width: 70%;
  height: auto;
  max-height: 128px;
}

@media only screen and (min-width: 1024px) {
  .img-responsive-stripe {
    width: 40%;
    margin-left: auto !important;
    margin-right: auto !important;
    max-height: 171px;
  }

  .img-responsive-stripe.img-responsive-footer-stripe {
    max-height: 103px;
  }
}

.img-responsive-stripe.img-responsive-footer-stripe {
  max-height: 80px;
}

.gn-modal-content {
  padding: 32px;
  background: #fac730;
  position: relative;
  text-align: center;
}

.gn-modal-content-list {
  text-align: left;
  margin: 16px 0;
  list-style: disc;
}

.gn-modal-content-item {
  font-family: poppins-regular;
  padding-bottom: 8px;
  list-style: disc;
}

.modal-dialog .close:not(:disabled):not(.disabled) {
  cursor: pointer;
  POSITION: absolute;
  Z-INDEX: 100;
  RIGHT: 16PX;
  TOP: 16PX;
  POINTER-EVENTS: all;
  opacity: 1;
}

.gn-shopping-tooltip {
  background: #fac730;
  padding: 16px;
  width: 320px;
}

.gn-shopping-tooltip .arrow {
  top: 0;
  right: 20px;
}

.gn-shopping-tooltip .arrow::before {
  border-bottom-color: #fac730;
  top: -5px;
  bottom: inherit;
}

.gn-shopping-tooltip .tooltip-inner {
  max-width: 320px;
  background: #fac730;
  overflow: hidden;
}

.gn-shopping-tooltip .tooltip-shopping-box {
  clear: both;
  overflow: hidden;
  margin-bottom: 16px;
}

.gn-shopping-tooltip .tooltip-shopping-title {
  margin-bottom: 8px;
  overflow: hidden;
}

.gn-shopping-tooltip .tooltip-shopping-title .tooltip-shopping-text {
  color: #ffffff;
}

.gn-shopping-tooltip .tooltip-shopping-title,
.gn-shopping-tooltip .tooltip-shopping-item {
  clear: both;
  margin-bottom: 8px;
}

.gn-shopping-tooltip .tooltip-shopping-text {
  width: 20%;
  text-align: left;
  display: block;
  float: left;
}

.gn-shopping-tooltip .tooltip-shopping-text.big {
  width: 50%;
}

.gn-shopping-tooltip .tooltip-shopping-text.middle {
  width: 30%;
}

.gn-shopping-tooltip .tooltip-shopping-text.right {
  text-align: right;
}

.gn-shopping-tooltip .tooltip-shopping-text.center {
  text-align: center;
}

.gn-shopping-tooltip .tooltip-shopping-btn {
  overflow: hidden;
}

.gn-shopping-tooltip .tooltip-shopping-name {
  font-family: poppins-bold;
  display: block;
  text-align: center;
  padding: 8px;
}

.gn-shopping-tooltip .tooltip-shopping-subtotal {
  display: block;
  clear: both;
  font-family: poppins-semibold;
  padding: 16px 0 8px 0;
  text-align: left;
}

.gn-shopping-tooltip .tooltip-shopping-subtotal .right {
  text-align: right;
  float: right;
}

.gn-shopping-tooltip .tooltip-shopping-subtotal:before {
  content: '';
  display: block;
  border-top: 1px solid #000000;
  margin-bottom: 8px;
}

.stick {
  position: fixed;
  bottom: 0;
  z-index: 9999;
}

/*** carrousel ***/

.carousel-indicators li {
  border-radius: 50%;
  width: 15px;
  cursor: pointer;
  height: 15px;
  border: 2px solid #000000;
  background: transparent;
}

.carousel-indicators .active {
  background: #000000;
}

.carousel-control {
  position: absolute;
  left: 5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  /* font-size: 31px; */
}

.carousel-control.right {
  left: inherit;
  right: 5%;
}

.carousel-control .fa {
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0px;
}

.video-iframe {
  width: 100% !important;
  height: 46% !important;
}

.spinner-kiosko {
  display: block;
  margin: 32px auto;
  width: 56px;
  height: 64px;
  position: relative;
  color: #ffffff;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0px;
}

.spinner-kiosko:before {
  content: '\A8';
  display: block;
  width: 56px;
  position: absolute;
  height: 90px;
  color: #ffffff;
  -webkit-animation: spinner-kiosko 4s linear infinite;
          animation: spinner-kiosko 4s linear infinite;
  margin-left: -4px;
  margin-top: -4px;
}

.spinner-kiosko.black {
  color: #000000;
}

.spinner-kiosko.black:before {
  color: #000000;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
  text-align: center;
}

@-webkit-keyframes spinner-kiosko {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-kiosko {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media only screen and (min-width: 1024px) {
  a {
    cursor: pointer;
  }

  .main {
    margin: 57px auto 0 auto;
    min-height: 750px;
  }

  .gen-icon {
    float: left;
  }

  .caption-title {
    font-size: 25px;
    line-height: 32px;
    letter-spacing: -0.12px;
  }

  .caption-title:after {
    margin: 0 auto 32px auto;
  }

  .icon-market {
    width: 30px;
    float: left;
  }

  .carousel-control .fa {
    font-size: 36px;
    line-height: 42px;
    letter-spacing: 0px;
  }

  .form-check {
    text-align: left;
  }
}

@media only screen and (max-width: 1024px) {
  .center-text-sm {
    text-align: center;
  }
}

.order-ad-text-icons {
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0px;
}

.order-ad-text-icons-first-child {
  padding-top: 5px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0px;
}

.c-color-brand {
  color: #f15a73;
}

.c-bg-color-brand {
  background-color: #f15a73 !important;
}

.c-button-color-brand {
  color: #fff;
  background-color: #f15a73 !important;
  border-color: #f15a73 !important;
}

.c-button-color-brand:hover {
  color: #f15a73;
  background-color: #fff !important;
}

.c-button-color-brand:hover i {
  color: #f15a73 !important;
}

.c-color-brand-purple {
  color: #be92c0;
}

.c-bg-color-brand-purple {
  background-color: #be92c0 !important;
}

.c-button-color-brand-purple {
  color: #fff;
  background-color: #be92c0 !important;
  border-color: #be92c0 !important;
}

.c-button-color-brand-purple:hover {
  color: #be92c0;
  background-color: #fff !important;
}

.c-button-color-brand-purple:hover i {
  color: #be92c0 !important;
}

.c-color-stripe {
  color: #6772e5;
}

.c-color-brand-hover:hover {
  color: #f15a73;
}

.c-max-width-400 {
  max-width: 400px;
}

.c-max-width-600 {
  max-width: 600px;
}

.c-line-through {
  text-decoration: line-through;
}

.c-underline {
  text-decoration: underline;
}

.pr-photos-format:after {
  content: '';
  height: 3px;
  width: 75%;
  border-top: 2px solid #eb6975;
  display: block;
  margin: 0 auto 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.gen-btn-primary {
  height: 50px;
  width: 290px;
  background-color: #b0def1;
  border: 2px solid #b0def1;
  margin: 0 auto 20px auto;
  display: block;
  text-align: center;
  margin-top: 6%;
  text-transform: uppercase;
  cursor: pointer;
  padding: 16px;
  text-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}

.gen-btn-primary.trans,
.gen-btn-primary.collap-btn {
  background: none;
  color: rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.9);
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.gen-btn-primary.disabled {
  background: none;
  color: rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.gen-btn-primary.pink,
.gen-btn-primary.collap-btn.collapsed {
  background: #eb6975;
  border: 2px solid #eb6975;
}

.gen-btn-primary.pink-dis {
  background: rgba(235, 105, 117, 0.5);
  border: 2px solid rgba(235, 105, 117, 0.5);
}

.gen-btn-primary.pink-dis:hover {
  background: #eb6975;
  border: 2px solid #eb6975;
}

.gen-btn-primary.gray-dark {
  background: #444444;
  border: 2px solid #444444;
  color: #ffffff;
}

.gen-btn-primary.icon {
  text-align: left;
  position: relative;
  padding-left: 80px;
}

.gen-btn-icon {
  cursor: pointer;
  position: absolute;
  left: 24px;
}

.gen-btn-icon:before {
  content: '';
  width: 30px;
  height: 50px;
  display: block;
  float: left;
  margin-top: -15px;
  background: url("/img/icon-upload.svg") no-repeat;
  background-size: 50px;
  padding: 0 20px;
}

.gen-btn-icon.dropbox:before {
  background: url("/img/icon-box.svg") no-repeat;
}

.gen-btn-icon.google_photos:before {
  background: url("/img/icon-star.svg") no-repeat;
}

.gen-btn-icon.wetransfer:before {
  background: url("/img/icon-we.svg") no-repeat;
}

.gen-btn-second {
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.9);
  border-bottom: 2px solid;
  padding-bottom: 4px;
  text-transform: uppercase;
  float: left;
  cursor: pointer;
}

.gen-btn-second.right {
  float: right;
}

.gen-btn-second.pink {
  color: #eb6975;
}

@media only screen and (min-width: 1024px) {
  .gen-btn-primary {
    width: 320px;
  }

  .gen-btn-primary.small {
    width: 160px;
  }

  .gen-btn-primary.medium {
    width: 220px;
  }
}

.gen-btn-whatsapp {
  background-color: #59d466;
  border-color: #59d466;
  height: 50px;
  width: 290px;
  margin: 0 auto 20px auto;
  display: block;
  text-align: center;
  margin-top: 6%;
  text-transform: uppercase;
  cursor: pointer;
  padding: 16px;
  text-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
  border-radius: 25px;
}

.gen-btn-whatsapp:hover {
  color: #ffffff;
  font-weight: bold;
}

.gen-btn-whatsapp:hover .fa-whatsapp {
  color: #ffffff;
}

.gen-btn-whatsapp:focus,
.gen-btn-whatsapp.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 255, 136, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(217, 255, 136, 0.5);
}

.gen-btn-whatsapp.disabled,
.gen-btn-whatsapp:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.gen-btn-whatsapp.disabled .fa-whatsapp,
.gen-btn-whatsapp:disabled .fa-whatsapp {
  color: #ffffff;
}

@media only screen and (min-width: 1024px) {
  .gen-btn-whatsapp {
    width: 320px;
  }

  .gen-btn-whatsapp.small {
    width: 160px;
  }

  .gen-btn-whatsapp.medium {
    width: 220px;
  }
}

.btn-remove {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-remove:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-remove:focus,
.btn-remove.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-remove.disabled,
.btn-remove:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-remove:not(:disabled):not(.disabled):active,
.btn-remove:not(:disabled):not(.disabled).active,
.show > .btn-remove.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-remove:not(:disabled):not(.disabled):active:focus,
.btn-remove:not(:disabled):not(.disabled).active:focus,
.show > .btn-remove.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.gen-btn-outline-primary {
  color: #212529;
  background-color: #f15a73;
  border-color: #f15a73;
}

.gen-btn-outline-primary:hover {
  color: #f15a73;
  background-color: transparent;
  background-image: none;
  border-color: #f15a73;
}

.header {
  height: 65px;
  width: 101%;
  display: block;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #f8efe4;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
}

.header .icon-burger {
  max-width: 50px;
}

.header-content .gen-icon,
.header-content .header-title-txt {
  float: left;
  padding: 15px;
}

.header-title-txt {
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0px;
}

.header-menu {
  height: 100vh;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  margin-top: 65px;
  overflow-x: hidden;
  padding: 32px 0;
  background-color: #b0def1;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header-menu .fa-angle-down,
.header-menu .fa-angle-down * {
  color: rgba(0, 0, 0, 0.9);
}

.header-menu .header-menu-link {
  padding: 16px 32px;
  display: block;
  color: rgba(0, 0, 0, 0.9);
  margin: 0 32px;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-family: poppins-semibold;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-menu .closebtn {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 44px;
  color: rgba(0, 0, 0, 0.9);
}

.menu-logo-link {
  width: 121px;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}

.header-icon-market {
  cursor: pointer;
  display: block;
  margin: 0 -8px;
}

.header-icon-market img {
  width: 30px;
  margin-top: 10px;
  float: right;
  margin-right: 30px;
}

.header-menu-icon-txt {
  display: block;
  color: #151515;
  padding: 8px;
  float: left;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.1px;
}

.header-menu-icon-txt.sup {
  padding: 4px 0;
  margin: 16px 6px 16px -30px;
  background: #fac730;
  font-family: poppins-semibold;
  height: 20px;
  width: 20px;
  float: right;
  text-align: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: -0.1px;
}

@media screen and (max-height: 1023px) {
  .header-menu {
    padding-top: 15px;
  }

  .header-menu .header-menu-link {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}

@media only screen and (min-width: 1024px) {
  .header {
    height: 57px;
  }

  .header-title-txt {
    text-align: left;
    float: left;
    width: 120px;
  }

  .header-menu {
    padding: 0 0 0 20px;
    position: relative;
    float: left;
    width: calc(100% - 125px);
    height: 50px;
    margin-top: 0;
    overflow: hidden;
    background: none;
    z-index: 10000;
    -webkit-transition: none;
    transition: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header-menu .closebtn {
    display: none;
  }

  .header-menu .header-menu-link,
  .header-menu .header-menu-link.sup {
    margin: 0;
    padding: 8px 0;
    font-family: poppins-semibold;
    font-size: 16px;
    line-height: 35px;
    letter-spacing: -0.1px;
  }

  .header-menu-item {
    float: left;
    list-style: none;
    padding: 0;
    height: 50px;
    margin-right: 20px;
  }

  .header-menu-item.active {
    border-bottom: 4px solid #eb6975;
  }

  .header-icon-market {
    overflow: hidden;
  }

  .header-icon-market img {
    float: right;
  }

  .menu-logo-link {
    float: left;
  }

  .header-menu-icon-txt.sup {
    float: right;
    margin: 16px 0;
  }
}

.header-menu .header-menu-item .header-caption-text {
  color: #f15a73;
}

.footer {
  background: #000000;
  padding: 16px;
  overflow: hidden;
  display: block;
}

.footer .foo-left,
.footer .foo-right,
.footer .foo-center {
  clear: both;
  float: none;
  padding: 0;
}

.footer .foo-left,
.footer .foo-right {
  text-align: left;
}

.footer .foo-social-link .foo-icon {
  color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.foo-info {
  color: #fefefe;
  text-align: center;
  display: block;
  clear: both;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0px;
}

.foo-info:hover {
  color: #ffffff;
}

.foo-info a {
  color: #fefefe;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0px;
}

.foo-info a:hover {
  color: #ffffff;
}

.foo-info .barra {
  font-size: 10px;
  margin: 0 10px;
  color: #ffffff;
}

.foo-social {
  margin: 0 auto;
  overflow: hidden;
  padding: 16px;
  display: table;
}

.foo-social-link {
  float: left;
  background: #ffffff;
  border-radius: 50%;
  color: #000000;
  position: relative;
  width: 30px;
  height: 30px;
  margin-left: 16px;
}

.foo-social-link:first-child {
  margin-left: 0;
}

@media only screen and (min-width: 1024px) {
  .footer .foo-left,
  .footer .foo-center {
    float: left;
    clear: inherit;
  }

  .footer .foo-right {
    float: right;
    clear: inherit;
  }

  .foo-info {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0px;
  }
}

.sticky-footer {
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f8efe4;
  z-index: 9999;
}

.sticky-footer p {
  margin-top: 7px;
  margin-bottom: 0px;
}

.sticky-footer .footer-caption-text {
  color: #f15a73;
}

.sticky-footer.cookies-footer {
  display: none;
  opacity: 0.9;
}

.footer-background {
  background: #F8BC3E;
}

.c-bg-footer-black-friday {
  background: #222222 !important;
}

.c-bg-footer-cyber-monday {
  background: #ee4957 !important;
}

.c-bg-footer-christmas {
  background: #d63e2b !important;
}

.sticky-footer-spacer {
  height: 210px;
}

@media only screen and (max-width: 720px) {
  .sticky-footer-spacer {
    height: 260px;
  }
}

@media only screen and (max-width: 1024px) {
  .sticky-footer-spacer {
    height: 260px;
  }
}

.sticky-footer-spacer-cookie {
  height: 155px;
}

@media only screen and (max-width: 359px) {
  .sticky-footer-spacer-cookie {
    height: 245px;
  }
}

@media only screen and (min-width: 360px) and (max-width: 720px) {
  .sticky-footer-spacer-cookie {
    height: 205px;
  }
}

@media only screen and (min-width: 721px) and (max-width: 1024px) {
  .sticky-footer-spacer-cookie {
    height: 175px;
  }
}

.sp-navigation {
  list-style: none;
  margin: 0 0 32px 0;
  border-top: 1px solid #d8d8d8;
  width: 100%;
  margin: 0 auto;
  display: inline-block;
}

.sp-navigation.circle {
  border: 0;
  padding: 16px 0;
}

.sp-navigation-item {
  float: left;
  width: 22%;
  margin: 6px 11% 64px 0;
  position: relative;
  padding-right: 16px;
}

.sp-navigation-item.right {
  float: right;
  margin-right: 0;
}

.sp-navigation-item.middle {
  margin: 6px 5% 64px 5%;
}

.sp-navigation-item:before {
  content: '';
  width: 100%;
  position: absolute;
  top: -11px;
  border-top: 4px solid #d8d8d8;
}

.sp-navigation-item.active:before {
  border-top: 4px solid #b0def1;
}

.circle .sp-navigation-item {
  margin: 0;
  width: 33%;
  padding: 15px 0;
  text-align: center;
}

.circle .sp-navigation-item:before {
  width: 16px;
  top: -16px;
  border-top: 0;
  height: 16px;
  background: #d8d8d8;
  left: 50%;
  z-index: 10;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
}

.circle .sp-navigation-item:after {
  width: 100%;
  position: absolute;
  border: 1px solid #d8d8d8;
  content: '';
  display: block;
  top: -8px;
  left: -50%;
}

.circle .sp-navigation-item.active:before {
  background: #eb6975;
}

.circle .sp-navigation-item:first-child:after {
  display: none;
}

.sp-navigation-text {
  font-family: poppins-regular;
  color: #d8d8d8;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.active .sp-navigation-text {
  color: inherit;
}

.sp-navigation-title {
  margin-bottom: 16px;
  text-align: center;
  font-family: poppins-semibold;
  font-size: 35px;
  line-height: 44px;
  letter-spacing: -0.12px;
}

@media only screen and (min-width: 1024px) {
  .sp-navigation {
    display: block;
    width: 50%;
    margin: 0 auto 32px auto;
  }
}

/*** content ***/

.tpl-square {
  background: #ffffff;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0 32px 2.5% 32px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
}

.tpl-square-figure {
  position: relative;
  display: block;
  min-height: initial;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  padding-bottom: 67%;
}

.tpl-square-figure img {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
}

.tpl-square-figure img:hover {
  opacity: 0.7;
}

.tpl-square-title,
.tpl-square-price {
  font-family: poppins-semibold;
  color: rgba(0, 0, 0, 0.9);
  text-align: center;
  display: block;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

.tpl-square-price {
  font-family: poppins-medium;
  padding-bottom: 16px;
}

@media only screen and (min-width: 1024px) {
  .tpl-square {
    margin: 0;
  }
}

.new-badge {
  z-index: 99;
  position: absolute;
  left: 20px;
  top: 20px;
  background: #f15a73 !important;
  letter-spacing: 1px;
  font-size: 18px;
}

.new-badge.new-badge-bf {
  background: #354140 !important;
  color: #F4C44B !important;
}

.new-badge.new-badge-father-d {
  background: #0F39BF !important;
  color: #fff !important;
}

.new-badge.new-badge-spring {
  background: #00B59C !important;
  color: #fff !important;
}

.new-badge.new-badge-summer-week {
  background: #64BCE2 !important;
  color: #fff !important;
}

.tpl-order {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
}

.tpl-order:last-child {
  margin-bottom: 32px;
}

.tpl-order-figure {
  width: 40%;
  float: left;
  padding: 2px;
  margin: 0;
}

.tpl-order-content {
  width: 60%;
  padding: 16px 16px 0 16px;
  float: left;
  overflow: hidden;
  position: relative;
  overflow: hidden;
}

.tpl-order-col {
  overflow: hidden;
  margin-bottom: 8px;
}

.tpl-order-delete {
  background: url("/img/icon-close-pink.svg") no-repeat;
  border: none;
  float: right;
  background-position: center;
  background-color: transparent;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0;
}

.tpl-order-title,
.tpl-order-price {
  padding: 0 8px 0 0;
  float: left;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
}

.tpl-order-price {
  font-family: poppins-light;
  color: #a2a2a2;
  margin-bottom: 8px;
}

.tpl-order-price:before {
  content: '|';
  display: inline-block;
  padding-right: 8px;
}

.tpl-order-price:after {
  content: '\20AC';
  display: inline-block;
  padding-left: 3px;
}

.tpl-order-quantity {
  clear: both;
}

.tpl-order-qt-text {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0px;
  float: left;
}

.tpl-order-qt-value {
  float: left;
}

.tpl-order-qt-btn {
  background: url("/img/icon-plus-pink.svg") no-repeat;
  border: none;
  float: left;
  background-position: center;
  background-color: transparent;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin: 0 8px;
}

.tpl-order-qt-btn.disabled {
  opacity: 0.5;
}

.tpl-order-qt-btn.minus {
  background: url("/img/icon-minus-disable.svg") no-repeat;
}

.tpl-order-total {
  float: right;
  display: block;
}

.tpl-order-tl-text,
.tpl-order-tl-number {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.12px;
}

@media only screen and (min-width: 1024px) {
  .tpl-order-figure {
    width: 15%;
  }

  .tpl-order-content {
    width: 85%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 16px;
  }

  .tpl-order-main {
    width: 40%;
    float: left;
  }

  .tpl-order-quantity,
  .tpl-order-total {
    width: 30%;
    clear: inherit;
    float: left;
    margin-bottom: 0;
    bottom: 0;
  }

  .tpl-order-total {
    position: relative;
    border: inherit;
    right: inherit;
  }

  .tpl-order-col {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    -ms-flex-item-align: center;
        align-self: center;
  }

  .tpl-order-title,
  .tpl-order-price,
  .tpl-order-qt-text,
  .tpl-order-qt-value {
    font-family: poppins-regular;
    margin: 0;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -0.12px;
  }

  .tpl-order-qt-btn {
    margin: 8px;
  }

  .tpl-order-tl-text,
  .tpl-order-tl-number {
    text-align: right;
    font-size: 20px;
    line-height: 38px;
    letter-spacing: -0.12px;
  }

  .tpl-order-tl-number {
    padding-right: 32px;
  }

  .tpl-order-tl-number:after {
    content: '\20AC';
    display: inline-block;
    padding-left: 3px;
  }

  .tpl-order-tl-text {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    padding-right: 8px;
  }

  .tpl-order-delete {
    position: absolute;
    right: 8px;
    margin: 8px 0;
  }
}

/*** pages ***/

.welcome {
  height: 100vh;
}

.welcome:before {
  content: "";
  background: url("/img/KIOSKO_MOBILE.jpg");
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background-position: 50% 50%;
}

.welcome-christmas {
  height: 100vh;
}

.welcome-christmas:before {
  content: "";
  background: url("/img/christmas/kiosko-christmas-mobile.png");
  background-size: cover;
  height: 100vh;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  background-position: 50% 50%;
}

.pres-subtitle-txt {
  font-family: poppins-medium;
  text-align: center;
  display: block;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

.pres-title-txt {
  padding-top: 21.89%;
  padding-bottom: 2%;
  width: 310px;
  margin: 0 auto;
}

.pres-icon-arrow {
  width: 33px;
  position: relative;
  overflow: hidden;
  display: block;
  margin: 50px auto 0 auto;
}

.pres-icon-arrow {
  background: url("/img/icon-arrow-down.svg");
  width: 60px;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: block;
  height: 50px;
  margin: 37% auto 0 auto;
}

@media only screen and (min-width: 1024px) {
  .welcome {
    margin-bottom: 50px;
    height: inherit;
  }

  .welcome:before {
    background-image: url("/img/back-image-1-desktop.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .pres-title-txt {
    width: 350px;
  }

  .pres-subtitle-txt {
    display: block;
    width: 44%;
    margin: 0 auto;
    font-size: 25px;
    line-height: 32px;
    letter-spacing: 0px;
  }

  .pres-icon-arrow {
    margin-top: 15%;
  }
}

.pr-figure {
  margin: 0 -15px;
}

.pr-title {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 34px;
  letter-spacing: -0.12px;
}

.pr-price {
  text-align: center;
  font-family: poppins-semibold;
  display: block;
  width: 100%;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0px;
}

.pr-text {
  text-align: center;
}

.pr-photos {
  width: 100%;
}

.pr-photos .pr-photos-title {
  font-family: poppins-semibold;
  margin-bottom: 8px;
  display: block;
  text-align: center;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

.pr-photos .pr-text-underline {
  font-family: poppins-semibold;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
  text-decoration: underline;
}

.pr-photos .pr-photos-list {
  clear: both;
  display: table;
  margin: 0 auto 16px auto;
}

.pr-photos .pr-photos-item {
  margin: 0 16px 0 0;
  display: block;
  text-align: center;
}

.pr-photos .pr-photos-item:last-child:after {
  display: none;
}

.pr-photos .pr-photos-text {
  font-family: poppins-regular;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
}

.pr-icon-list {
  margin: 30px 0 0;
  position: relative;
}

.pr-icon-list .pr-icon-item {
  width: 50%;
  float: left;
  padding: 0 20px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  min-height: 100px;
}

.pr-icon-list .pr-icon-figure {
  width: 40px;
  height: 56px;
  position: relative;
  margin: 0 auto 5px auto;
}

.pr-icon-list .pr-icon-figure img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pr-icon-list .pr-icon-text {
  font-family: poppins-regular;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.pr-icon-list .pr-icon-text-bold {
  font-weight: bold;
}

.pr-photos-icon {
  padding: 0 0 0 0;
  color: #eb6975;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0px;
}

/***  range ***/

.pr-photos-range {
  width: 75%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 16px;
}

.pr-photos-range-text {
  position: absolute;
  right: 0;
  bottom: 30%;
}

.pr-photos-range-input {
  height: 29px;
  -webkit-appearance: none;
  margin: 10px 0;
  width: 85%;
  background: none;
}

.pr-photos-range-input:focus {
  outline: none;
}

.pr-photos-range-input:focus::-webkit-slider-runnable-track {
  background: #b0def1;
}

.pr-photos-range-input:focus::-ms-fill-lower {
  background: #b0def1;
}

.pr-photos-range-input:focus::-ms-fill-upper {
  background: #b0def1;
}

.pr-photos-range-input::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  -webkit-box-shadow: 1px 1px 0px #000000;
          box-shadow: 1px 1px 0px #000000;
  background: #b0def1;
  border-radius: 6px;
  border: 0px solid #000000;
}

.pr-photos-range-input::-webkit-slider-thumb {
  -webkit-box-shadow: 1px 1px 1px #000000;
          box-shadow: 1px 1px 1px #000000;
  border: 0px solid #000000;
  height: 22px;
  width: 21px;
  border-radius: 50px;
  background: #eb6975;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -6px;
}

.pr-photos-range-input::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 0px #000000;
  background: #b0def1;
  border-radius: 6px;
  border: 0px solid #000000;
}

.pr-photos-range-input::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000;
  border: 0px solid #000000;
  height: 22px;
  width: 21px;
  border-radius: 50px;
  background: #eb6975;
  cursor: pointer;
}

.pr-photos-range-input::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.pr-photos-range-input::-ms-fill-lower {
  background: #b0def1;
  border: 0px solid #000000;
  border-radius: 12px;
  box-shadow: 1px 1px 0px #000000;
}

.pr-photos-range-input::-ms-fill-upper {
  background: #b0def1;
  border: 0px solid #000000;
  border-radius: 12px;
  box-shadow: 1px 1px 0px #000000;
}

.pr-photos-range-input::-ms-thumb {
  margin-top: 1px;
  box-shadow: 1px 1px 1px #000000;
  border: 0px solid #000000;
  height: 22px;
  width: 21px;
  border-radius: 50px;
  background: #eb6975;
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  .pr-figure {
    margin: 0;
    width: 50%;
  }

  .pr-text {
    text-align: left;
    margin-bottom: 16px;
  }

  .pr-price {
    text-align: left;
    font-family: poppins-semibold;
  }

  .pr-icon-list .pr-icon-item {
    width: 33%;
    text-align: left;
    padding: 0 5px 0 0;
    overflow: hidden;
  }

  .pr-icon-list .pr-icon-figure {
    margin: 0 0 8px 0;
  }

  .pr-icon-list .pr-icon-text {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0px;
  }

  .pr-content {
    width: 50%;
    padding: 0 0 0 30px;
  }

  .pr-photos .pr-photos-list {
    margin: 0 0 16px 0;
  }

  .pr-photos .pr-photos-title {
    text-align: left;
  }

  .pr-photos .pr-photos-item {
    float: left;
  }

  .pr-photos .pr-photos-item:after {
    content: '|';
    margin-left: 8px;
  }

  .pr-photos-range {
    width: 50%;
    margin: 0 0 16px 0;
  }
}

@media only screen and (min-width: 1200px) {
  .pr-figure {
    margin: 0;
    width: 40%;
  }

  .pr-content {
    width: 60%;
    padding: 0 0 0 30px;
  }
}

@media only screen and (min-width: 1600px) {
  .pr-figure {
    margin: 0;
    width: 35%;
  }

  .pr-content {
    width: 65%;
    padding: 0 0 0 30px;
  }
}

.ct-item {
  padding: 20px 0;
  text-align: center;
  background: rgba(176, 222, 241, 0.35);
  border-top: 4px solid #eb6975;
}

.ct-item .ct-item-figure {
  width: 50px;
  margin: 0 auto 20px;
}

.ct-item .ct-item-link {
  display: block;
}

.ct-moreinfo-text {
  margin-top: 20px;
  text-align: center;
  display: block;
  width: 100%;
}

.ct-social {
  margin: 0 auto;
}

.ct-social-link {
  float: left;
  width: 40px;
  margin: 0 15px 0 0;
}

@media only screen and (min-width: 1024px) {
  .ct-item {
    padding: 40px 20px;
    min-height: 280px;
  }

  .ct-item:hover {
    background: #b0def1;
  }
}

.ab-item-title {
  color: rgba(0, 0, 0, 0.9);
  font-family: poppins-semibold;
  padding-bottom: 5px;
  position: relative;
  border-bottom: 2px solid #eb6975;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0px;
}

.ab-item-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  border-bottom: 3px solid #eb6975;
}

.ab-personal-item {
  width: 33%;
  padding: 5px;
}

.ab-personal-data {
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (min-width: 1024px) {
  .ab-wrap {
    width: 50%;
  }

  .ab-wrap.right {
    padding-left: 30px;
  }

  .ab-item-title {
    padding-top: 20px;
  }
}

.sp1-text {
  text-align: center;
  margin-bottom: 40px;
  display: block;
}

.sp-content.small {
  border-bottom: 1px solid #000000;
  width: 100%;
  margin: 0 16px 32px 16px;
  text-align: center;
  padding-bottom: 10px;
}

.sp-content.big {
  width: 100%;
}

.sp-content .container-flex {
  padding: 0;
}

.sc-item {
  width: 50%;
  padding: 0 16px;
  margin-bottom: 16px;
}

.sc-item .img-responsive.selected {
  border: 3px solid #eb6975;
}

.sc-item-input {
  display: none;
}

.sc-item-link {
  width: 100%;
  height: inherit;
  padding-bottom: 100%;
  display: block;
  position: relative;
  margin-bottom: 8px;
  border: 3px solid #f8efe4;
  border-radius: 4px;
}

.sc-item-link img {
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sc-item-link img.equal {
  height: 90%;
}

.sc-item-link img:hover {
  opacity: 0.7;
}

.sc-item-title,
.sc-item-text {
  text-align: center;
  display: block;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0px;
}

.sc-info-text {
  padding: 16px;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0px;
}

.sc-textarea {
  width: 100%;
  height: 100px;
  padding: 16px;
  border: 0;
}

.steps-subtitle {
  text-align: center;
  margin-bottom: 32px;
  display: block;
  font-family: poppins-regular-italic;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
}

.steps-item-text {
  text-align: center;
  margin-bottom: 32px;
  display: block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
}

.steps-item-border {
  float: left;
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.steps-item-border:before,
.steps-item-border:after {
  content: '';
  display: block;
  float: left;
  width: 40%;
  border: 1px solid #b0def1;
}

.steps-item-border:after {
  float: right;
}

.steps-item-num {
  font-family: poppins-medium;
  display: block;
  float: left;
  text-align: center;
  margin-top: -16px;
  width: 20%;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
}

@media only screen and (min-width: 1024px) {
  .sp-container {
    padding: 32px 0 0 0;
  }

  .sp-container .container-flex {
    clear: both;
    padding: 16px 1px;
  }

  .sp-content {
    width: 50%;
    position: relative;
  }

  .sp-content.left {
    padding-right: 32px;
  }

  .sp-content .gen-btn-primary {
    width: 70%;
    margin: 0 0 16px 0;
  }

  .sp-content .gen-btn-whatsapp {
    width: 70%;
    margin: 0 0 16px 0;
  }

  .sp1-extra-title {
    font-family: poppins-semibold;
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.07px;
  }

  .sp1-extra-title.underline {
    border-bottom: 2px solid rgba(0, 0, 0, 0.9);
    padding-bottom: 8px;
  }

  .sp1-text {
    text-align: left;
  }

  .sp-content.small {
    border-bottom: 0;
    width: 30%;
    margin: 0;
  }

  .sp-content.big {
    width: 70%;
  }

  .sp-content.big .container-flex {
    padding: 0;
  }

  .sc-item-title,
  .sc-item-text {
    float: left;
    padding-right: 12px;
  }

  .sc-item-text {
    font-family: poppins-regular;
  }

  .sc-textarea {
    width: 95%;
    height: 120px;
    margin: 0 16px;
  }

  .sc-small-title {
    border-top: 4px solid #eb6975;
    text-align: left;
    color: #eb6975;
    font-family: poppins-semibold;
    padding: 8px 20% 0 0;
    margin-right: 25%;
    display: block;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.12px;
  }

  .steps-list {
    padding: 0 64px;
  }

  .steps-subtitle {
    margin-bottom: 32px;
    padding: 0 32px;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0px;
  }

  .steps-item-text {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .steps-item-num {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}

.upload-fixed-btn {
  position: fixed;
  z-index: 30;
  bottom: 0;
  margin: 0;
  padding: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (min-width: 1024px) {
  .upload-fixed-btn {
    bottom: inherit;
    top: 270px;
    left: inherit;
    position: fixed;
    width: 25%;
    right: 66%;
    -webkit-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .upload-title-text {
    font-family: poppins-semibold;
    margin-bottom: 32px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
  }

  .upload-title-text:before {
    content: '';
    display: block;
    width: 100%;
    border-top: 3px solid #eb6975;
    margin-bottom: 5px;
  }

  .upload-subtitle-text {
    padding: 0;
    font-family: poppins-regular;
    margin: 8px 0;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
  }

  .upload-photos-item {
    width: 20%;
    height: auto;
  }

  .upload-photos-count {
    padding: 16px 8px;
    font-family: poppins-semibold;
  }
}

.upload-subtitle-text {
  padding: 0 16px;
}

.upload-box {
  margin: 16px 8px 32px 8px;
  background: rgba(255, 255, 255, 0.5) !important;
  border: 2px dotted #eb6975 !important;
  padding: 32px !important;
  min-height: 300px !important;
  border-radius: 10px;
}

.dz-message > span > span {
  /*content: 'Haz click aqu\ED   para importar tus fotos o arrastralas aqu\ED';*/
  position: absolute;
  left: 50%;
  top: 20%;
  color: #eb6975;
  font-family: poppins-medium;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.upload-box.dz-started:before {
  content: '';
}

.upload-box-icon {
  content: '';
  position: absolute;
  left: 50%;
  height: 102px;
  width: 110px;
  top: 50%;
  background: url("/img/icon-picture.svg") no-repeat;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 20px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  border-radius: 50%;
  background-color: white;
}

.dz-error-message > span {
  color: white;
}

.dropzone .dz-preview.dz-image-preview {
  background: none !important;
}

.dz-error-message {
  top: -90px !important;
}

.dz-error-message:after {
  border-top: 6px solid #be2626 !important;
  border-bottom: none !important;
  top: 85px !important;
}

.order-discount {
  margin-bottom: 16px;
  overflow: hidden;
}

.order-discount .gen-btn-second {
  padding-top: 8px;
}

.order-discount-text {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.09px;
}

.order-discount-input {
  border: 0;
  padding: 8px;
  text-align: center;
  float: left;
  margin-right: 8px;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}

.order-cost {
  margin-bottom: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.9);
  padding: 16px 0 0 0;
}

.order-cost.last .order-cost-title,
.order-cost.last .order-cost-value {
  font-family: poppins-bold;
}

.order-cost-value {
  float: right;
}

.order-cost-value:after {
  content: '\20AC';
}

.order-cost-value.pink {
  color: #eb6975;
}

.discount:before {
  content: '-';
}

.order-cost-text {
  display: block;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: -0.09px;
}

.order-form {
  padding: 0 16px;
}

.order-form-title {
  text-align: center;
  padding: 32px;
}

.order-form-input {
  width: 100%;
  margin-bottom: 16px;
  height: 50px;
  float: left;
  border: 0;
  padding: 0 32px;
}

.order-privacity-text {
  display: block;
  clear: both;
  padding: 32px 0px 48px 0;
  text-align: center;
}

.order-privacity-link {
  text-decoration: underline;
}

.order-ad {
  margin: 32px 0 64px 0;
}

.order-ad-item {
  overflow: hidden;
  background: #ffffff;
  height: 205px;
  border-radius: 8px;
}

.order-ad-title {
  background: #fac730;
  font-family: poppins-medium;
  text-align: center;
  padding: 16px;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0px;
}

.order-ad-text {
  padding: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0px;
}

.legal-checks {
  padding-left: 25px;
  text-indent: -19px;
  font-size: 12px;
  max-width: 60%;
  margin: 0 auto 10px auto;
  color: #151515;
}

@media only screen and (min-width: 1024px) {
  .legal-checks {
    padding-left: 80px;
  }
}

.legal-checks a {
  color: #eb6975;
  font-size: 12px;
}

.legal-checks input {
  margin-right: 5px;
}

@media only screen and (min-width: 1024px) {
  .order-form {
    max-width: 700px;
    margin: 0 auto 80px auto;
  }

  .order-form .md-l {
    width: 66%;
  }

  .order-form .md-m {
    width: 50%;
  }

  .order-form .md-s {
    width: 33%;
  }

  .order-form .right {
    float: right;
  }

  .order-form-label {
    margin: 0;
    padding: 8px 0;
    float: left;
  }

  .order-form-input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: transparent;
  }

  .order-form-input::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: transparent;
  }

  .order-form-input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: transparent;
  }

  .order-form-input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: transparent;
  }

  .order-privacity-text {
    display: block;
    clear: both;
    padding: 8px 0 48px 0;
    text-align: left;
  }

  .order-discount-text {
    text-align: left;
    float: left;
    padding-right: 32px;
    font-size: 22px;
    line-height: 40px;
    letter-spacing: -0.12px;
  }

  .order-discount {
    margin-top: 46px;
    height: 40px;
  }

  .order-discount-input {
    width: 50%;
  }

  .order-cost-title,
  .order-cost-value {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: -0.12px;
  }
}

.order {
  text-align: center;
  margin: 0 auto;
}

.order-figure {
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  width: 9%;
}

.order-text {
  margin-top: 30px;
  font-family: poppins-light;
  text-align: justify;
}

.bold-text {
  font-weight: bold;
}

.contact-whats,
.main-whatsapp {
  color: #ffffff;
  background: #eb6975;
}

.icon-whats {
  width: 71px;
  margin: 0 auto;
  display: block;
  font-size: 71px;
  line-height: 75px;
  color: white;
  margin: 15% auto 32px auto;
}

.contact-whats-title {
  text-align: center;
  font-family: poppins-light;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0px;
}

@media only screen and (min-width: 1024px) {
  .contact-whats-title {
    text-align: center;
    font-family: poppins-light;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0px;
  }
}

