@charset "UTF-8";
/*------------------------------------*\
    $Librerías: lib/
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
/*------------------------------------*\
    $COLORES
\*------------------------------------*/
root {
  --e-global-color-primary: #379eff;
  --e-global-color-secondary: #54595f;
  --e-global-color-text: #000000;
  --e-global-color-accent: #eef9ff;
  --e-global-color-e157d5e: #ffffff;
  --e-global-color-5a8a076: #959fb0;
  --e-global-color-2e0e010: #081f46;
  --e-global-color-aaed178: #67b5ff;
  --e-global-color-b34e580: #4d86ff;
  --e-global-color-169f928: #9cd5f1;
  --e-global-color-26a4860: #bae2f5;
  --e-global-color-a8ba5a4: #8cc0d9;
  --e-global-color-7f36284: #004a98;
  --e-global-color-03725d9: #0a3774;
  --e-global-color-421492b: #062146;
  --e-global-color-85e5e22: #dcf3ff;
  --e-global-color-8c80c59: #ebf7fc;
  --e-global-color-913da6b: #f5fbfe;
  --e-global-color-23aa527: #5e8091;
  --e-global-typography-primary-font-family: "Inter";
}

/*------------------------------------*\
    $BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
    $FONT FAMILY
\*------------------------------------*/
/*------------------------------------*\
    $FONT WINGTH
\*------------------------------------*/
/*------------------------------------*\
    $FONT-SIZES
\*------------------------------------*/
/*------------------------------------*\
    $MAX-CONTENTS
\*------------------------------------*/
/*------------------------------------*\
    $MEDIAQUERIES TABLET - DESKTOP
\*------------------------------------*/
/*------------------------------------*\
    $ESTILOS GENERALES DE ELEMENTOS
\*------------------------------------*/
/*------------------------------------*\
    $CLASES COLORES DE FUENTE
\*------------------------------------*/
.color__white {
  color: #ffffff;
}

.color__black {
  color: #000000;
}

.color__basecolor {
  color: #4a3316;
}

.color__secondary {
  color: #ea6d23;
}

.color__lightgray {
  color: #adadad;
}

.color__darkgray {
  color: #212b36;
}

.color__errorcolor {
  color: #ff2e48;
}

.bg_color__white {
  background-color: #ffffff;
}

.bg_color__black {
  background-color: #000000;
}

.bg_color__basecolor {
  background-color: #4a3316;
}

.bg_color__secondary {
  background-color: #ea6d23;
}

.bg_color__lightgray {
  background-color: #adadad;
}

.bg_color__darkgray {
  background-color: #212b36;
}

.bg_color__errorcolor {
  background-color: #ff2e48;
}

/*------------------------------------*\
    $ESTRUCTURA BEM
\*------------------------------------*/
/*
	.block {
	    CSS declaraciones para '.block'

	    @include e('element') {
	        CSS declaraciones para '.block__element'
	    }

	    @include m('modifier') {
	        CSS declaraciones para '.block--modifier'

	        @include e('element') {
	             CSS declaraciones para '.block--modifier__element'
	        }
	    }
	}
*/
/*------------------------------------*\
    $Bases: base/
\*------------------------------------*/
/*------------------------------------*\
    $RESET
\*------------------------------------*/
* {
  outline: none;
  box-sizing: border-box;
}

html,
body {
  font-family: "Inter" !important;
  color: #fff;
  font-size: rem-calc(16px);
  margin: 0;
  scrollbar-width: thin;
}
@media screen and (max-width: 1024px) {
  html,
  body {
    min-height: auto;
  }
}
@media screen and (min-width: 1024px) {
  html,
  body {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

body {
  background-image: url("../images/bg-mobile.jpg") !important;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  background-attachment: fixed;
  background-color: #004a98 !important;
  min-height: auto;
}
@media screen and (min-width: 640px) {
  body {
    background-image: url("../images/bg-webv2.jpeg") !important;
  }
}
@media screen and (min-width: 1024px) {
  body {
    background-size: cover;
  }
}
body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f5fbfe;
}

.content-area {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding-bottom: 0;
}
.home .content-area {
  box-shadow: none;
}

::-moz-selection {
  color: #ffffff;
  background: #32c5f8;
}

::selection {
  color: #ffffff;
  background: #32c5f8;
}

.disable {
  opacity: 0.3;
  pointer-events: none;
}

@media screen and (min-width: 1100px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px !important;
  }
}
.row-alter {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}
.row-alter--100 {
  max-width: 100%;
}
.row-alter--1260 {
  max-width: 1260px;
}
.row-alter--1000 {
  max-width: 1000px;
}
.row-alter--445 {
  max-width: 445px;
}
.row-alter--700 {
  max-width: 700px;
}

.relative {
  position: relative;
}

.w100 {
  width: 100%;
}

.dblock {
  display: block;
}

strong {
  font-weight: 700;
}

@media screen and (min-width: 1024px) {
  .heightFull {
    min-height: calc(100vh - 198px);
  }
}

.wrap-regular {
  width: 100%;
  max-width: 744px;
  margin: 0 auto;
}

.small-wrap {
  width: 100%;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}

.medium-wrap {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.large-wrap {
  width: 100%;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
}

.standard-wrap {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.full-wrap {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 640px) {
  .small-text-center {
    text-align: center;
  }
}

.rotate90 {
  transform: rotate(90deg) !important;
}

/*------------------------------------*\
    $H1, H2, H3, H4, H5, H6
\*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0 !important;
  color: #9cd5f1;
  font-weight: 700;
  font-family: "Inter";
  text-transform: none;
}

html body h1 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 66px;
  line-height: 80px;
  letter-spacing: -0.02em;
}

html body h2 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 50px;
  line-height: 64px;
}

html body h3 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 0.02em;
}

html body h4 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0.02em;
}

html body h5 {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.02em;
}

h6,
.h6 {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  h6,
  .h6 {
    font-size: 20px;
  }
}

.uppercase {
  text-transform: uppercase;
}

.justify {
  text-align: justify;
}

/*------------------------------------*\
    $LINKS
\*------------------------------------*/
a {
  color: #32c5f8;
  transition: all 0.2s;
  cursor: pointer;
}
a:focus, a:visited, a:active {
  color: #32c5f8;
}
a:hover {
  color: #a2dffe;
  text-decoration: none;
}

.link-white {
  color: #ffffff;
}
.link-white:hover, .link-white:visited, .link-white:active, .link-white:focus {
  color: #ffffff;
}

.link-base {
  color: #4a3316;
}
.link-base:hover, .link-base:visited, .link-base:active, .link-base:focus {
  color: #4a3316;
}

.link-secondary {
  color: #ea6d23;
}
.link-secondary:hover, .link-secondary:visited, .link-secondary:active, .link-secondary:focus {
  color: #ea6d23;
}

.link-error {
  color: #ff2e48;
}
.link-error:hover, .link-error:visited, .link-error:active, .link-error:focus {
  color: #ff2e48;
}

.underline {
  text-decoration: underline;
}

.pointer {
  cursor: pointer;
}

.none-cursor {
  cursor: none;
}

/*------------------------------------*\
    $FONT-SIZE
\*------------------------------------*/
.font0 {
  font-size: 0px;
}

.font5 {
  font-size: 5px;
}

.font10 {
  font-size: 10px;
}

.font15 {
  font-size: 15px;
}

.font20 {
  font-size: 20px;
}

.font25 {
  font-size: 25px;
}

.font30 {
  font-size: 30px;
}

.font35 {
  font-size: 35px;
}

.font40 {
  font-size: 40px;
}

.font45 {
  font-size: 45px;
}

.font50 {
  font-size: 50px;
}

.font55 {
  font-size: 55px;
}

.font60 {
  font-size: 60px;
}

.font65 {
  font-size: 65px;
}

.font70 {
  font-size: 70px;
}

.font75 {
  font-size: 75px;
}

.font80 {
  font-size: 80px;
}

.font85 {
  font-size: 85px;
}

.font90 {
  font-size: 90px;
}

.font95 {
  font-size: 95px;
}

.font100 {
  font-size: 100px;
}

.font105 {
  font-size: 105px;
}

.font110 {
  font-size: 110px;
}

.font115 {
  font-size: 115px;
}

.font120 {
  font-size: 120px;
}

.font125 {
  font-size: 125px;
}

.font130 {
  font-size: 130px;
}

.font135 {
  font-size: 135px;
}

.font140 {
  font-size: 140px;
}

.font145 {
  font-size: 145px;
}

.font150 {
  font-size: 150px;
}

.font155 {
  font-size: 155px;
}

.font160 {
  font-size: 160px;
}

.font165 {
  font-size: 165px;
}

.font170 {
  font-size: 170px;
}

.font175 {
  font-size: 175px;
}

.font180 {
  font-size: 180px;
}

.font185 {
  font-size: 185px;
}

.font190 {
  font-size: 190px;
}

.font195 {
  font-size: 195px;
}

.font200 {
  font-size: 200px;
}

@media screen and (max-width: 640px) {
  .small-font0 {
    font-size: 0px;
  }
  .small-font5 {
    font-size: 5px;
  }
  .small-font10 {
    font-size: 10px;
  }
  .small-font15 {
    font-size: 15px;
  }
  .small-font20 {
    font-size: 20px;
  }
  .small-font25 {
    font-size: 25px;
  }
  .small-font30 {
    font-size: 30px;
  }
  .small-font35 {
    font-size: 35px;
  }
  .small-font40 {
    font-size: 40px;
  }
  .small-font45 {
    font-size: 45px;
  }
  .small-font50 {
    font-size: 50px;
  }
  .small-font55 {
    font-size: 55px;
  }
  .small-font60 {
    font-size: 60px;
  }
  .small-font65 {
    font-size: 65px;
  }
  .small-font70 {
    font-size: 70px;
  }
  .small-font75 {
    font-size: 75px;
  }
  .small-font80 {
    font-size: 80px;
  }
  .small-font85 {
    font-size: 85px;
  }
  .small-font90 {
    font-size: 90px;
  }
  .small-font95 {
    font-size: 95px;
  }
  .small-font100 {
    font-size: 100px;
  }
  .small-font105 {
    font-size: 105px;
  }
  .small-font110 {
    font-size: 110px;
  }
  .small-font115 {
    font-size: 115px;
  }
  .small-font120 {
    font-size: 120px;
  }
  .small-font125 {
    font-size: 125px;
  }
  .small-font130 {
    font-size: 130px;
  }
  .small-font135 {
    font-size: 135px;
  }
  .small-font140 {
    font-size: 140px;
  }
  .small-font145 {
    font-size: 145px;
  }
  .small-font150 {
    font-size: 150px;
  }
  .small-font155 {
    font-size: 155px;
  }
  .small-font160 {
    font-size: 160px;
  }
  .small-font165 {
    font-size: 165px;
  }
  .small-font170 {
    font-size: 170px;
  }
  .small-font175 {
    font-size: 175px;
  }
  .small-font180 {
    font-size: 180px;
  }
  .small-font185 {
    font-size: 185px;
  }
  .small-font190 {
    font-size: 190px;
  }
  .small-font195 {
    font-size: 195px;
  }
  .small-font200 {
    font-size: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-font0 {
    font-size: 0px;
  }
  .small-tablet-font5 {
    font-size: 5px;
  }
  .small-tablet-font10 {
    font-size: 10px;
  }
  .small-tablet-font15 {
    font-size: 15px;
  }
  .small-tablet-font20 {
    font-size: 20px;
  }
  .small-tablet-font25 {
    font-size: 25px;
  }
  .small-tablet-font30 {
    font-size: 30px;
  }
  .small-tablet-font35 {
    font-size: 35px;
  }
  .small-tablet-font40 {
    font-size: 40px;
  }
  .small-tablet-font45 {
    font-size: 45px;
  }
  .small-tablet-font50 {
    font-size: 50px;
  }
  .small-tablet-font55 {
    font-size: 55px;
  }
  .small-tablet-font60 {
    font-size: 60px;
  }
  .small-tablet-font65 {
    font-size: 65px;
  }
  .small-tablet-font70 {
    font-size: 70px;
  }
  .small-tablet-font75 {
    font-size: 75px;
  }
  .small-tablet-font80 {
    font-size: 80px;
  }
  .small-tablet-font85 {
    font-size: 85px;
  }
  .small-tablet-font90 {
    font-size: 90px;
  }
  .small-tablet-font95 {
    font-size: 95px;
  }
  .small-tablet-font100 {
    font-size: 100px;
  }
  .small-tablet-font105 {
    font-size: 105px;
  }
  .small-tablet-font110 {
    font-size: 110px;
  }
  .small-tablet-font115 {
    font-size: 115px;
  }
  .small-tablet-font120 {
    font-size: 120px;
  }
  .small-tablet-font125 {
    font-size: 125px;
  }
  .small-tablet-font130 {
    font-size: 130px;
  }
  .small-tablet-font135 {
    font-size: 135px;
  }
  .small-tablet-font140 {
    font-size: 140px;
  }
  .small-tablet-font145 {
    font-size: 145px;
  }
  .small-tablet-font150 {
    font-size: 150px;
  }
  .small-tablet-font155 {
    font-size: 155px;
  }
  .small-tablet-font160 {
    font-size: 160px;
  }
  .small-tablet-font165 {
    font-size: 165px;
  }
  .small-tablet-font170 {
    font-size: 170px;
  }
  .small-tablet-font175 {
    font-size: 175px;
  }
  .small-tablet-font180 {
    font-size: 180px;
  }
  .small-tablet-font185 {
    font-size: 185px;
  }
  .small-tablet-font190 {
    font-size: 190px;
  }
  .small-tablet-font195 {
    font-size: 195px;
  }
  .small-tablet-font200 {
    font-size: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-font0 {
    font-size: 0px;
  }
  .medium-font5 {
    font-size: 5px;
  }
  .medium-font10 {
    font-size: 10px;
  }
  .medium-font15 {
    font-size: 15px;
  }
  .medium-font20 {
    font-size: 20px;
  }
  .medium-font25 {
    font-size: 25px;
  }
  .medium-font30 {
    font-size: 30px;
  }
  .medium-font35 {
    font-size: 35px;
  }
  .medium-font40 {
    font-size: 40px;
  }
  .medium-font45 {
    font-size: 45px;
  }
  .medium-font50 {
    font-size: 50px;
  }
  .medium-font55 {
    font-size: 55px;
  }
  .medium-font60 {
    font-size: 60px;
  }
  .medium-font65 {
    font-size: 65px;
  }
  .medium-font70 {
    font-size: 70px;
  }
  .medium-font75 {
    font-size: 75px;
  }
  .medium-font80 {
    font-size: 80px;
  }
  .medium-font85 {
    font-size: 85px;
  }
  .medium-font90 {
    font-size: 90px;
  }
  .medium-font95 {
    font-size: 95px;
  }
  .medium-font100 {
    font-size: 100px;
  }
  .medium-font105 {
    font-size: 105px;
  }
  .medium-font110 {
    font-size: 110px;
  }
  .medium-font115 {
    font-size: 115px;
  }
  .medium-font120 {
    font-size: 120px;
  }
  .medium-font125 {
    font-size: 125px;
  }
  .medium-font130 {
    font-size: 130px;
  }
  .medium-font135 {
    font-size: 135px;
  }
  .medium-font140 {
    font-size: 140px;
  }
  .medium-font145 {
    font-size: 145px;
  }
  .medium-font150 {
    font-size: 150px;
  }
  .medium-font155 {
    font-size: 155px;
  }
  .medium-font160 {
    font-size: 160px;
  }
  .medium-font165 {
    font-size: 165px;
  }
  .medium-font170 {
    font-size: 170px;
  }
  .medium-font175 {
    font-size: 175px;
  }
  .medium-font180 {
    font-size: 180px;
  }
  .medium-font185 {
    font-size: 185px;
  }
  .medium-font190 {
    font-size: 190px;
  }
  .medium-font195 {
    font-size: 195px;
  }
  .medium-font200 {
    font-size: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-font0 {
    font-size: 0px;
  }
  .large-font5 {
    font-size: 5px;
  }
  .large-font10 {
    font-size: 10px;
  }
  .large-font15 {
    font-size: 15px;
  }
  .large-font20 {
    font-size: 20px;
  }
  .large-font25 {
    font-size: 25px;
  }
  .large-font30 {
    font-size: 30px;
  }
  .large-font35 {
    font-size: 35px;
  }
  .large-font40 {
    font-size: 40px;
  }
  .large-font45 {
    font-size: 45px;
  }
  .large-font50 {
    font-size: 50px;
  }
  .large-font55 {
    font-size: 55px;
  }
  .large-font60 {
    font-size: 60px;
  }
  .large-font65 {
    font-size: 65px;
  }
  .large-font70 {
    font-size: 70px;
  }
  .large-font75 {
    font-size: 75px;
  }
  .large-font80 {
    font-size: 80px;
  }
  .large-font85 {
    font-size: 85px;
  }
  .large-font90 {
    font-size: 90px;
  }
  .large-font95 {
    font-size: 95px;
  }
  .large-font100 {
    font-size: 100px;
  }
  .large-font105 {
    font-size: 105px;
  }
  .large-font110 {
    font-size: 110px;
  }
  .large-font115 {
    font-size: 115px;
  }
  .large-font120 {
    font-size: 120px;
  }
  .large-font125 {
    font-size: 125px;
  }
  .large-font130 {
    font-size: 130px;
  }
  .large-font135 {
    font-size: 135px;
  }
  .large-font140 {
    font-size: 140px;
  }
  .large-font145 {
    font-size: 145px;
  }
  .large-font150 {
    font-size: 150px;
  }
  .large-font155 {
    font-size: 155px;
  }
  .large-font160 {
    font-size: 160px;
  }
  .large-font165 {
    font-size: 165px;
  }
  .large-font170 {
    font-size: 170px;
  }
  .large-font175 {
    font-size: 175px;
  }
  .large-font180 {
    font-size: 180px;
  }
  .large-font185 {
    font-size: 185px;
  }
  .large-font190 {
    font-size: 190px;
  }
  .large-font195 {
    font-size: 195px;
  }
  .large-font200 {
    font-size: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-font0 {
    font-size: 0px;
  }
  .xxlarge-font5 {
    font-size: 5px;
  }
  .xxlarge-font10 {
    font-size: 10px;
  }
  .xxlarge-font15 {
    font-size: 15px;
  }
  .xxlarge-font20 {
    font-size: 20px;
  }
  .xxlarge-font25 {
    font-size: 25px;
  }
  .xxlarge-font30 {
    font-size: 30px;
  }
  .xxlarge-font35 {
    font-size: 35px;
  }
  .xxlarge-font40 {
    font-size: 40px;
  }
  .xxlarge-font45 {
    font-size: 45px;
  }
  .xxlarge-font50 {
    font-size: 50px;
  }
  .xxlarge-font55 {
    font-size: 55px;
  }
  .xxlarge-font60 {
    font-size: 60px;
  }
  .xxlarge-font65 {
    font-size: 65px;
  }
  .xxlarge-font70 {
    font-size: 70px;
  }
  .xxlarge-font75 {
    font-size: 75px;
  }
  .xxlarge-font80 {
    font-size: 80px;
  }
  .xxlarge-font85 {
    font-size: 85px;
  }
  .xxlarge-font90 {
    font-size: 90px;
  }
  .xxlarge-font95 {
    font-size: 95px;
  }
  .xxlarge-font100 {
    font-size: 100px;
  }
  .xxlarge-font105 {
    font-size: 105px;
  }
  .xxlarge-font110 {
    font-size: 110px;
  }
  .xxlarge-font115 {
    font-size: 115px;
  }
  .xxlarge-font120 {
    font-size: 120px;
  }
  .xxlarge-font125 {
    font-size: 125px;
  }
  .xxlarge-font130 {
    font-size: 130px;
  }
  .xxlarge-font135 {
    font-size: 135px;
  }
  .xxlarge-font140 {
    font-size: 140px;
  }
  .xxlarge-font145 {
    font-size: 145px;
  }
  .xxlarge-font150 {
    font-size: 150px;
  }
  .xxlarge-font155 {
    font-size: 155px;
  }
  .xxlarge-font160 {
    font-size: 160px;
  }
  .xxlarge-font165 {
    font-size: 165px;
  }
  .xxlarge-font170 {
    font-size: 170px;
  }
  .xxlarge-font175 {
    font-size: 175px;
  }
  .xxlarge-font180 {
    font-size: 180px;
  }
  .xxlarge-font185 {
    font-size: 185px;
  }
  .xxlarge-font190 {
    font-size: 190px;
  }
  .xxlarge-font195 {
    font-size: 195px;
  }
  .xxlarge-font200 {
    font-size: 200px;
  }
}
.font12 {
  font-size: 12px;
}

.font13 {
  font-size: 13px;
}

.font18 {
  font-size: 18px;
}

.font22 {
  font-size: 22px;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 600;
}

.extra {
  font-weight: 800;
}

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

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

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

@media screen and (min-width: 640px) {
  .medium-text-center {
    text-align: center;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-left {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .large-text-center {
    text-align: center;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-left {
    text-align: left;
  }
}
/*------------------------------------*\
    $DISPLAY'S
\*------------------------------------*/
.dblock {
  display: block !important;
}

.dnone {
  display: none !important;
}

.di-block {
  display: inline-block;
}

.vmiddle {
  vertical-align: middle;
}

.vbottom {
  vertical-align: bottom;
}

.vtexttop {
  vertical-align: text-top;
}

.hidden {
  overflow: hidden;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex--content-start {
  justify-content: flex-start;
}
@media screen and (max-width: 640px) {
  .flex {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.flex--between {
  justify-content: space-between;
}
.flex--start {
  justify-content: flex-start;
}
.flex--top {
  align-items: flex-start;
}

.flex-between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex-around {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 640px) {
  .flex-around--start {
    justify-content: flex-start;
  }
}

.flex-start {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-end {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 640px) {
  .wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 1024px) {
  .wrap-medium {
    flex-wrap: wrap;
  }
}

.both {
  clear: both;
}

.word-wrap {
  word-break: break-word;
}

/*------------------------------------*\
    $PADDINGS
\*------------------------------------*/
.padding0 {
  padding: 0;
}

.pbottom0 {
  padding-bottom: 0 !important;
}

/*
	PADDING
	* MOVIL
	* TABLET
	* DESKTOP
*/
.padding0 {
  padding: 0px;
}

.padding5 {
  padding: 5px;
}

.padding10 {
  padding: 10px;
}

.padding15 {
  padding: 15px;
}

.padding20 {
  padding: 20px;
}

.padding25 {
  padding: 25px;
}

.padding30 {
  padding: 30px;
}

.padding35 {
  padding: 35px;
}

.padding40 {
  padding: 40px;
}

.padding45 {
  padding: 45px;
}

.padding50 {
  padding: 50px;
}

.padding55 {
  padding: 55px;
}

.padding60 {
  padding: 60px;
}

.padding65 {
  padding: 65px;
}

.padding70 {
  padding: 70px;
}

.padding75 {
  padding: 75px;
}

.padding80 {
  padding: 80px;
}

.padding85 {
  padding: 85px;
}

.padding90 {
  padding: 90px;
}

.padding95 {
  padding: 95px;
}

.padding100 {
  padding: 100px;
}

.padding105 {
  padding: 105px;
}

.padding110 {
  padding: 110px;
}

.padding115 {
  padding: 115px;
}

.padding120 {
  padding: 120px;
}

.padding125 {
  padding: 125px;
}

.padding130 {
  padding: 130px;
}

.padding135 {
  padding: 135px;
}

.padding140 {
  padding: 140px;
}

.padding145 {
  padding: 145px;
}

.padding150 {
  padding: 150px;
}

.padding155 {
  padding: 155px;
}

.padding160 {
  padding: 160px;
}

.padding165 {
  padding: 165px;
}

.padding170 {
  padding: 170px;
}

.padding175 {
  padding: 175px;
}

.padding180 {
  padding: 180px;
}

.padding185 {
  padding: 185px;
}

.padding190 {
  padding: 190px;
}

.padding195 {
  padding: 195px;
}

.padding200 {
  padding: 200px;
}

@media screen and (max-width: 640px) {
  .small-padding0 {
    padding: 0px;
  }
  .small-padding5 {
    padding: 5px;
  }
  .small-padding10 {
    padding: 10px;
  }
  .small-padding15 {
    padding: 15px;
  }
  .small-padding20 {
    padding: 20px;
  }
  .small-padding25 {
    padding: 25px;
  }
  .small-padding30 {
    padding: 30px;
  }
  .small-padding35 {
    padding: 35px;
  }
  .small-padding40 {
    padding: 40px;
  }
  .small-padding45 {
    padding: 45px;
  }
  .small-padding50 {
    padding: 50px;
  }
  .small-padding55 {
    padding: 55px;
  }
  .small-padding60 {
    padding: 60px;
  }
  .small-padding65 {
    padding: 65px;
  }
  .small-padding70 {
    padding: 70px;
  }
  .small-padding75 {
    padding: 75px;
  }
  .small-padding80 {
    padding: 80px;
  }
  .small-padding85 {
    padding: 85px;
  }
  .small-padding90 {
    padding: 90px;
  }
  .small-padding95 {
    padding: 95px;
  }
  .small-padding100 {
    padding: 100px;
  }
  .small-padding105 {
    padding: 105px;
  }
  .small-padding110 {
    padding: 110px;
  }
  .small-padding115 {
    padding: 115px;
  }
  .small-padding120 {
    padding: 120px;
  }
  .small-padding125 {
    padding: 125px;
  }
  .small-padding130 {
    padding: 130px;
  }
  .small-padding135 {
    padding: 135px;
  }
  .small-padding140 {
    padding: 140px;
  }
  .small-padding145 {
    padding: 145px;
  }
  .small-padding150 {
    padding: 150px;
  }
  .small-padding155 {
    padding: 155px;
  }
  .small-padding160 {
    padding: 160px;
  }
  .small-padding165 {
    padding: 165px;
  }
  .small-padding170 {
    padding: 170px;
  }
  .small-padding175 {
    padding: 175px;
  }
  .small-padding180 {
    padding: 180px;
  }
  .small-padding185 {
    padding: 185px;
  }
  .small-padding190 {
    padding: 190px;
  }
  .small-padding195 {
    padding: 195px;
  }
  .small-padding200 {
    padding: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-padding0 {
    padding: 0px;
  }
  .small-tablet-padding5 {
    padding: 5px;
  }
  .small-tablet-padding10 {
    padding: 10px;
  }
  .small-tablet-padding15 {
    padding: 15px;
  }
  .small-tablet-padding20 {
    padding: 20px;
  }
  .small-tablet-padding25 {
    padding: 25px;
  }
  .small-tablet-padding30 {
    padding: 30px;
  }
  .small-tablet-padding35 {
    padding: 35px;
  }
  .small-tablet-padding40 {
    padding: 40px;
  }
  .small-tablet-padding45 {
    padding: 45px;
  }
  .small-tablet-padding50 {
    padding: 50px;
  }
  .small-tablet-padding55 {
    padding: 55px;
  }
  .small-tablet-padding60 {
    padding: 60px;
  }
  .small-tablet-padding65 {
    padding: 65px;
  }
  .small-tablet-padding70 {
    padding: 70px;
  }
  .small-tablet-padding75 {
    padding: 75px;
  }
  .small-tablet-padding80 {
    padding: 80px;
  }
  .small-tablet-padding85 {
    padding: 85px;
  }
  .small-tablet-padding90 {
    padding: 90px;
  }
  .small-tablet-padding95 {
    padding: 95px;
  }
  .small-tablet-padding100 {
    padding: 100px;
  }
  .small-tablet-padding105 {
    padding: 105px;
  }
  .small-tablet-padding110 {
    padding: 110px;
  }
  .small-tablet-padding115 {
    padding: 115px;
  }
  .small-tablet-padding120 {
    padding: 120px;
  }
  .small-tablet-padding125 {
    padding: 125px;
  }
  .small-tablet-padding130 {
    padding: 130px;
  }
  .small-tablet-padding135 {
    padding: 135px;
  }
  .small-tablet-padding140 {
    padding: 140px;
  }
  .small-tablet-padding145 {
    padding: 145px;
  }
  .small-tablet-padding150 {
    padding: 150px;
  }
  .small-tablet-padding155 {
    padding: 155px;
  }
  .small-tablet-padding160 {
    padding: 160px;
  }
  .small-tablet-padding165 {
    padding: 165px;
  }
  .small-tablet-padding170 {
    padding: 170px;
  }
  .small-tablet-padding175 {
    padding: 175px;
  }
  .small-tablet-padding180 {
    padding: 180px;
  }
  .small-tablet-padding185 {
    padding: 185px;
  }
  .small-tablet-padding190 {
    padding: 190px;
  }
  .small-tablet-padding195 {
    padding: 195px;
  }
  .small-tablet-padding200 {
    padding: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-padding0 {
    padding: 0px;
  }
  .medium-padding5 {
    padding: 5px;
  }
  .medium-padding10 {
    padding: 10px;
  }
  .medium-padding15 {
    padding: 15px;
  }
  .medium-padding20 {
    padding: 20px;
  }
  .medium-padding25 {
    padding: 25px;
  }
  .medium-padding30 {
    padding: 30px;
  }
  .medium-padding35 {
    padding: 35px;
  }
  .medium-padding40 {
    padding: 40px;
  }
  .medium-padding45 {
    padding: 45px;
  }
  .medium-padding50 {
    padding: 50px;
  }
  .medium-padding55 {
    padding: 55px;
  }
  .medium-padding60 {
    padding: 60px;
  }
  .medium-padding65 {
    padding: 65px;
  }
  .medium-padding70 {
    padding: 70px;
  }
  .medium-padding75 {
    padding: 75px;
  }
  .medium-padding80 {
    padding: 80px;
  }
  .medium-padding85 {
    padding: 85px;
  }
  .medium-padding90 {
    padding: 90px;
  }
  .medium-padding95 {
    padding: 95px;
  }
  .medium-padding100 {
    padding: 100px;
  }
  .medium-padding105 {
    padding: 105px;
  }
  .medium-padding110 {
    padding: 110px;
  }
  .medium-padding115 {
    padding: 115px;
  }
  .medium-padding120 {
    padding: 120px;
  }
  .medium-padding125 {
    padding: 125px;
  }
  .medium-padding130 {
    padding: 130px;
  }
  .medium-padding135 {
    padding: 135px;
  }
  .medium-padding140 {
    padding: 140px;
  }
  .medium-padding145 {
    padding: 145px;
  }
  .medium-padding150 {
    padding: 150px;
  }
  .medium-padding155 {
    padding: 155px;
  }
  .medium-padding160 {
    padding: 160px;
  }
  .medium-padding165 {
    padding: 165px;
  }
  .medium-padding170 {
    padding: 170px;
  }
  .medium-padding175 {
    padding: 175px;
  }
  .medium-padding180 {
    padding: 180px;
  }
  .medium-padding185 {
    padding: 185px;
  }
  .medium-padding190 {
    padding: 190px;
  }
  .medium-padding195 {
    padding: 195px;
  }
  .medium-padding200 {
    padding: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-padding0 {
    padding: 0px;
  }
  .large-padding5 {
    padding: 5px;
  }
  .large-padding10 {
    padding: 10px;
  }
  .large-padding15 {
    padding: 15px;
  }
  .large-padding20 {
    padding: 20px;
  }
  .large-padding25 {
    padding: 25px;
  }
  .large-padding30 {
    padding: 30px;
  }
  .large-padding35 {
    padding: 35px;
  }
  .large-padding40 {
    padding: 40px;
  }
  .large-padding45 {
    padding: 45px;
  }
  .large-padding50 {
    padding: 50px;
  }
  .large-padding55 {
    padding: 55px;
  }
  .large-padding60 {
    padding: 60px;
  }
  .large-padding65 {
    padding: 65px;
  }
  .large-padding70 {
    padding: 70px;
  }
  .large-padding75 {
    padding: 75px;
  }
  .large-padding80 {
    padding: 80px;
  }
  .large-padding85 {
    padding: 85px;
  }
  .large-padding90 {
    padding: 90px;
  }
  .large-padding95 {
    padding: 95px;
  }
  .large-padding100 {
    padding: 100px;
  }
  .large-padding105 {
    padding: 105px;
  }
  .large-padding110 {
    padding: 110px;
  }
  .large-padding115 {
    padding: 115px;
  }
  .large-padding120 {
    padding: 120px;
  }
  .large-padding125 {
    padding: 125px;
  }
  .large-padding130 {
    padding: 130px;
  }
  .large-padding135 {
    padding: 135px;
  }
  .large-padding140 {
    padding: 140px;
  }
  .large-padding145 {
    padding: 145px;
  }
  .large-padding150 {
    padding: 150px;
  }
  .large-padding155 {
    padding: 155px;
  }
  .large-padding160 {
    padding: 160px;
  }
  .large-padding165 {
    padding: 165px;
  }
  .large-padding170 {
    padding: 170px;
  }
  .large-padding175 {
    padding: 175px;
  }
  .large-padding180 {
    padding: 180px;
  }
  .large-padding185 {
    padding: 185px;
  }
  .large-padding190 {
    padding: 190px;
  }
  .large-padding195 {
    padding: 195px;
  }
  .large-padding200 {
    padding: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-padding0 {
    padding: 0px;
  }
  .xxlarge-padding5 {
    padding: 5px;
  }
  .xxlarge-padding10 {
    padding: 10px;
  }
  .xxlarge-padding15 {
    padding: 15px;
  }
  .xxlarge-padding20 {
    padding: 20px;
  }
  .xxlarge-padding25 {
    padding: 25px;
  }
  .xxlarge-padding30 {
    padding: 30px;
  }
  .xxlarge-padding35 {
    padding: 35px;
  }
  .xxlarge-padding40 {
    padding: 40px;
  }
  .xxlarge-padding45 {
    padding: 45px;
  }
  .xxlarge-padding50 {
    padding: 50px;
  }
  .xxlarge-padding55 {
    padding: 55px;
  }
  .xxlarge-padding60 {
    padding: 60px;
  }
  .xxlarge-padding65 {
    padding: 65px;
  }
  .xxlarge-padding70 {
    padding: 70px;
  }
  .xxlarge-padding75 {
    padding: 75px;
  }
  .xxlarge-padding80 {
    padding: 80px;
  }
  .xxlarge-padding85 {
    padding: 85px;
  }
  .xxlarge-padding90 {
    padding: 90px;
  }
  .xxlarge-padding95 {
    padding: 95px;
  }
  .xxlarge-padding100 {
    padding: 100px;
  }
  .xxlarge-padding105 {
    padding: 105px;
  }
  .xxlarge-padding110 {
    padding: 110px;
  }
  .xxlarge-padding115 {
    padding: 115px;
  }
  .xxlarge-padding120 {
    padding: 120px;
  }
  .xxlarge-padding125 {
    padding: 125px;
  }
  .xxlarge-padding130 {
    padding: 130px;
  }
  .xxlarge-padding135 {
    padding: 135px;
  }
  .xxlarge-padding140 {
    padding: 140px;
  }
  .xxlarge-padding145 {
    padding: 145px;
  }
  .xxlarge-padding150 {
    padding: 150px;
  }
  .xxlarge-padding155 {
    padding: 155px;
  }
  .xxlarge-padding160 {
    padding: 160px;
  }
  .xxlarge-padding165 {
    padding: 165px;
  }
  .xxlarge-padding170 {
    padding: 170px;
  }
  .xxlarge-padding175 {
    padding: 175px;
  }
  .xxlarge-padding180 {
    padding: 180px;
  }
  .xxlarge-padding185 {
    padding: 185px;
  }
  .xxlarge-padding190 {
    padding: 190px;
  }
  .xxlarge-padding195 {
    padding: 195px;
  }
  .xxlarge-padding200 {
    padding: 200px;
  }
}
/*
	PADDING TOP
	* MOVIL
	* TABLET
	* DESKTOP
*/
.ptop0 {
  padding-top: 0px;
}

.ptop5 {
  padding-top: 5px;
}

.ptop10 {
  padding-top: 10px;
}

.ptop15 {
  padding-top: 15px;
}

.ptop20 {
  padding-top: 20px;
}

.ptop25 {
  padding-top: 25px;
}

.ptop30 {
  padding-top: 30px;
}

.ptop35 {
  padding-top: 35px;
}

.ptop40 {
  padding-top: 40px;
}

.ptop45 {
  padding-top: 45px;
}

.ptop50 {
  padding-top: 50px;
}

.ptop55 {
  padding-top: 55px;
}

.ptop60 {
  padding-top: 60px;
}

.ptop65 {
  padding-top: 65px;
}

.ptop70 {
  padding-top: 70px;
}

.ptop75 {
  padding-top: 75px;
}

.ptop80 {
  padding-top: 80px;
}

.ptop85 {
  padding-top: 85px;
}

.ptop90 {
  padding-top: 90px;
}

.ptop95 {
  padding-top: 95px;
}

.ptop100 {
  padding-top: 100px;
}

.ptop105 {
  padding-top: 105px;
}

.ptop110 {
  padding-top: 110px;
}

.ptop115 {
  padding-top: 115px;
}

.ptop120 {
  padding-top: 120px;
}

.ptop125 {
  padding-top: 125px;
}

.ptop130 {
  padding-top: 130px;
}

.ptop135 {
  padding-top: 135px;
}

.ptop140 {
  padding-top: 140px;
}

.ptop145 {
  padding-top: 145px;
}

.ptop150 {
  padding-top: 150px;
}

.ptop155 {
  padding-top: 155px;
}

.ptop160 {
  padding-top: 160px;
}

.ptop165 {
  padding-top: 165px;
}

.ptop170 {
  padding-top: 170px;
}

.ptop175 {
  padding-top: 175px;
}

.ptop180 {
  padding-top: 180px;
}

.ptop185 {
  padding-top: 185px;
}

.ptop190 {
  padding-top: 190px;
}

.ptop195 {
  padding-top: 195px;
}

.ptop200 {
  padding-top: 200px;
}

@media screen and (max-width: 640px) {
  .small-ptop0 {
    padding-top: 0px;
  }
  .small-ptop5 {
    padding-top: 5px;
  }
  .small-ptop10 {
    padding-top: 10px;
  }
  .small-ptop15 {
    padding-top: 15px;
  }
  .small-ptop20 {
    padding-top: 20px;
  }
  .small-ptop25 {
    padding-top: 25px;
  }
  .small-ptop30 {
    padding-top: 30px;
  }
  .small-ptop35 {
    padding-top: 35px;
  }
  .small-ptop40 {
    padding-top: 40px;
  }
  .small-ptop45 {
    padding-top: 45px;
  }
  .small-ptop50 {
    padding-top: 50px;
  }
  .small-ptop55 {
    padding-top: 55px;
  }
  .small-ptop60 {
    padding-top: 60px;
  }
  .small-ptop65 {
    padding-top: 65px;
  }
  .small-ptop70 {
    padding-top: 70px;
  }
  .small-ptop75 {
    padding-top: 75px;
  }
  .small-ptop80 {
    padding-top: 80px;
  }
  .small-ptop85 {
    padding-top: 85px;
  }
  .small-ptop90 {
    padding-top: 90px;
  }
  .small-ptop95 {
    padding-top: 95px;
  }
  .small-ptop100 {
    padding-top: 100px;
  }
  .small-ptop105 {
    padding-top: 105px;
  }
  .small-ptop110 {
    padding-top: 110px;
  }
  .small-ptop115 {
    padding-top: 115px;
  }
  .small-ptop120 {
    padding-top: 120px;
  }
  .small-ptop125 {
    padding-top: 125px;
  }
  .small-ptop130 {
    padding-top: 130px;
  }
  .small-ptop135 {
    padding-top: 135px;
  }
  .small-ptop140 {
    padding-top: 140px;
  }
  .small-ptop145 {
    padding-top: 145px;
  }
  .small-ptop150 {
    padding-top: 150px;
  }
  .small-ptop155 {
    padding-top: 155px;
  }
  .small-ptop160 {
    padding-top: 160px;
  }
  .small-ptop165 {
    padding-top: 165px;
  }
  .small-ptop170 {
    padding-top: 170px;
  }
  .small-ptop175 {
    padding-top: 175px;
  }
  .small-ptop180 {
    padding-top: 180px;
  }
  .small-ptop185 {
    padding-top: 185px;
  }
  .small-ptop190 {
    padding-top: 190px;
  }
  .small-ptop195 {
    padding-top: 195px;
  }
  .small-ptop200 {
    padding-top: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-ptop0 {
    padding-top: 0px;
  }
  .small-tablet-ptop5 {
    padding-top: 5px;
  }
  .small-tablet-ptop10 {
    padding-top: 10px;
  }
  .small-tablet-ptop15 {
    padding-top: 15px;
  }
  .small-tablet-ptop20 {
    padding-top: 20px;
  }
  .small-tablet-ptop25 {
    padding-top: 25px;
  }
  .small-tablet-ptop30 {
    padding-top: 30px;
  }
  .small-tablet-ptop35 {
    padding-top: 35px;
  }
  .small-tablet-ptop40 {
    padding-top: 40px;
  }
  .small-tablet-ptop45 {
    padding-top: 45px;
  }
  .small-tablet-ptop50 {
    padding-top: 50px;
  }
  .small-tablet-ptop55 {
    padding-top: 55px;
  }
  .small-tablet-ptop60 {
    padding-top: 60px;
  }
  .small-tablet-ptop65 {
    padding-top: 65px;
  }
  .small-tablet-ptop70 {
    padding-top: 70px;
  }
  .small-tablet-ptop75 {
    padding-top: 75px;
  }
  .small-tablet-ptop80 {
    padding-top: 80px;
  }
  .small-tablet-ptop85 {
    padding-top: 85px;
  }
  .small-tablet-ptop90 {
    padding-top: 90px;
  }
  .small-tablet-ptop95 {
    padding-top: 95px;
  }
  .small-tablet-ptop100 {
    padding-top: 100px;
  }
  .small-tablet-ptop105 {
    padding-top: 105px;
  }
  .small-tablet-ptop110 {
    padding-top: 110px;
  }
  .small-tablet-ptop115 {
    padding-top: 115px;
  }
  .small-tablet-ptop120 {
    padding-top: 120px;
  }
  .small-tablet-ptop125 {
    padding-top: 125px;
  }
  .small-tablet-ptop130 {
    padding-top: 130px;
  }
  .small-tablet-ptop135 {
    padding-top: 135px;
  }
  .small-tablet-ptop140 {
    padding-top: 140px;
  }
  .small-tablet-ptop145 {
    padding-top: 145px;
  }
  .small-tablet-ptop150 {
    padding-top: 150px;
  }
  .small-tablet-ptop155 {
    padding-top: 155px;
  }
  .small-tablet-ptop160 {
    padding-top: 160px;
  }
  .small-tablet-ptop165 {
    padding-top: 165px;
  }
  .small-tablet-ptop170 {
    padding-top: 170px;
  }
  .small-tablet-ptop175 {
    padding-top: 175px;
  }
  .small-tablet-ptop180 {
    padding-top: 180px;
  }
  .small-tablet-ptop185 {
    padding-top: 185px;
  }
  .small-tablet-ptop190 {
    padding-top: 190px;
  }
  .small-tablet-ptop195 {
    padding-top: 195px;
  }
  .small-tablet-ptop200 {
    padding-top: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-ptop0 {
    padding-top: 0px;
  }
  .medium-ptop5 {
    padding-top: 5px;
  }
  .medium-ptop10 {
    padding-top: 10px;
  }
  .medium-ptop15 {
    padding-top: 15px;
  }
  .medium-ptop20 {
    padding-top: 20px;
  }
  .medium-ptop25 {
    padding-top: 25px;
  }
  .medium-ptop30 {
    padding-top: 30px;
  }
  .medium-ptop35 {
    padding-top: 35px;
  }
  .medium-ptop40 {
    padding-top: 40px;
  }
  .medium-ptop45 {
    padding-top: 45px;
  }
  .medium-ptop50 {
    padding-top: 50px;
  }
  .medium-ptop55 {
    padding-top: 55px;
  }
  .medium-ptop60 {
    padding-top: 60px;
  }
  .medium-ptop65 {
    padding-top: 65px;
  }
  .medium-ptop70 {
    padding-top: 70px;
  }
  .medium-ptop75 {
    padding-top: 75px;
  }
  .medium-ptop80 {
    padding-top: 80px;
  }
  .medium-ptop85 {
    padding-top: 85px;
  }
  .medium-ptop90 {
    padding-top: 90px;
  }
  .medium-ptop95 {
    padding-top: 95px;
  }
  .medium-ptop100 {
    padding-top: 100px;
  }
  .medium-ptop105 {
    padding-top: 105px;
  }
  .medium-ptop110 {
    padding-top: 110px;
  }
  .medium-ptop115 {
    padding-top: 115px;
  }
  .medium-ptop120 {
    padding-top: 120px;
  }
  .medium-ptop125 {
    padding-top: 125px;
  }
  .medium-ptop130 {
    padding-top: 130px;
  }
  .medium-ptop135 {
    padding-top: 135px;
  }
  .medium-ptop140 {
    padding-top: 140px;
  }
  .medium-ptop145 {
    padding-top: 145px;
  }
  .medium-ptop150 {
    padding-top: 150px;
  }
  .medium-ptop155 {
    padding-top: 155px;
  }
  .medium-ptop160 {
    padding-top: 160px;
  }
  .medium-ptop165 {
    padding-top: 165px;
  }
  .medium-ptop170 {
    padding-top: 170px;
  }
  .medium-ptop175 {
    padding-top: 175px;
  }
  .medium-ptop180 {
    padding-top: 180px;
  }
  .medium-ptop185 {
    padding-top: 185px;
  }
  .medium-ptop190 {
    padding-top: 190px;
  }
  .medium-ptop195 {
    padding-top: 195px;
  }
  .medium-ptop200 {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-ptop0 {
    padding-top: 0px;
  }
  .large-ptop5 {
    padding-top: 5px;
  }
  .large-ptop10 {
    padding-top: 10px;
  }
  .large-ptop15 {
    padding-top: 15px;
  }
  .large-ptop20 {
    padding-top: 20px;
  }
  .large-ptop25 {
    padding-top: 25px;
  }
  .large-ptop30 {
    padding-top: 30px;
  }
  .large-ptop35 {
    padding-top: 35px;
  }
  .large-ptop40 {
    padding-top: 40px;
  }
  .large-ptop45 {
    padding-top: 45px;
  }
  .large-ptop50 {
    padding-top: 50px;
  }
  .large-ptop55 {
    padding-top: 55px;
  }
  .large-ptop60 {
    padding-top: 60px;
  }
  .large-ptop65 {
    padding-top: 65px;
  }
  .large-ptop70 {
    padding-top: 70px;
  }
  .large-ptop75 {
    padding-top: 75px;
  }
  .large-ptop80 {
    padding-top: 80px;
  }
  .large-ptop85 {
    padding-top: 85px;
  }
  .large-ptop90 {
    padding-top: 90px;
  }
  .large-ptop95 {
    padding-top: 95px;
  }
  .large-ptop100 {
    padding-top: 100px;
  }
  .large-ptop105 {
    padding-top: 105px;
  }
  .large-ptop110 {
    padding-top: 110px;
  }
  .large-ptop115 {
    padding-top: 115px;
  }
  .large-ptop120 {
    padding-top: 120px;
  }
  .large-ptop125 {
    padding-top: 125px;
  }
  .large-ptop130 {
    padding-top: 130px;
  }
  .large-ptop135 {
    padding-top: 135px;
  }
  .large-ptop140 {
    padding-top: 140px;
  }
  .large-ptop145 {
    padding-top: 145px;
  }
  .large-ptop150 {
    padding-top: 150px;
  }
  .large-ptop155 {
    padding-top: 155px;
  }
  .large-ptop160 {
    padding-top: 160px;
  }
  .large-ptop165 {
    padding-top: 165px;
  }
  .large-ptop170 {
    padding-top: 170px;
  }
  .large-ptop175 {
    padding-top: 175px;
  }
  .large-ptop180 {
    padding-top: 180px;
  }
  .large-ptop185 {
    padding-top: 185px;
  }
  .large-ptop190 {
    padding-top: 190px;
  }
  .large-ptop195 {
    padding-top: 195px;
  }
  .large-ptop200 {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-ptop0 {
    padding-top: 0px;
  }
  .xxlarge-ptop5 {
    padding-top: 5px;
  }
  .xxlarge-ptop10 {
    padding-top: 10px;
  }
  .xxlarge-ptop15 {
    padding-top: 15px;
  }
  .xxlarge-ptop20 {
    padding-top: 20px;
  }
  .xxlarge-ptop25 {
    padding-top: 25px;
  }
  .xxlarge-ptop30 {
    padding-top: 30px;
  }
  .xxlarge-ptop35 {
    padding-top: 35px;
  }
  .xxlarge-ptop40 {
    padding-top: 40px;
  }
  .xxlarge-ptop45 {
    padding-top: 45px;
  }
  .xxlarge-ptop50 {
    padding-top: 50px;
  }
  .xxlarge-ptop55 {
    padding-top: 55px;
  }
  .xxlarge-ptop60 {
    padding-top: 60px;
  }
  .xxlarge-ptop65 {
    padding-top: 65px;
  }
  .xxlarge-ptop70 {
    padding-top: 70px;
  }
  .xxlarge-ptop75 {
    padding-top: 75px;
  }
  .xxlarge-ptop80 {
    padding-top: 80px;
  }
  .xxlarge-ptop85 {
    padding-top: 85px;
  }
  .xxlarge-ptop90 {
    padding-top: 90px;
  }
  .xxlarge-ptop95 {
    padding-top: 95px;
  }
  .xxlarge-ptop100 {
    padding-top: 100px;
  }
  .xxlarge-ptop105 {
    padding-top: 105px;
  }
  .xxlarge-ptop110 {
    padding-top: 110px;
  }
  .xxlarge-ptop115 {
    padding-top: 115px;
  }
  .xxlarge-ptop120 {
    padding-top: 120px;
  }
  .xxlarge-ptop125 {
    padding-top: 125px;
  }
  .xxlarge-ptop130 {
    padding-top: 130px;
  }
  .xxlarge-ptop135 {
    padding-top: 135px;
  }
  .xxlarge-ptop140 {
    padding-top: 140px;
  }
  .xxlarge-ptop145 {
    padding-top: 145px;
  }
  .xxlarge-ptop150 {
    padding-top: 150px;
  }
  .xxlarge-ptop155 {
    padding-top: 155px;
  }
  .xxlarge-ptop160 {
    padding-top: 160px;
  }
  .xxlarge-ptop165 {
    padding-top: 165px;
  }
  .xxlarge-ptop170 {
    padding-top: 170px;
  }
  .xxlarge-ptop175 {
    padding-top: 175px;
  }
  .xxlarge-ptop180 {
    padding-top: 180px;
  }
  .xxlarge-ptop185 {
    padding-top: 185px;
  }
  .xxlarge-ptop190 {
    padding-top: 190px;
  }
  .xxlarge-ptop195 {
    padding-top: 195px;
  }
  .xxlarge-ptop200 {
    padding-top: 200px;
  }
}
/*
	PADDING BOTTOM
	* MOVIL
	* TABLET
	* DESKTOP
*/
.pbottom0 {
  padding-bottom: 0px;
}

.pbottom5 {
  padding-bottom: 5px;
}

.pbottom10 {
  padding-bottom: 10px;
}

.pbottom15 {
  padding-bottom: 15px;
}

.pbottom20 {
  padding-bottom: 20px;
}

.pbottom25 {
  padding-bottom: 25px;
}

.pbottom30 {
  padding-bottom: 30px;
}

.pbottom35 {
  padding-bottom: 35px;
}

.pbottom40 {
  padding-bottom: 40px;
}

.pbottom45 {
  padding-bottom: 45px;
}

.pbottom50 {
  padding-bottom: 50px;
}

.pbottom55 {
  padding-bottom: 55px;
}

.pbottom60 {
  padding-bottom: 60px;
}

.pbottom65 {
  padding-bottom: 65px;
}

.pbottom70 {
  padding-bottom: 70px;
}

.pbottom75 {
  padding-bottom: 75px;
}

.pbottom80 {
  padding-bottom: 80px;
}

.pbottom85 {
  padding-bottom: 85px;
}

.pbottom90 {
  padding-bottom: 90px;
}

.pbottom95 {
  padding-bottom: 95px;
}

.pbottom100 {
  padding-bottom: 100px;
}

.pbottom105 {
  padding-bottom: 105px;
}

.pbottom110 {
  padding-bottom: 110px;
}

.pbottom115 {
  padding-bottom: 115px;
}

.pbottom120 {
  padding-bottom: 120px;
}

.pbottom125 {
  padding-bottom: 125px;
}

.pbottom130 {
  padding-bottom: 130px;
}

.pbottom135 {
  padding-bottom: 135px;
}

.pbottom140 {
  padding-bottom: 140px;
}

.pbottom145 {
  padding-bottom: 145px;
}

.pbottom150 {
  padding-bottom: 150px;
}

.pbottom155 {
  padding-bottom: 155px;
}

.pbottom160 {
  padding-bottom: 160px;
}

.pbottom165 {
  padding-bottom: 165px;
}

.pbottom170 {
  padding-bottom: 170px;
}

.pbottom175 {
  padding-bottom: 175px;
}

.pbottom180 {
  padding-bottom: 180px;
}

.pbottom185 {
  padding-bottom: 185px;
}

.pbottom190 {
  padding-bottom: 190px;
}

.pbottom195 {
  padding-bottom: 195px;
}

.pbottom200 {
  padding-bottom: 200px;
}

@media screen and (max-width: 640px) {
  .small-pbottom0 {
    padding-bottom: 0px;
  }
  .small-pbottom5 {
    padding-bottom: 5px;
  }
  .small-pbottom10 {
    padding-bottom: 10px;
  }
  .small-pbottom15 {
    padding-bottom: 15px;
  }
  .small-pbottom20 {
    padding-bottom: 20px;
  }
  .small-pbottom25 {
    padding-bottom: 25px;
  }
  .small-pbottom30 {
    padding-bottom: 30px;
  }
  .small-pbottom35 {
    padding-bottom: 35px;
  }
  .small-pbottom40 {
    padding-bottom: 40px;
  }
  .small-pbottom45 {
    padding-bottom: 45px;
  }
  .small-pbottom50 {
    padding-bottom: 50px;
  }
  .small-pbottom55 {
    padding-bottom: 55px;
  }
  .small-pbottom60 {
    padding-bottom: 60px;
  }
  .small-pbottom65 {
    padding-bottom: 65px;
  }
  .small-pbottom70 {
    padding-bottom: 70px;
  }
  .small-pbottom75 {
    padding-bottom: 75px;
  }
  .small-pbottom80 {
    padding-bottom: 80px;
  }
  .small-pbottom85 {
    padding-bottom: 85px;
  }
  .small-pbottom90 {
    padding-bottom: 90px;
  }
  .small-pbottom95 {
    padding-bottom: 95px;
  }
  .small-pbottom100 {
    padding-bottom: 100px;
  }
  .small-pbottom105 {
    padding-bottom: 105px;
  }
  .small-pbottom110 {
    padding-bottom: 110px;
  }
  .small-pbottom115 {
    padding-bottom: 115px;
  }
  .small-pbottom120 {
    padding-bottom: 120px;
  }
  .small-pbottom125 {
    padding-bottom: 125px;
  }
  .small-pbottom130 {
    padding-bottom: 130px;
  }
  .small-pbottom135 {
    padding-bottom: 135px;
  }
  .small-pbottom140 {
    padding-bottom: 140px;
  }
  .small-pbottom145 {
    padding-bottom: 145px;
  }
  .small-pbottom150 {
    padding-bottom: 150px;
  }
  .small-pbottom155 {
    padding-bottom: 155px;
  }
  .small-pbottom160 {
    padding-bottom: 160px;
  }
  .small-pbottom165 {
    padding-bottom: 165px;
  }
  .small-pbottom170 {
    padding-bottom: 170px;
  }
  .small-pbottom175 {
    padding-bottom: 175px;
  }
  .small-pbottom180 {
    padding-bottom: 180px;
  }
  .small-pbottom185 {
    padding-bottom: 185px;
  }
  .small-pbottom190 {
    padding-bottom: 190px;
  }
  .small-pbottom195 {
    padding-bottom: 195px;
  }
  .small-pbottom200 {
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-pbottom0 {
    padding-bottom: 0px;
  }
  .small-tablet-pbottom5 {
    padding-bottom: 5px;
  }
  .small-tablet-pbottom10 {
    padding-bottom: 10px;
  }
  .small-tablet-pbottom15 {
    padding-bottom: 15px;
  }
  .small-tablet-pbottom20 {
    padding-bottom: 20px;
  }
  .small-tablet-pbottom25 {
    padding-bottom: 25px;
  }
  .small-tablet-pbottom30 {
    padding-bottom: 30px;
  }
  .small-tablet-pbottom35 {
    padding-bottom: 35px;
  }
  .small-tablet-pbottom40 {
    padding-bottom: 40px;
  }
  .small-tablet-pbottom45 {
    padding-bottom: 45px;
  }
  .small-tablet-pbottom50 {
    padding-bottom: 50px;
  }
  .small-tablet-pbottom55 {
    padding-bottom: 55px;
  }
  .small-tablet-pbottom60 {
    padding-bottom: 60px;
  }
  .small-tablet-pbottom65 {
    padding-bottom: 65px;
  }
  .small-tablet-pbottom70 {
    padding-bottom: 70px;
  }
  .small-tablet-pbottom75 {
    padding-bottom: 75px;
  }
  .small-tablet-pbottom80 {
    padding-bottom: 80px;
  }
  .small-tablet-pbottom85 {
    padding-bottom: 85px;
  }
  .small-tablet-pbottom90 {
    padding-bottom: 90px;
  }
  .small-tablet-pbottom95 {
    padding-bottom: 95px;
  }
  .small-tablet-pbottom100 {
    padding-bottom: 100px;
  }
  .small-tablet-pbottom105 {
    padding-bottom: 105px;
  }
  .small-tablet-pbottom110 {
    padding-bottom: 110px;
  }
  .small-tablet-pbottom115 {
    padding-bottom: 115px;
  }
  .small-tablet-pbottom120 {
    padding-bottom: 120px;
  }
  .small-tablet-pbottom125 {
    padding-bottom: 125px;
  }
  .small-tablet-pbottom130 {
    padding-bottom: 130px;
  }
  .small-tablet-pbottom135 {
    padding-bottom: 135px;
  }
  .small-tablet-pbottom140 {
    padding-bottom: 140px;
  }
  .small-tablet-pbottom145 {
    padding-bottom: 145px;
  }
  .small-tablet-pbottom150 {
    padding-bottom: 150px;
  }
  .small-tablet-pbottom155 {
    padding-bottom: 155px;
  }
  .small-tablet-pbottom160 {
    padding-bottom: 160px;
  }
  .small-tablet-pbottom165 {
    padding-bottom: 165px;
  }
  .small-tablet-pbottom170 {
    padding-bottom: 170px;
  }
  .small-tablet-pbottom175 {
    padding-bottom: 175px;
  }
  .small-tablet-pbottom180 {
    padding-bottom: 180px;
  }
  .small-tablet-pbottom185 {
    padding-bottom: 185px;
  }
  .small-tablet-pbottom190 {
    padding-bottom: 190px;
  }
  .small-tablet-pbottom195 {
    padding-bottom: 195px;
  }
  .small-tablet-pbottom200 {
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-pbottom0 {
    padding-bottom: 0px;
  }
  .medium-pbottom5 {
    padding-bottom: 5px;
  }
  .medium-pbottom10 {
    padding-bottom: 10px;
  }
  .medium-pbottom15 {
    padding-bottom: 15px;
  }
  .medium-pbottom20 {
    padding-bottom: 20px;
  }
  .medium-pbottom25 {
    padding-bottom: 25px;
  }
  .medium-pbottom30 {
    padding-bottom: 30px;
  }
  .medium-pbottom35 {
    padding-bottom: 35px;
  }
  .medium-pbottom40 {
    padding-bottom: 40px;
  }
  .medium-pbottom45 {
    padding-bottom: 45px;
  }
  .medium-pbottom50 {
    padding-bottom: 50px;
  }
  .medium-pbottom55 {
    padding-bottom: 55px;
  }
  .medium-pbottom60 {
    padding-bottom: 60px;
  }
  .medium-pbottom65 {
    padding-bottom: 65px;
  }
  .medium-pbottom70 {
    padding-bottom: 70px;
  }
  .medium-pbottom75 {
    padding-bottom: 75px;
  }
  .medium-pbottom80 {
    padding-bottom: 80px;
  }
  .medium-pbottom85 {
    padding-bottom: 85px;
  }
  .medium-pbottom90 {
    padding-bottom: 90px;
  }
  .medium-pbottom95 {
    padding-bottom: 95px;
  }
  .medium-pbottom100 {
    padding-bottom: 100px;
  }
  .medium-pbottom105 {
    padding-bottom: 105px;
  }
  .medium-pbottom110 {
    padding-bottom: 110px;
  }
  .medium-pbottom115 {
    padding-bottom: 115px;
  }
  .medium-pbottom120 {
    padding-bottom: 120px;
  }
  .medium-pbottom125 {
    padding-bottom: 125px;
  }
  .medium-pbottom130 {
    padding-bottom: 130px;
  }
  .medium-pbottom135 {
    padding-bottom: 135px;
  }
  .medium-pbottom140 {
    padding-bottom: 140px;
  }
  .medium-pbottom145 {
    padding-bottom: 145px;
  }
  .medium-pbottom150 {
    padding-bottom: 150px;
  }
  .medium-pbottom155 {
    padding-bottom: 155px;
  }
  .medium-pbottom160 {
    padding-bottom: 160px;
  }
  .medium-pbottom165 {
    padding-bottom: 165px;
  }
  .medium-pbottom170 {
    padding-bottom: 170px;
  }
  .medium-pbottom175 {
    padding-bottom: 175px;
  }
  .medium-pbottom180 {
    padding-bottom: 180px;
  }
  .medium-pbottom185 {
    padding-bottom: 185px;
  }
  .medium-pbottom190 {
    padding-bottom: 190px;
  }
  .medium-pbottom195 {
    padding-bottom: 195px;
  }
  .medium-pbottom200 {
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-pbottom0 {
    padding-bottom: 0px;
  }
  .large-pbottom5 {
    padding-bottom: 5px;
  }
  .large-pbottom10 {
    padding-bottom: 10px;
  }
  .large-pbottom15 {
    padding-bottom: 15px;
  }
  .large-pbottom20 {
    padding-bottom: 20px;
  }
  .large-pbottom25 {
    padding-bottom: 25px;
  }
  .large-pbottom30 {
    padding-bottom: 30px;
  }
  .large-pbottom35 {
    padding-bottom: 35px;
  }
  .large-pbottom40 {
    padding-bottom: 40px;
  }
  .large-pbottom45 {
    padding-bottom: 45px;
  }
  .large-pbottom50 {
    padding-bottom: 50px;
  }
  .large-pbottom55 {
    padding-bottom: 55px;
  }
  .large-pbottom60 {
    padding-bottom: 60px;
  }
  .large-pbottom65 {
    padding-bottom: 65px;
  }
  .large-pbottom70 {
    padding-bottom: 70px;
  }
  .large-pbottom75 {
    padding-bottom: 75px;
  }
  .large-pbottom80 {
    padding-bottom: 80px;
  }
  .large-pbottom85 {
    padding-bottom: 85px;
  }
  .large-pbottom90 {
    padding-bottom: 90px;
  }
  .large-pbottom95 {
    padding-bottom: 95px;
  }
  .large-pbottom100 {
    padding-bottom: 100px;
  }
  .large-pbottom105 {
    padding-bottom: 105px;
  }
  .large-pbottom110 {
    padding-bottom: 110px;
  }
  .large-pbottom115 {
    padding-bottom: 115px;
  }
  .large-pbottom120 {
    padding-bottom: 120px;
  }
  .large-pbottom125 {
    padding-bottom: 125px;
  }
  .large-pbottom130 {
    padding-bottom: 130px;
  }
  .large-pbottom135 {
    padding-bottom: 135px;
  }
  .large-pbottom140 {
    padding-bottom: 140px;
  }
  .large-pbottom145 {
    padding-bottom: 145px;
  }
  .large-pbottom150 {
    padding-bottom: 150px;
  }
  .large-pbottom155 {
    padding-bottom: 155px;
  }
  .large-pbottom160 {
    padding-bottom: 160px;
  }
  .large-pbottom165 {
    padding-bottom: 165px;
  }
  .large-pbottom170 {
    padding-bottom: 170px;
  }
  .large-pbottom175 {
    padding-bottom: 175px;
  }
  .large-pbottom180 {
    padding-bottom: 180px;
  }
  .large-pbottom185 {
    padding-bottom: 185px;
  }
  .large-pbottom190 {
    padding-bottom: 190px;
  }
  .large-pbottom195 {
    padding-bottom: 195px;
  }
  .large-pbottom200 {
    padding-bottom: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-pbottom0 {
    padding-bottom: 0px;
  }
  .xxlarge-pbottom5 {
    padding-bottom: 5px;
  }
  .xxlarge-pbottom10 {
    padding-bottom: 10px;
  }
  .xxlarge-pbottom15 {
    padding-bottom: 15px;
  }
  .xxlarge-pbottom20 {
    padding-bottom: 20px;
  }
  .xxlarge-pbottom25 {
    padding-bottom: 25px;
  }
  .xxlarge-pbottom30 {
    padding-bottom: 30px;
  }
  .xxlarge-pbottom35 {
    padding-bottom: 35px;
  }
  .xxlarge-pbottom40 {
    padding-bottom: 40px;
  }
  .xxlarge-pbottom45 {
    padding-bottom: 45px;
  }
  .xxlarge-pbottom50 {
    padding-bottom: 50px;
  }
  .xxlarge-pbottom55 {
    padding-bottom: 55px;
  }
  .xxlarge-pbottom60 {
    padding-bottom: 60px;
  }
  .xxlarge-pbottom65 {
    padding-bottom: 65px;
  }
  .xxlarge-pbottom70 {
    padding-bottom: 70px;
  }
  .xxlarge-pbottom75 {
    padding-bottom: 75px;
  }
  .xxlarge-pbottom80 {
    padding-bottom: 80px;
  }
  .xxlarge-pbottom85 {
    padding-bottom: 85px;
  }
  .xxlarge-pbottom90 {
    padding-bottom: 90px;
  }
  .xxlarge-pbottom95 {
    padding-bottom: 95px;
  }
  .xxlarge-pbottom100 {
    padding-bottom: 100px;
  }
  .xxlarge-pbottom105 {
    padding-bottom: 105px;
  }
  .xxlarge-pbottom110 {
    padding-bottom: 110px;
  }
  .xxlarge-pbottom115 {
    padding-bottom: 115px;
  }
  .xxlarge-pbottom120 {
    padding-bottom: 120px;
  }
  .xxlarge-pbottom125 {
    padding-bottom: 125px;
  }
  .xxlarge-pbottom130 {
    padding-bottom: 130px;
  }
  .xxlarge-pbottom135 {
    padding-bottom: 135px;
  }
  .xxlarge-pbottom140 {
    padding-bottom: 140px;
  }
  .xxlarge-pbottom145 {
    padding-bottom: 145px;
  }
  .xxlarge-pbottom150 {
    padding-bottom: 150px;
  }
  .xxlarge-pbottom155 {
    padding-bottom: 155px;
  }
  .xxlarge-pbottom160 {
    padding-bottom: 160px;
  }
  .xxlarge-pbottom165 {
    padding-bottom: 165px;
  }
  .xxlarge-pbottom170 {
    padding-bottom: 170px;
  }
  .xxlarge-pbottom175 {
    padding-bottom: 175px;
  }
  .xxlarge-pbottom180 {
    padding-bottom: 180px;
  }
  .xxlarge-pbottom185 {
    padding-bottom: 185px;
  }
  .xxlarge-pbottom190 {
    padding-bottom: 190px;
  }
  .xxlarge-pbottom195 {
    padding-bottom: 195px;
  }
  .xxlarge-pbottom200 {
    padding-bottom: 200px;
  }
}
/*
	PADDING LEFT
	* MOVIL
	* TABLET
	* DESKTOP
*/
.pleft0 {
  padding-left: 0px;
}

.pleft5 {
  padding-left: 5px;
}

.pleft10 {
  padding-left: 10px;
}

.pleft15 {
  padding-left: 15px;
}

.pleft20 {
  padding-left: 20px;
}

.pleft25 {
  padding-left: 25px;
}

.pleft30 {
  padding-left: 30px;
}

.pleft35 {
  padding-left: 35px;
}

.pleft40 {
  padding-left: 40px;
}

.pleft45 {
  padding-left: 45px;
}

.pleft50 {
  padding-left: 50px;
}

.pleft55 {
  padding-left: 55px;
}

.pleft60 {
  padding-left: 60px;
}

.pleft65 {
  padding-left: 65px;
}

.pleft70 {
  padding-left: 70px;
}

.pleft75 {
  padding-left: 75px;
}

.pleft80 {
  padding-left: 80px;
}

.pleft85 {
  padding-left: 85px;
}

.pleft90 {
  padding-left: 90px;
}

.pleft95 {
  padding-left: 95px;
}

.pleft100 {
  padding-left: 100px;
}

.pleft105 {
  padding-left: 105px;
}

.pleft110 {
  padding-left: 110px;
}

.pleft115 {
  padding-left: 115px;
}

.pleft120 {
  padding-left: 120px;
}

.pleft125 {
  padding-left: 125px;
}

.pleft130 {
  padding-left: 130px;
}

.pleft135 {
  padding-left: 135px;
}

.pleft140 {
  padding-left: 140px;
}

.pleft145 {
  padding-left: 145px;
}

.pleft150 {
  padding-left: 150px;
}

.pleft155 {
  padding-left: 155px;
}

.pleft160 {
  padding-left: 160px;
}

.pleft165 {
  padding-left: 165px;
}

.pleft170 {
  padding-left: 170px;
}

.pleft175 {
  padding-left: 175px;
}

.pleft180 {
  padding-left: 180px;
}

.pleft185 {
  padding-left: 185px;
}

.pleft190 {
  padding-left: 190px;
}

.pleft195 {
  padding-left: 195px;
}

.pleft200 {
  padding-left: 200px;
}

@media screen and (max-width: 640px) {
  .small-pleft0 {
    padding-left: 0px;
  }
  .small-pleft5 {
    padding-left: 5px;
  }
  .small-pleft10 {
    padding-left: 10px;
  }
  .small-pleft15 {
    padding-left: 15px;
  }
  .small-pleft20 {
    padding-left: 20px;
  }
  .small-pleft25 {
    padding-left: 25px;
  }
  .small-pleft30 {
    padding-left: 30px;
  }
  .small-pleft35 {
    padding-left: 35px;
  }
  .small-pleft40 {
    padding-left: 40px;
  }
  .small-pleft45 {
    padding-left: 45px;
  }
  .small-pleft50 {
    padding-left: 50px;
  }
  .small-pleft55 {
    padding-left: 55px;
  }
  .small-pleft60 {
    padding-left: 60px;
  }
  .small-pleft65 {
    padding-left: 65px;
  }
  .small-pleft70 {
    padding-left: 70px;
  }
  .small-pleft75 {
    padding-left: 75px;
  }
  .small-pleft80 {
    padding-left: 80px;
  }
  .small-pleft85 {
    padding-left: 85px;
  }
  .small-pleft90 {
    padding-left: 90px;
  }
  .small-pleft95 {
    padding-left: 95px;
  }
  .small-pleft100 {
    padding-left: 100px;
  }
  .small-pleft105 {
    padding-left: 105px;
  }
  .small-pleft110 {
    padding-left: 110px;
  }
  .small-pleft115 {
    padding-left: 115px;
  }
  .small-pleft120 {
    padding-left: 120px;
  }
  .small-pleft125 {
    padding-left: 125px;
  }
  .small-pleft130 {
    padding-left: 130px;
  }
  .small-pleft135 {
    padding-left: 135px;
  }
  .small-pleft140 {
    padding-left: 140px;
  }
  .small-pleft145 {
    padding-left: 145px;
  }
  .small-pleft150 {
    padding-left: 150px;
  }
  .small-pleft155 {
    padding-left: 155px;
  }
  .small-pleft160 {
    padding-left: 160px;
  }
  .small-pleft165 {
    padding-left: 165px;
  }
  .small-pleft170 {
    padding-left: 170px;
  }
  .small-pleft175 {
    padding-left: 175px;
  }
  .small-pleft180 {
    padding-left: 180px;
  }
  .small-pleft185 {
    padding-left: 185px;
  }
  .small-pleft190 {
    padding-left: 190px;
  }
  .small-pleft195 {
    padding-left: 195px;
  }
  .small-pleft200 {
    padding-left: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-pleft0 {
    padding-left: 0px;
  }
  .small-tablet-pleft5 {
    padding-left: 5px;
  }
  .small-tablet-pleft10 {
    padding-left: 10px;
  }
  .small-tablet-pleft15 {
    padding-left: 15px;
  }
  .small-tablet-pleft20 {
    padding-left: 20px;
  }
  .small-tablet-pleft25 {
    padding-left: 25px;
  }
  .small-tablet-pleft30 {
    padding-left: 30px;
  }
  .small-tablet-pleft35 {
    padding-left: 35px;
  }
  .small-tablet-pleft40 {
    padding-left: 40px;
  }
  .small-tablet-pleft45 {
    padding-left: 45px;
  }
  .small-tablet-pleft50 {
    padding-left: 50px;
  }
  .small-tablet-pleft55 {
    padding-left: 55px;
  }
  .small-tablet-pleft60 {
    padding-left: 60px;
  }
  .small-tablet-pleft65 {
    padding-left: 65px;
  }
  .small-tablet-pleft70 {
    padding-left: 70px;
  }
  .small-tablet-pleft75 {
    padding-left: 75px;
  }
  .small-tablet-pleft80 {
    padding-left: 80px;
  }
  .small-tablet-pleft85 {
    padding-left: 85px;
  }
  .small-tablet-pleft90 {
    padding-left: 90px;
  }
  .small-tablet-pleft95 {
    padding-left: 95px;
  }
  .small-tablet-pleft100 {
    padding-left: 100px;
  }
  .small-tablet-pleft105 {
    padding-left: 105px;
  }
  .small-tablet-pleft110 {
    padding-left: 110px;
  }
  .small-tablet-pleft115 {
    padding-left: 115px;
  }
  .small-tablet-pleft120 {
    padding-left: 120px;
  }
  .small-tablet-pleft125 {
    padding-left: 125px;
  }
  .small-tablet-pleft130 {
    padding-left: 130px;
  }
  .small-tablet-pleft135 {
    padding-left: 135px;
  }
  .small-tablet-pleft140 {
    padding-left: 140px;
  }
  .small-tablet-pleft145 {
    padding-left: 145px;
  }
  .small-tablet-pleft150 {
    padding-left: 150px;
  }
  .small-tablet-pleft155 {
    padding-left: 155px;
  }
  .small-tablet-pleft160 {
    padding-left: 160px;
  }
  .small-tablet-pleft165 {
    padding-left: 165px;
  }
  .small-tablet-pleft170 {
    padding-left: 170px;
  }
  .small-tablet-pleft175 {
    padding-left: 175px;
  }
  .small-tablet-pleft180 {
    padding-left: 180px;
  }
  .small-tablet-pleft185 {
    padding-left: 185px;
  }
  .small-tablet-pleft190 {
    padding-left: 190px;
  }
  .small-tablet-pleft195 {
    padding-left: 195px;
  }
  .small-tablet-pleft200 {
    padding-left: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-pleft0 {
    padding-left: 0px;
  }
  .medium-pleft5 {
    padding-left: 5px;
  }
  .medium-pleft10 {
    padding-left: 10px;
  }
  .medium-pleft15 {
    padding-left: 15px;
  }
  .medium-pleft20 {
    padding-left: 20px;
  }
  .medium-pleft25 {
    padding-left: 25px;
  }
  .medium-pleft30 {
    padding-left: 30px;
  }
  .medium-pleft35 {
    padding-left: 35px;
  }
  .medium-pleft40 {
    padding-left: 40px;
  }
  .medium-pleft45 {
    padding-left: 45px;
  }
  .medium-pleft50 {
    padding-left: 50px;
  }
  .medium-pleft55 {
    padding-left: 55px;
  }
  .medium-pleft60 {
    padding-left: 60px;
  }
  .medium-pleft65 {
    padding-left: 65px;
  }
  .medium-pleft70 {
    padding-left: 70px;
  }
  .medium-pleft75 {
    padding-left: 75px;
  }
  .medium-pleft80 {
    padding-left: 80px;
  }
  .medium-pleft85 {
    padding-left: 85px;
  }
  .medium-pleft90 {
    padding-left: 90px;
  }
  .medium-pleft95 {
    padding-left: 95px;
  }
  .medium-pleft100 {
    padding-left: 100px;
  }
  .medium-pleft105 {
    padding-left: 105px;
  }
  .medium-pleft110 {
    padding-left: 110px;
  }
  .medium-pleft115 {
    padding-left: 115px;
  }
  .medium-pleft120 {
    padding-left: 120px;
  }
  .medium-pleft125 {
    padding-left: 125px;
  }
  .medium-pleft130 {
    padding-left: 130px;
  }
  .medium-pleft135 {
    padding-left: 135px;
  }
  .medium-pleft140 {
    padding-left: 140px;
  }
  .medium-pleft145 {
    padding-left: 145px;
  }
  .medium-pleft150 {
    padding-left: 150px;
  }
  .medium-pleft155 {
    padding-left: 155px;
  }
  .medium-pleft160 {
    padding-left: 160px;
  }
  .medium-pleft165 {
    padding-left: 165px;
  }
  .medium-pleft170 {
    padding-left: 170px;
  }
  .medium-pleft175 {
    padding-left: 175px;
  }
  .medium-pleft180 {
    padding-left: 180px;
  }
  .medium-pleft185 {
    padding-left: 185px;
  }
  .medium-pleft190 {
    padding-left: 190px;
  }
  .medium-pleft195 {
    padding-left: 195px;
  }
  .medium-pleft200 {
    padding-left: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-pleft0 {
    padding-left: 0px;
  }
  .large-pleft5 {
    padding-left: 5px;
  }
  .large-pleft10 {
    padding-left: 10px;
  }
  .large-pleft15 {
    padding-left: 15px;
  }
  .large-pleft20 {
    padding-left: 20px;
  }
  .large-pleft25 {
    padding-left: 25px;
  }
  .large-pleft30 {
    padding-left: 30px;
  }
  .large-pleft35 {
    padding-left: 35px;
  }
  .large-pleft40 {
    padding-left: 40px;
  }
  .large-pleft45 {
    padding-left: 45px;
  }
  .large-pleft50 {
    padding-left: 50px;
  }
  .large-pleft55 {
    padding-left: 55px;
  }
  .large-pleft60 {
    padding-left: 60px;
  }
  .large-pleft65 {
    padding-left: 65px;
  }
  .large-pleft70 {
    padding-left: 70px;
  }
  .large-pleft75 {
    padding-left: 75px;
  }
  .large-pleft80 {
    padding-left: 80px;
  }
  .large-pleft85 {
    padding-left: 85px;
  }
  .large-pleft90 {
    padding-left: 90px;
  }
  .large-pleft95 {
    padding-left: 95px;
  }
  .large-pleft100 {
    padding-left: 100px;
  }
  .large-pleft105 {
    padding-left: 105px;
  }
  .large-pleft110 {
    padding-left: 110px;
  }
  .large-pleft115 {
    padding-left: 115px;
  }
  .large-pleft120 {
    padding-left: 120px;
  }
  .large-pleft125 {
    padding-left: 125px;
  }
  .large-pleft130 {
    padding-left: 130px;
  }
  .large-pleft135 {
    padding-left: 135px;
  }
  .large-pleft140 {
    padding-left: 140px;
  }
  .large-pleft145 {
    padding-left: 145px;
  }
  .large-pleft150 {
    padding-left: 150px;
  }
  .large-pleft155 {
    padding-left: 155px;
  }
  .large-pleft160 {
    padding-left: 160px;
  }
  .large-pleft165 {
    padding-left: 165px;
  }
  .large-pleft170 {
    padding-left: 170px;
  }
  .large-pleft175 {
    padding-left: 175px;
  }
  .large-pleft180 {
    padding-left: 180px;
  }
  .large-pleft185 {
    padding-left: 185px;
  }
  .large-pleft190 {
    padding-left: 190px;
  }
  .large-pleft195 {
    padding-left: 195px;
  }
  .large-pleft200 {
    padding-left: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-pleft0 {
    padding-left: 0px;
  }
  .xxlarge-pleft5 {
    padding-left: 5px;
  }
  .xxlarge-pleft10 {
    padding-left: 10px;
  }
  .xxlarge-pleft15 {
    padding-left: 15px;
  }
  .xxlarge-pleft20 {
    padding-left: 20px;
  }
  .xxlarge-pleft25 {
    padding-left: 25px;
  }
  .xxlarge-pleft30 {
    padding-left: 30px;
  }
  .xxlarge-pleft35 {
    padding-left: 35px;
  }
  .xxlarge-pleft40 {
    padding-left: 40px;
  }
  .xxlarge-pleft45 {
    padding-left: 45px;
  }
  .xxlarge-pleft50 {
    padding-left: 50px;
  }
  .xxlarge-pleft55 {
    padding-left: 55px;
  }
  .xxlarge-pleft60 {
    padding-left: 60px;
  }
  .xxlarge-pleft65 {
    padding-left: 65px;
  }
  .xxlarge-pleft70 {
    padding-left: 70px;
  }
  .xxlarge-pleft75 {
    padding-left: 75px;
  }
  .xxlarge-pleft80 {
    padding-left: 80px;
  }
  .xxlarge-pleft85 {
    padding-left: 85px;
  }
  .xxlarge-pleft90 {
    padding-left: 90px;
  }
  .xxlarge-pleft95 {
    padding-left: 95px;
  }
  .xxlarge-pleft100 {
    padding-left: 100px;
  }
  .xxlarge-pleft105 {
    padding-left: 105px;
  }
  .xxlarge-pleft110 {
    padding-left: 110px;
  }
  .xxlarge-pleft115 {
    padding-left: 115px;
  }
  .xxlarge-pleft120 {
    padding-left: 120px;
  }
  .xxlarge-pleft125 {
    padding-left: 125px;
  }
  .xxlarge-pleft130 {
    padding-left: 130px;
  }
  .xxlarge-pleft135 {
    padding-left: 135px;
  }
  .xxlarge-pleft140 {
    padding-left: 140px;
  }
  .xxlarge-pleft145 {
    padding-left: 145px;
  }
  .xxlarge-pleft150 {
    padding-left: 150px;
  }
  .xxlarge-pleft155 {
    padding-left: 155px;
  }
  .xxlarge-pleft160 {
    padding-left: 160px;
  }
  .xxlarge-pleft165 {
    padding-left: 165px;
  }
  .xxlarge-pleft170 {
    padding-left: 170px;
  }
  .xxlarge-pleft175 {
    padding-left: 175px;
  }
  .xxlarge-pleft180 {
    padding-left: 180px;
  }
  .xxlarge-pleft185 {
    padding-left: 185px;
  }
  .xxlarge-pleft190 {
    padding-left: 190px;
  }
  .xxlarge-pleft195 {
    padding-left: 195px;
  }
  .xxlarge-pleft200 {
    padding-left: 200px;
  }
}
/*
	PADDING RIGHT
	* MOVIL
	* TABLET
	* DESKTOP
*/
.pright0 {
  padding-right: 0px;
}

.pright5 {
  padding-right: 5px;
}

.pright10 {
  padding-right: 10px;
}

.pright15 {
  padding-right: 15px;
}

.pright20 {
  padding-right: 20px;
}

.pright25 {
  padding-right: 25px;
}

.pright30 {
  padding-right: 30px;
}

.pright35 {
  padding-right: 35px;
}

.pright40 {
  padding-right: 40px;
}

.pright45 {
  padding-right: 45px;
}

.pright50 {
  padding-right: 50px;
}

.pright55 {
  padding-right: 55px;
}

.pright60 {
  padding-right: 60px;
}

.pright65 {
  padding-right: 65px;
}

.pright70 {
  padding-right: 70px;
}

.pright75 {
  padding-right: 75px;
}

.pright80 {
  padding-right: 80px;
}

.pright85 {
  padding-right: 85px;
}

.pright90 {
  padding-right: 90px;
}

.pright95 {
  padding-right: 95px;
}

.pright100 {
  padding-right: 100px;
}

.pright105 {
  padding-right: 105px;
}

.pright110 {
  padding-right: 110px;
}

.pright115 {
  padding-right: 115px;
}

.pright120 {
  padding-right: 120px;
}

.pright125 {
  padding-right: 125px;
}

.pright130 {
  padding-right: 130px;
}

.pright135 {
  padding-right: 135px;
}

.pright140 {
  padding-right: 140px;
}

.pright145 {
  padding-right: 145px;
}

.pright150 {
  padding-right: 150px;
}

.pright155 {
  padding-right: 155px;
}

.pright160 {
  padding-right: 160px;
}

.pright165 {
  padding-right: 165px;
}

.pright170 {
  padding-right: 170px;
}

.pright175 {
  padding-right: 175px;
}

.pright180 {
  padding-right: 180px;
}

.pright185 {
  padding-right: 185px;
}

.pright190 {
  padding-right: 190px;
}

.pright195 {
  padding-right: 195px;
}

.pright200 {
  padding-right: 200px;
}

@media screen and (max-width: 640px) {
  .small-pright0 {
    padding-right: 0px;
  }
  .small-pright5 {
    padding-right: 5px;
  }
  .small-pright10 {
    padding-right: 10px;
  }
  .small-pright15 {
    padding-right: 15px;
  }
  .small-pright20 {
    padding-right: 20px;
  }
  .small-pright25 {
    padding-right: 25px;
  }
  .small-pright30 {
    padding-right: 30px;
  }
  .small-pright35 {
    padding-right: 35px;
  }
  .small-pright40 {
    padding-right: 40px;
  }
  .small-pright45 {
    padding-right: 45px;
  }
  .small-pright50 {
    padding-right: 50px;
  }
  .small-pright55 {
    padding-right: 55px;
  }
  .small-pright60 {
    padding-right: 60px;
  }
  .small-pright65 {
    padding-right: 65px;
  }
  .small-pright70 {
    padding-right: 70px;
  }
  .small-pright75 {
    padding-right: 75px;
  }
  .small-pright80 {
    padding-right: 80px;
  }
  .small-pright85 {
    padding-right: 85px;
  }
  .small-pright90 {
    padding-right: 90px;
  }
  .small-pright95 {
    padding-right: 95px;
  }
  .small-pright100 {
    padding-right: 100px;
  }
  .small-pright105 {
    padding-right: 105px;
  }
  .small-pright110 {
    padding-right: 110px;
  }
  .small-pright115 {
    padding-right: 115px;
  }
  .small-pright120 {
    padding-right: 120px;
  }
  .small-pright125 {
    padding-right: 125px;
  }
  .small-pright130 {
    padding-right: 130px;
  }
  .small-pright135 {
    padding-right: 135px;
  }
  .small-pright140 {
    padding-right: 140px;
  }
  .small-pright145 {
    padding-right: 145px;
  }
  .small-pright150 {
    padding-right: 150px;
  }
  .small-pright155 {
    padding-right: 155px;
  }
  .small-pright160 {
    padding-right: 160px;
  }
  .small-pright165 {
    padding-right: 165px;
  }
  .small-pright170 {
    padding-right: 170px;
  }
  .small-pright175 {
    padding-right: 175px;
  }
  .small-pright180 {
    padding-right: 180px;
  }
  .small-pright185 {
    padding-right: 185px;
  }
  .small-pright190 {
    padding-right: 190px;
  }
  .small-pright195 {
    padding-right: 195px;
  }
  .small-pright200 {
    padding-right: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-pright0 {
    padding-right: 0px;
  }
  .small-tablet-pright5 {
    padding-right: 5px;
  }
  .small-tablet-pright10 {
    padding-right: 10px;
  }
  .small-tablet-pright15 {
    padding-right: 15px;
  }
  .small-tablet-pright20 {
    padding-right: 20px;
  }
  .small-tablet-pright25 {
    padding-right: 25px;
  }
  .small-tablet-pright30 {
    padding-right: 30px;
  }
  .small-tablet-pright35 {
    padding-right: 35px;
  }
  .small-tablet-pright40 {
    padding-right: 40px;
  }
  .small-tablet-pright45 {
    padding-right: 45px;
  }
  .small-tablet-pright50 {
    padding-right: 50px;
  }
  .small-tablet-pright55 {
    padding-right: 55px;
  }
  .small-tablet-pright60 {
    padding-right: 60px;
  }
  .small-tablet-pright65 {
    padding-right: 65px;
  }
  .small-tablet-pright70 {
    padding-right: 70px;
  }
  .small-tablet-pright75 {
    padding-right: 75px;
  }
  .small-tablet-pright80 {
    padding-right: 80px;
  }
  .small-tablet-pright85 {
    padding-right: 85px;
  }
  .small-tablet-pright90 {
    padding-right: 90px;
  }
  .small-tablet-pright95 {
    padding-right: 95px;
  }
  .small-tablet-pright100 {
    padding-right: 100px;
  }
  .small-tablet-pright105 {
    padding-right: 105px;
  }
  .small-tablet-pright110 {
    padding-right: 110px;
  }
  .small-tablet-pright115 {
    padding-right: 115px;
  }
  .small-tablet-pright120 {
    padding-right: 120px;
  }
  .small-tablet-pright125 {
    padding-right: 125px;
  }
  .small-tablet-pright130 {
    padding-right: 130px;
  }
  .small-tablet-pright135 {
    padding-right: 135px;
  }
  .small-tablet-pright140 {
    padding-right: 140px;
  }
  .small-tablet-pright145 {
    padding-right: 145px;
  }
  .small-tablet-pright150 {
    padding-right: 150px;
  }
  .small-tablet-pright155 {
    padding-right: 155px;
  }
  .small-tablet-pright160 {
    padding-right: 160px;
  }
  .small-tablet-pright165 {
    padding-right: 165px;
  }
  .small-tablet-pright170 {
    padding-right: 170px;
  }
  .small-tablet-pright175 {
    padding-right: 175px;
  }
  .small-tablet-pright180 {
    padding-right: 180px;
  }
  .small-tablet-pright185 {
    padding-right: 185px;
  }
  .small-tablet-pright190 {
    padding-right: 190px;
  }
  .small-tablet-pright195 {
    padding-right: 195px;
  }
  .small-tablet-pright200 {
    padding-right: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-pright0 {
    padding-right: 0px;
  }
  .medium-pright5 {
    padding-right: 5px;
  }
  .medium-pright10 {
    padding-right: 10px;
  }
  .medium-pright15 {
    padding-right: 15px;
  }
  .medium-pright20 {
    padding-right: 20px;
  }
  .medium-pright25 {
    padding-right: 25px;
  }
  .medium-pright30 {
    padding-right: 30px;
  }
  .medium-pright35 {
    padding-right: 35px;
  }
  .medium-pright40 {
    padding-right: 40px;
  }
  .medium-pright45 {
    padding-right: 45px;
  }
  .medium-pright50 {
    padding-right: 50px;
  }
  .medium-pright55 {
    padding-right: 55px;
  }
  .medium-pright60 {
    padding-right: 60px;
  }
  .medium-pright65 {
    padding-right: 65px;
  }
  .medium-pright70 {
    padding-right: 70px;
  }
  .medium-pright75 {
    padding-right: 75px;
  }
  .medium-pright80 {
    padding-right: 80px;
  }
  .medium-pright85 {
    padding-right: 85px;
  }
  .medium-pright90 {
    padding-right: 90px;
  }
  .medium-pright95 {
    padding-right: 95px;
  }
  .medium-pright100 {
    padding-right: 100px;
  }
  .medium-pright105 {
    padding-right: 105px;
  }
  .medium-pright110 {
    padding-right: 110px;
  }
  .medium-pright115 {
    padding-right: 115px;
  }
  .medium-pright120 {
    padding-right: 120px;
  }
  .medium-pright125 {
    padding-right: 125px;
  }
  .medium-pright130 {
    padding-right: 130px;
  }
  .medium-pright135 {
    padding-right: 135px;
  }
  .medium-pright140 {
    padding-right: 140px;
  }
  .medium-pright145 {
    padding-right: 145px;
  }
  .medium-pright150 {
    padding-right: 150px;
  }
  .medium-pright155 {
    padding-right: 155px;
  }
  .medium-pright160 {
    padding-right: 160px;
  }
  .medium-pright165 {
    padding-right: 165px;
  }
  .medium-pright170 {
    padding-right: 170px;
  }
  .medium-pright175 {
    padding-right: 175px;
  }
  .medium-pright180 {
    padding-right: 180px;
  }
  .medium-pright185 {
    padding-right: 185px;
  }
  .medium-pright190 {
    padding-right: 190px;
  }
  .medium-pright195 {
    padding-right: 195px;
  }
  .medium-pright200 {
    padding-right: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-pright0 {
    padding-right: 0px;
  }
  .large-pright5 {
    padding-right: 5px;
  }
  .large-pright10 {
    padding-right: 10px;
  }
  .large-pright15 {
    padding-right: 15px;
  }
  .large-pright20 {
    padding-right: 20px;
  }
  .large-pright25 {
    padding-right: 25px;
  }
  .large-pright30 {
    padding-right: 30px;
  }
  .large-pright35 {
    padding-right: 35px;
  }
  .large-pright40 {
    padding-right: 40px;
  }
  .large-pright45 {
    padding-right: 45px;
  }
  .large-pright50 {
    padding-right: 50px;
  }
  .large-pright55 {
    padding-right: 55px;
  }
  .large-pright60 {
    padding-right: 60px;
  }
  .large-pright65 {
    padding-right: 65px;
  }
  .large-pright70 {
    padding-right: 70px;
  }
  .large-pright75 {
    padding-right: 75px;
  }
  .large-pright80 {
    padding-right: 80px;
  }
  .large-pright85 {
    padding-right: 85px;
  }
  .large-pright90 {
    padding-right: 90px;
  }
  .large-pright95 {
    padding-right: 95px;
  }
  .large-pright100 {
    padding-right: 100px;
  }
  .large-pright105 {
    padding-right: 105px;
  }
  .large-pright110 {
    padding-right: 110px;
  }
  .large-pright115 {
    padding-right: 115px;
  }
  .large-pright120 {
    padding-right: 120px;
  }
  .large-pright125 {
    padding-right: 125px;
  }
  .large-pright130 {
    padding-right: 130px;
  }
  .large-pright135 {
    padding-right: 135px;
  }
  .large-pright140 {
    padding-right: 140px;
  }
  .large-pright145 {
    padding-right: 145px;
  }
  .large-pright150 {
    padding-right: 150px;
  }
  .large-pright155 {
    padding-right: 155px;
  }
  .large-pright160 {
    padding-right: 160px;
  }
  .large-pright165 {
    padding-right: 165px;
  }
  .large-pright170 {
    padding-right: 170px;
  }
  .large-pright175 {
    padding-right: 175px;
  }
  .large-pright180 {
    padding-right: 180px;
  }
  .large-pright185 {
    padding-right: 185px;
  }
  .large-pright190 {
    padding-right: 190px;
  }
  .large-pright195 {
    padding-right: 195px;
  }
  .large-pright200 {
    padding-right: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-pright0 {
    padding-right: 0px;
  }
  .xxlarge-pright5 {
    padding-right: 5px;
  }
  .xxlarge-pright10 {
    padding-right: 10px;
  }
  .xxlarge-pright15 {
    padding-right: 15px;
  }
  .xxlarge-pright20 {
    padding-right: 20px;
  }
  .xxlarge-pright25 {
    padding-right: 25px;
  }
  .xxlarge-pright30 {
    padding-right: 30px;
  }
  .xxlarge-pright35 {
    padding-right: 35px;
  }
  .xxlarge-pright40 {
    padding-right: 40px;
  }
  .xxlarge-pright45 {
    padding-right: 45px;
  }
  .xxlarge-pright50 {
    padding-right: 50px;
  }
  .xxlarge-pright55 {
    padding-right: 55px;
  }
  .xxlarge-pright60 {
    padding-right: 60px;
  }
  .xxlarge-pright65 {
    padding-right: 65px;
  }
  .xxlarge-pright70 {
    padding-right: 70px;
  }
  .xxlarge-pright75 {
    padding-right: 75px;
  }
  .xxlarge-pright80 {
    padding-right: 80px;
  }
  .xxlarge-pright85 {
    padding-right: 85px;
  }
  .xxlarge-pright90 {
    padding-right: 90px;
  }
  .xxlarge-pright95 {
    padding-right: 95px;
  }
  .xxlarge-pright100 {
    padding-right: 100px;
  }
  .xxlarge-pright105 {
    padding-right: 105px;
  }
  .xxlarge-pright110 {
    padding-right: 110px;
  }
  .xxlarge-pright115 {
    padding-right: 115px;
  }
  .xxlarge-pright120 {
    padding-right: 120px;
  }
  .xxlarge-pright125 {
    padding-right: 125px;
  }
  .xxlarge-pright130 {
    padding-right: 130px;
  }
  .xxlarge-pright135 {
    padding-right: 135px;
  }
  .xxlarge-pright140 {
    padding-right: 140px;
  }
  .xxlarge-pright145 {
    padding-right: 145px;
  }
  .xxlarge-pright150 {
    padding-right: 150px;
  }
  .xxlarge-pright155 {
    padding-right: 155px;
  }
  .xxlarge-pright160 {
    padding-right: 160px;
  }
  .xxlarge-pright165 {
    padding-right: 165px;
  }
  .xxlarge-pright170 {
    padding-right: 170px;
  }
  .xxlarge-pright175 {
    padding-right: 175px;
  }
  .xxlarge-pright180 {
    padding-right: 180px;
  }
  .xxlarge-pright185 {
    padding-right: 185px;
  }
  .xxlarge-pright190 {
    padding-right: 190px;
  }
  .xxlarge-pright195 {
    padding-right: 195px;
  }
  .xxlarge-pright200 {
    padding-right: 200px;
  }
}
/*------------------------------------*\
    $MARGINS
\*------------------------------------*/
.margin0 {
  margin: 0 !important;
}

.mbottom0 {
  margin-bottom: 0 !important;
}

.mAuto {
  margin-left: auto;
  margin-right: auto;
}

/*
	MARGIN
	* MOVIL
	* TABLET
	* DESKTOP
*/
.margin0 {
  margin: 0px;
}

.margin5 {
  margin: 5px;
}

.margin10 {
  margin: 10px;
}

.margin15 {
  margin: 15px;
}

.margin20 {
  margin: 20px;
}

.margin25 {
  margin: 25px;
}

.margin30 {
  margin: 30px;
}

.margin35 {
  margin: 35px;
}

.margin40 {
  margin: 40px;
}

.margin45 {
  margin: 45px;
}

.margin50 {
  margin: 50px;
}

.margin55 {
  margin: 55px;
}

.margin60 {
  margin: 60px;
}

.margin65 {
  margin: 65px;
}

.margin70 {
  margin: 70px;
}

.margin75 {
  margin: 75px;
}

.margin80 {
  margin: 80px;
}

.margin85 {
  margin: 85px;
}

.margin90 {
  margin: 90px;
}

.margin95 {
  margin: 95px;
}

.margin100 {
  margin: 100px;
}

.margin105 {
  margin: 105px;
}

.margin110 {
  margin: 110px;
}

.margin115 {
  margin: 115px;
}

.margin120 {
  margin: 120px;
}

.margin125 {
  margin: 125px;
}

.margin130 {
  margin: 130px;
}

.margin135 {
  margin: 135px;
}

.margin140 {
  margin: 140px;
}

.margin145 {
  margin: 145px;
}

.margin150 {
  margin: 150px;
}

.margin155 {
  margin: 155px;
}

.margin160 {
  margin: 160px;
}

.margin165 {
  margin: 165px;
}

.margin170 {
  margin: 170px;
}

.margin175 {
  margin: 175px;
}

.margin180 {
  margin: 180px;
}

.margin185 {
  margin: 185px;
}

.margin190 {
  margin: 190px;
}

.margin195 {
  margin: 195px;
}

.margin200 {
  margin: 200px;
}

@media screen and (max-width: 640px) {
  .small-margin0 {
    margin: 0px;
  }
  .small-margin5 {
    margin: 5px;
  }
  .small-margin10 {
    margin: 10px;
  }
  .small-margin15 {
    margin: 15px;
  }
  .small-margin20 {
    margin: 20px;
  }
  .small-margin25 {
    margin: 25px;
  }
  .small-margin30 {
    margin: 30px;
  }
  .small-margin35 {
    margin: 35px;
  }
  .small-margin40 {
    margin: 40px;
  }
  .small-margin45 {
    margin: 45px;
  }
  .small-margin50 {
    margin: 50px;
  }
  .small-margin55 {
    margin: 55px;
  }
  .small-margin60 {
    margin: 60px;
  }
  .small-margin65 {
    margin: 65px;
  }
  .small-margin70 {
    margin: 70px;
  }
  .small-margin75 {
    margin: 75px;
  }
  .small-margin80 {
    margin: 80px;
  }
  .small-margin85 {
    margin: 85px;
  }
  .small-margin90 {
    margin: 90px;
  }
  .small-margin95 {
    margin: 95px;
  }
  .small-margin100 {
    margin: 100px;
  }
  .small-margin105 {
    margin: 105px;
  }
  .small-margin110 {
    margin: 110px;
  }
  .small-margin115 {
    margin: 115px;
  }
  .small-margin120 {
    margin: 120px;
  }
  .small-margin125 {
    margin: 125px;
  }
  .small-margin130 {
    margin: 130px;
  }
  .small-margin135 {
    margin: 135px;
  }
  .small-margin140 {
    margin: 140px;
  }
  .small-margin145 {
    margin: 145px;
  }
  .small-margin150 {
    margin: 150px;
  }
  .small-margin155 {
    margin: 155px;
  }
  .small-margin160 {
    margin: 160px;
  }
  .small-margin165 {
    margin: 165px;
  }
  .small-margin170 {
    margin: 170px;
  }
  .small-margin175 {
    margin: 175px;
  }
  .small-margin180 {
    margin: 180px;
  }
  .small-margin185 {
    margin: 185px;
  }
  .small-margin190 {
    margin: 190px;
  }
  .small-margin195 {
    margin: 195px;
  }
  .small-margin200 {
    margin: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-margin0 {
    margin: 0px;
  }
  .small-tablet-margin5 {
    margin: 5px;
  }
  .small-tablet-margin10 {
    margin: 10px;
  }
  .small-tablet-margin15 {
    margin: 15px;
  }
  .small-tablet-margin20 {
    margin: 20px;
  }
  .small-tablet-margin25 {
    margin: 25px;
  }
  .small-tablet-margin30 {
    margin: 30px;
  }
  .small-tablet-margin35 {
    margin: 35px;
  }
  .small-tablet-margin40 {
    margin: 40px;
  }
  .small-tablet-margin45 {
    margin: 45px;
  }
  .small-tablet-margin50 {
    margin: 50px;
  }
  .small-tablet-margin55 {
    margin: 55px;
  }
  .small-tablet-margin60 {
    margin: 60px;
  }
  .small-tablet-margin65 {
    margin: 65px;
  }
  .small-tablet-margin70 {
    margin: 70px;
  }
  .small-tablet-margin75 {
    margin: 75px;
  }
  .small-tablet-margin80 {
    margin: 80px;
  }
  .small-tablet-margin85 {
    margin: 85px;
  }
  .small-tablet-margin90 {
    margin: 90px;
  }
  .small-tablet-margin95 {
    margin: 95px;
  }
  .small-tablet-margin100 {
    margin: 100px;
  }
  .small-tablet-margin105 {
    margin: 105px;
  }
  .small-tablet-margin110 {
    margin: 110px;
  }
  .small-tablet-margin115 {
    margin: 115px;
  }
  .small-tablet-margin120 {
    margin: 120px;
  }
  .small-tablet-margin125 {
    margin: 125px;
  }
  .small-tablet-margin130 {
    margin: 130px;
  }
  .small-tablet-margin135 {
    margin: 135px;
  }
  .small-tablet-margin140 {
    margin: 140px;
  }
  .small-tablet-margin145 {
    margin: 145px;
  }
  .small-tablet-margin150 {
    margin: 150px;
  }
  .small-tablet-margin155 {
    margin: 155px;
  }
  .small-tablet-margin160 {
    margin: 160px;
  }
  .small-tablet-margin165 {
    margin: 165px;
  }
  .small-tablet-margin170 {
    margin: 170px;
  }
  .small-tablet-margin175 {
    margin: 175px;
  }
  .small-tablet-margin180 {
    margin: 180px;
  }
  .small-tablet-margin185 {
    margin: 185px;
  }
  .small-tablet-margin190 {
    margin: 190px;
  }
  .small-tablet-margin195 {
    margin: 195px;
  }
  .small-tablet-margin200 {
    margin: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-margin0 {
    margin: 0px;
  }
  .medium-margin5 {
    margin: 5px;
  }
  .medium-margin10 {
    margin: 10px;
  }
  .medium-margin15 {
    margin: 15px;
  }
  .medium-margin20 {
    margin: 20px;
  }
  .medium-margin25 {
    margin: 25px;
  }
  .medium-margin30 {
    margin: 30px;
  }
  .medium-margin35 {
    margin: 35px;
  }
  .medium-margin40 {
    margin: 40px;
  }
  .medium-margin45 {
    margin: 45px;
  }
  .medium-margin50 {
    margin: 50px;
  }
  .medium-margin55 {
    margin: 55px;
  }
  .medium-margin60 {
    margin: 60px;
  }
  .medium-margin65 {
    margin: 65px;
  }
  .medium-margin70 {
    margin: 70px;
  }
  .medium-margin75 {
    margin: 75px;
  }
  .medium-margin80 {
    margin: 80px;
  }
  .medium-margin85 {
    margin: 85px;
  }
  .medium-margin90 {
    margin: 90px;
  }
  .medium-margin95 {
    margin: 95px;
  }
  .medium-margin100 {
    margin: 100px;
  }
  .medium-margin105 {
    margin: 105px;
  }
  .medium-margin110 {
    margin: 110px;
  }
  .medium-margin115 {
    margin: 115px;
  }
  .medium-margin120 {
    margin: 120px;
  }
  .medium-margin125 {
    margin: 125px;
  }
  .medium-margin130 {
    margin: 130px;
  }
  .medium-margin135 {
    margin: 135px;
  }
  .medium-margin140 {
    margin: 140px;
  }
  .medium-margin145 {
    margin: 145px;
  }
  .medium-margin150 {
    margin: 150px;
  }
  .medium-margin155 {
    margin: 155px;
  }
  .medium-margin160 {
    margin: 160px;
  }
  .medium-margin165 {
    margin: 165px;
  }
  .medium-margin170 {
    margin: 170px;
  }
  .medium-margin175 {
    margin: 175px;
  }
  .medium-margin180 {
    margin: 180px;
  }
  .medium-margin185 {
    margin: 185px;
  }
  .medium-margin190 {
    margin: 190px;
  }
  .medium-margin195 {
    margin: 195px;
  }
  .medium-margin200 {
    margin: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-margin0 {
    margin: 0px;
  }
  .large-margin5 {
    margin: 5px;
  }
  .large-margin10 {
    margin: 10px;
  }
  .large-margin15 {
    margin: 15px;
  }
  .large-margin20 {
    margin: 20px;
  }
  .large-margin25 {
    margin: 25px;
  }
  .large-margin30 {
    margin: 30px;
  }
  .large-margin35 {
    margin: 35px;
  }
  .large-margin40 {
    margin: 40px;
  }
  .large-margin45 {
    margin: 45px;
  }
  .large-margin50 {
    margin: 50px;
  }
  .large-margin55 {
    margin: 55px;
  }
  .large-margin60 {
    margin: 60px;
  }
  .large-margin65 {
    margin: 65px;
  }
  .large-margin70 {
    margin: 70px;
  }
  .large-margin75 {
    margin: 75px;
  }
  .large-margin80 {
    margin: 80px;
  }
  .large-margin85 {
    margin: 85px;
  }
  .large-margin90 {
    margin: 90px;
  }
  .large-margin95 {
    margin: 95px;
  }
  .large-margin100 {
    margin: 100px;
  }
  .large-margin105 {
    margin: 105px;
  }
  .large-margin110 {
    margin: 110px;
  }
  .large-margin115 {
    margin: 115px;
  }
  .large-margin120 {
    margin: 120px;
  }
  .large-margin125 {
    margin: 125px;
  }
  .large-margin130 {
    margin: 130px;
  }
  .large-margin135 {
    margin: 135px;
  }
  .large-margin140 {
    margin: 140px;
  }
  .large-margin145 {
    margin: 145px;
  }
  .large-margin150 {
    margin: 150px;
  }
  .large-margin155 {
    margin: 155px;
  }
  .large-margin160 {
    margin: 160px;
  }
  .large-margin165 {
    margin: 165px;
  }
  .large-margin170 {
    margin: 170px;
  }
  .large-margin175 {
    margin: 175px;
  }
  .large-margin180 {
    margin: 180px;
  }
  .large-margin185 {
    margin: 185px;
  }
  .large-margin190 {
    margin: 190px;
  }
  .large-margin195 {
    margin: 195px;
  }
  .large-margin200 {
    margin: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-margin0 {
    margin: 0px;
  }
  .xxlarge-margin5 {
    margin: 5px;
  }
  .xxlarge-margin10 {
    margin: 10px;
  }
  .xxlarge-margin15 {
    margin: 15px;
  }
  .xxlarge-margin20 {
    margin: 20px;
  }
  .xxlarge-margin25 {
    margin: 25px;
  }
  .xxlarge-margin30 {
    margin: 30px;
  }
  .xxlarge-margin35 {
    margin: 35px;
  }
  .xxlarge-margin40 {
    margin: 40px;
  }
  .xxlarge-margin45 {
    margin: 45px;
  }
  .xxlarge-margin50 {
    margin: 50px;
  }
  .xxlarge-margin55 {
    margin: 55px;
  }
  .xxlarge-margin60 {
    margin: 60px;
  }
  .xxlarge-margin65 {
    margin: 65px;
  }
  .xxlarge-margin70 {
    margin: 70px;
  }
  .xxlarge-margin75 {
    margin: 75px;
  }
  .xxlarge-margin80 {
    margin: 80px;
  }
  .xxlarge-margin85 {
    margin: 85px;
  }
  .xxlarge-margin90 {
    margin: 90px;
  }
  .xxlarge-margin95 {
    margin: 95px;
  }
  .xxlarge-margin100 {
    margin: 100px;
  }
  .xxlarge-margin105 {
    margin: 105px;
  }
  .xxlarge-margin110 {
    margin: 110px;
  }
  .xxlarge-margin115 {
    margin: 115px;
  }
  .xxlarge-margin120 {
    margin: 120px;
  }
  .xxlarge-margin125 {
    margin: 125px;
  }
  .xxlarge-margin130 {
    margin: 130px;
  }
  .xxlarge-margin135 {
    margin: 135px;
  }
  .xxlarge-margin140 {
    margin: 140px;
  }
  .xxlarge-margin145 {
    margin: 145px;
  }
  .xxlarge-margin150 {
    margin: 150px;
  }
  .xxlarge-margin155 {
    margin: 155px;
  }
  .xxlarge-margin160 {
    margin: 160px;
  }
  .xxlarge-margin165 {
    margin: 165px;
  }
  .xxlarge-margin170 {
    margin: 170px;
  }
  .xxlarge-margin175 {
    margin: 175px;
  }
  .xxlarge-margin180 {
    margin: 180px;
  }
  .xxlarge-margin185 {
    margin: 185px;
  }
  .xxlarge-margin190 {
    margin: 190px;
  }
  .xxlarge-margin195 {
    margin: 195px;
  }
  .xxlarge-margin200 {
    margin: 200px;
  }
}
/*
	MARGIN TOP
	* MOVIL
	* TABLET
	* DESKTOP
*/
.mtop0 {
  margin-top: 0px;
}

.mtop5 {
  margin-top: 5px;
}

.mtop10 {
  margin-top: 10px;
}

.mtop15 {
  margin-top: 15px;
}

.mtop20 {
  margin-top: 20px;
}

.mtop25 {
  margin-top: 25px;
}

.mtop30 {
  margin-top: 30px;
}

.mtop35 {
  margin-top: 35px;
}

.mtop40 {
  margin-top: 40px;
}

.mtop45 {
  margin-top: 45px;
}

.mtop50 {
  margin-top: 50px;
}

.mtop55 {
  margin-top: 55px;
}

.mtop60 {
  margin-top: 60px;
}

.mtop65 {
  margin-top: 65px;
}

.mtop70 {
  margin-top: 70px;
}

.mtop75 {
  margin-top: 75px;
}

.mtop80 {
  margin-top: 80px;
}

.mtop85 {
  margin-top: 85px;
}

.mtop90 {
  margin-top: 90px;
}

.mtop95 {
  margin-top: 95px;
}

.mtop100 {
  margin-top: 100px;
}

.mtop105 {
  margin-top: 105px;
}

.mtop110 {
  margin-top: 110px;
}

.mtop115 {
  margin-top: 115px;
}

.mtop120 {
  margin-top: 120px;
}

.mtop125 {
  margin-top: 125px;
}

.mtop130 {
  margin-top: 130px;
}

.mtop135 {
  margin-top: 135px;
}

.mtop140 {
  margin-top: 140px;
}

.mtop145 {
  margin-top: 145px;
}

.mtop150 {
  margin-top: 150px;
}

.mtop155 {
  margin-top: 155px;
}

.mtop160 {
  margin-top: 160px;
}

.mtop165 {
  margin-top: 165px;
}

.mtop170 {
  margin-top: 170px;
}

.mtop175 {
  margin-top: 175px;
}

.mtop180 {
  margin-top: 180px;
}

.mtop185 {
  margin-top: 185px;
}

.mtop190 {
  margin-top: 190px;
}

.mtop195 {
  margin-top: 195px;
}

.mtop200 {
  margin-top: 200px;
}

@media screen and (max-width: 640px) {
  .small-mtop0 {
    margin-top: 0px;
  }
  .small-mtop5 {
    margin-top: 5px;
  }
  .small-mtop10 {
    margin-top: 10px;
  }
  .small-mtop15 {
    margin-top: 15px;
  }
  .small-mtop20 {
    margin-top: 20px;
  }
  .small-mtop25 {
    margin-top: 25px;
  }
  .small-mtop30 {
    margin-top: 30px;
  }
  .small-mtop35 {
    margin-top: 35px;
  }
  .small-mtop40 {
    margin-top: 40px;
  }
  .small-mtop45 {
    margin-top: 45px;
  }
  .small-mtop50 {
    margin-top: 50px;
  }
  .small-mtop55 {
    margin-top: 55px;
  }
  .small-mtop60 {
    margin-top: 60px;
  }
  .small-mtop65 {
    margin-top: 65px;
  }
  .small-mtop70 {
    margin-top: 70px;
  }
  .small-mtop75 {
    margin-top: 75px;
  }
  .small-mtop80 {
    margin-top: 80px;
  }
  .small-mtop85 {
    margin-top: 85px;
  }
  .small-mtop90 {
    margin-top: 90px;
  }
  .small-mtop95 {
    margin-top: 95px;
  }
  .small-mtop100 {
    margin-top: 100px;
  }
  .small-mtop105 {
    margin-top: 105px;
  }
  .small-mtop110 {
    margin-top: 110px;
  }
  .small-mtop115 {
    margin-top: 115px;
  }
  .small-mtop120 {
    margin-top: 120px;
  }
  .small-mtop125 {
    margin-top: 125px;
  }
  .small-mtop130 {
    margin-top: 130px;
  }
  .small-mtop135 {
    margin-top: 135px;
  }
  .small-mtop140 {
    margin-top: 140px;
  }
  .small-mtop145 {
    margin-top: 145px;
  }
  .small-mtop150 {
    margin-top: 150px;
  }
  .small-mtop155 {
    margin-top: 155px;
  }
  .small-mtop160 {
    margin-top: 160px;
  }
  .small-mtop165 {
    margin-top: 165px;
  }
  .small-mtop170 {
    margin-top: 170px;
  }
  .small-mtop175 {
    margin-top: 175px;
  }
  .small-mtop180 {
    margin-top: 180px;
  }
  .small-mtop185 {
    margin-top: 185px;
  }
  .small-mtop190 {
    margin-top: 190px;
  }
  .small-mtop195 {
    margin-top: 195px;
  }
  .small-mtop200 {
    margin-top: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-mtop0 {
    margin-top: 0px;
  }
  .small-tablet-mtop5 {
    margin-top: 5px;
  }
  .small-tablet-mtop10 {
    margin-top: 10px;
  }
  .small-tablet-mtop15 {
    margin-top: 15px;
  }
  .small-tablet-mtop20 {
    margin-top: 20px;
  }
  .small-tablet-mtop25 {
    margin-top: 25px;
  }
  .small-tablet-mtop30 {
    margin-top: 30px;
  }
  .small-tablet-mtop35 {
    margin-top: 35px;
  }
  .small-tablet-mtop40 {
    margin-top: 40px;
  }
  .small-tablet-mtop45 {
    margin-top: 45px;
  }
  .small-tablet-mtop50 {
    margin-top: 50px;
  }
  .small-tablet-mtop55 {
    margin-top: 55px;
  }
  .small-tablet-mtop60 {
    margin-top: 60px;
  }
  .small-tablet-mtop65 {
    margin-top: 65px;
  }
  .small-tablet-mtop70 {
    margin-top: 70px;
  }
  .small-tablet-mtop75 {
    margin-top: 75px;
  }
  .small-tablet-mtop80 {
    margin-top: 80px;
  }
  .small-tablet-mtop85 {
    margin-top: 85px;
  }
  .small-tablet-mtop90 {
    margin-top: 90px;
  }
  .small-tablet-mtop95 {
    margin-top: 95px;
  }
  .small-tablet-mtop100 {
    margin-top: 100px;
  }
  .small-tablet-mtop105 {
    margin-top: 105px;
  }
  .small-tablet-mtop110 {
    margin-top: 110px;
  }
  .small-tablet-mtop115 {
    margin-top: 115px;
  }
  .small-tablet-mtop120 {
    margin-top: 120px;
  }
  .small-tablet-mtop125 {
    margin-top: 125px;
  }
  .small-tablet-mtop130 {
    margin-top: 130px;
  }
  .small-tablet-mtop135 {
    margin-top: 135px;
  }
  .small-tablet-mtop140 {
    margin-top: 140px;
  }
  .small-tablet-mtop145 {
    margin-top: 145px;
  }
  .small-tablet-mtop150 {
    margin-top: 150px;
  }
  .small-tablet-mtop155 {
    margin-top: 155px;
  }
  .small-tablet-mtop160 {
    margin-top: 160px;
  }
  .small-tablet-mtop165 {
    margin-top: 165px;
  }
  .small-tablet-mtop170 {
    margin-top: 170px;
  }
  .small-tablet-mtop175 {
    margin-top: 175px;
  }
  .small-tablet-mtop180 {
    margin-top: 180px;
  }
  .small-tablet-mtop185 {
    margin-top: 185px;
  }
  .small-tablet-mtop190 {
    margin-top: 190px;
  }
  .small-tablet-mtop195 {
    margin-top: 195px;
  }
  .small-tablet-mtop200 {
    margin-top: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-mtop0 {
    margin-top: 0px;
  }
  .medium-mtop5 {
    margin-top: 5px;
  }
  .medium-mtop10 {
    margin-top: 10px;
  }
  .medium-mtop15 {
    margin-top: 15px;
  }
  .medium-mtop20 {
    margin-top: 20px;
  }
  .medium-mtop25 {
    margin-top: 25px;
  }
  .medium-mtop30 {
    margin-top: 30px;
  }
  .medium-mtop35 {
    margin-top: 35px;
  }
  .medium-mtop40 {
    margin-top: 40px;
  }
  .medium-mtop45 {
    margin-top: 45px;
  }
  .medium-mtop50 {
    margin-top: 50px;
  }
  .medium-mtop55 {
    margin-top: 55px;
  }
  .medium-mtop60 {
    margin-top: 60px;
  }
  .medium-mtop65 {
    margin-top: 65px;
  }
  .medium-mtop70 {
    margin-top: 70px;
  }
  .medium-mtop75 {
    margin-top: 75px;
  }
  .medium-mtop80 {
    margin-top: 80px;
  }
  .medium-mtop85 {
    margin-top: 85px;
  }
  .medium-mtop90 {
    margin-top: 90px;
  }
  .medium-mtop95 {
    margin-top: 95px;
  }
  .medium-mtop100 {
    margin-top: 100px;
  }
  .medium-mtop105 {
    margin-top: 105px;
  }
  .medium-mtop110 {
    margin-top: 110px;
  }
  .medium-mtop115 {
    margin-top: 115px;
  }
  .medium-mtop120 {
    margin-top: 120px;
  }
  .medium-mtop125 {
    margin-top: 125px;
  }
  .medium-mtop130 {
    margin-top: 130px;
  }
  .medium-mtop135 {
    margin-top: 135px;
  }
  .medium-mtop140 {
    margin-top: 140px;
  }
  .medium-mtop145 {
    margin-top: 145px;
  }
  .medium-mtop150 {
    margin-top: 150px;
  }
  .medium-mtop155 {
    margin-top: 155px;
  }
  .medium-mtop160 {
    margin-top: 160px;
  }
  .medium-mtop165 {
    margin-top: 165px;
  }
  .medium-mtop170 {
    margin-top: 170px;
  }
  .medium-mtop175 {
    margin-top: 175px;
  }
  .medium-mtop180 {
    margin-top: 180px;
  }
  .medium-mtop185 {
    margin-top: 185px;
  }
  .medium-mtop190 {
    margin-top: 190px;
  }
  .medium-mtop195 {
    margin-top: 195px;
  }
  .medium-mtop200 {
    margin-top: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-mtop0 {
    margin-top: 0px;
  }
  .large-mtop5 {
    margin-top: 5px;
  }
  .large-mtop10 {
    margin-top: 10px;
  }
  .large-mtop15 {
    margin-top: 15px;
  }
  .large-mtop20 {
    margin-top: 20px;
  }
  .large-mtop25 {
    margin-top: 25px;
  }
  .large-mtop30 {
    margin-top: 30px;
  }
  .large-mtop35 {
    margin-top: 35px;
  }
  .large-mtop40 {
    margin-top: 40px;
  }
  .large-mtop45 {
    margin-top: 45px;
  }
  .large-mtop50 {
    margin-top: 50px;
  }
  .large-mtop55 {
    margin-top: 55px;
  }
  .large-mtop60 {
    margin-top: 60px;
  }
  .large-mtop65 {
    margin-top: 65px;
  }
  .large-mtop70 {
    margin-top: 70px;
  }
  .large-mtop75 {
    margin-top: 75px;
  }
  .large-mtop80 {
    margin-top: 80px;
  }
  .large-mtop85 {
    margin-top: 85px;
  }
  .large-mtop90 {
    margin-top: 90px;
  }
  .large-mtop95 {
    margin-top: 95px;
  }
  .large-mtop100 {
    margin-top: 100px;
  }
  .large-mtop105 {
    margin-top: 105px;
  }
  .large-mtop110 {
    margin-top: 110px;
  }
  .large-mtop115 {
    margin-top: 115px;
  }
  .large-mtop120 {
    margin-top: 120px;
  }
  .large-mtop125 {
    margin-top: 125px;
  }
  .large-mtop130 {
    margin-top: 130px;
  }
  .large-mtop135 {
    margin-top: 135px;
  }
  .large-mtop140 {
    margin-top: 140px;
  }
  .large-mtop145 {
    margin-top: 145px;
  }
  .large-mtop150 {
    margin-top: 150px;
  }
  .large-mtop155 {
    margin-top: 155px;
  }
  .large-mtop160 {
    margin-top: 160px;
  }
  .large-mtop165 {
    margin-top: 165px;
  }
  .large-mtop170 {
    margin-top: 170px;
  }
  .large-mtop175 {
    margin-top: 175px;
  }
  .large-mtop180 {
    margin-top: 180px;
  }
  .large-mtop185 {
    margin-top: 185px;
  }
  .large-mtop190 {
    margin-top: 190px;
  }
  .large-mtop195 {
    margin-top: 195px;
  }
  .large-mtop200 {
    margin-top: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-mtop0 {
    margin-top: 0px;
  }
  .xxlarge-mtop5 {
    margin-top: 5px;
  }
  .xxlarge-mtop10 {
    margin-top: 10px;
  }
  .xxlarge-mtop15 {
    margin-top: 15px;
  }
  .xxlarge-mtop20 {
    margin-top: 20px;
  }
  .xxlarge-mtop25 {
    margin-top: 25px;
  }
  .xxlarge-mtop30 {
    margin-top: 30px;
  }
  .xxlarge-mtop35 {
    margin-top: 35px;
  }
  .xxlarge-mtop40 {
    margin-top: 40px;
  }
  .xxlarge-mtop45 {
    margin-top: 45px;
  }
  .xxlarge-mtop50 {
    margin-top: 50px;
  }
  .xxlarge-mtop55 {
    margin-top: 55px;
  }
  .xxlarge-mtop60 {
    margin-top: 60px;
  }
  .xxlarge-mtop65 {
    margin-top: 65px;
  }
  .xxlarge-mtop70 {
    margin-top: 70px;
  }
  .xxlarge-mtop75 {
    margin-top: 75px;
  }
  .xxlarge-mtop80 {
    margin-top: 80px;
  }
  .xxlarge-mtop85 {
    margin-top: 85px;
  }
  .xxlarge-mtop90 {
    margin-top: 90px;
  }
  .xxlarge-mtop95 {
    margin-top: 95px;
  }
  .xxlarge-mtop100 {
    margin-top: 100px;
  }
  .xxlarge-mtop105 {
    margin-top: 105px;
  }
  .xxlarge-mtop110 {
    margin-top: 110px;
  }
  .xxlarge-mtop115 {
    margin-top: 115px;
  }
  .xxlarge-mtop120 {
    margin-top: 120px;
  }
  .xxlarge-mtop125 {
    margin-top: 125px;
  }
  .xxlarge-mtop130 {
    margin-top: 130px;
  }
  .xxlarge-mtop135 {
    margin-top: 135px;
  }
  .xxlarge-mtop140 {
    margin-top: 140px;
  }
  .xxlarge-mtop145 {
    margin-top: 145px;
  }
  .xxlarge-mtop150 {
    margin-top: 150px;
  }
  .xxlarge-mtop155 {
    margin-top: 155px;
  }
  .xxlarge-mtop160 {
    margin-top: 160px;
  }
  .xxlarge-mtop165 {
    margin-top: 165px;
  }
  .xxlarge-mtop170 {
    margin-top: 170px;
  }
  .xxlarge-mtop175 {
    margin-top: 175px;
  }
  .xxlarge-mtop180 {
    margin-top: 180px;
  }
  .xxlarge-mtop185 {
    margin-top: 185px;
  }
  .xxlarge-mtop190 {
    margin-top: 190px;
  }
  .xxlarge-mtop195 {
    margin-top: 195px;
  }
  .xxlarge-mtop200 {
    margin-top: 200px;
  }
}
/*
	MARGIN BOTTOM
	* MOVIL
	* TABLET
	* DESKTOP
*/
.mbottom0 {
  margin-bottom: 0px;
}

.mbottom5 {
  margin-bottom: 5px;
}

.mbottom10 {
  margin-bottom: 10px;
}

.mbottom15 {
  margin-bottom: 15px;
}

.mbottom20 {
  margin-bottom: 20px;
}

.mbottom25 {
  margin-bottom: 25px;
}

.mbottom30 {
  margin-bottom: 30px;
}

.mbottom35 {
  margin-bottom: 35px;
}

.mbottom40 {
  margin-bottom: 40px;
}

.mbottom45 {
  margin-bottom: 45px;
}

.mbottom50 {
  margin-bottom: 50px;
}

.mbottom55 {
  margin-bottom: 55px;
}

.mbottom60 {
  margin-bottom: 60px;
}

.mbottom65 {
  margin-bottom: 65px;
}

.mbottom70 {
  margin-bottom: 70px;
}

.mbottom75 {
  margin-bottom: 75px;
}

.mbottom80 {
  margin-bottom: 80px;
}

.mbottom85 {
  margin-bottom: 85px;
}

.mbottom90 {
  margin-bottom: 90px;
}

.mbottom95 {
  margin-bottom: 95px;
}

.mbottom100 {
  margin-bottom: 100px;
}

.mbottom105 {
  margin-bottom: 105px;
}

.mbottom110 {
  margin-bottom: 110px;
}

.mbottom115 {
  margin-bottom: 115px;
}

.mbottom120 {
  margin-bottom: 120px;
}

.mbottom125 {
  margin-bottom: 125px;
}

.mbottom130 {
  margin-bottom: 130px;
}

.mbottom135 {
  margin-bottom: 135px;
}

.mbottom140 {
  margin-bottom: 140px;
}

.mbottom145 {
  margin-bottom: 145px;
}

.mbottom150 {
  margin-bottom: 150px;
}

.mbottom155 {
  margin-bottom: 155px;
}

.mbottom160 {
  margin-bottom: 160px;
}

.mbottom165 {
  margin-bottom: 165px;
}

.mbottom170 {
  margin-bottom: 170px;
}

.mbottom175 {
  margin-bottom: 175px;
}

.mbottom180 {
  margin-bottom: 180px;
}

.mbottom185 {
  margin-bottom: 185px;
}

.mbottom190 {
  margin-bottom: 190px;
}

.mbottom195 {
  margin-bottom: 195px;
}

.mbottom200 {
  margin-bottom: 200px;
}

@media screen and (max-width: 640px) {
  .small-mbottom0 {
    margin-bottom: 0px;
  }
  .small-mbottom5 {
    margin-bottom: 5px;
  }
  .small-mbottom10 {
    margin-bottom: 10px;
  }
  .small-mbottom15 {
    margin-bottom: 15px;
  }
  .small-mbottom20 {
    margin-bottom: 20px;
  }
  .small-mbottom25 {
    margin-bottom: 25px;
  }
  .small-mbottom30 {
    margin-bottom: 30px;
  }
  .small-mbottom35 {
    margin-bottom: 35px;
  }
  .small-mbottom40 {
    margin-bottom: 40px;
  }
  .small-mbottom45 {
    margin-bottom: 45px;
  }
  .small-mbottom50 {
    margin-bottom: 50px;
  }
  .small-mbottom55 {
    margin-bottom: 55px;
  }
  .small-mbottom60 {
    margin-bottom: 60px;
  }
  .small-mbottom65 {
    margin-bottom: 65px;
  }
  .small-mbottom70 {
    margin-bottom: 70px;
  }
  .small-mbottom75 {
    margin-bottom: 75px;
  }
  .small-mbottom80 {
    margin-bottom: 80px;
  }
  .small-mbottom85 {
    margin-bottom: 85px;
  }
  .small-mbottom90 {
    margin-bottom: 90px;
  }
  .small-mbottom95 {
    margin-bottom: 95px;
  }
  .small-mbottom100 {
    margin-bottom: 100px;
  }
  .small-mbottom105 {
    margin-bottom: 105px;
  }
  .small-mbottom110 {
    margin-bottom: 110px;
  }
  .small-mbottom115 {
    margin-bottom: 115px;
  }
  .small-mbottom120 {
    margin-bottom: 120px;
  }
  .small-mbottom125 {
    margin-bottom: 125px;
  }
  .small-mbottom130 {
    margin-bottom: 130px;
  }
  .small-mbottom135 {
    margin-bottom: 135px;
  }
  .small-mbottom140 {
    margin-bottom: 140px;
  }
  .small-mbottom145 {
    margin-bottom: 145px;
  }
  .small-mbottom150 {
    margin-bottom: 150px;
  }
  .small-mbottom155 {
    margin-bottom: 155px;
  }
  .small-mbottom160 {
    margin-bottom: 160px;
  }
  .small-mbottom165 {
    margin-bottom: 165px;
  }
  .small-mbottom170 {
    margin-bottom: 170px;
  }
  .small-mbottom175 {
    margin-bottom: 175px;
  }
  .small-mbottom180 {
    margin-bottom: 180px;
  }
  .small-mbottom185 {
    margin-bottom: 185px;
  }
  .small-mbottom190 {
    margin-bottom: 190px;
  }
  .small-mbottom195 {
    margin-bottom: 195px;
  }
  .small-mbottom200 {
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-mbottom0 {
    margin-bottom: 0px;
  }
  .small-tablet-mbottom5 {
    margin-bottom: 5px;
  }
  .small-tablet-mbottom10 {
    margin-bottom: 10px;
  }
  .small-tablet-mbottom15 {
    margin-bottom: 15px;
  }
  .small-tablet-mbottom20 {
    margin-bottom: 20px;
  }
  .small-tablet-mbottom25 {
    margin-bottom: 25px;
  }
  .small-tablet-mbottom30 {
    margin-bottom: 30px;
  }
  .small-tablet-mbottom35 {
    margin-bottom: 35px;
  }
  .small-tablet-mbottom40 {
    margin-bottom: 40px;
  }
  .small-tablet-mbottom45 {
    margin-bottom: 45px;
  }
  .small-tablet-mbottom50 {
    margin-bottom: 50px;
  }
  .small-tablet-mbottom55 {
    margin-bottom: 55px;
  }
  .small-tablet-mbottom60 {
    margin-bottom: 60px;
  }
  .small-tablet-mbottom65 {
    margin-bottom: 65px;
  }
  .small-tablet-mbottom70 {
    margin-bottom: 70px;
  }
  .small-tablet-mbottom75 {
    margin-bottom: 75px;
  }
  .small-tablet-mbottom80 {
    margin-bottom: 80px;
  }
  .small-tablet-mbottom85 {
    margin-bottom: 85px;
  }
  .small-tablet-mbottom90 {
    margin-bottom: 90px;
  }
  .small-tablet-mbottom95 {
    margin-bottom: 95px;
  }
  .small-tablet-mbottom100 {
    margin-bottom: 100px;
  }
  .small-tablet-mbottom105 {
    margin-bottom: 105px;
  }
  .small-tablet-mbottom110 {
    margin-bottom: 110px;
  }
  .small-tablet-mbottom115 {
    margin-bottom: 115px;
  }
  .small-tablet-mbottom120 {
    margin-bottom: 120px;
  }
  .small-tablet-mbottom125 {
    margin-bottom: 125px;
  }
  .small-tablet-mbottom130 {
    margin-bottom: 130px;
  }
  .small-tablet-mbottom135 {
    margin-bottom: 135px;
  }
  .small-tablet-mbottom140 {
    margin-bottom: 140px;
  }
  .small-tablet-mbottom145 {
    margin-bottom: 145px;
  }
  .small-tablet-mbottom150 {
    margin-bottom: 150px;
  }
  .small-tablet-mbottom155 {
    margin-bottom: 155px;
  }
  .small-tablet-mbottom160 {
    margin-bottom: 160px;
  }
  .small-tablet-mbottom165 {
    margin-bottom: 165px;
  }
  .small-tablet-mbottom170 {
    margin-bottom: 170px;
  }
  .small-tablet-mbottom175 {
    margin-bottom: 175px;
  }
  .small-tablet-mbottom180 {
    margin-bottom: 180px;
  }
  .small-tablet-mbottom185 {
    margin-bottom: 185px;
  }
  .small-tablet-mbottom190 {
    margin-bottom: 190px;
  }
  .small-tablet-mbottom195 {
    margin-bottom: 195px;
  }
  .small-tablet-mbottom200 {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-mbottom0 {
    margin-bottom: 0px;
  }
  .medium-mbottom5 {
    margin-bottom: 5px;
  }
  .medium-mbottom10 {
    margin-bottom: 10px;
  }
  .medium-mbottom15 {
    margin-bottom: 15px;
  }
  .medium-mbottom20 {
    margin-bottom: 20px;
  }
  .medium-mbottom25 {
    margin-bottom: 25px;
  }
  .medium-mbottom30 {
    margin-bottom: 30px;
  }
  .medium-mbottom35 {
    margin-bottom: 35px;
  }
  .medium-mbottom40 {
    margin-bottom: 40px;
  }
  .medium-mbottom45 {
    margin-bottom: 45px;
  }
  .medium-mbottom50 {
    margin-bottom: 50px;
  }
  .medium-mbottom55 {
    margin-bottom: 55px;
  }
  .medium-mbottom60 {
    margin-bottom: 60px;
  }
  .medium-mbottom65 {
    margin-bottom: 65px;
  }
  .medium-mbottom70 {
    margin-bottom: 70px;
  }
  .medium-mbottom75 {
    margin-bottom: 75px;
  }
  .medium-mbottom80 {
    margin-bottom: 80px;
  }
  .medium-mbottom85 {
    margin-bottom: 85px;
  }
  .medium-mbottom90 {
    margin-bottom: 90px;
  }
  .medium-mbottom95 {
    margin-bottom: 95px;
  }
  .medium-mbottom100 {
    margin-bottom: 100px;
  }
  .medium-mbottom105 {
    margin-bottom: 105px;
  }
  .medium-mbottom110 {
    margin-bottom: 110px;
  }
  .medium-mbottom115 {
    margin-bottom: 115px;
  }
  .medium-mbottom120 {
    margin-bottom: 120px;
  }
  .medium-mbottom125 {
    margin-bottom: 125px;
  }
  .medium-mbottom130 {
    margin-bottom: 130px;
  }
  .medium-mbottom135 {
    margin-bottom: 135px;
  }
  .medium-mbottom140 {
    margin-bottom: 140px;
  }
  .medium-mbottom145 {
    margin-bottom: 145px;
  }
  .medium-mbottom150 {
    margin-bottom: 150px;
  }
  .medium-mbottom155 {
    margin-bottom: 155px;
  }
  .medium-mbottom160 {
    margin-bottom: 160px;
  }
  .medium-mbottom165 {
    margin-bottom: 165px;
  }
  .medium-mbottom170 {
    margin-bottom: 170px;
  }
  .medium-mbottom175 {
    margin-bottom: 175px;
  }
  .medium-mbottom180 {
    margin-bottom: 180px;
  }
  .medium-mbottom185 {
    margin-bottom: 185px;
  }
  .medium-mbottom190 {
    margin-bottom: 190px;
  }
  .medium-mbottom195 {
    margin-bottom: 195px;
  }
  .medium-mbottom200 {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-mbottom0 {
    margin-bottom: 0px;
  }
  .large-mbottom5 {
    margin-bottom: 5px;
  }
  .large-mbottom10 {
    margin-bottom: 10px;
  }
  .large-mbottom15 {
    margin-bottom: 15px;
  }
  .large-mbottom20 {
    margin-bottom: 20px;
  }
  .large-mbottom25 {
    margin-bottom: 25px;
  }
  .large-mbottom30 {
    margin-bottom: 30px;
  }
  .large-mbottom35 {
    margin-bottom: 35px;
  }
  .large-mbottom40 {
    margin-bottom: 40px;
  }
  .large-mbottom45 {
    margin-bottom: 45px;
  }
  .large-mbottom50 {
    margin-bottom: 50px;
  }
  .large-mbottom55 {
    margin-bottom: 55px;
  }
  .large-mbottom60 {
    margin-bottom: 60px;
  }
  .large-mbottom65 {
    margin-bottom: 65px;
  }
  .large-mbottom70 {
    margin-bottom: 70px;
  }
  .large-mbottom75 {
    margin-bottom: 75px;
  }
  .large-mbottom80 {
    margin-bottom: 80px;
  }
  .large-mbottom85 {
    margin-bottom: 85px;
  }
  .large-mbottom90 {
    margin-bottom: 90px;
  }
  .large-mbottom95 {
    margin-bottom: 95px;
  }
  .large-mbottom100 {
    margin-bottom: 100px;
  }
  .large-mbottom105 {
    margin-bottom: 105px;
  }
  .large-mbottom110 {
    margin-bottom: 110px;
  }
  .large-mbottom115 {
    margin-bottom: 115px;
  }
  .large-mbottom120 {
    margin-bottom: 120px;
  }
  .large-mbottom125 {
    margin-bottom: 125px;
  }
  .large-mbottom130 {
    margin-bottom: 130px;
  }
  .large-mbottom135 {
    margin-bottom: 135px;
  }
  .large-mbottom140 {
    margin-bottom: 140px;
  }
  .large-mbottom145 {
    margin-bottom: 145px;
  }
  .large-mbottom150 {
    margin-bottom: 150px;
  }
  .large-mbottom155 {
    margin-bottom: 155px;
  }
  .large-mbottom160 {
    margin-bottom: 160px;
  }
  .large-mbottom165 {
    margin-bottom: 165px;
  }
  .large-mbottom170 {
    margin-bottom: 170px;
  }
  .large-mbottom175 {
    margin-bottom: 175px;
  }
  .large-mbottom180 {
    margin-bottom: 180px;
  }
  .large-mbottom185 {
    margin-bottom: 185px;
  }
  .large-mbottom190 {
    margin-bottom: 190px;
  }
  .large-mbottom195 {
    margin-bottom: 195px;
  }
  .large-mbottom200 {
    margin-bottom: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-mbottom0 {
    margin-bottom: 0px;
  }
  .xxlarge-mbottom5 {
    margin-bottom: 5px;
  }
  .xxlarge-mbottom10 {
    margin-bottom: 10px;
  }
  .xxlarge-mbottom15 {
    margin-bottom: 15px;
  }
  .xxlarge-mbottom20 {
    margin-bottom: 20px;
  }
  .xxlarge-mbottom25 {
    margin-bottom: 25px;
  }
  .xxlarge-mbottom30 {
    margin-bottom: 30px;
  }
  .xxlarge-mbottom35 {
    margin-bottom: 35px;
  }
  .xxlarge-mbottom40 {
    margin-bottom: 40px;
  }
  .xxlarge-mbottom45 {
    margin-bottom: 45px;
  }
  .xxlarge-mbottom50 {
    margin-bottom: 50px;
  }
  .xxlarge-mbottom55 {
    margin-bottom: 55px;
  }
  .xxlarge-mbottom60 {
    margin-bottom: 60px;
  }
  .xxlarge-mbottom65 {
    margin-bottom: 65px;
  }
  .xxlarge-mbottom70 {
    margin-bottom: 70px;
  }
  .xxlarge-mbottom75 {
    margin-bottom: 75px;
  }
  .xxlarge-mbottom80 {
    margin-bottom: 80px;
  }
  .xxlarge-mbottom85 {
    margin-bottom: 85px;
  }
  .xxlarge-mbottom90 {
    margin-bottom: 90px;
  }
  .xxlarge-mbottom95 {
    margin-bottom: 95px;
  }
  .xxlarge-mbottom100 {
    margin-bottom: 100px;
  }
  .xxlarge-mbottom105 {
    margin-bottom: 105px;
  }
  .xxlarge-mbottom110 {
    margin-bottom: 110px;
  }
  .xxlarge-mbottom115 {
    margin-bottom: 115px;
  }
  .xxlarge-mbottom120 {
    margin-bottom: 120px;
  }
  .xxlarge-mbottom125 {
    margin-bottom: 125px;
  }
  .xxlarge-mbottom130 {
    margin-bottom: 130px;
  }
  .xxlarge-mbottom135 {
    margin-bottom: 135px;
  }
  .xxlarge-mbottom140 {
    margin-bottom: 140px;
  }
  .xxlarge-mbottom145 {
    margin-bottom: 145px;
  }
  .xxlarge-mbottom150 {
    margin-bottom: 150px;
  }
  .xxlarge-mbottom155 {
    margin-bottom: 155px;
  }
  .xxlarge-mbottom160 {
    margin-bottom: 160px;
  }
  .xxlarge-mbottom165 {
    margin-bottom: 165px;
  }
  .xxlarge-mbottom170 {
    margin-bottom: 170px;
  }
  .xxlarge-mbottom175 {
    margin-bottom: 175px;
  }
  .xxlarge-mbottom180 {
    margin-bottom: 180px;
  }
  .xxlarge-mbottom185 {
    margin-bottom: 185px;
  }
  .xxlarge-mbottom190 {
    margin-bottom: 190px;
  }
  .xxlarge-mbottom195 {
    margin-bottom: 195px;
  }
  .xxlarge-mbottom200 {
    margin-bottom: 200px;
  }
}
/*
	MARGIN LEFT
	* MOVIL
	* TABLET
	* DESKTOP
*/
.mleft0 {
  margin-left: 0px;
}

.mleft5 {
  margin-left: 5px;
}

.mleft10 {
  margin-left: 10px;
}

.mleft15 {
  margin-left: 15px;
}

.mleft20 {
  margin-left: 20px;
}

.mleft25 {
  margin-left: 25px;
}

.mleft30 {
  margin-left: 30px;
}

.mleft35 {
  margin-left: 35px;
}

.mleft40 {
  margin-left: 40px;
}

.mleft45 {
  margin-left: 45px;
}

.mleft50 {
  margin-left: 50px;
}

.mleft55 {
  margin-left: 55px;
}

.mleft60 {
  margin-left: 60px;
}

.mleft65 {
  margin-left: 65px;
}

.mleft70 {
  margin-left: 70px;
}

.mleft75 {
  margin-left: 75px;
}

.mleft80 {
  margin-left: 80px;
}

.mleft85 {
  margin-left: 85px;
}

.mleft90 {
  margin-left: 90px;
}

.mleft95 {
  margin-left: 95px;
}

.mleft100 {
  margin-left: 100px;
}

.mleft105 {
  margin-left: 105px;
}

.mleft110 {
  margin-left: 110px;
}

.mleft115 {
  margin-left: 115px;
}

.mleft120 {
  margin-left: 120px;
}

.mleft125 {
  margin-left: 125px;
}

.mleft130 {
  margin-left: 130px;
}

.mleft135 {
  margin-left: 135px;
}

.mleft140 {
  margin-left: 140px;
}

.mleft145 {
  margin-left: 145px;
}

.mleft150 {
  margin-left: 150px;
}

.mleft155 {
  margin-left: 155px;
}

.mleft160 {
  margin-left: 160px;
}

.mleft165 {
  margin-left: 165px;
}

.mleft170 {
  margin-left: 170px;
}

.mleft175 {
  margin-left: 175px;
}

.mleft180 {
  margin-left: 180px;
}

.mleft185 {
  margin-left: 185px;
}

.mleft190 {
  margin-left: 190px;
}

.mleft195 {
  margin-left: 195px;
}

.mleft200 {
  margin-left: 200px;
}

@media screen and (max-width: 640px) {
  .small-mleft0 {
    margin-left: 0px;
  }
  .small-mleft5 {
    margin-left: 5px;
  }
  .small-mleft10 {
    margin-left: 10px;
  }
  .small-mleft15 {
    margin-left: 15px;
  }
  .small-mleft20 {
    margin-left: 20px;
  }
  .small-mleft25 {
    margin-left: 25px;
  }
  .small-mleft30 {
    margin-left: 30px;
  }
  .small-mleft35 {
    margin-left: 35px;
  }
  .small-mleft40 {
    margin-left: 40px;
  }
  .small-mleft45 {
    margin-left: 45px;
  }
  .small-mleft50 {
    margin-left: 50px;
  }
  .small-mleft55 {
    margin-left: 55px;
  }
  .small-mleft60 {
    margin-left: 60px;
  }
  .small-mleft65 {
    margin-left: 65px;
  }
  .small-mleft70 {
    margin-left: 70px;
  }
  .small-mleft75 {
    margin-left: 75px;
  }
  .small-mleft80 {
    margin-left: 80px;
  }
  .small-mleft85 {
    margin-left: 85px;
  }
  .small-mleft90 {
    margin-left: 90px;
  }
  .small-mleft95 {
    margin-left: 95px;
  }
  .small-mleft100 {
    margin-left: 100px;
  }
  .small-mleft105 {
    margin-left: 105px;
  }
  .small-mleft110 {
    margin-left: 110px;
  }
  .small-mleft115 {
    margin-left: 115px;
  }
  .small-mleft120 {
    margin-left: 120px;
  }
  .small-mleft125 {
    margin-left: 125px;
  }
  .small-mleft130 {
    margin-left: 130px;
  }
  .small-mleft135 {
    margin-left: 135px;
  }
  .small-mleft140 {
    margin-left: 140px;
  }
  .small-mleft145 {
    margin-left: 145px;
  }
  .small-mleft150 {
    margin-left: 150px;
  }
  .small-mleft155 {
    margin-left: 155px;
  }
  .small-mleft160 {
    margin-left: 160px;
  }
  .small-mleft165 {
    margin-left: 165px;
  }
  .small-mleft170 {
    margin-left: 170px;
  }
  .small-mleft175 {
    margin-left: 175px;
  }
  .small-mleft180 {
    margin-left: 180px;
  }
  .small-mleft185 {
    margin-left: 185px;
  }
  .small-mleft190 {
    margin-left: 190px;
  }
  .small-mleft195 {
    margin-left: 195px;
  }
  .small-mleft200 {
    margin-left: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-mleft0 {
    margin-left: 0px;
  }
  .small-tablet-mleft5 {
    margin-left: 5px;
  }
  .small-tablet-mleft10 {
    margin-left: 10px;
  }
  .small-tablet-mleft15 {
    margin-left: 15px;
  }
  .small-tablet-mleft20 {
    margin-left: 20px;
  }
  .small-tablet-mleft25 {
    margin-left: 25px;
  }
  .small-tablet-mleft30 {
    margin-left: 30px;
  }
  .small-tablet-mleft35 {
    margin-left: 35px;
  }
  .small-tablet-mleft40 {
    margin-left: 40px;
  }
  .small-tablet-mleft45 {
    margin-left: 45px;
  }
  .small-tablet-mleft50 {
    margin-left: 50px;
  }
  .small-tablet-mleft55 {
    margin-left: 55px;
  }
  .small-tablet-mleft60 {
    margin-left: 60px;
  }
  .small-tablet-mleft65 {
    margin-left: 65px;
  }
  .small-tablet-mleft70 {
    margin-left: 70px;
  }
  .small-tablet-mleft75 {
    margin-left: 75px;
  }
  .small-tablet-mleft80 {
    margin-left: 80px;
  }
  .small-tablet-mleft85 {
    margin-left: 85px;
  }
  .small-tablet-mleft90 {
    margin-left: 90px;
  }
  .small-tablet-mleft95 {
    margin-left: 95px;
  }
  .small-tablet-mleft100 {
    margin-left: 100px;
  }
  .small-tablet-mleft105 {
    margin-left: 105px;
  }
  .small-tablet-mleft110 {
    margin-left: 110px;
  }
  .small-tablet-mleft115 {
    margin-left: 115px;
  }
  .small-tablet-mleft120 {
    margin-left: 120px;
  }
  .small-tablet-mleft125 {
    margin-left: 125px;
  }
  .small-tablet-mleft130 {
    margin-left: 130px;
  }
  .small-tablet-mleft135 {
    margin-left: 135px;
  }
  .small-tablet-mleft140 {
    margin-left: 140px;
  }
  .small-tablet-mleft145 {
    margin-left: 145px;
  }
  .small-tablet-mleft150 {
    margin-left: 150px;
  }
  .small-tablet-mleft155 {
    margin-left: 155px;
  }
  .small-tablet-mleft160 {
    margin-left: 160px;
  }
  .small-tablet-mleft165 {
    margin-left: 165px;
  }
  .small-tablet-mleft170 {
    margin-left: 170px;
  }
  .small-tablet-mleft175 {
    margin-left: 175px;
  }
  .small-tablet-mleft180 {
    margin-left: 180px;
  }
  .small-tablet-mleft185 {
    margin-left: 185px;
  }
  .small-tablet-mleft190 {
    margin-left: 190px;
  }
  .small-tablet-mleft195 {
    margin-left: 195px;
  }
  .small-tablet-mleft200 {
    margin-left: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-mleft0 {
    margin-left: 0px;
  }
  .medium-mleft5 {
    margin-left: 5px;
  }
  .medium-mleft10 {
    margin-left: 10px;
  }
  .medium-mleft15 {
    margin-left: 15px;
  }
  .medium-mleft20 {
    margin-left: 20px;
  }
  .medium-mleft25 {
    margin-left: 25px;
  }
  .medium-mleft30 {
    margin-left: 30px;
  }
  .medium-mleft35 {
    margin-left: 35px;
  }
  .medium-mleft40 {
    margin-left: 40px;
  }
  .medium-mleft45 {
    margin-left: 45px;
  }
  .medium-mleft50 {
    margin-left: 50px;
  }
  .medium-mleft55 {
    margin-left: 55px;
  }
  .medium-mleft60 {
    margin-left: 60px;
  }
  .medium-mleft65 {
    margin-left: 65px;
  }
  .medium-mleft70 {
    margin-left: 70px;
  }
  .medium-mleft75 {
    margin-left: 75px;
  }
  .medium-mleft80 {
    margin-left: 80px;
  }
  .medium-mleft85 {
    margin-left: 85px;
  }
  .medium-mleft90 {
    margin-left: 90px;
  }
  .medium-mleft95 {
    margin-left: 95px;
  }
  .medium-mleft100 {
    margin-left: 100px;
  }
  .medium-mleft105 {
    margin-left: 105px;
  }
  .medium-mleft110 {
    margin-left: 110px;
  }
  .medium-mleft115 {
    margin-left: 115px;
  }
  .medium-mleft120 {
    margin-left: 120px;
  }
  .medium-mleft125 {
    margin-left: 125px;
  }
  .medium-mleft130 {
    margin-left: 130px;
  }
  .medium-mleft135 {
    margin-left: 135px;
  }
  .medium-mleft140 {
    margin-left: 140px;
  }
  .medium-mleft145 {
    margin-left: 145px;
  }
  .medium-mleft150 {
    margin-left: 150px;
  }
  .medium-mleft155 {
    margin-left: 155px;
  }
  .medium-mleft160 {
    margin-left: 160px;
  }
  .medium-mleft165 {
    margin-left: 165px;
  }
  .medium-mleft170 {
    margin-left: 170px;
  }
  .medium-mleft175 {
    margin-left: 175px;
  }
  .medium-mleft180 {
    margin-left: 180px;
  }
  .medium-mleft185 {
    margin-left: 185px;
  }
  .medium-mleft190 {
    margin-left: 190px;
  }
  .medium-mleft195 {
    margin-left: 195px;
  }
  .medium-mleft200 {
    margin-left: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-mleft0 {
    margin-left: 0px;
  }
  .large-mleft5 {
    margin-left: 5px;
  }
  .large-mleft10 {
    margin-left: 10px;
  }
  .large-mleft15 {
    margin-left: 15px;
  }
  .large-mleft20 {
    margin-left: 20px;
  }
  .large-mleft25 {
    margin-left: 25px;
  }
  .large-mleft30 {
    margin-left: 30px;
  }
  .large-mleft35 {
    margin-left: 35px;
  }
  .large-mleft40 {
    margin-left: 40px;
  }
  .large-mleft45 {
    margin-left: 45px;
  }
  .large-mleft50 {
    margin-left: 50px;
  }
  .large-mleft55 {
    margin-left: 55px;
  }
  .large-mleft60 {
    margin-left: 60px;
  }
  .large-mleft65 {
    margin-left: 65px;
  }
  .large-mleft70 {
    margin-left: 70px;
  }
  .large-mleft75 {
    margin-left: 75px;
  }
  .large-mleft80 {
    margin-left: 80px;
  }
  .large-mleft85 {
    margin-left: 85px;
  }
  .large-mleft90 {
    margin-left: 90px;
  }
  .large-mleft95 {
    margin-left: 95px;
  }
  .large-mleft100 {
    margin-left: 100px;
  }
  .large-mleft105 {
    margin-left: 105px;
  }
  .large-mleft110 {
    margin-left: 110px;
  }
  .large-mleft115 {
    margin-left: 115px;
  }
  .large-mleft120 {
    margin-left: 120px;
  }
  .large-mleft125 {
    margin-left: 125px;
  }
  .large-mleft130 {
    margin-left: 130px;
  }
  .large-mleft135 {
    margin-left: 135px;
  }
  .large-mleft140 {
    margin-left: 140px;
  }
  .large-mleft145 {
    margin-left: 145px;
  }
  .large-mleft150 {
    margin-left: 150px;
  }
  .large-mleft155 {
    margin-left: 155px;
  }
  .large-mleft160 {
    margin-left: 160px;
  }
  .large-mleft165 {
    margin-left: 165px;
  }
  .large-mleft170 {
    margin-left: 170px;
  }
  .large-mleft175 {
    margin-left: 175px;
  }
  .large-mleft180 {
    margin-left: 180px;
  }
  .large-mleft185 {
    margin-left: 185px;
  }
  .large-mleft190 {
    margin-left: 190px;
  }
  .large-mleft195 {
    margin-left: 195px;
  }
  .large-mleft200 {
    margin-left: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-mleft0 {
    margin-left: 0px;
  }
  .xxlarge-mleft5 {
    margin-left: 5px;
  }
  .xxlarge-mleft10 {
    margin-left: 10px;
  }
  .xxlarge-mleft15 {
    margin-left: 15px;
  }
  .xxlarge-mleft20 {
    margin-left: 20px;
  }
  .xxlarge-mleft25 {
    margin-left: 25px;
  }
  .xxlarge-mleft30 {
    margin-left: 30px;
  }
  .xxlarge-mleft35 {
    margin-left: 35px;
  }
  .xxlarge-mleft40 {
    margin-left: 40px;
  }
  .xxlarge-mleft45 {
    margin-left: 45px;
  }
  .xxlarge-mleft50 {
    margin-left: 50px;
  }
  .xxlarge-mleft55 {
    margin-left: 55px;
  }
  .xxlarge-mleft60 {
    margin-left: 60px;
  }
  .xxlarge-mleft65 {
    margin-left: 65px;
  }
  .xxlarge-mleft70 {
    margin-left: 70px;
  }
  .xxlarge-mleft75 {
    margin-left: 75px;
  }
  .xxlarge-mleft80 {
    margin-left: 80px;
  }
  .xxlarge-mleft85 {
    margin-left: 85px;
  }
  .xxlarge-mleft90 {
    margin-left: 90px;
  }
  .xxlarge-mleft95 {
    margin-left: 95px;
  }
  .xxlarge-mleft100 {
    margin-left: 100px;
  }
  .xxlarge-mleft105 {
    margin-left: 105px;
  }
  .xxlarge-mleft110 {
    margin-left: 110px;
  }
  .xxlarge-mleft115 {
    margin-left: 115px;
  }
  .xxlarge-mleft120 {
    margin-left: 120px;
  }
  .xxlarge-mleft125 {
    margin-left: 125px;
  }
  .xxlarge-mleft130 {
    margin-left: 130px;
  }
  .xxlarge-mleft135 {
    margin-left: 135px;
  }
  .xxlarge-mleft140 {
    margin-left: 140px;
  }
  .xxlarge-mleft145 {
    margin-left: 145px;
  }
  .xxlarge-mleft150 {
    margin-left: 150px;
  }
  .xxlarge-mleft155 {
    margin-left: 155px;
  }
  .xxlarge-mleft160 {
    margin-left: 160px;
  }
  .xxlarge-mleft165 {
    margin-left: 165px;
  }
  .xxlarge-mleft170 {
    margin-left: 170px;
  }
  .xxlarge-mleft175 {
    margin-left: 175px;
  }
  .xxlarge-mleft180 {
    margin-left: 180px;
  }
  .xxlarge-mleft185 {
    margin-left: 185px;
  }
  .xxlarge-mleft190 {
    margin-left: 190px;
  }
  .xxlarge-mleft195 {
    margin-left: 195px;
  }
  .xxlarge-mleft200 {
    margin-left: 200px;
  }
}
/*
	MARGIN RIGHT
	* MOVIL
	* TABLET
	* DESKTOP
*/
.mright0 {
  margin-right: 0px;
}

.mright5 {
  margin-right: 5px;
}

.mright10 {
  margin-right: 10px;
}

.mright15 {
  margin-right: 15px;
}

.mright20 {
  margin-right: 20px;
}

.mright25 {
  margin-right: 25px;
}

.mright30 {
  margin-right: 30px;
}

.mright35 {
  margin-right: 35px;
}

.mright40 {
  margin-right: 40px;
}

.mright45 {
  margin-right: 45px;
}

.mright50 {
  margin-right: 50px;
}

.mright55 {
  margin-right: 55px;
}

.mright60 {
  margin-right: 60px;
}

.mright65 {
  margin-right: 65px;
}

.mright70 {
  margin-right: 70px;
}

.mright75 {
  margin-right: 75px;
}

.mright80 {
  margin-right: 80px;
}

.mright85 {
  margin-right: 85px;
}

.mright90 {
  margin-right: 90px;
}

.mright95 {
  margin-right: 95px;
}

.mright100 {
  margin-right: 100px;
}

.mright105 {
  margin-right: 105px;
}

.mright110 {
  margin-right: 110px;
}

.mright115 {
  margin-right: 115px;
}

.mright120 {
  margin-right: 120px;
}

.mright125 {
  margin-right: 125px;
}

.mright130 {
  margin-right: 130px;
}

.mright135 {
  margin-right: 135px;
}

.mright140 {
  margin-right: 140px;
}

.mright145 {
  margin-right: 145px;
}

.mright150 {
  margin-right: 150px;
}

.mright155 {
  margin-right: 155px;
}

.mright160 {
  margin-right: 160px;
}

.mright165 {
  margin-right: 165px;
}

.mright170 {
  margin-right: 170px;
}

.mright175 {
  margin-right: 175px;
}

.mright180 {
  margin-right: 180px;
}

.mright185 {
  margin-right: 185px;
}

.mright190 {
  margin-right: 190px;
}

.mright195 {
  margin-right: 195px;
}

.mright200 {
  margin-right: 200px;
}

@media screen and (max-width: 640px) {
  .small-mright0 {
    margin-right: 0px;
  }
  .small-mright5 {
    margin-right: 5px;
  }
  .small-mright10 {
    margin-right: 10px;
  }
  .small-mright15 {
    margin-right: 15px;
  }
  .small-mright20 {
    margin-right: 20px;
  }
  .small-mright25 {
    margin-right: 25px;
  }
  .small-mright30 {
    margin-right: 30px;
  }
  .small-mright35 {
    margin-right: 35px;
  }
  .small-mright40 {
    margin-right: 40px;
  }
  .small-mright45 {
    margin-right: 45px;
  }
  .small-mright50 {
    margin-right: 50px;
  }
  .small-mright55 {
    margin-right: 55px;
  }
  .small-mright60 {
    margin-right: 60px;
  }
  .small-mright65 {
    margin-right: 65px;
  }
  .small-mright70 {
    margin-right: 70px;
  }
  .small-mright75 {
    margin-right: 75px;
  }
  .small-mright80 {
    margin-right: 80px;
  }
  .small-mright85 {
    margin-right: 85px;
  }
  .small-mright90 {
    margin-right: 90px;
  }
  .small-mright95 {
    margin-right: 95px;
  }
  .small-mright100 {
    margin-right: 100px;
  }
  .small-mright105 {
    margin-right: 105px;
  }
  .small-mright110 {
    margin-right: 110px;
  }
  .small-mright115 {
    margin-right: 115px;
  }
  .small-mright120 {
    margin-right: 120px;
  }
  .small-mright125 {
    margin-right: 125px;
  }
  .small-mright130 {
    margin-right: 130px;
  }
  .small-mright135 {
    margin-right: 135px;
  }
  .small-mright140 {
    margin-right: 140px;
  }
  .small-mright145 {
    margin-right: 145px;
  }
  .small-mright150 {
    margin-right: 150px;
  }
  .small-mright155 {
    margin-right: 155px;
  }
  .small-mright160 {
    margin-right: 160px;
  }
  .small-mright165 {
    margin-right: 165px;
  }
  .small-mright170 {
    margin-right: 170px;
  }
  .small-mright175 {
    margin-right: 175px;
  }
  .small-mright180 {
    margin-right: 180px;
  }
  .small-mright185 {
    margin-right: 185px;
  }
  .small-mright190 {
    margin-right: 190px;
  }
  .small-mright195 {
    margin-right: 195px;
  }
  .small-mright200 {
    margin-right: 200px;
  }
}
@media screen and (max-width: 1024px) {
  .small-tablet-mright0 {
    margin-right: 0px;
  }
  .small-tablet-mright5 {
    margin-right: 5px;
  }
  .small-tablet-mright10 {
    margin-right: 10px;
  }
  .small-tablet-mright15 {
    margin-right: 15px;
  }
  .small-tablet-mright20 {
    margin-right: 20px;
  }
  .small-tablet-mright25 {
    margin-right: 25px;
  }
  .small-tablet-mright30 {
    margin-right: 30px;
  }
  .small-tablet-mright35 {
    margin-right: 35px;
  }
  .small-tablet-mright40 {
    margin-right: 40px;
  }
  .small-tablet-mright45 {
    margin-right: 45px;
  }
  .small-tablet-mright50 {
    margin-right: 50px;
  }
  .small-tablet-mright55 {
    margin-right: 55px;
  }
  .small-tablet-mright60 {
    margin-right: 60px;
  }
  .small-tablet-mright65 {
    margin-right: 65px;
  }
  .small-tablet-mright70 {
    margin-right: 70px;
  }
  .small-tablet-mright75 {
    margin-right: 75px;
  }
  .small-tablet-mright80 {
    margin-right: 80px;
  }
  .small-tablet-mright85 {
    margin-right: 85px;
  }
  .small-tablet-mright90 {
    margin-right: 90px;
  }
  .small-tablet-mright95 {
    margin-right: 95px;
  }
  .small-tablet-mright100 {
    margin-right: 100px;
  }
  .small-tablet-mright105 {
    margin-right: 105px;
  }
  .small-tablet-mright110 {
    margin-right: 110px;
  }
  .small-tablet-mright115 {
    margin-right: 115px;
  }
  .small-tablet-mright120 {
    margin-right: 120px;
  }
  .small-tablet-mright125 {
    margin-right: 125px;
  }
  .small-tablet-mright130 {
    margin-right: 130px;
  }
  .small-tablet-mright135 {
    margin-right: 135px;
  }
  .small-tablet-mright140 {
    margin-right: 140px;
  }
  .small-tablet-mright145 {
    margin-right: 145px;
  }
  .small-tablet-mright150 {
    margin-right: 150px;
  }
  .small-tablet-mright155 {
    margin-right: 155px;
  }
  .small-tablet-mright160 {
    margin-right: 160px;
  }
  .small-tablet-mright165 {
    margin-right: 165px;
  }
  .small-tablet-mright170 {
    margin-right: 170px;
  }
  .small-tablet-mright175 {
    margin-right: 175px;
  }
  .small-tablet-mright180 {
    margin-right: 180px;
  }
  .small-tablet-mright185 {
    margin-right: 185px;
  }
  .small-tablet-mright190 {
    margin-right: 190px;
  }
  .small-tablet-mright195 {
    margin-right: 195px;
  }
  .small-tablet-mright200 {
    margin-right: 200px;
  }
}
@media screen and (min-width: 640px) {
  .medium-mright0 {
    margin-right: 0px;
  }
  .medium-mright5 {
    margin-right: 5px;
  }
  .medium-mright10 {
    margin-right: 10px;
  }
  .medium-mright15 {
    margin-right: 15px;
  }
  .medium-mright20 {
    margin-right: 20px;
  }
  .medium-mright25 {
    margin-right: 25px;
  }
  .medium-mright30 {
    margin-right: 30px;
  }
  .medium-mright35 {
    margin-right: 35px;
  }
  .medium-mright40 {
    margin-right: 40px;
  }
  .medium-mright45 {
    margin-right: 45px;
  }
  .medium-mright50 {
    margin-right: 50px;
  }
  .medium-mright55 {
    margin-right: 55px;
  }
  .medium-mright60 {
    margin-right: 60px;
  }
  .medium-mright65 {
    margin-right: 65px;
  }
  .medium-mright70 {
    margin-right: 70px;
  }
  .medium-mright75 {
    margin-right: 75px;
  }
  .medium-mright80 {
    margin-right: 80px;
  }
  .medium-mright85 {
    margin-right: 85px;
  }
  .medium-mright90 {
    margin-right: 90px;
  }
  .medium-mright95 {
    margin-right: 95px;
  }
  .medium-mright100 {
    margin-right: 100px;
  }
  .medium-mright105 {
    margin-right: 105px;
  }
  .medium-mright110 {
    margin-right: 110px;
  }
  .medium-mright115 {
    margin-right: 115px;
  }
  .medium-mright120 {
    margin-right: 120px;
  }
  .medium-mright125 {
    margin-right: 125px;
  }
  .medium-mright130 {
    margin-right: 130px;
  }
  .medium-mright135 {
    margin-right: 135px;
  }
  .medium-mright140 {
    margin-right: 140px;
  }
  .medium-mright145 {
    margin-right: 145px;
  }
  .medium-mright150 {
    margin-right: 150px;
  }
  .medium-mright155 {
    margin-right: 155px;
  }
  .medium-mright160 {
    margin-right: 160px;
  }
  .medium-mright165 {
    margin-right: 165px;
  }
  .medium-mright170 {
    margin-right: 170px;
  }
  .medium-mright175 {
    margin-right: 175px;
  }
  .medium-mright180 {
    margin-right: 180px;
  }
  .medium-mright185 {
    margin-right: 185px;
  }
  .medium-mright190 {
    margin-right: 190px;
  }
  .medium-mright195 {
    margin-right: 195px;
  }
  .medium-mright200 {
    margin-right: 200px;
  }
}
@media screen and (min-width: 1025px) {
  .large-mright0 {
    margin-right: 0px;
  }
  .large-mright5 {
    margin-right: 5px;
  }
  .large-mright10 {
    margin-right: 10px;
  }
  .large-mright15 {
    margin-right: 15px;
  }
  .large-mright20 {
    margin-right: 20px;
  }
  .large-mright25 {
    margin-right: 25px;
  }
  .large-mright30 {
    margin-right: 30px;
  }
  .large-mright35 {
    margin-right: 35px;
  }
  .large-mright40 {
    margin-right: 40px;
  }
  .large-mright45 {
    margin-right: 45px;
  }
  .large-mright50 {
    margin-right: 50px;
  }
  .large-mright55 {
    margin-right: 55px;
  }
  .large-mright60 {
    margin-right: 60px;
  }
  .large-mright65 {
    margin-right: 65px;
  }
  .large-mright70 {
    margin-right: 70px;
  }
  .large-mright75 {
    margin-right: 75px;
  }
  .large-mright80 {
    margin-right: 80px;
  }
  .large-mright85 {
    margin-right: 85px;
  }
  .large-mright90 {
    margin-right: 90px;
  }
  .large-mright95 {
    margin-right: 95px;
  }
  .large-mright100 {
    margin-right: 100px;
  }
  .large-mright105 {
    margin-right: 105px;
  }
  .large-mright110 {
    margin-right: 110px;
  }
  .large-mright115 {
    margin-right: 115px;
  }
  .large-mright120 {
    margin-right: 120px;
  }
  .large-mright125 {
    margin-right: 125px;
  }
  .large-mright130 {
    margin-right: 130px;
  }
  .large-mright135 {
    margin-right: 135px;
  }
  .large-mright140 {
    margin-right: 140px;
  }
  .large-mright145 {
    margin-right: 145px;
  }
  .large-mright150 {
    margin-right: 150px;
  }
  .large-mright155 {
    margin-right: 155px;
  }
  .large-mright160 {
    margin-right: 160px;
  }
  .large-mright165 {
    margin-right: 165px;
  }
  .large-mright170 {
    margin-right: 170px;
  }
  .large-mright175 {
    margin-right: 175px;
  }
  .large-mright180 {
    margin-right: 180px;
  }
  .large-mright185 {
    margin-right: 185px;
  }
  .large-mright190 {
    margin-right: 190px;
  }
  .large-mright195 {
    margin-right: 195px;
  }
  .large-mright200 {
    margin-right: 200px;
  }
}
@media screen and (min-width: 1281px) {
  .xxlarge-mright0 {
    margin-right: 0px;
  }
  .xxlarge-mright5 {
    margin-right: 5px;
  }
  .xxlarge-mright10 {
    margin-right: 10px;
  }
  .xxlarge-mright15 {
    margin-right: 15px;
  }
  .xxlarge-mright20 {
    margin-right: 20px;
  }
  .xxlarge-mright25 {
    margin-right: 25px;
  }
  .xxlarge-mright30 {
    margin-right: 30px;
  }
  .xxlarge-mright35 {
    margin-right: 35px;
  }
  .xxlarge-mright40 {
    margin-right: 40px;
  }
  .xxlarge-mright45 {
    margin-right: 45px;
  }
  .xxlarge-mright50 {
    margin-right: 50px;
  }
  .xxlarge-mright55 {
    margin-right: 55px;
  }
  .xxlarge-mright60 {
    margin-right: 60px;
  }
  .xxlarge-mright65 {
    margin-right: 65px;
  }
  .xxlarge-mright70 {
    margin-right: 70px;
  }
  .xxlarge-mright75 {
    margin-right: 75px;
  }
  .xxlarge-mright80 {
    margin-right: 80px;
  }
  .xxlarge-mright85 {
    margin-right: 85px;
  }
  .xxlarge-mright90 {
    margin-right: 90px;
  }
  .xxlarge-mright95 {
    margin-right: 95px;
  }
  .xxlarge-mright100 {
    margin-right: 100px;
  }
  .xxlarge-mright105 {
    margin-right: 105px;
  }
  .xxlarge-mright110 {
    margin-right: 110px;
  }
  .xxlarge-mright115 {
    margin-right: 115px;
  }
  .xxlarge-mright120 {
    margin-right: 120px;
  }
  .xxlarge-mright125 {
    margin-right: 125px;
  }
  .xxlarge-mright130 {
    margin-right: 130px;
  }
  .xxlarge-mright135 {
    margin-right: 135px;
  }
  .xxlarge-mright140 {
    margin-right: 140px;
  }
  .xxlarge-mright145 {
    margin-right: 145px;
  }
  .xxlarge-mright150 {
    margin-right: 150px;
  }
  .xxlarge-mright155 {
    margin-right: 155px;
  }
  .xxlarge-mright160 {
    margin-right: 160px;
  }
  .xxlarge-mright165 {
    margin-right: 165px;
  }
  .xxlarge-mright170 {
    margin-right: 170px;
  }
  .xxlarge-mright175 {
    margin-right: 175px;
  }
  .xxlarge-mright180 {
    margin-right: 180px;
  }
  .xxlarge-mright185 {
    margin-right: 185px;
  }
  .xxlarge-mright190 {
    margin-right: 190px;
  }
  .xxlarge-mright195 {
    margin-right: 195px;
  }
  .xxlarge-mright200 {
    margin-right: 200px;
  }
}
/*------------------------------------*\
    $BORDERS
\*------------------------------------*/
.border-none {
  border: none;
}

.border-left-1 {
  border-left-width: 1px;
  border-left-style: solid;
}

.border-top-5 {
  border-top-width: 5px;
  border-top-style: solid;
}

.border-bottom-5 {
  border-bottom-width: 5px;
  border-bottom-style: solid;
}

.border-bottom-1 {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.border-top-1 {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-top-2 {
  border-top-width: 2px;
  border-top-style: solid;
}

.border-top-3 {
  border-top-width: 3px;
  border-top-style: solid;
}

.border-1 {
  border-width: 1px;
  border-style: solid;
}

.border-2 {
  border-width: 2px;
  border-style: solid;
}

.border-5 {
  border-width: 5px;
  border-style: solid;
}

.border-right-1 {
  border-right-width: 1px;
  border-right-style: solid;
}

.border-right-10 {
  border-right-width: 10px;
  border-right-style: solid;
}

.border0 {
  border: none !important;
}

/*------------------------------------*\
    $LINE-HEIGHT
\*------------------------------------*/
.lh-1 {
  line-height: 1;
}

.lh-1-2 {
  line-height: 1.2;
}

.lh-1-4 {
  line-height: 1.4;
}

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

.lh-3 {
  line-height: 3;
}

.letter-10 {
  letter-spacing: 10px;
}

/*------------------------------------*\
    $LISTS
\*------------------------------------*/
.no-type {
  list-style-type: none;
}

ul {
  margin-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
ul > li:last-child {
  margin-bottom: 0;
}

ul.custom-list {
  list-style-type: none;
}
ul.custom-list li {
  position: relative;
  margin-bottom: 25px;
  padding-left: 30px;
  font-size: 14px;
}
ul.custom-list li span {
  position: absolute;
  left: 0;
  top: 3px;
  display: block;
  margin-right: 10px;
  font-size: 13px;
  color: #ff2e48;
}

/*------------------------------------*\
    $DOWN
\*------------------------------------*/
.down {
  position: absolute;
  z-index: 999999;
  bottom: 0;
  right: 50%;
  font-size: 35px;
  color: #ffffff;
  margin-right: -35px;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .down {
    bottom: -5px;
  }
}

.block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}

/*------------------------------------*\
    $Selectores de elemento: elementos/
\*------------------------------------*/
/*
	-- Agregar por ejemplo sliders, modales,
	   grids, tables, formularios, etc.
*/
/*------------------------------------*\
    $FORM
\*------------------------------------*/
.general-form .cta {
  margin-bottom: 25px;
}

/*------------------------------------*\
    $SIZES-FORMS
\*------------------------------------*/
.small-form {
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------*\
    $RESET
\*------------------------------------*/
[type=text],
[type=password],
[type=email],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0 10px !important;
  margin-bottom: 0;
  margin-top: 8px;
  height: 38px;
  line-height: 38px;
  color: #4a3316;
  font-size: 16px;
  box-shadow: none;
  resize: none;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #a2dffe !important;
  border-radius: 5px !important;
}
[type=text]:focus,
[type=password]:focus,
[type=email]:focus,
select:focus,
textarea:focus {
  box-shadow: none;
  background-color: #ffffff;
}

textarea {
  height: auto;
}

label {
  display: block;
  margin-bottom: 15px;
  cursor: pointer;
  text-align: left !important;
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #ffffff;
}

select {
  padding-left: 7px !important;
  color: #5c5c5c;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: 97% center;
  border-radius: 8px;
}
@media screen and (max-width: 1024px) {
  select {
    font-size: rem-calc(12px);
  }
}

.custom-select {
  height: 38px;
  padding-left: 7px !important;
  color: #5c5c5c;
  font-size: rem-calc(14px);
  line-height: 38px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0px;
  background-size: 13px 13px;
  background-repeat: no-repeat;
  background-position: 97% center;
  border-radius: 8px;
  border: 0;
  background-color: #deecf8;
}
.custom-select:focus {
  border: 0;
  box-shadow: none;
  background-color: #d0e7f8;
}

::-webkit-input-placeholder {
  color: rgba(150, 105, 73, 0.4);
  font-size: rem-calc(14px);
}
@media screen and (max-width: 1024px) {
  ::-webkit-input-placeholder {
    font-size: rem-calc(12px);
  }
}

:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(150, 105, 73, 0.4);
  font-size: rem-calc(14px);
}
@media screen and (max-width: 1024px) {
  :-moz-placeholder {
    font-size: rem-calc(12px);
  }
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(150, 105, 73, 0.4);
  font-size: rem-calc(14px);
}
@media screen and (max-width: 1024px) {
  ::-moz-placeholder {
    font-size: rem-calc(12px);
  }
}

:-ms-input-placeholder {
  color: rgba(150, 105, 73, 0.4);
  font-size: rem-calc(14px);
}
@media screen and (max-width: 1024px) {
  :-ms-input-placeholder {
    font-size: rem-calc(12px);
  }
}

input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #ffffff;
}

.select-radius {
  border-radius: 5px;
  margin: 0 10px 0 0;
}

textarea#description {
  height: 130px;
  line-height: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/*------------------------------------*\
    $INCREMENT INPUT
\*------------------------------------*/
.input-number-group {
  width: 125px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.input-number-group .input-group-button {
  line-height: 35px;
}

.input-group-button.disable {
  opacity: 0.5;
  pointer-events: none;
}

.input-number-group .input-number {
  width: 45px !important;
  padding: 0 12px;
  vertical-align: top;
  text-align: center;
  outline: none;
  display: block;
  margin: 0;
}

.input-number-group .input-number,
.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
  border: 1px solid #4a3316;
  height: 40px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 0;
}

.input-number-group .input-number {
  border-left: 0;
  border-right: 0;
}

.input-number-group .input-number-decrement,
.input-number-group .input-number-increment {
  display: inline-block;
  width: 40px;
  background: #ffffff;
  color: #4a3316;
  text-align: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 40px;
  font-weight: 400;
  font-weight: bold;
}

.input-number-group .input-number-decrement {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.input-number-group .input-number-increment {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

/*------------------------------------*\
    $CUSTOM-BUTTONS
\*------------------------------------*/
.button-facebook {
  display: block;
  width: 100%;
  max-width: 200px;
  height: 30px;
  line-height: 31px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  color: #ffffff;
  font-size: rem-calc(12px);
  text-align: center;
}
.button-facebook:visited, .button-facebook:active {
  color: #ffffff;
}
.button-facebook:hover, .button-facebook:focus {
  color: #ffffff;
}
.button-facebook svg {
  display: inline-block;
  vertical-align: sub;
  margin-right: 5px;
}

.adjuntar {
  position: relative;
  display: block;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  width: 200px;
  height: 37px;
  border: 1px solid #d12027;
  background-color: #ffffff;
  text-align: center;
  transition: 0.2s;
  font-size: 0.875rem;
  cursor: pointer;
  line-height: 35px;
  font-family: "Gotham-medium", sans-serif;
  color: #7c7c7c;
  border-radius: 5px;
}
.adjuntar::before {
  position: absolute;
  right: 0;
  top: 0;
  content: attr(data-content);
  display: block;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  text-align: center;
  transition: 0.2s;
  font-size: rem-calc(14px);
  cursor: pointer;
  line-height: 35px;
  color: #5c5c5c;
  border-radius: 5px;
}

/*------------------------------------*\
    $FORM-MODAL
\*------------------------------------*/
.form-modal label {
  display: block;
  margin-bottom: 30px;
}
.form-modal .cta {
  max-width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-top: 10px;
}

/*------------------------------------*\
    $ERROR-FORMS
\*------------------------------------*/
.form-message-error {
  font-size: 12px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #9cd5f1;
}

.error-content {
  position: relative;
}

.is-invalid-label {
  color: #212b36;
}

.is-invalid-input:not(:focus) {
  background-color: #d0e7f8 !important;
  border: 1px solid #ff2e48 !important;
}

.form-error {
  display: block !important;
  padding: 10px 10px 10px 0;
  margin-top: 0;
  margin-bottom: 0;
  color: #ff2e48;
  background-color: transparent;
  font-family: "Inter";
  line-height: 1;
  visibility: hidden;
  font-size: rem-calc(11px);
  font-weight: 400;
}
.form-error.is-visible {
  visibility: visible;
}

span.wpcf7-not-valid-tip {
  color: #ff2e48 !important;
  font-family: "Inter";
}

.wpcf7-not-valid {
  border-color: #ff2e48 !important;
}

/*------------------------------------*\
    $CHECKBOX
\*------------------------------------*/
.content-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.content-checkbox a {
  font-size: rem-calc(14px);
  color: #32c5f8 !important;
}
.content-checkbox .check {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #32c5f8;
  border-radius: 2px;
}
.content-checkbox .check input {
  display: none;
}
.content-checkbox .check input:checked + .box {
  background-color: #32c5f8;
}
.content-checkbox .check inputinput:checked + .box:after {
  top: 0;
}
.content-checkbox .check .box {
  width: 100%;
  height: 100%;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  border: 0;
  background-color: #004a98;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.check-alter {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #4a3316;
  border-radius: 3px;
}

.check-alter input {
  display: none;
}

.check-alter input:checked + .box {
  background-color: #ffffff;
  border-radius: 3px;
}

.check-alter input:checked + .box:after {
  top: 3px;
}

.check-alter .box {
  width: 100%;
  height: 100%;
  transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
  border: 0;
  background-color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}

.check-alter .box:after {
  width: 75%;
  height: 40%;
  content: "";
  position: absolute;
  border-left: 1.5px solid;
  border-bottom: 1.5px solid;
  border-color: #4a3316;
  transform: rotate(-45deg) translate3d(0, 0, 0);
  transform-origin: center center;
  transition: all 0.1s cubic-bezier(0.19, 1, 0.22, 1);
  left: 0;
  right: 0;
  top: 200%;
  bottom: 5px;
  margin: auto;
}

.radio {
  display: flex;
  margin: 5px 0 5px 0;
}
.radio label.relative {
  display: block;
  margin-bottom: 5px;
}
.radio label.relative:last-child {
  margin-bottom: 0;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label {
  margin-left: 0;
  padding-left: 0;
  padding-right: 10px;
  line-height: 1.3;
  font-family: "Inter";
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #004a98;
  border-radius: 100%;
  border: 1px solid #32c5f8;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 0;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio] + .radio-label + label {
  color: var(--black-two);
}
.radio input[type=radio] + .radio-termns::before {
  position: absolute;
  left: 0;
  top: 3px;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #32c5f8;
  box-shadow: inset 0 0 0 4px #004a98;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #32c5f8;
}
.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #ffffff;
  border-color: #f5ba97;
  background: #4c5e73;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.radio-label {
  display: block;
  margin: 5px 0 5px 0 !important;
}
.radio-label label.relative {
  display: block;
  margin-bottom: 5px;
}
.radio-label label.relative:last-child {
  margin-bottom: 0;
}
.radio-label .number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
}
.radio-label .number--color {
  text-align: left;
  padding-left: 70px;
}
.radio-label .number small {
  position: absolute;
  left: 20px;
  top: 0;
  display: inline-block;
  vertical-align: sub;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 100%;
}
.radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio-label input[type=radio] + .radio-label {
  position: relative;
  background: #ebebeb;
  display: flex;
  width: 210px;
  height: 60px;
  border-radius: 8px;
  text-align: center !important;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  font-family: "Inter";
  margin-left: auto !important;
  margin-right: auto !important;
}
.radio-label input[type=radio] + .radio-label:before {
  content: "";
  background: #ebebeb;
  border-radius: 8px;
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  margin-right: 0;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio-label input[type=radio]:checked + .radio-label:before {
  background-color: #4a3316;
  box-shadow: none;
}
.radio-label input[type=radio]:checked + .radio-label .number {
  color: #ffffff;
}
.radio-label input[type=radio]:checked + .radio-label .number small {
  border: 1px solid #ffffff;
}
.radio-label input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: none;
}
.radio-label input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px #ffffff;
  border-color: #f5ba97;
  background: #4c5e73;
}
.radio-label input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

label.file input {
  position: absolute;
  width: 0;
  overflow: hidden;
  opacity: 0;
}

label.file {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 20px !important;
  margin-bottom: 0;
  margin-top: 5px;
  height: 46px;
  line-height: 46px;
  color: #ea6d23;
  font-size: rem-calc(16px);
  box-shadow: none;
  border: 0 !important;
  resize: none;
  font-family: "Inter";
  border-radius: 8px !important;
  background: #deecf8;
}

label.file:before {
  content: "Subir";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 90px;
  height: inherit;
  padding: 0;
  border: 0;
  background-color: #e5e5e5;
  color: #ababab;
  font-size: 17px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  vertical-align: middle;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

label.file[title]:not([title=""]):before {
  content: attr(title);
  color: #162f44;
}

.add-file {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.add-file .icon-cerrar {
  color: #adadad;
  font-size: 12px;
  cursor: pointer;
  margin-top: 13px;
}

.flag-switch {
  position: relative;
  outline: 0;
  appearance: none;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 70px;
  height: 20px;
  margin-top: 5px;
  margin-bottom: 15px;
  margin-left: 0;
}
.flag-switch input {
  display: none;
}
.flag-switch input + label {
  display: block;
  position: absolute;
  cursor: pointer;
  user-select: none;
  width: 60px;
}
.flag-switch input + label:before, .flag-switch input + label:after {
  content: "";
  position: absolute;
  border-radius: 30px;
  transition: all 0.25s ease-in-out;
}
.flag-switch input + label:before {
  height: 20px;
  width: 60px;
  background-color: #5c5c5c;
}
.flag-switch input + label:after {
  top: -5px;
  right: 50px;
  width: 30px;
  height: 30px;
  background: #4a3316;
  transform: translate(20px, 0);
  -webkit-transform: translate(20px, 0);
}
.flag-switch input:checked + label:after {
  right: 0;
  background: #4a3316;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.flag-switch input:checked + label:before {
  background-color: #4a3316;
}

.flag-switch--small {
  position: relative;
  outline: 0;
  appearance: none;
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  width: 35px;
  height: 15px;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.flag-switch--small input {
  display: none;
}
.flag-switch--small input + label {
  display: block;
  position: absolute;
  cursor: pointer;
  user-select: none;
  width: 35px;
}
.flag-switch--small input + label:before, .flag-switch--small input + label:after {
  content: "";
  position: absolute;
  border-radius: 30px;
  transition: all 0.25s ease-in-out;
}
.flag-switch--small input + label:before {
  height: 15px;
  width: 30px;
  background-color: #4a3316;
}
.flag-switch--small input + label:after {
  top: -3px;
  left: -25px;
  width: 20px;
  height: 20px;
  background: #5c5c5c;
  transform: translate(20px, 0);
  -webkit-transform: translate(20px, 0);
}
.flag-switch--small input:checked + label:after {
  left: 15px;
  background: #4a3316;
  transition: all 0.25s ease-in-out;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.flag-switch--small input:checked + label:before {
  background-color: #adadad;
}

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/
/* Base button */
.base-button a {
  display: inline-block !important;
  width: 100% !important;
  max-width: 256px;
  height: 40px;
  padding: 0 !important;
  line-height: 38px !important;
  border-radius: 22px !important;
  background-color: #9cd5f1 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 0 6px 0 #9de5fa !important;
  border: solid 3px transparent !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #14b1e7) !important;
  background-origin: border-box !important;
  background-clip: content-box, border-box !important;
  box-shadow: 2px 1000px 1px #9cd5f1 inset !important;
  color: #0a3774 !important;
}

.cta {
  display: inline-block !important;
  width: 100% !important;
  max-width: 256px;
  height: 40px;
  padding: 0 !important;
  line-height: 36px !important;
  border-radius: 22px !important;
  background-color: #9cd5f1 !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 0 6px 0 #9de5fa !important;
  border: solid 3px transparent !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #14b1e7) !important;
  background-origin: border-box !important;
  background-clip: content-box, border-box !important;
  box-shadow: 2px 1000px 1px #9cd5f1 inset !important;
  color: #0a3774 !important;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .cta {
    max-width: 100%;
  }
}
.cta:active, .cta:visited, .cta:focus {
  color: #0a3774;
}
.cta:hover {
  color: #062146;
  background: #5e8091;
  box-shadow: none;
  transform: none;
  text-decoration: none;
}
.cta--large {
  max-width: 305px;
}
.cta--full {
  max-width: 100% !important;
}
.cta--mAuto {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
}
.cta--disable {
  background-color: #c1c7d0 !important;
  color: #a5adbb !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  line-height: 40px !important;
}
.cta--disable:active, .cta--disable:visited, .cta--disable:focus {
  color: #a5adbb !important;
}
.cta--disable:hover {
  background-color: #a5adbb !important;
  color: #c1c7d0 !important;
}

.cta-plain {
  display: block;
  width: 100%;
  max-width: 256px;
  height: 40px;
  padding: 0;
  line-height: 37px;
  border-radius: 22px;
  background-color: transparent;
  color: #32c5f8;
  border: 1px solid #32c5f8;
  text-align: center;
}
.cta-plain:active, .cta-plain:visited, .cta-plain:focus {
  color: #32c5f8;
}
.cta-plain:hover {
  background-color: #5e8091;
  color: #32c5f8;
  text-decoration: none;
  border-color: #32c5f8;
}
.cta-plain--red {
  color: #fff;
  border: 1px solid #ff2e48;
  background-color: #ff2e48;
  font-weight: 600;
  font-size: 14px;
}
.cta-plain--red:active, .cta-plain--red:visited, .cta-plain--red:focus {
  color: #ffffff;
}
.cta-plain--red:hover {
  color: #ffffff !important;
  background-color: #fa001f;
  border-color: #fa001f;
}
.cta-plain--login {
  min-width: 195px;
}
.cta-plain--login img {
  display: inline-block;
  vertical-align: middle;
}
.cta-plain--secondary {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #004a98;
  border: 1px solid #dcf3ff;
  background-color: #dcf3ff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
}
.cta-plain--secondary:active, .cta-plain--secondary:visited, .cta-plain--secondary:focus {
  color: #004a98;
}
.cta-plain--secondary:hover {
  color: #004a98 !important;
  background-color: #a9e2ff;
  border-color: #a9e2ff;
}
.cta-plain--secondary img {
  margin-right: 5px;
}
.cta-plain--secondary-white {
  color: #ffffff;
  border: 2px solid #ffffff;
  background-color: transparent;
}
.cta-plain--secondary-white:active, .cta-plain--secondary-white:visited, .cta-plain--secondary-white:focus {
  color: #ffffff;
}
.cta-plain--secondary-white:hover {
  color: #ffffff;
  background-color: #4a3316;
}
.cta-plain--secondary-light {
  background-color: #fadbc8;
  color: var(--coffee-1-80);
  border: 1px solid #fadbc8;
}
.cta-plain--secondary-light:active, .cta-plain--secondary-light:visited, .cta-plain--secondary-light:active {
  color: var(--coffee-1-80);
}
.cta-plain--secondary-light:hover {
  color: #ffffff;
  border-color: var(--coffee-1-80);
}
.cta-plain--disable {
  background-color: #adadad;
  color: #ffffff;
}
.cta-plain--disable:active, .cta-plain--disable:visited, .cta-plain--disable:focus {
  color: #ffffff;
}
.cta-plain--disable:hover {
  pointer-events: none;
  background-color: #adadad;
  color: #ffffff;
}
.cta-plain--full {
  max-width: 100%;
}
.cta-plain--block {
  display: block;
}
.cta-plain--270 {
  max-width: 270px;
}
.cta-plain--small {
  max-width: 190px;
}
.cta-plain--tiny {
  width: 140px;
}
.cta-plain--mAuto {
  margin-left: auto;
  margin-right: auto;
}
.cta-plain--ui-mAuto {
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
}
.cta-plain--widthAuto {
  width: auto;
  min-width: 190px;
  max-width: 310px;
  padding: 0;
}
.cta-plain--h30 {
  height: 30px;
  line-height: 28px;
}

input:disabled {
  background-color: #4a3316;
  color: #ffffff;
}

/* Productos */
/* Products Home */
.box-products .woocommerce.columns-1 ul.products li.product {
  padding: 0 !important;
  box-shadow: none;
}

.box-products .woocommerce ul.products li.product a {
  display: block;
  width: 100%;
  box-shadow: none;
}

.elementor-shortcode .woocommerce ul.products li.product,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  box-shadow: none !important;
}

/* Products Shop Page */
.woocommerce ul.products li.product {
  padding: 0;
}
.woocommerce ul.products li.product a {
  display: block;
  width: 100%;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link::before {
  content: "";
  display: none;
  width: 100%;
  height: 256px;
  position: absolute;
  top: -2px;
  left: 0px;
  z-index: 1;
  border-radius: 10px;
  background: linear-gradient(to right, #f0faff, #32c5f8);
  padding: 3px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
  height: 136px;
  background: #ebf7fc;
  width: 100%;
  object-fit: contain;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ebf7fc inset !important;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__link img {
    height: 256px;
  }
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin-top: 18px !important;
  min-height: 2.6em;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.02em;
  color: #dcf3ff !important;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 21px;
    line-height: 31px;
  }
}
.woocommerce ul.products li.product .price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f0faff !important;
}
.woocommerce ul.products li.product .price del {
  margin-left: 20px;
}
.woocommerce ul.products li.product .button {
  display: block;
  margin: 20px auto 0;
  padding: 0;
  height: 40px;
  line-height: 36px;
  font-size: 14px;
  width: 100%;
  max-width: 220px;
  color: #32c5f8;
  text-align: left;
  padding-left: 10px;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #004a98 inset !important;
}
@media screen and (min-width: 640px) {
  .woocommerce ul.products li.product .button {
    padding-left: 35px;
  }
}
.woocommerce ul.products li.product .button:before {
  display: block;
  transition: all 0.45s;
  margin: 0;
  height: auto;
  position: absolute;
  right: 10px;
  top: 3px;
  background: #32c5f8 !important;
}
@media screen and (min-width: 640px) {
  .woocommerce ul.products li.product .button:before {
    right: 35px;
  }
}
.woocommerce ul.products li.product .eael-star-rating.star-rating {
  display: none;
}
.woocommerce ul.products li.product .tag-product {
  margin: 0 !important;
  position: absolute;
  top: 0;
  right: 0;
  display: block !important;
  border-radius: 8px;
  width: auto !important;
  height: 30px !important;
  min-height: auto;
  padding: 0 10px !important;
  font-family: "Inter" !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  line-height: 30px !important;
}
.woocommerce ul.products li.product .tag-product.onsale {
  background-color: #32c5f8 !important;
  color: #004a98;
}
.woocommerce ul.products li.product .tag-product.top-new {
  background-color: #004a98 !important;
  color: #f0faff;
}

@media screen and (max-width: 1024px) {
  .woocommerce #content table.cart .product-thumbnail,
  .woocommerce table.cart .product-thumbnail,
  .woocommerce-page #content table.cart .product-thumbnail,
  .woocommerce-page table.cart .product-thumbnail {
    display: block !important;
    text-align: center !important;
    padding-top: 10px;
    padding-bottom: 10px !important;
  }
  .woocommerce #content table.cart .product-thumbnail:before,
  .woocommerce table.cart .product-thumbnail:before,
  .woocommerce-page #content table.cart .product-thumbnail:before,
  .woocommerce-page table.cart .product-thumbnail:before {
    display: none !important;
  }
  .woocommerce #content table.cart .product-remove,
  .woocommerce table.cart .product-remove,
  .woocommerce-page #content table.cart .product-remove,
  .woocommerce-page table.cart .product-remove {
    position: relative;
    padding: 0 !important;
  }
  .woocommerce #content table.cart .product-remove a.remove,
  .woocommerce table.cart .product-remove a.remove,
  .woocommerce-page #content table.cart .product-remove a.remove,
  .woocommerce-page table.cart .product-remove a.remove {
    position: absolute;
    left: 53%;
  }
  .woocommerce table.cart tr,
  .woocommerce-page table.cart tr {
    padding-bottom: 40px !important;
  }
}
html .woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: none;
  border: 0;
  box-shadow: none;
  border-radius: 0 !important;
}

html .woocommerce #respond input#submit.loading::after,
html .woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
html .woocommerce input.button.loading::after,
html .woocommerce #respond input#submit.added::after,
html .woocommerce a.button.added::after,
html .woocommerce button.button.added::after,
html .woocommerce input.button.added::after {
  position: absolute;
  right: 35px;
  top: 3px;
}

html .woocommerce ul.products li.product .button.loading,
html .woocommerce ul.products li.product .button.added,
html .woocommerce .button.loading,
.woocommerce .button.added {
  color: #32c5f8 !important;
}

/* Single Product */
.single-product.woocommerce .woocommerce-product-details__short-description p {
  margin: 0;
}
.single-product.woocommerce .woocommerce-product-gallery img {
  height: 277px !important;
  background: #ebf7fc;
  width: calc(100% - 3px) !important;
  object-fit: contain;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ebf7fc inset !important;
  border-radius: 8px;
}
.single-product.woocommerce .favorites {
  padding-top: 20px;
  padding-bottom: 35px;
}
.single-product.woocommerce .favorites a {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #32c5f8;
  padding-bottom: 40px;
}
.single-product.woocommerce .favorites a span {
  position: absolute;
  right: -40px;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  padding: 0 !important;
}
.single-product.woocommerce .favorites a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 5px;
  background-color: #32c5f8;
  border-radius: 4px;
}
.single-product.woocommerce .favorites a.favorite-on span {
  box-shadow: 2px 8000px 1px #a2dffe inset !important;
}
.single-product.woocommerce form.cart {
  padding-top: 20px;
}
@media screen and (max-width: 640px) {
  .single-product.woocommerce form.cart .button {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

html .single-product.woocommerce div.product p.price,
html .woocommerce div.product span.price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding: 0;
  text-align: left;
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f0faff;
}

html .single-product.woocommerce div.product p.price del {
  margin-left: 20px;
}

html .single-product .woocommerce-product-details__short-description {
  padding: 0;
  background: none;
  color: #f5fbfe;
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
}

html .single-product .elementor-widget:not(:last-child) {
  margin-bottom: 0;
}

html .single-product .product_meta span {
  margin: 0;
  padding: 0 0 15px 0;
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #f5fbfe;
}

html .single-product .product_meta span:before {
  display: none;
}

html .elementor-widget-wc-add-to-cart .quantity + button,
html .woocommerce div.product.elementor .quantity + button {
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #9cd5f1 inset;
  color: #0a3774;
}

html .posted_in a,
html .tagcloud a,
html .tagged_as a {
  padding: 0;
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #f5fbfe;
  background: none;
}

html .posted_in a:hover,
html .tagcloud a:hover,
html .tagged_as a:hover {
  color: #f5fbfe;
  background: none;
}

html .woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  display: none;
}

/* related products */
html .woocommerce .related.products ul.products li.product a img,
html .woocommerce .upsells.products ul.products li.product a img {
  height: 136px;
  background: #ebf7fc;
  width: 100%;
  object-fit: contain;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ebf7fc inset !important;
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  html .woocommerce .related.products ul.products li.product a img,
  html .woocommerce .upsells.products ul.products li.product a img {
    height: 256px;
  }
}

/* Title internal pages */
html .related.products h6,
html .upsells.products h6,
html .woocommerce-result-count,
html .cart_totals h4,
form[name=checkout] h4 {
  margin: 0;
  font-family: "Inter";
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.02em;
  color: #dcf3ff;
}
@media screen and (min-width: 1024px) {
  html .related.products h6,
  html .upsells.products h6,
  html .woocommerce-result-count,
  html .cart_totals h4,
  form[name=checkout] h4 {
    font-size: 21px;
    line-height: 31px;
  }
}

html .related.products h6:before,
html .upsells.products h6:before,
html .woocommerce-result-count:before,
html .cart_totals h4:before,
form[name=checkout] h4:before {
  display: none !important;
}

/* Paginator */
html .woocommerce-pagination {
  background: none;
  box-shadow: none;
}

html .woocommerce nav.woocommerce-pagination ul li a,
html .woocommerce nav.woocommerce-pagination ul li span {
  padding: 0.65em;
  font-size: 12px;
  font-weight: 600;
  color: #32c5f8;
  padding: 0;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  line-height: 20px;
}

html .post-page-numbers.current.page-numbers.current,
html a.post-page-numbers:hover,
html a.page-numbers:hover,
html .woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: #32c5f8;
  color: #fff;
}

html .woocommerce nav.woocommerce-pagination ul li a,
html .woocommerce nav.woocommerce-pagination ul li span {
  padding: 0;
}

/* Sidebar */
.sidebar-block .widget {
  border-radius: 8px;
  box-shadow: none;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 5000px 1px #004a98 inset !important;
  margin: 0 0 1.5rem;
}

.sidebar-block .widget .widget-content {
  padding: 24px;
  border-radius: 5px;
}

.sidebar-block .widget .widget-content .widget-title {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.02em;
  color: #dcf3ff;
  padding: 0 0 30px 0;
  margin: 0;
}

.sidebar-block .widget .widget-content .widget-title::before {
  display: none;
}

.sidebar-block .widget .woocommerce-product-search .search-field {
  background-color: #f5fbfe;
}

.sidebar-block .widget .widget-content ul li a {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #f5fbfe;
}

.sidebar-block .widget .widget-content ul li.current-cat a {
  color: #32c5f8;
}

html .woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  background-color: transparent;
}

html .widget_recently_viewed_products .woocommerce-Price-amount.amount,
.widget_shopping_cart .quantity {
  border-top: 1px solid #9cd5f1;
}

html .widget_shopping_cart .quantity,
html .product_list_widget .woocommerce-Price-amount.amount,
html .widget_shopping_cart .quantity {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #f5fbfe;
}

html .woocommerce ul.cart_list li img,
html .woocommerce ul.product_list_widget li img {
  background: #fff;
  margin: 0.65rem 20px -1.5rem 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ffffff inset;
}

html .woocommerce a.remove {
  background-color: #ff2e48;
  color: #fff !important;
  background-color: #ff2e48;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ff2e48 inset;
}

html .woocommerce.widget_shopping_cart .total {
  border-top: 1px solid #9cd5f1;
  color: #32c5f8;
}

html .woocommerce.widget_shopping_cart .buttons a {
  padding: 0;
  height: 37px;
  width: 100px;
  line-height: 32px;
  background: #004a98;
  box-shadow: 0px 2px 5px #062146;
}

html .woocommerce.widget_shopping_cart .buttons a.button.checkout {
  box-shadow: 0 0 6px 0 #9de5fa;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #9cd5f1 inset;
  color: #0a3774;
}

html .widget .woocommerce-product-search button {
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #9cd5f1 inset;
  color: #0a3774;
}

.woocommerce-mini-cart.cart_list.product_list_widget .woocommerce-mini-cart-item.mini_cart_item {
  padding: 0 !important;
}

.woocommerce-mini-cart.cart_list.product_list_widget .woocommerce-mini-cart-item.mini_cart_item img {
  margin-top: 0 !important;
}

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  top: 0 !important;
  left: 25px !important;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  height: 36px;
}

/* Cart */
.shop_table.shop_table_responsive.cart.woocommerce-cart-form__contents,
.cart-collaterals {
  max-width: 936px;
  margin: 0 auto;
}

html .woocommerce table.shop_table {
  border: solid 2px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 10000px 1px #004a98 inset;
}

html .woocommerce-cart table.cart th {
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.02em;
  color: #9cd5f1;
}

html .woocommerce-cart-form__cart-item .product-subtotal,
.woocommerce-cart-form__cart-item .product-price {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f5fbfe;
}

html .woocommerce-cart-form__cart-item .product-price {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f5fbfe;
}

html .woocommerce-cart table.cart img {
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #ebf7fc inset !important;
}

html .woocommerce-cart-form__cart-item a {
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: #9cd5f1;
}

.woocommerce table.shop_table td {
  border-top: 0 !important;
}

.woocommerce table.cart td.actions,
.woocommerce-page table.cart td.actions {
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-top: 1px solid #32c5f8 !important;
}

.woocommerce table.shop_table td.product-remove {
  padding-left: 0 !important;
}

.woocommerce table.shop_table thead tr th {
  border-bottom: 1px solid #32c5f8 !important;
}

html .cart_totals h4 {
  padding-top: 35px;
}

.woocommerce-cart .cart-collaterals .cart_totals table .order-total th,
.woocommerce-cart .cart-collaterals .cart_totals table .order-total td {
  border-top: 1px solid #32c5f8 !important;
  padding-left: 0;
  padding-right: 0;
  width: auto;
  color: #32c5f8;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px !important;
  line-height: 22px !important;
  letter-spacing: 0.02em !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table .cart-subtotal th {
  color: #32c5f8;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700 !important;
  font-size: 14px !important;
  line-height: 22px !important;
  letter-spacing: 0.02em !important;
}

.woocommerce-cart .cart-collaterals .cart_totals table .cart-subtotal th,
.woocommerce-cart .cart-collaterals .cart-subtotal td {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

html .woocommerce-cart .cart-collaterals .cart-subtotal td span,
html .order-total span.woocommerce-Price-amount.amount,
html .order-total span.woocommerce-Price-amount.amount bdi span {
  font-family: "Inter";
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.02em;
  color: #32c5f8 !important;
}

html .woocommerce-cart .cart-collaterals .cart-subtotal td span {
  color: #fff !important;
}

html .woocommerce-cart .cart-collaterals a.checkout-button.button.alt {
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #9cd5f1 inset;
  color: #0a3774;
  width: 244px;
}

/* button coupon */
.woocommerce table.cart td.actions .coupon {
  width: 400px !important;
}

.woocommerce .cart button[name=apply_coupon] {
  margin-left: 0 !important;
  background: transparent !important;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text,
#coupon_code {
  border-radius: 90px !important;
}

/* Chekcout */
.woocommerce form.checkout {
  padding: 25px !important;
  border: solid 1px transparent !important;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8) !important;
  background-origin: border-box !important;
  background-clip: content-box, border-box !important;
  box-shadow: 2px 5000px 1px #0a499d inset !important;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 100%;
  flex-direction: column;
}

form[name=checkout] h4 {
  padding-bottom: 25px !important;
}

.woocommerce form .form-row label {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0 !important;
}

.woocommerce-input-wrapper {
  width: 100%;
}

html .woocommerce form .form-row label {
  font-family: "Inter";
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  color: #ffffff;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text,
.select2-container--default .select2-selection--single,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #32c5f8 !important;
  border-radius: 5px !important;
}

.woocommerce-checkout-review-order table.shop_table {
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

.woocommerce-checkout-review-order table.shop_table * {
  background: none !important;
  border: none !important;
}

/*------------------------------------*\
    $Layout del sitio: layout/
\*------------------------------------*/
/*------------------------------------*\
    $MENU
\*------------------------------------*/
.navigation ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navigation ul li {
  position: relative;
  margin-left: 30px;
}
@media screen and (min-width: 1025px) {
  .navigation ul li {
    margin-left: 53px;
  }
}
.navigation ul li:first-child {
  margin-left: 0;
}
.navigation ul li a {
  position: relative;
  z-index: 5;
  display: block;
  color: #ffffff;
  padding: 0 4px 0;
  text-transform: uppercase;
  font-size: 12px;
}
.navigation ul li a:active, .navigation ul li a:visited, .navigation ul li a:focus {
  color: #ffffff;
}
.navigation ul li a:hover {
  position: relative;
  text-decoration: underline;
}
.navigation ul li a.active {
  position: relative;
  font-weight: bold;
}
.navigation ul li a:hover {
  color: #ffffff;
}
.navigation ul li a.login-button {
  display: inline-block;
  padding: 11px 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 146px;
  height: 40px;
  text-align: center;
}
.navigation ul li a.login-button:hover:after {
  display: none;
}
.navigation ul li a.login-button--general {
  border: none;
  background-color: #4a3316;
  color: #ffffff;
}
.navigation ul li a.login-button--general:active, .navigation ul li a.login-button--general:visited, .navigation ul li a.login-button--general:focus {
  color: #ffffff;
}
.navigation ul li a.login-button--general:hover {
  background-color: #ea6d23;
  color: #ffffff;
}
.navigation ul li a.login-button--fixed {
  font-size: rem-calc(12px) !important;
}
.navigation ul li a.open-submenu:hover:after {
  display: none;
}
.navigation ul li ul {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 170px;
  padding: 20px;
  margin: 20px 0 0;
  background-color: #f2f5f7;
  box-shadow: 0 2px 11px 2px rgba(112, 112, 112, 0.24);
  border: 0 solid #9b9b9b;
}
.navigation ul li ul li {
  padding: 0 0 5px 0;
  margin-bottom: 5px;
  margin-left: 0;
}
.navigation ul li ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.navigation ul li ul li a,
.navigation ul li ul li button {
  display: block;
  width: 100%;
  color: #4a3316;
  text-decoration: none;
  border: 0;
  padding: 0;
  line-height: 18px;
  text-align: center;
  font-family: "Inter";
  font-size: 12px;
  text-transform: uppercase;
  background-color: transparent;
  transition: 0.3s;
}
.navigation ul li ul li a:active, .navigation ul li ul li a:visited, .navigation ul li ul li a:focus,
.navigation ul li ul li button:active,
.navigation ul li ul li button:visited,
.navigation ul li ul li button:focus {
  color: #4a3316;
}
.navigation ul li ul li a:after,
.navigation ul li ul li button:after {
  display: none !important;
}
.navigation ul li ul li a:hover,
.navigation ul li ul li button:hover {
  color: #ea6d23;
  font-weight: 500;
  text-decoration: none;
}
.navigation ul li ul li a.item-pending-payments,
.navigation ul li ul li button.item-pending-payments {
  position: relative;
}
.navigation ul li ul li a.item-pending-payments span,
.navigation ul li ul li button.item-pending-payments span {
  position: absolute;
  right: -15px;
  top: -5px;
}
.navigation ul li ul.submenu-mobile--user {
  top: 15px !important;
}
.navigation ul li:hover > ul {
  display: block;
}
.navigation ul li .open-submenu--user {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
}
.navigation ul li .open-submenu--user > span {
  display: inline-block;
  margin-left: 15px;
  color: #ffffff !important;
}
.navigation ul li .open-submenu--user:hover {
  text-decoration: none;
}
.navigation ul li .open-submenu--user:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.navigation--general ul li a {
  color: #4a3316;
}
.navigation--general ul li a:active, .navigation--general ul li a:visited, .navigation--general ul li a:focus {
  color: #4a3316;
}
.navigation--general ul li a:hover, .navigation--general ul li a.active {
  position: relative;
}
.navigation--general ul li a:hover::after, .navigation--general ul li a.active::after {
  content: "";
  position: absolute;
  bottom: -14px;
  right: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #4a3316;
}
.navigation--general ul li a:hover {
  color: #4a3316;
}
.navigation--general ul li a.login-button {
  display: inline-block;
  padding: 11px 16px 10px;
  border: 1px solid #4a3316;
  width: 146px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: rem-calc(14px);
}
.navigation--general ul li.has-submenu-list a:after {
  display: none;
}
.navigation--general ul li .open-submenu--user > span {
  display: inline-block;
  margin-left: 15px;
  color: #4a3316 !important;
}

.sandwich-button {
  display: inline-block;
  padding: 0;
  margin-right: 16px;
  color: #4a3316;
  line-height: 20px;
}
.sandwich-button span.icon-menu {
  font-size: 34px;
}
.sandwich-button span.icon-menu--active::before {
  content: "\e914" !important;
}

.wrap-mobile-menu {
  position: absolute;
  top: 65px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 70px);
  background-color: rgba(74, 51, 22, 0);
  transition: 0.3s ease-in-out;
}
.wrap-mobile-menu--active {
  left: 0;
  background-color: rgba(74, 51, 22, 0);
}

.nav-mobile {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  width: 210px;
  padding: 33px 16px 33px 16px;
  background-color: #4a3316;
  overflow-y: auto;
  box-shadow: 3px 3px 9px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 640px) {
  .nav-mobile {
    padding: 30px;
    overflow-y: scroll;
  }
}
.nav-mobile ul {
  display: block;
  text-align: left;
}
.nav-mobile ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.nav-mobile ul li a {
  position: relative;
  z-index: 5;
  color: #ea6d23;
  padding: 15px 0;
  display: block;
  text-transform: uppercase;
}
@media screen and (max-width: 640px) {
  .nav-mobile ul li a {
    padding: 5px 0;
  }
}
.nav-mobile ul li a.active, .nav-mobile ul li a.visited, .nav-mobile ul li a.focus {
  color: #ea6d23;
}
.nav-mobile ul li a:hover {
  color: #ea6d23;
}
.nav-mobile ul li a.open-submenu--user:hover {
  text-decoration: none;
}
.nav-mobile ul li a.open-submenu--user span {
  color: #ea6d23 !important;
}
.nav-mobile ul li a.cta {
  color: #ffffff !important;
}
.nav-mobile ul li:first-child a {
  padding-top: 0;
}
.nav-mobile ul li:last-child {
  padding-bottom: 20px;
}
.nav-mobile ul li ul {
  display: block;
  padding: 0;
  margin: 0;
  background-color: #4a3316;
}
.nav-mobile ul li ul li {
  margin: 0;
}
.nav-mobile ul li ul li a {
  display: block;
  color: #4a3316;
  text-decoration: none;
  padding-right: 0;
  font-size: 12px;
}
.nav-mobile ul li ul li a:active, .nav-mobile ul li ul li a:visited, .nav-mobile ul li ul li a:focus {
  color: #4a3316;
}
.nav-mobile ul li ul li a:hover {
  color: #ea6d23;
}
.nav-mobile ul li:hover > ul {
  display: block;
}
.nav-mobile .submenu-mobile {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.nav-mobile .submenu-mobile--active {
  height: auto;
}
.nav-mobile .submenu-mobile2 {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.nav-mobile .submenu-mobile2--active {
  height: auto !important;
}
.nav-mobile .open-submenu span {
  color: #4a3316;
  float: right;
}
.nav-mobile .open-submenu img {
  display: inline-block;
  transform: rotate(180deg);
}
.nav-mobile .open-submenu--active img {
  transform: rotate(0deg);
}
.nav-mobile .open-submenu2 img {
  display: inline-block;
  transform: rotate(180deg);
}
.nav-mobile .open-submenu2--active img {
  transform: rotate(0deg) !important;
}

.wrap-search-history {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: rgba(74, 51, 22, 0.4);
  transition: 0.3s ease-in-out;
  z-index: 40;
}
.wrap-search-history--active {
  right: 0;
  background-color: rgba(74, 51, 22, 0.4);
}

.search-history {
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% - 80px);
  width: 350px;
  padding: 40px 30px 40px 40px;
  background-color: #ffffff;
  overflow-y: scroll;
}
@media screen and (max-width: 640px) {
  .search-history {
    overflow-y: scroll;
    width: 100%;
    max-width: 350px;
  }
}
.search-history ul {
  display: block;
  text-align: left;
}
.search-history ul li {
  position: relative;
  display: block;
  margin-bottom: 55px;
}
.search-history ul li:last-child {
  margin-bottom: 0;
}
.search-history ul li h2 {
  font-size: 30px;
  margin-bottom: 15px;
}
.search-history ul li h4 {
  font-size: 26px;
  font-family: "Inter";
  color: #212b36;
}
.search-history--input-icon {
  position: relative;
}
.search-history--input-icon img {
  position: absolute;
  right: 10px;
  top: 38px;
}
.search-history--close {
  position: absolute;
  right: 10px;
  top: 20px;
  cursor: pointer;
  font-size: 26px;
  color: #212b36;
}
.search-history--close span {
  color: #212b36 !important;
}
.search-history--group {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.gradient-border-general {
  padding: 24px;
  border-radius: 8px;
  box-shadow: none;
  border: solid 2px #14b1e7;
  background-origin: border-box;
  background-clip: content-box, border-box;
}
.gradient-border-general--dark {
  box-shadow: 2px 8000px 1px #0a3774 inset !important;
}

.h-underline {
  position: relative;
}

.h-underline::after {
  content: "";
  display: block;
  width: 184px;
  height: 6px;
  margin: 27px auto 0;
  background-color: #32c5f8;
  border-radius: 20px;
}

.gradient-base *, .dashboard__menu ul li a:active *, .dashboard__menu ul li a:visited *, .dashboard__menu ul li a:focus *, .dashboard__menu ul li a *,
.gradient-base,
.dashboard__menu ul li a:active,
.dashboard__menu ul li a:visited,
.dashboard__menu ul li a:focus,
.dashboard__menu ul li a {
  background: linear-gradient(90deg, #f0faff -18.42%, #14b1e7 132.89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.gradient-base-solid {
  background: linear-gradient(90deg, #f0faff -18.42%, #14b1e7 132.89%);
}

@media (min-width: 1025px) {
  .primary-menu {
    padding-top: 10px !important;
  }
  .primary-menu {
    justify-content: space-between !important;
  }
  .primary-menu .navbar-collapse {
    width: 100%;
    justify-content: space-between !important;
  }
  .navbar-expand-lg .navbar-nav {
    padding: 0 !important;
  }
  .navbar-dark .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
    text-transform: uppercase;
  }
  #primary-menu li {
    padding-right: 53px;
  }

  .custom-logo-link {
    /*padding-right: 130px;*/
  }

  @media (max-width: 430px){
    .custom-logo-link {
      padding-right: 54px;
    }
  }

  .custom-logo {
    max-height: 90px !important;
    margin-right: 0 !important;
  }

  @media (max-width: 430px){
  .custom-logo {
    max-height: 500px !important;
    margin-right: 0 !important;
  }
}

}
.header-cart-icon--mobile {
  position: absolute;
  top: 15px;
  right: 20px;
  justify-content: flex-end;
}
.header-cart-icon--mobile .cart-contents {
  border-radius: 100%;
}

.navbar-dark .navbar-nav .nav-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #062146;
}

.magic-search form .inner-form .row .input-field.first input {
  background-color: #32c5f8;
}
.magic-search svg.search-icon {
  color: #fff;
}

.cart-contents {
  background-color: #32c5f8;
}
.cart-contents svg {
  color: #fff;
}
.cart-contents:hover {
  background-color: #32c5f8;
}
.cart-contents:hover svg {
  color: #fff !important;
}

.cart-contents-count {
  background-color: #ff2e48;
}

.header-bg {
  background: none !important;
}

.header-bg #header-wave {
  display: none !important;
}

.header-bg .title-wrap .header-title {
  font-weight: 600;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
  font-family: "Inter";
}
@media screen and (min-width: 1024px) {
  .header-bg .title-wrap .header-title {
    font-size: 50px;
    line-height: 64px;
  }
}

@media screen and (max-width: 1024px) {
  .inner-header {
    margin-top: 30px;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 1025px) {
  .primary-menu .header-icons {
    position: fixed !important;
    right: 20%;
    top: 25px;
    z-index: 5;
  }
  .primary-menu .header-icons .cta-plain--login {
    background-color: #ffffff;
  }
}

body .breadcrumbs {
  position: relative;
  color: #fff;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14.4019px;
  line-height: 26px;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  body .breadcrumbs {
    font-size: 11px;
    line-height: 16px;
  }
}
body .breadcrumbs::after {
  content: "";
  display: block;
  width: 184px;
  height: 6px;
  margin: 17px auto 0;
  background-color: #32c5f8;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  body .breadcrumbs span[typeof=ListItem] {
    margin-bottom: 1rem;
  }
}
body .breadcrumbs a {
  background: #32c5f8;
  border-radius: 5.84424px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14.4019px;
  line-height: 26px;
}
@media screen and (max-width: 1024px) {
  body .breadcrumbs a {
    font-size: 11px;
    line-height: 15px;
  }
}
body .breadcrumbs a:active, body .breadcrumbs a:focus, body .breadcrumbs a:visited {
  color: #fff;
}

.login {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 640px) {
  .login {
    width: 760px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .login {
    width: 932px;
  }
}
.login--center {
  justify-content: center;
}
.login__form {
  position: relative;
  display: block;
  width: 350px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.login__form:first-of-type {
  margin-bottom: 30px;
}
@media screen and (min-width: 640px) {
  .login__form:first-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .login__form {
    width: 452px;
    padding-left: 74px;
    padding-right: 74px;
    margin-left: 0;
    margin-right: 0;
  }
}
.login__form h3 {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0.02em;
}
.login__form p {
  margin-bottom: 22px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
}
.login__form p a {
  font-weight: 600;
}
.login__form .cta {
  max-width: 100%;
}
.login__form small {
  padding-top: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  color: #dcf3ff;
}
.login .forgot-pass {
  text-align: left !important;
}
.login .forgot-pass a {
  font-family: "Inter";
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.02em;
  color: #32c5f8;
  text-decoration: none;
}
.login .social-login-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.login .social-login-icons li {
  max-width: 57px;
  margin: 0 10px;
}
.login .title-social {
  position: relative;
  margin: 30px 0 20px 0;
  padding: 0 0 0;
  text-align: center;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  color: #fff;
  background-image: url("../images/social-lines.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.thankyou-order {
  position: relative;
}
.thankyou-order__header img {
  display: block;
  margin: 0 auto;
}
.thankyou-order__header h5 {
  color: #dcf3ff;
  text-align: center;
}
.thankyou-order__no-order {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .thankyou-order__no-order {
    flex-direction: row;
  }
}
.thankyou-order__no-order p {
  display: block;
  margin: 0 0 20px 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f5fbfe;
}
.thankyou-order__no-order p strong {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0.02em;
}
.thankyou-order__no-order p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .thankyou-order__no-order p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .thankyou-order__no-order p:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #f0faff -18.42%, #14b1e7 132.89%);
  }
  .thankyou-order__no-order p:nth-child(4):after, .thankyou-order__no-order p:nth-child(5):after {
    display: none;
  }
  .thankyou-order__no-order p .cta-plain {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .thankyou-order__no-order p {
    margin-bottom: 0;
  }
}
.thankyou-order__resume {
  position: relative;
  margin-top: 48px;
}
.thankyou-order__resume .resume-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.02em;
  color: #fff;
}
.thankyou-order__resume .resume-header p {
  display: block;
  min-width: 127px;
  margin: 0;
  font-weight: 700;
}
.thankyou-order__resume .resume-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.thankyou-order__resume .resume-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #9cd5f1;
}
.thankyou-order__resume .resume-list ul li:last-child {
  margin-bottom: 0;
}
.thankyou-order__resume .resume-list ul li > span {
  display: block;
  min-width: 127px;
}
.thankyou-order__resume .resume-list ul li.order-have-been-delivered-already {
  color: #6fcf97;
}
.thankyou-order__resume .resume-list ul li.order-have-been-delivered-already > span:nth-child(2) {
  padding-left: 35px;
  background-image: url(../images/green-check.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left center;
}
.thankyou-order__resume .resume-footer {
  position: relative;
  padding-top: 24px;
}
.thankyou-order__resume .resume-footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #14b1e7);
}
.thankyou-order__resume .resume-footer ul {
  position: relative;
  margin: 24px 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}
.thankyou-order__resume .resume-footer ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.02em;
  color: #fff;
}
.thankyou-order__resume .resume-footer ul li > span {
  display: block;
}
.thankyou-order__resume .resume-footer ul li > span:nth-child(2) {
  width: 127px;
  color: #9cd5f1;
}

.location {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .location {
    flex-direction: row;
    padding: 0;
  }
}
.location__left {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .location__left {
    max-width: 305px;
    margin-bottom: 0;
  }
}
.location__right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .location__right {
    max-width: 745px;
  }
}
.location__right iframe {
  width: 100%;
  height: 410px;
}
.location__active-days {
  padding-left: 50px;
  padding-top: 42px;
}
.location__active-days p {
  position: relative;
  margin: 0;
  font-weight: 500;
  color: #dcf3ff;
  font-size: 14px;
}
.location__active-days p span {
  font-weight: 400;
  font-size: 12px;
  color: #bae2f5;
}
.location__active-days p:first-child img {
  position: absolute;
  left: -40px;
  top: 0;
}
.location__active-days .cta {
  margin-top: 25px;
}
.location__modal {
  text-align: center;
}
.location__modal-footer {
  padding: 35px 60px;
  justify-content: center;
}
.location__modal-footer p {
  color: #004a98;
  font-weight: 500;
}
.location__modal-footer p a {
  font-weight: 600;
}
.location__addresses h5 {
  text-align: center;
}
.location__addresses .list-addresses {
  padding-top: 20px;
}
.location__addresses .block-address {
  max-width: 410px;
  margin: 0 auto 8px;
}
.location__addresses .block-address__top {
  position: relative;
  padding-left: 50px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.location__addresses .block-address__top img {
  position: absolute;
  left: 10px;
  top: -5px;
}
.location__addresses .block-address__top .billing-id {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 25px;
  background-image: url(../images/billing-icon.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.location__addresses .block-address__top .billing-id span {
  font-style: normal;
  font-weight: 700;
  font-size: 10.3841px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #32c5f8;
}
.location__addresses .block-address__top:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f0faff 0%, #14b1e7 60%, rgba(50, 197, 248, 0) 100%);
}
.location__addresses .block-address__top--noborder {
  margin-bottom: 0;
}
.location__addresses .block-address__top--noborder::after {
  display: none;
}
.location__addresses .block-address__bottom {
  position: relative;
  padding-left: 50px;
}
.location__addresses .block-address__bottom .list-days {
  padding-top: 10px;
  margin-bottom: 40px;
}
.location__addresses .block-address__bottom img {
  position: absolute;
  left: 10px;
  top: -5px;
}
.location__addresses .block-address p {
  margin: 0;
  color: #f5fbfe;
}
.location__addresses .block-address p strong {
  display: block;
  font-weight: bold;
  color: #9cd5f1;
}

.list-days {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0 !important;
}
.list-days li {
  margin-right: 8px;
}
.list-days li span {
  display: block;
  width: 66px;
  height: 24px;
  padding: 8px;
  text-transform: uppercase;
  text-align: center;
  line-height: 10px;
  font-weight: 700;
  color: #f0faff;
  background: #062146;
  font-size: 12px;
  border-radius: 4px;
}

.dashboard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .dashboard {
    flex-direction: row;
    padding: 0;
  }
}
.dashboard__menu {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .dashboard__menu {
    width: 360px;
    margin-bottom: 0;
  }
}
.dashboard__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dashboard__menu ul li {
  display: block;
  margin-bottom: 24px;
}
.dashboard__menu ul li a {
  font-style: normal;
  font-weight: 600;
  font-size: 21px;
  line-height: 31px;
  letter-spacing: 0.02em;
}
.dashboard__menu ul li a:hover {
  position: relative;
  padding-left: 15px;
  color: #32c5f8;
  background: #32c5f8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.dashboard__menu ul li a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #32c5f8;
}
.dashboard__menu ul li:last-child {
  margin-bottom: 0;
}
.dashboard__menu ul li.current-item a, .dashboard__menu ul li.current-menu-item a {
  position: relative;
  padding-left: 15px;
  color: #32c5f8;
  background: #32c5f8;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.dashboard__menu ul li.current-item a::before, .dashboard__menu ul li.current-menu-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #32c5f8;
}
.dashboard__review {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  .dashboard__review {
    flex-direction: row;
  }
}
.dashboard__review h5 {
  padding: 0 !important;
}
.dashboard__review p {
  margin: 0;
  color: #32c5f8;
}
.dashboard__review .review-left {
  width: 100%;
  margin-bottom: 23px;
}
@media screen and (min-width: 1024px) {
  .dashboard__review .review-left {
    width: 310px;
    margin-bottom: 0;
  }
}
.dashboard__review .review-right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .dashboard__review .review-right {
    width: 290px;
    margin-bottom: 0;
  }
}
.dashboard__content {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .dashboard__content {
    width: 744px;
  }
}
.dashboard__content .data-user {
  position: relative;
}
.dashboard__content .data-user p {
  color: #ffffff;
}
.dashboard__content .data-user p:last-child {
  margin-bottom: 0;
}
.dashboard__content .data-user p a {
  color: #32c5f8;
}
.dashboard__content h5 {
  margin: 0;
  padding: 60px 0 33px 0;
  color: #f5fbfe;
}
.dashboard__content .delivery-types {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
.dashboard__content .delivery-types__type {
  display: block;
  width: 200px;
  margin: 0 15px;
}
.dashboard__content .delivery-types__type a {
  display: block;
}
.dashboard__content .delivery-types__type a .circle-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  margin-bottom: 15px;
  background-image: url(https://salvavidasenlinea.com.gt/wp-content/uploads/2022/11/200x200_bigger.gif);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.dashboard__content .delivery-types__type a .circle-image img {
  display: block;
  max-width: 160px;
  margin: 0 auto;
}
.dashboard__content .delivery-types__type a h5 {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #ebf7fc;
}
.dashboard__content .delivery-types__type a:hover {
  text-decoration: none;
}
.dashboard__info-orders > p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #fff;
}
.dashboard__info-orders h4 {
  padding: 33px 0 24px;
  margin: 0;
  color: #fff;
}
.dashboard__info-orders .orders-address-data__info p {
  margin: 0;
}
.dashboard__info-orders .orders-address-data__info p:first-child {
  margin-bottom: 24px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.dashboard__info-orders .orders-address-data__info p:last-child {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #9cd5f1;
}
.dashboard__info-orders .orders-address-data__info:last-child {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid #32c5f8;
}
.dashboard__order-item p {
  color: #fff;
}
.dashboard__order-item p strong {
  line-height: inherit;
}
.dashboard__order-item p span {
  color: #32c5f8;
  font-weight: 700;
}
.dashboard--reviews {
  justify-content: center;
}
.dashboard__reviews {
  padding: 80px;
  width: 564px;
}
@media screen and (min-width: 1024px) {
  .dashboard__reviews {
    padding: 52px 130px;
  }
}
.dashboard__reviews h5 {
  padding: 0;
  margin-bottom: 88px;
  color: #dcf3ff;
  text-align: center;
}
.dashboard__reviews img {
  display: block;
  margin: 0 auto;
}
.dashboard__reviews p {
  margin: 22px 0;
  color: #f5fbfe;
  text-align: center;
}
.dashboard__reviews ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 22px 0 32px 0;
  list-style: none;
  flex-wrap: wrap;
}
.dashboard__reviews ul li {
  width: 25%;
  text-align: center;
}
.dashboard__reviews ul li a {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  transition: 0.3s;
}
.dashboard__reviews ul li a:hover {
  text-decoration: none;
  color: #a2dffe;
}
.dashboard__reviews ul li a:hover .waterdrop {
  background-color: #a2dffe;
}
.dashboard__reviews textarea {
  height: 78px;
  margin-bottom: 32px;
}
.dashboard__reviews .waterdrop {
  display: block;
  width: 24px;
  height: 28px;
  margin: 0 auto 10px;
  border-radius: 0px 50% 50% 50%;
  transform: rotate(33deg) skewY(25deg);
}
.dashboard__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  text-align: center;
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
}
.dashboard__empty h5 {
  padding: 5px 0 20px;
  color: #9cd5f1;
}
.dashboard__empty p {
  margin-bottom: 20px;
  color: #f5fbfe;
}
.dashboard__empty a {
  margin-bottom: 20px;
}
.dashboard__options-pre-order {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  .dashboard__options-pre-order {
    flex-direction: row;
  }
}
@media screen and (max-width: 1024px) {
  .dashboard__options-pre-order span {
    display: block;
    padding-bottom: 20px;
  }
}
.dashboard__first-order {
  max-width: 405px;
  margin-left: auto;
  margin-right: auto;
}
.dashboard__first-order h5 {
  padding-top: 0;
  color: #32c5f8;
  text-align: center;
}
.dashboard__first-order p {
  position: relative;
  margin-bottom: 0;
  text-align: center;
}
.dashboard__first-order p.features {
  margin-top: 60px;
  padding-left: 100px;
  text-align: left;
}
.dashboard__first-order p.features img {
  position: absolute;
  left: 0;
  top: 0;
}
.dashboard__content-products {
  width: 100%;
  max-width: 840px;
}
.dashboard__sidebar {
  width: 100%;
  max-width: 265px;
}
.dashboard__message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .dashboard__message {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .dashboard__message h4 {
    margin: 0 35px 0 0;
  }
}
.dashboard__wishlist-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .dashboard__wishlist-item {
    flex-direction: row;
  }
}
.dashboard__wishlist-item > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f5fbfe;
}
@media screen and (max-width: 1024px) {
  .dashboard__wishlist-item > div {
    width: 100% !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .dashboard__wishlist-item > div:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f0faff 0%, #14b1e7 60%, rgba(50, 197, 248, 0) 100%);
  }
  .dashboard__wishlist-item > div:first-child::after, .dashboard__wishlist-item > div:last-child::after {
    display: none;
    margin-bottom: 0;
  }
}
.dashboard__wishlist-item > div .tag-mobile {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #9cd5f1;
}
@media screen and (min-width: 1024px) {
  .dashboard__wishlist-item > div .tag-mobile {
    display: none;
  }
}
.dashboard__wishlist-item > div:nth-child(1) {
  width: 25px;
}
@media screen and (max-width: 1024px) {
  .dashboard__wishlist-item > div:nth-child(1) a {
    margin: 0 auto;
  }
}
.dashboard__wishlist-item > div:nth-child(2) {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 290px;
}
.dashboard__wishlist-item > div:nth-child(2) h5 {
  width: 200px;
  padding: 0;
  color: #9cd5f1;
}
@media screen and (max-width: 1024px) {
  .dashboard__wishlist-item > div:nth-child(2) h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #f5fbfe;
    width: 130px;
    text-align: right;
  }
}
.dashboard__wishlist-item > div:nth-child(3) {
  width: 90px;
}
.dashboard__wishlist-item > div:nth-child(4) {
  width: 70px;
}
.dashboard__wishlist-item > div:nth-child(4) input {
  width: 70px;
}
.dashboard__wishlist-item > div:nth-child(5) {
  width: 140px;
}
.dashboard__wishlist-item > div:nth-child(5) .cta {
  font-size: 14px;
}
.dashboard__wishlist-item > div .image {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 5000px 1px #ebf7fc inset !important;
}
.dashboard__wishlist-item > div .image img {
  height: 100%;
  object-fit: contain;
}
.dashboard__payment-methods {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  .dashboard__payment-methods {
    flex-direction: row;
  }
}
.dashboard__payment-methods > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #f5fbfe;
}
@media screen and (max-width: 1024px) {
  .dashboard__payment-methods > div {
    width: 100% !important;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .dashboard__payment-methods > div:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f0faff 0%, #14b1e7 60%, rgba(50, 197, 248, 0) 100%);
  }
  .dashboard__payment-methods > div:first-child::after, .dashboard__payment-methods > div:last-child::after {
    display: none;
    margin-bottom: 0;
  }
}
.dashboard__payment-methods > div .tag-mobile {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #9cd5f1;
}
@media screen and (min-width: 1024px) {
  .dashboard__payment-methods > div .tag-mobile {
    display: none;
  }
}
.dashboard__payment-methods > div:nth-child(1) {
  width: 50px;
}
@media screen and (max-width: 1024px) {
  .dashboard__payment-methods > div:nth-child(1) a {
    margin: 0 auto;
  }
}
.dashboard__payment-methods > div:nth-child(2) {
  width: 80%;
}
.dashboard .payment-form {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .dashboard .payment-form .flex-between label {
    width: 48%;
  }
}
.dashboard .message-cvv {
  display: block;
  width: 130px;
  padding-top: 15px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: #9cd5f1;
}
.dashboard .error-message {
  display: block;
  padding-top: 15px;
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.02em;
  color: #ff2e48;
}
.dashboard__address .location__addresses {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.dashboard__address .block-address {
  position: relative;
  max-width: 360px;
  margin: 0;
  margin-bottom: 20px;
  margin-right: 30px;
}
.dashboard__address .block-address:nth-child(even) {
  margin-right: 0;
}
.dashboard__address .block-address .list-days {
  margin-bottom: 25px;
}
.dashboard__address .block-address .radio {
  margin: 0 0 20px 0;
}
.dashboard__address .block-address label {
  font-weight: 400;
  color: #9cd5f1;
}
.dashboard__address .block-address .cta-plain {
  max-width: 285px;
}
.dashboard__address .block-address .delete {
  position: absolute;
  top: 10px;
  right: 10px;
}
.dashboard__billing form {
  max-width: 425px;
}
.dashboard__account-detail .account-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.dashboard__account-detail .account-item p {
  margin: 0;
  color: #9cd5f1;
}
.dashboard__account-detail .account-item .cta-plain {
  max-width: 210px;
}
.dashboard__account-detail h5 {
  padding-top: 0;
  padding-bottom: 25px;
}
.dashboard__account-detail form,
.dashboard__account-detail p {
  max-width: 455px;
}

.delete {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #ff2e48;
  border-radius: 100%;
}

.address-delivery {
  display: block;
  width: 100%;
  max-width: 345px;
  margin-left: auto;
  margin-right: auto;
  padding: 11px 18px;
  background-color: #dcf3ff;
  color: #004a98;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.02em;
  border-radius: 8px;
}
.address-delivery:active, .address-delivery:visited, .address-delivery:focus {
  color: #004a98;
}
.address-delivery:hover {
  text-decoration: none;
}

.img-gradient {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 100%;
}

.anticipated-order {
  position: relative;
}
.anticipated-order__deliveries {
  max-width: 935px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries {
    padding: 0 25px;
  }
}
.anticipated-order__deliveries > h5 {
  margin: 0;
  padding-bottom: 40px;
  color: #9cd5f1;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries > h5 {
    text-align: center;
  }
}
.anticipated-order__deliveries .deliveries-addresses {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .deliveries-addresses {
    flex-direction: column;
  }
}
.anticipated-order__deliveries .deliveries-addresses__left .block-address {
  max-width: 410px;
  margin: 0 auto 8px;
}
.anticipated-order__deliveries .deliveries-addresses__left .block-address p {
  position: relative;
  margin: 0;
  padding-left: 50px;
  color: #9cd5f1;
}
.anticipated-order__deliveries .deliveries-addresses__left .block-address p > img {
  position: absolute;
  left: 10px;
  top: -5px;
}
.anticipated-order__deliveries .deliveries-addresses__left .block-address p a {
  display: block;
  margin-top: 40px;
  color: #32c5f8;
}
.anticipated-order__deliveries .deliveries-addresses__right {
  position: relative;
}
.anticipated-order__deliveries .deliveries-addresses__right .location__active-days {
  padding-top: 0;
}
.anticipated-order__deliveries .go-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 45px;
  padding-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .go-checkout {
    flex-direction: column;
  }
}
.anticipated-order__deliveries .go-checkout p {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .go-checkout p {
    margin-bottom: 20px;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row {
  position: relative;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #32c5f8;
  border-bottom: 1px solid #32c5f8;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__header > div {
  color: #9cd5f1;
  font-weight: 600;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__header > div:nth-child(1) {
  width: 555px;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__header > div:nth-child(2) {
  width: 130px;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__header > div:nth-child(2) {
    display: none;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__header > div:nth-child(3) {
  width: 70px;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__content {
    align-items: flex-start;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 555px;
  padding-left: 74px;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(1) .disp {
  display: block;
}
@media screen and (min-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(1) .disp {
    display: none;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(1) h5 {
  margin-left: 20px;
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(1) h5 {
    margin-left: 0;
    margin-top: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(1) {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 0;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(2) {
  width: 130px;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(2) {
    display: none;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(3) {
  width: 70px;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content > div:nth-child(3) input {
  width: 60px;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content .image {
  width: 105px;
  height: 105px;
  border-radius: 100%;
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 5000px 1px #ebf7fc inset !important;
}
.anticipated-order__deliveries .products-to-delivery .delivery-row__content .image img {
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 640px) {
  .anticipated-order__deliveries .products-to-delivery .delivery-row__content .image {
    width: 40px;
    height: 40px;
  }
}
.anticipated-order__deliveries .products-to-delivery .delivery-row:first-child .delivery-row__header {
  border-top: 0;
}

.form-reschedule {
  width: 305px;
  margin: 0 auto;
}
.form-reschedule .radio {
  margin: 0 auto;
  justify-content: center;
}
.form-reschedule label {
  font-weight: 400;
}
.form-reschedule .cta {
  margin-top: 45px;
}

.woocommerce-checkout .woocommerce {
  max-width: 745px;
  margin: 0 auto;
}

.woocommerce-billing-fields h3 {
  width: 0;
  height: 0;
  margin-bottom: 0;
  overflow: hidden;
  color: transparent;
}

.checkout-fields-group {
  position: relative;
  width: 100%;
  padding-top: 33px;
  padding-bottom: 33px;
}
.checkout-fields-group:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #14b1e7);
}
.checkout-fields-group .marker-checkout a {
  display: inline-block;
  padding-top: 25px;
  padding-bottom: 25px;
}
.checkout-fields-group .marker-checkout p {
  color: #f5fbfe;
}
.checkout-fields-group--first {
  padding-top: 0;
}
.checkout-fields-group--first:before {
  display: none;
}
.checkout-fields-group .content-checkbox {
  margin-bottom: 0;
  clear: both;
}
@media screen and (min-width: 1024px) {
  .checkout-fields-group #person_who_receive_field,
  .checkout-fields-group #phone_number_field {
    width: 50%;
  }
  .checkout-fields-group #person_who_receive_field {
    padding-right: 13px;
  }
  .checkout-fields-group #phone_number_field {
    padding-left: 13px;
  }
}
.checkout-fields-group ul {
  padding-top: 20px;
  margin: 0;
}
.checkout-fields-group ul .item-option {
  padding-bottom: 30px;
}
.checkout-fields-group ul .item-option .radio label {
  color: #32c5f8;
  font-weight: bold;
}
.checkout-fields-group ul .item-option p {
  margin: 0;
  padding-left: 30px;
  color: #fff;
}
.checkout-fields-group ul .item-option:last-child {
  padding-bottom: 0;
}

.help-tooltip {
  display: block;
  border-bottom: 0;
  background: none;
  border: 0;
  color: #ffffff;
  z-index: 2;
  cursor: pointer;
}
.help-tooltip > span {
  padding-bottom: 0 !important;
}

.has-tooltip-inline {
  position: relative;
  flex-direction: row !important;
}
.has-tooltip-inline .help-tooltip {
  position: relative;
  display: inline-block;
  bottom: 0;
  right: 0;
}

.help-tooltip:before,
.help-tooltip:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.help-tooltip:before {
  display: block;
  position: absolute;
  bottom: 25px;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -80px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0deg, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltips);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

.help-tooltip:after {
  position: absolute;
  bottom: 25px;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0deg, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

.help-tooltip:hover:before,
.help-tooltip:hover:after {
  visibility: visible;
  opacity: 1;
}

.contact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
}
@media screen and (min-width: 1024px) {
  .contact {
    padding: 0 0;
  }
}
.contact__left {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contact__left {
    width: 365px;
    margin-bottom: 0;
  }
}
.contact__left h5 {
  margin-bottom: 0;
}
.contact__left ul {
  margin: 0;
  padding: 0;
}
.contact__left ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #f5fbfe;
}
.contact__left ul li img {
  margin-right: 8px;
}
.contact__right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .contact__right {
    width: 740px;
  }
}
.contact__right label {
  margin-bottom: 15px;
}
.contact__right textarea {
  height: 80px;
}
.contact__right .flex-end {
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 25px;
  border-top: 1px solid #32c5f8;
}
.contact__right .image {
  width: 91px;
  height: 91px;
  margin: 0 auto;
  border-radius: 100%;
  border: solid 2px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(101deg, #f0faff, #32c5f8);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 5000px 1px #004a98 inset !important;
}
.contact__right .image img {
  height: 100%;
  object-fit: contain;
}

.footer {
  margin-top: 100px;
  background-image: url("../images/bg-footer.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.footer__wrap {
  padding-top: 150px;
}
@media screen and (min-width: 1024px) {
  .footer__wrap {
    height: 505px;
  }
}
.footer__wrap h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #9cd5f1;
}
.footer__wrap p {
  color: #f5fbfe;
  font-weight: 500;
  font-size: 14px;
  line-height: 15px;
}
.footer__wrap .footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__wrap .footer-nav li {
  margin-bottom: 4px;
}
.footer__wrap .footer-nav li:last-of-type {
  margin-bottom: 0;
}
.footer__wrap .footer-nav li a {
  color: #ffffff;
}
.footer__wrap .footer-nav li a:active, .footer__wrap .footer-nav li a:visited, .footer__wrap .footer-nav li a:focus {
  color: #ffffff;
}
.footer__wrap .stores {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}
.footer__wrap .stores li {
  margin-bottom: 10px;
}
.footer__wrap .socials {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.footer__wrap .socials li {
  margin-right: 10px;
  max-width: 43px;
}
.footer__copy:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #f0faff -18.42%, #14b1e7 132.89%);
}
.footer__copy p {
  margin: 0;
  padding: 32px 0;
  color: #8cc0d9;
}

.modal .modal-dialog {
  max-width: 655px;
}
.modal .modal-content {
  background: #0a3774;
  border-radius: 35px;
  border: 0;
}
.modal .modal-header {
  justify-content: flex-end;
  padding: 35px 35px 22px;
  border: 0;
}
.modal .modal-header .btn-close {
  margin: 0;
  padding: 0;
  color: #32c5f8;
  background: transparent;
  box-shadow: none !important;
  border: 0;
}
.modal .modal-body {
  padding: 0 60px 55px;
}
.modal .modal-footer {
  background: #f5fbfe;
  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}
.modal .delete-account {
  max-width: 400px;
  margin: 0 auto;
}
.modal .delete-account h5 {
  margin-bottom: 25px;
}
.modal .delete-account ul {
  list-style: disc;
  margin-left: 20px;
}
.modal .delete-account .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal .delete-account .buttons .cta {
  max-width: 190px;
}

.modal-backdrop {
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.8);
}

.password {
  position: relative;
}
.password span.icon-show {
  position: absolute;
  top: 38px;
  right: 10px;
}
.password span.icon-show.active:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0px;
  display: block;
  width: 26px;
  height: 2px;
  transform: rotate(135deg);
  border-radius: 3px;
  background-color: #32c5f8;
}

#mapContainer {
  position: relative;
}
#mapContainer::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 42px;
  height: 59px;
  background-image: url("../images/map-pin.png");
}

.add-new-card {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 600px) {
  .add-new-card {
    gap: 0;
    flex-direction: column;
  }
}

.add-new-card > label {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  .add-new-card > label {
    width: 100%;
  }
}

.wrapper_days {
  margin-left: 30px;
}

.anticipated-list ul li {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #9cd5f1;
}

.button-empty-anticipated {
  display: grid;
  place-items: center;
}

.procesar-orden {
  display: grid;
  place-items: center;
}

.user-card {
  margin-left: 24px !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.modal-buttons a {
  margin: 0 10px;
}

.modal-product__button-border {
  background: rgba(174, 211, 255, 0.19);
  box-shadow: 0px 8px 16px rgba(25, 96, 178, 0.08);
  border-radius: 203.448px;
  width: 35px;
  height: 35px;
  outline: none;
}
.modal-product__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-product__input {
  color: #A2DFFE;
  margin: 0;
}
.modal-product__image {
  width: 100px;
  border-radius: 56.2834px;
  object-fit: contain;
  aspect-ratio: 1/3;
}
.modal-product__image-wrapper {
  background: #EBF7FC;
  backdrop-filter: blur(8.52778px);
  border-radius: 511.667px;
}
.modal-product__description {
  font-size: 14px;
}
.modal-product__name {
  font-size: 21px;
  line-height: 31px;
  margin-top: 18px !important;
  min-height: 2.6em;
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #dcf3ff !important;
  text-align: left;
}
.modal-product__text {
  font-family: "Inter", serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #F5FBFE;
}

.search-location {
  margin-bottom: 16px;
}

.wrapper-club {
  display: grid;
  align-items: center;
  height: 100%;
}

.wrapper-club p {
  text-align: center;
}

.drop-icon {
  object-fit: fill;
  margin: auto auto 32px;
  display: block;
}

.menu-fixed {
  position: fixed!important;
  left: 40em;
  right: 0;
  z-index: 5;
}

@media (max-width: 768px){
  .menu-fixed {
    left: 5%;
    right: 5%;
    z-index: 5;
    top: 80px;
  }
}

@media (min-width: 1280px) and (max-width: 1360px){
  .menu-fixed {
    position: fixed!important;
    left: 25em;
    right: 0;
    z-index: 5;
  }
}

.table-faq__col {
  border: none !important;
  color: white;
  text-align: left;
}

.dashboard__club-products {
  width: 100%;
  max-width: 865px;
}

.dashboard__club-product {
  width: 29.5% !important;
}

.bt-continuar-canje {
  margin-top: 16px;
}

.btn-confirmar {
  margin: 8px;
  width: 100%;
}

.buttons-confirmation {
  display: flex;
  justify-content: space-between;
}

.club__puntos {
  color: #F5FBFE;
  font-family: Inter, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-align: center;
}
.club__puntos__cantidad {
  color: #32C5F8;
  font-family: Inter, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: 0.02em;
  text-align: center;
}
.club__puntos__faq {
  color: #32C5F8;
  font-family: Inter, serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0.02em;
  text-align: center;
}
.club__puntos__separator {
  width: 184px;
  border: 3px solid #32C5F8;
  margin: auto;
}
.club__puntos__actions {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  align-items: center;
}
.club__puntos__tienda {
  color: #F5FBFE;
  font-family: Inter, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: left !important;
}

/*# sourceMappingURL=styles-aps.css.map */

/*nuevo css*/

@media (max-width: 430px){
.top-wrap {
    padding-bottom: 2em!important;
}
}

@media (max-width: 430px){
.magic-search {
    padding: 1.5rem!important;
}
}

@media (max-width: 430px){
.admin-bar .menu-fixed {
  top: 100px;
}
}

@media (max-width: 768px){
.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 50%;
    padding: 5px;
}
}

@media (min-width: 431px) and (max-width: 768px){
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
      width: 33.33%;
      padding: 5px;
  }
  }
  
  @media (min-width: 769px) and (max-width: 1024px){
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        padding: 7px;
    }
    }
  
  @media (max-width: 1024px){
  .content-area {
    padding: 10px;
  }
  }

@media (max-width: 768px){
.content-area {
  padding: 10px;
}
}

@media (max-width: 768px){
html body h1 {
  font-size: 60px;
  line-height: 70px;
}
}

.woocommerce table.cart td.actions .coupon {
  display: none;
}

.primary-menu-inner {
  min-width: 1140px;
}

@media (max-width: 1024px){
  .primary-menu-inner {
    min-width: 0!important;
  }
}

@media (min-width: 540px) and (max-width: 1024px){
.header-cart-icon.header-cart-icon--mobile.d-sm-block.d-md-none.d-lg-none{
display: block !important;
}
}

@media (min-width: 1025px){
#pr-nav {
  position: fixed !important;
}
}