/* -------- IMPORT -------- */
/* MIXING */
/* FONT */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i");
@import url(bootstrap.min.css);
@import url(bootstrap-theme.min.css);
@import url("https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i");
@font-face {
  font-family: 'BebasNeueBold';
  src: url("../fonts/BebasNeueBold.eot");
  src: url("../fonts/BebasNeueBold.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueBold.woff") format("woff"), url("../fonts/BebasNeueBold.ttf") format("truetype"), url("../fonts/BebasNeueBold.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueBook';
  src: url("../fonts/BebasNeueBook.eot");
  src: url("../fonts/BebasNeueBook.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueBook.woff") format("woff"), url("../fonts/BebasNeueBook.ttf") format("truetype"), url("../fonts/BebasNeueBook.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueLight';
  src: url("../fonts/BebasNeueLight.eot");
  src: url("../fonts/BebasNeueLight.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueLight.woff") format("woff"), url("../fonts/BebasNeueLight.ttf") format("truetype"), url("../fonts/BebasNeueLight.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueRegular';
  src: url("../fonts/BebasNeueRegular.eot");
  src: url("../fonts/BebasNeueRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueRegular.woff") format("woff"), url("../fonts/BebasNeueRegular.ttf") format("truetype"), url("../fonts/BebasNeueRegular.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueThin';
  src: url("../fonts/BebasNeueThin.eot");
  src: url("../fonts/BebasNeueThin.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueThin.woff") format("woff"), url("../fonts/BebasNeueThin.ttf") format("truetype"), url("../fonts/BebasNeueThin.svg#fontname") format("svg"); }
/* SIZE */
/* TYPO */
/* COLOURS */
/* Paths */
/* MEDIA QUERY */
.alert-danger {
  display: none; }

label.has-error {
  color: #d0021b; }

.has-error textarea {
  border: 1px solid #d0021b; }

/* FONT */
@font-face {
  font-family: 'BebasNeueBold';
  src: url("../fonts/BebasNeueBold.eot");
  src: url("../fonts/BebasNeueBold.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueBold.woff") format("woff"), url("../fonts/BebasNeueBold.ttf") format("truetype"), url("../fonts/BebasNeueBold.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueBook';
  src: url("../fonts/BebasNeueBook.eot");
  src: url("../fonts/BebasNeueBook.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueBook.woff") format("woff"), url("../fonts/BebasNeueBook.ttf") format("truetype"), url("../fonts/BebasNeueBook.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueLight';
  src: url("../fonts/BebasNeueLight.eot");
  src: url("../fonts/BebasNeueLight.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueLight.woff") format("woff"), url("../fonts/BebasNeueLight.ttf") format("truetype"), url("../fonts/BebasNeueLight.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueRegular';
  src: url("../fonts/BebasNeueRegular.eot");
  src: url("../fonts/BebasNeueRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueRegular.woff") format("woff"), url("../fonts/BebasNeueRegular.ttf") format("truetype"), url("../fonts/BebasNeueRegular.svg#fontname") format("svg"); }
@font-face {
  font-family: 'BebasNeueThin';
  src: url("../fonts/BebasNeueThin.eot");
  src: url("../fonts/BebasNeueThin.eot?#iefix") format("embedded-opentype"), url("../fonts/BebasNeueThin.woff") format("woff"), url("../fonts/BebasNeueThin.ttf") format("truetype"), url("../fonts/BebasNeueThin.svg#fontname") format("svg"); }
/* SIZE */
/* TYPO */
/* COLOURS */
/* Paths */
/* MEDIA QUERY */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #ff4d1b;
    border-radius: 10px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/* -------- IMPORT -------- */
/* -------- GENERAL -------- */
html {
  font-size: 16px;
  height: 100%; }

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  color: #6e6e6e; }

a {
  text-decoration: none; }
  a:active, a:focus, a:hover {
    text-decoration: none; }

.none-padding-right {
  padding-right: 0; }

.orange {
  color: #ff4d1b; }

.blue {
  color: #449ed5; }

.bold {
  font-weight: 600; }

.wrapper-padding {
  padding: 150px 0 100px; }
  @media (min-width: 768px) {
    .wrapper-padding {
      padding: 200px 0 100px; } }
  .wrapper-padding.reset-top {
    padding: 0 0 100px; }
    @media (min-width: 768px) {
      .wrapper-padding.reset-top {
        padding: 0 0 100px; } }

/* -------- GENERAL -------- */
/* -------- FONTS -------- */
h1 {
  color: #449ed5;
  font-size: 2rem;
  font-family: "BebasNeueBold", sans-serif; }
  @media (min-width: 768px) {
    h1 {
      font-size: 2.5rem; } }
  @media (min-width: 992px) {
    h1 {
      font-size: 2.8125rem; } }

p {
  font-size: 1.1875rem; }
  @media (min-width: 768px) {
    p {
      font-size: 1.25rem; } }
  @media (min-width: 992px) {
    p {
      font-size: 1.4375rem; } }

/* -------- FONTS -------- */
/* -------- BUTTONS -------- */
.button2 {
  position: relative;
  color: #ffffff;
  font-size: 1.5625rem;
  text-transform: uppercase;
  z-index: 10;
  font-family: "BebasNeueBold", sans-serif;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: left; }
  .button2:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    background-image: url("../img/buttons/cuadro-amarillo.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    width: 215px;
    height: 85px;
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s; }
  .button2:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    content: '';
    background-image: url("../img/buttons/cuadro-naranja.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    width: 210px;
    height: 80px;
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s; }
  .button2:hover {
    color: #ffffff; }
    .button2:hover:before {
      -moz-transform: rotate(3deg);
      -o-transform: rotate(3deg);
      -ms-transform: rotate(3deg);
      -webkit-transform: rotate(3deg);
      transform: rotate(3deg);
      -moz-transition: all ease 0.5s;
      -o-transition: all ease 0.5s;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; }
    .button2:hover:after {
      -moz-transform: rotate(-3deg);
      -o-transform: rotate(-3deg);
      -ms-transform: rotate(-3deg);
      -webkit-transform: rotate(-3deg);
      transform: rotate(-3deg);
      -moz-transition: all ease 0.5s;
      -o-transition: all ease 0.5s;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; }
  .button2:active, .button2:focus {
    color: #ffffff; }
    .button2:active:before, .button2:focus:before {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -moz-transition: all ease 0.5s;
      -o-transition: all ease 0.5s;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; }
    .button2:active:after, .button2:focus:after {
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      -moz-transition: all ease 0.5s;
      -o-transition: all ease 0.5s;
      -webkit-transition: all ease 0.5s;
      transition: all ease 0.5s; }
  @media (min-width: 768px) {
    .button2 {
      font-size: 2.9375rem; }
      .button2:before {
        width: 396px;
        height: 120px; }
      .button2:after {
        width: 385px;
        height: 111px; } }

input[type="submit"].button {
  display: none; }

.button {
  position: relative;
  color: #ffffff;
  font-size: 1.5625rem;
  line-height: 1em;
  padding: 15px 40px;
  text-transform: uppercase;
  z-index: 10;
  font-family: "BebasNeueBold", sans-serif;
  cursor: pointer;
  text-decoration: none;
  border: none;
  display: inline-block;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  -moz-transition: all ease 1s;
  -o-transition: all ease 1s;
  -webkit-transition: all ease 1s;
  transition: all ease 1s; }
  .button:hover {
    color: #ffffff; }
  .button:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ff4d1b;
    z-index: -1;
    border-width: 0 45px 35px; }
  .button:before {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ffd110;
    z-index: -1; }
  .button.positive:before {
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s; }
  .button.positive:after {
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s; }
  .button.positive:hover:before {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  .button.positive:hover:after {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  .button.negative:before {
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s; }
  .button.negative:after {
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
    -moz-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s; }
  .button.negative:hover:before {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  .button.negative:hover:after {
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  @media (min-width: 768px) {
    .button {
      font-size: 2.5rem; } }

/* -------- BUTTONS -------- */
/* -------- HEADER -------- */
header {
  background-color: rgba(255, 255, 255, 0.93);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10000; }
  header .wrapper-menu .wrapper-mobile {
    display: table;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    padding: 28px 20px; }
  header .wrapper-menu .logo a.img-logo img {
    max-width: 120px;
    width: 100%; }
  header .wrapper-menu #menu-btn {
    display: block; }
  header .wrapper-menu nav {
    display: none; }
    header .wrapper-menu nav.active {
      display: block;
      box-shadow: 0 3px 5px 0 rgba(215, 215, 215, 0.75); }
    header .wrapper-menu nav ul.menu-header {
      list-style: none;
      margin: 0;
      padding: 0;
      display: table;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      -webkit-align-items: flex-start;
      -moz-align-items: flex-start;
      align-items: flex-start;
      -webkit-box-direction: normal;
      -webkit-box-orient: vertical;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; }
      header .wrapper-menu nav ul.menu-header li {
        display: block;
        padding: 15px 0;
        position: relative;
        width: 100%;
        text-align: center; }
        header .wrapper-menu nav ul.menu-header li a {
          font-size: 1.5rem;
          text-transform: uppercase;
          font-family: "BebasNeueBold", sans-serif;
          color: #449ed5; }
          header .wrapper-menu nav ul.menu-header li a.active {
            color: #ff4d1b; }
        header .wrapper-menu nav ul.menu-header li.profile {
          display: table;
          display: -webkit-box;
          display: -webkit-flex;
          display: -moz-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          -webkit-align-items: center;
          -moz-align-items: center;
          align-items: center;
          -webkit-box-direction: normal;
          -webkit-box-orient: vertical;
          -webkit-flex-direction: column;
          -moz-flex-direction: column;
          -ms-flex-direction: column;
          flex-direction: column; }
          header .wrapper-menu nav ul.menu-header li.profile a {
            color: #939393;
            font-size: 1.3125rem; }
          header .wrapper-menu nav ul.menu-header li.profile .wrapper-orange {
            font-family: "BebasNeueBold", sans-serif;
            background-color: #ff4d1b;
            color: #ffffff;
            padding: 5px 20px;
            text-transform: uppercase;
            font-size: 1.5rem;
            -webkit-border-radius: 25px;
            -moz-border-radius: 25px;
            -ms-border-radius: 25px;
            border-radius: 25px; }
  @media (min-width: 992px) {
    header {
      background-color: rgba(255, 255, 255, 0); }
      header .wrapper-menu {
        display: table;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        width: 970px;
        margin-right: auto;
        margin-left: auto;
        margin-top: 0;
        padding-right: 15px;
        padding-left: 15px; }
        header .wrapper-menu .logo a.img-logo img {
          max-width: 170px;
          width: 100%; }
        header .wrapper-menu #menu-btn {
          display: none; }
        header .wrapper-menu nav {
          display: block; }
          header .wrapper-menu nav ul.menu-header {
            display: table;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            -webkit-justify-content: center;
            -moz-justify-content: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            -webkit-align-items: center;
            -moz-align-items: center;
            align-items: center;
            -webkit-box-direction: normal;
            -webkit-box-orient: horizontal;
            -webkit-flex-direction: row;
            -moz-flex-direction: row;
            -ms-flex-direction: row;
            flex-direction: row;
            margin: 0; }
            header .wrapper-menu nav ul.menu-header li {
              display: inline-block;
              margin: 0px 8px;
              border: none;
              width: auto; }
              header .wrapper-menu nav ul.menu-header li:first-child {
                margin-left: 0; }
              header .wrapper-menu nav ul.menu-header li:last-child {
                margin-right: 0; }
              header .wrapper-menu nav ul.menu-header li a {
                font-size: 1.375rem; } }
  @media (min-width: 1200px) {
    header .wrapper-menu {
      width: 1170px; }
      header .wrapper-menu nav ul.menu-header li {
        margin: 0px 20px; }
        header .wrapper-menu nav ul.menu-header li a {
          font-size: 1.5rem; } }

/* -------- HEADER -------- */
/* -------- FOOTER -------- */
footer {
  display: block;
  background-color: #ff4d1b;
  color: #ffffff;
  padding: 60px 0px;
  background-image: url("../img/footer-pattern.png");
  background-repeat: repeat-x;
  background-position: 20px 0px;
  position: relative;
  margin-top: 50px; }
  footer:before {
    content: url("../img/drop.png");
    width: 37px;
    height: 31px;
    position: absolute;
    background-repeat: no-repeat;
    z-index: 5;
    top: 13px;
    left: 47px;
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg); }
  footer ul.social-menu {
    list-style: none;
    text-align: center;
    margin-bottom: 30px; }
    footer ul.social-menu li {
      display: inline-block;
      padding: 5px;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
      -ms-border-radius: 50%;
      border-radius: 50%;
      background-color: #ffffff;
      text-align: center;
      position: relative;
      cursor: pointer;
      margin-right: 15px; }
      footer ul.social-menu li i {
        width: 25px;
        height: 25px;
        color: #ff4d1b;
        font-size: 1.125rem;
        display: table;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center; }
      footer ul.social-menu li:last-child {
        margin-left: 0; }
  footer nav.footer ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    footer nav.footer ul li {
      display: block;
      text-align: center; }
      footer nav.footer ul li a {
        font-size: 1.25rem;
        color: #ffffff;
        text-decoration: none;
        padding: 5px 0;
        cursor: pointer;
        display: block;
        text-transform: uppercase;
        font-family: "BebasNeueBold", sans-serif; }
  footer p {
    font-size: 1.25rem;
    text-align: center;
    margin: 20px auto 0;
    color: #ffd110;
    font-family: "BebasNeueBold", sans-serif; }
    footer p a {
      color: #ffd110; }
      footer p a:active, footer p a:hover, footer p a:focus {
        color: #ffd110;
        text-decoration: none; }
  @media (min-width: 768px) {
    footer nav.footer {
      display: table;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      -moz-justify-content: center;
      justify-content: center;
      -webkit-flex-flow: row;
      -moz-flex-flow: row;
      -ms-flex-flow: row;
      flex-flow: row; }
      footer nav.footer ul li {
        display: inline-block;
        text-align: left; }
        footer nav.footer ul li a {
          padding: 0 8px; } }
  @media (min-width: 992px) {
    footer {
      margin-top: 0px; } }

/* -------- FOOTER -------- */
/* -------- COOKIES -------- */
#cookie_alert {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.85);
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  bottom: -50vh;
  z-index: 10000;
  margin: 0 auto;
  -moz-transition: bottom 0.5s ease-in-out;
  -o-transition: bottom 0.5s ease-in-out;
  -webkit-transition: bottom 0.5s ease-in-out;
  transition: bottom 0.5s ease-in-out; }
  #cookie_alert.active {
    bottom: 0px;
    -moz-transition: botom 0.5s ease-in-out;
    -o-transition: botom 0.5s ease-in-out;
    -webkit-transition: botom 0.5s ease-in-out;
    transition: botom 0.5s ease-in-out; }
  #cookie_alert #cookie_cross {
    position: absolute;
    right: 12px;
    text-align: center;
    top: 8px;
    cursor: pointer; }
    #cookie_alert #cookie_cross svg {
      width: 15px;
      color: rgba(255, 255, 255, 0.5);
      -moz-transition: color 0.5s ease-in-out;
      -o-transition: color 0.5s ease-in-out;
      -webkit-transition: color 0.5s ease-in-out;
      transition: color 0.5s ease-in-out;
      font-size: 20px; }
    #cookie_alert #cookie_cross:hover svg {
      color: white; }
  #cookie_alert section {
    padding: 20px 50px; }
    #cookie_alert section p {
      color: #ffffff;
      font-size: 0.875rem;
      margin: 10px auto;
      max-width: 780px;
      line-height: 1.7em; }
    #cookie_alert section a {
      color: #ffffff;
      font-weight: 700; }
      #cookie_alert section a:hover {
        text-decoration: none;
        color: #ffffff; }

/* -------- COOKIES -------- */
/* -------- HOME -------- */
.wrapper-main .main-image {
  background-image: url("../img/brickwall.png");
  background-repeat: repeat;
  position: relative;
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .wrapper-main .main-image img {
    max-width: 1100px;
    width: 100%; }
.wrapper-main .wrapper-content {
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .wrapper-main .wrapper-content .content {
    padding: 50px 0;
    text-align: center; }
    .wrapper-main .wrapper-content .content h1 {
      margin: 30px 0 50px; }
    .wrapper-main .wrapper-content .content .button {
      margin: 0 auto; }
  .wrapper-main .wrapper-content .image-background {
    background-image: url("../img/home-patinete.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 512px; }
  .wrapper-main .wrapper-content .patinete {
    max-width: 700px;
    width: 100%;
    margin: 0 0 0 auto;
    display: none; }
.wrapper-main .video-container {
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  position: relative; }
  .wrapper-main .video-container iframe.spot {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0; }
@media (min-width: 768px) {
  .wrapper-main .wrapper-content {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; }
    .wrapper-main .wrapper-content .content {
      padding: inherit;
      text-align: inherit; }
      .wrapper-main .wrapper-content .content .button {
        margin: inherit; }
    .wrapper-main .wrapper-content .patinete {
      display: block; } }
@media (min-width: 992px) {
  .wrapper-main .wrapper-content .content {
    width: calc( 970px / 2 );
    max-width: 43vw;
    float: right; } }
@media (min-width: 1200px) {
  .wrapper-main .wrapper-content .content {
    width: calc(1065px / 2); } }

/* -------- HOME -------- */
/* -------- LOGIN -------- */
.wrapper-login .button:before, .wrapper-login .button:after {
  background-size: 70%; }
.wrapper-login .column-right {
  border-left: none;
  padding-left: inherit; }
.wrapper-login .small {
  font-family: "BebasNeueBold", sans-serif;
  font-size: 1.4375rem;
  line-height: 1em;
  text-align: right;
  display: block;
  color: #939393; }
@media (min-width: 768px) {
  .wrapper-login .column-right {
    border-left: 1px solid #ff4d1b;
    padding-left: 8.333333%; } }

/* -------- LOGIN -------- */
/* -------- SIGN UP -------- */
.wrapper-signup .informative {
  font-family: "BebasNeueBold", sans-serif;
  font-size: 1.4375rem;
  line-height: 1em;
  color: #939393;
  text-transform: uppercase; }
.wrapper-signup .g-recaptcha > div {
  margin: 0 auto; }

/* -------- SIGN UP -------- */
/* -------- HOW TO WIN -------- */
.wrapper-howtowin .main-image {
  background-image: url("../img/brickwall.png");
  background-repeat: repeat;
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .wrapper-howtowin .main-image img {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; }
.wrapper-howtowin .wrapper-img {
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }
  .wrapper-howtowin .wrapper-img .number {
    max-width: 80px;
    width: 100%; }
  .wrapper-howtowin .wrapper-img .image {
    max-width: 370px;
    width: 100%; }
  .wrapper-howtowin .wrapper-img p {
    text-align: center;
    width: 100%; }
.wrapper-howtowin .where {
  font-style: italic;
  font-weight: 600;
  color: #449ed5;
  cursor: pointer; }

/* -------- HOW TO WIN -------- */
/* -------- GAME -------- */
.wrapper-game img.img-game, .wrapper-winner img.img-game {
  max-width: 300px;
  width: 100%;
  margin: 0 auto; }
.wrapper-game .small, .wrapper-winner .small {
  font-family: "BebasNeueBold", sans-serif;
  font-size: 1.4375rem;
  line-height: 1em;
  text-align: right;
  display: block;
  color: #939393; }
.wrapper-game .informative, .wrapper-winner .informative {
  font-family: "BebasNeueBold", sans-serif;
  font-size: 1.4375rem;
  line-height: 1em;
  color: #939393;
  text-transform: uppercase; }
.wrapper-game .where, .wrapper-winner .where {
  cursor: pointer; }
.wrapper-game ol.instruccions, .wrapper-winner ol.instruccions {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: my-awesome-counter; }
  .wrapper-game ol.instruccions li, .wrapper-winner ol.instruccions li {
    margin-left: 15px;
    counter-increment: my-awesome-counter;
    font-size: 1rem;
    position: relative;
    display: inline-block; }
    .wrapper-game ol.instruccions li span, .wrapper-winner ol.instruccions li span {
      font-family: "BebasNeueBold", sans-serif;
      color: #939393;
      font-size: 1.875rem;
      padding-left: 45px;
      display: inline-block; }
    .wrapper-game ol.instruccions li > div, .wrapper-winner ol.instruccions li > div {
      padding-left: 45px; }
    .wrapper-game ol.instruccions li span.small, .wrapper-winner ol.instruccions li span.small {
      font-family: "BebasNeueBold", sans-serif;
      font-size: 1.4375rem;
      line-height: 1em;
      text-align: right;
      display: block;
      color: #939393; }
    .wrapper-game ol.instruccions li:before, .wrapper-winner ol.instruccions li:before {
      content: counter(my-awesome-counter) ".";
      font-size: 2.8125rem;
      color: #449ed5;
      font-family: "BebasNeueBold", sans-serif;
      line-height: 1;
      position: absolute;
      display: inline-block; }
    .wrapper-game ol.instruccions li textarea, .wrapper-winner ol.instruccions li textarea {
      display: block; }
.wrapper-game span.small, .wrapper-winner span.small {
  font-family: "BebasNeueBold", sans-serif;
  font-size: 1.4375rem;
  line-height: 1em;
  text-align: right;
  display: block;
  color: #939393; }
@media (min-width: 768px) {
  .wrapper-game img.img-game, .wrapper-winner img.img-game {
    max-width: 400px; } }

/* -------- GAME -------- */
/* -------- FORMS -------- */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #d8d8d8 !important; }

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d8d8d8 !important;
  opacity: 1; }

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d8d8d8 !important;
  opacity: 1; }

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d8d8d8 !important; }

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d8d8d8 !important; }

::placeholder {
  /* Most modern browsers support this now. */
  color: #d8d8d8 !important; }

input[type="text"], input[type="password"], input[type="file"] {
  font-size: 1.875rem;
  font-family: "BebasNeueBold", sans-serif;
  color: #939393;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #ff4d1b;
  box-shadow: none;
  outline: none;
  height: 45px;
  margin: 5px 0;
  width: 100%;
  max-width: none;
  padding: 0 15px 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }
  .has-error input[type="text"], .has-error input[type="password"], .has-error input[type="file"] {
    border: 2px solid #ff4d1b; }
  input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus {
    outline: none; }
  input[type="text"].form-control[readonly], input[type="password"].form-control[readonly], input[type="file"].form-control[readonly] {
    background-color: #ffffff; }
  .has-error input[type="text"], .has-error input[type="password"], .has-error input[type="file"] {
    border: none;
    border-bottom: 2px solid #d0021b;
    background-color: rgba(208, 2, 27, 0.05);
    box-shadow: none; }
    .has-error input[type="text"] ::-webkit-input-placeholder, .has-error input[type="password"] ::-webkit-input-placeholder, .has-error input[type="file"] ::-webkit-input-placeholder {
      /* WebKit, Blink, Edge */
      color: #d0021b !important; }
    .has-error input[type="text"] :-moz-placeholder, .has-error input[type="password"] :-moz-placeholder, .has-error input[type="file"] :-moz-placeholder {
      /* Mozilla Firefox 4 to 18 */
      color: #d0021b !important;
      opacity: 1; }
    .has-error input[type="text"] ::-moz-placeholder, .has-error input[type="password"] ::-moz-placeholder, .has-error input[type="file"] ::-moz-placeholder {
      /* Mozilla Firefox 19+ */
      color: #d0021b !important;
      opacity: 1; }
    .has-error input[type="text"] :-ms-input-placeholder, .has-error input[type="password"] :-ms-input-placeholder, .has-error input[type="file"] :-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: #d0021b !important; }
    .has-error input[type="text"] ::-ms-input-placeholder, .has-error input[type="password"] ::-ms-input-placeholder, .has-error input[type="file"] ::-ms-input-placeholder {
      /* Microsoft Edge */
      color: #d0021b !important; }
    .has-error input[type="text"] ::placeholder, .has-error input[type="password"] ::placeholder, .has-error input[type="file"] ::placeholder {
      /* Most modern browsers support this now. */
      color: #d0021b !important; }
    .has-error input[type="text"].form-control[readonly], .has-error input[type="password"].form-control[readonly], .has-error input[type="file"].form-control[readonly] {
      background-color: rgba(208, 2, 27, 0.05); }

input[type="file"] {
  font-size: 0.875rem;
  color: rgba(72, 72, 72, 0.8);
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
  height: 30px; }
  input[type="file"].has-error {
    background-color: rgba(208, 2, 27, 0.05);
    border-bottom: 2px solid #d0021b;
    box-shadow: none; }

.small-text {
  font-size: 0.75rem;
  color: #484848;
  display: block;
  text-align: left;
  margin: 0 0 15px;
  padding-left: 0; }

textarea {
  width: 100%;
  height: 100px;
  font-size: 1.125rem;
  color: rgba(72, 72, 72, 0.8);
  background-color: #ffffff;
  border-radius: 0;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  margin: 10px auto;
  padding: 15px;
  border: 2px solid #ff4d1b;
  resize: none;
  font-family: "BebasNeueBold", sans-serif; }
  .has-error textarea {
    background-color: rgba(208, 2, 27, 0.05);
    border: 2px solid #d0021b;
    box-shadow: none; }

textarea::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #d8d8d8 !important; }

textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #d8d8d8 !important;
  opacity: 1; }

textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #d8d8d8 !important;
  opacity: 1; }

textarea:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #d8d8d8 !important; }

textarea::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #d8d8d8 !important; }

textarea::placeholder {
  /* Most modern browsers support this now. */
  color: #d8d8d8 !important; }

label {
  font-size: 1.875rem;
  font-family: "BebasNeueBold", sans-serif;
  color: #ff4d1b;
  text-align: left; }

select.form-control {
  display: none !important; }

label {
  width: 100%; }

.province-select, .via-select {
  position: relative;
  z-index: 7000;
  display: block; }
  .province-select div.result, .via-select div.result {
    display: block;
    padding: 0 25px 0 0;
    cursor: pointer;
    background-color: #ffffff;
    position: relative;
    border-bottom: 2px solid #ff4d1b;
    font-family: "BebasNeueBold", sans-serif;
    font-size: 1.875rem;
    margin: 5px 0; }
    .province-select div.result .down, .via-select div.result .down {
      display: inline-block;
      margin: auto;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out;
      position: absolute;
      right: 10px;
      top: 0;
      bottom: 0; }
      .province-select div.result .down.up, .via-select div.result .down.up {
        -moz-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg); }
    .province-select div.result span.option, .via-select div.result span.option {
      margin-right: 10px;
      font-size: 1.875rem;
      color: #d8d8d8;
      text-transform: uppercase;
      display: block;
      white-space: nowrap;
      overflow: hidden; }
      .province-select div.result span.option.grey, .via-select div.result span.option.grey {
        color: #939393; }
  .province-select ul, .via-select ul {
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 6000;
    position: absolute;
    background-color: #ffffff;
    max-width: 100%;
    left: 15px;
    right: 15px;
    font-family: "BebasNeueBold", sans-serif;
    max-height: 180px;
    overflow: auto;
    display: none; }
    .province-select ul li, .via-select ul li {
      text-align: left;
      padding: 0 15px 0 0;
      font-family: "BebasNeueBold", sans-serif;
      font-size: 1.875rem;
      cursor: pointer;
      text-transform: uppercase;
      white-space: nowrap; }
      .province-select ul li:hover, .via-select ul li:hover {
        color: #ff4d1b; }
  .province-select.has-error div.result, .via-select.has-error div.result {
    border: none;
    border-bottom: 2px solid #d0021b;
    background-color: rgba(208, 2, 27, 0.05);
    box-shadow: none; }

.wrapper-checkbox {
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px; }
  .wrapper-checkbox .checkbox-text {
    font-size: 1.4375rem;
    line-height: 0.9565217391em;
    color: #939393;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "BebasNeueBold", sans-serif; }
    .wrapper-checkbox .checkbox-text a {
      color: #939393;
      text-decoration: underline; }
      .wrapper-checkbox .checkbox-text a:hover {
        text-decoration: none; }
      .wrapper-checkbox .checkbox-text a:active, .wrapper-checkbox .checkbox-text a:focus {
        text-decoration: underline; }
  .wrapper-checkbox input[type="checkbox"] {
    display: none; }
    .wrapper-checkbox input[type="checkbox"] + label {
      display: table;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-direction: normal;
      -webkit-box-orient: horizontal;
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center;
      cursor: pointer;
      position: relative;
      margin: 0 30px 0 0;
      padding-left: 0;
      width: auto; }
      .wrapper-checkbox input[type="checkbox"] + label:after {
        display: inline-block;
        position: absolute;
        width: 18px;
        height: 18px;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        background-color: transparent;
        content: ''; }
      .wrapper-checkbox input[type="checkbox"] + label:before {
        content: '';
        display: inline-block;
        width: 32px;
        height: 32px;
        cursor: pointer;
        border: 2px solid #939393;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        border-radius: 0px; }
    .wrapper-checkbox input[type="checkbox"]:checked + label:after {
      background-color: #ff4d1b; }
  .wrapper-checkbox.has-error .checkbox-text {
    color: #d0021b; }

/* -------- FORMS -------- */
/* -------- CONTACT -------- */
.wrapper-contacto #contact_form {
  display: inline-block; }
.wrapper-contacto .informative {
  font-family: "BebasNeueBold", sans-serif;
  font-size: 1.4375rem;
  line-height: 1em;
  color: #939393;
  text-transform: uppercase; }
.wrapper-contacto .g-recaptcha > div {
  margin: 0 auto; }
.wrapper-contacto .info_contact {
  font-size: 1.125rem;
  line-height: 1.3333333333rem;
  color: #bababa;
  display: block;
  padding-top: 100px; }

/* -------- CONTACT -------- */
/* -------- PRIZE -------- */
.wrapper-prize {
  /* -------- GALLERY -------- */
  /* -------- GALLERY -------- */ }
  .wrapper-prize h1 {
    text-align: center; }
  .wrapper-prize h2 {
    font-size: 1.875rem;
    text-transform: uppercase;
    font-family: "BebasNeueBold", sans-serif;
    text-align: center; }
  .wrapper-prize .main-image {
    background-image: url("../img/brickwall.png");
    background-repeat: repeat;
    position: relative;
    display: table;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center; }
    .wrapper-prize .main-image img {
      max-width: 1100px;
      width: 100%; }
  .wrapper-prize .padding-gallery {
    padding: 0 15px; }
    @media (min-width: 768px) {
      .wrapper-prize .padding-gallery {
        padding: 0; } }
  .wrapper-prize .gallery-section {
    text-align: center; }
    .wrapper-prize .gallery-section .gallery {
      width: 100%;
      max-width: 800px;
      margin: 0 auto; }
      .wrapper-prize .gallery-section .gallery .item {
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat; }
    .wrapper-prize .gallery-section .gallery-image .item, .wrapper-prize .gallery-section .gallery-image .item {
      width: 100%;
      height: 300px; }
    .wrapper-prize .gallery-section .gallery-menu, .wrapper-prize .gallery-section .gallery-menu {
      margin-top: 15px; }
      .wrapper-prize .gallery-section .gallery-menu .item, .wrapper-prize .gallery-section .gallery-menu .item {
        width: 25%;
        min-height: 125px;
        opacity: 0.7;
        cursor: pointer;
        -moz-transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
        -o-transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
        -webkit-transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out;
        transition: filter 0.5s ease-in-out, opacity 0.5s ease-in-out; }
        .wrapper-prize .gallery-section .gallery-menu .item.slick-current, .wrapper-prize .gallery-section .gallery-menu .item.slick-current {
          opacity: 1; }
        .wrapper-prize .gallery-section .gallery-menu .item img, .wrapper-prize .gallery-section .gallery-menu .item img {
          max-width: 100%; }
        .wrapper-prize .gallery-section .gallery-menu .item:hover, .wrapper-prize .gallery-section .gallery-menu .item:hover {
          opacity: 1; }
    @media (min-width: 768px) {
      .wrapper-prize .gallery-section {
        max-width: 1200px; }
        .wrapper-prize .gallery-section .gallery-image .item {
          height: 350px; }
        .wrapper-prize .gallery-section .gallery-menu {
          display: block;
          margin-top: 5px; } }
    @media (min-width: 992px) {
      .wrapper-prize .gallery-section .gallery-image .item {
        height: 500px; } }

/* -------- PRIZE -------- */
/* ------ ALERT ERROR ------ */
.alert-error.alert-danger {
  background-image: none;
  background-color: #ff4d1b;
  border: none;
  color: #ffffff;
  text-shadow: none;
  box-shadow: none;
  font-size: 1.125rem;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0; }
  .alert-error.alert-danger span {
    color: #ffd110;
    font-family: "BebasNeueBold", sans-serif;
    text-transform: uppercase;
    font-size: 1.875rem;
    display: block; }

/* ------ ALERT ERROR ------ */
/* ------ PROMO END------ */
.wrapper-end .main-image {
  background-image: url("../img/brickwall.png");
  background-repeat: repeat;
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .wrapper-end .main-image img {
    max-width: 1100px;
    width: 100%; }

/* ------ PROMO END------ */
/* ------ MODAL------ */
.modal-back {
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  -moz-transition: opacity ease 0.5s;
  -o-transition: opacity ease 0.5s;
  -webkit-transition: opacity ease 0.5s;
  transition: opacity ease 0.5s; }
  .modal-back.visible {
    width: 100%;
    height: 150%;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: 0;
    left: 0;
    opacity: 1; }

.modal-dialog-box {
  background: #ffd110 none repeat scroll 0 0;
  bottom: initial;
  top: -100%;
  right: 0;
  left: 0;
  text-align: center;
  display: inline-block;
  border: none;
  margin: 0 auto;
  -moz-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  max-width: 800px;
  width: 90%;
  z-index: 100000;
  position: absolute; }
  .modal-dialog-box:after {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #ff4d1b;
    z-index: -1;
    -moz-transform: rotate(-2deg);
    -o-transform: rotate(-2deg);
    -ms-transform: rotate(-2deg);
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg); }
  .modal-dialog-box.visible {
    top: 10%;
    right: 0;
    left: 0;
    margin: auto;
    -moz-transition: all 1s ease 1s;
    -o-transition: all 1s ease 1s;
    -webkit-transition: all 1s ease 1s;
    transition: all 1s ease 1s; }
  .modal-dialog-box .modal-body {
    padding: 50px;
    display: table;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
    .modal-dialog-box .modal-body h2 {
      color: #ffffff;
      font-family: "BebasNeueBold", sans-serif;
      text-transform: uppercase;
      font-size: 3.125rem; }
    .modal-dialog-box .modal-body p {
      max-width: 630px;
      width: 100%;
      margin: 20px 0;
      font-size: 1.125rem;
      text-align: center;
      color: #ffffff; }
    .modal-dialog-box .modal-body img {
      max-width: 500px;
      width: 100%;
      margin: 0 auto; }
  .modal-dialog-box span.close-box {
    background-image: url("../img/cross.png");
    position: absolute;
    z-index: 100001;
    right: 40px;
    top: 20px;
    margin: 0 auto;
    width: 27px;
    height: 27px;
    cursor: pointer; }
  @media (min-width: 768px) {
    .modal-dialog-box.visible {
      top: 10%; } }

/* ------ MODAL------ */
/* ------ GALLERY------ */
.wrapper-gallery h1 {
  text-align: center; }
.wrapper-gallery .wrapper-images p.text {
  border: none;
  font-size: 1.125rem;
  line-height: 1.6666666667em;
  padding: 20px;
  color: #ffffff;
  background-color: #ff4d1b; }
.wrapper-gallery .wrapper-images p {
  font-size: 1.25rem;
  line-height: 1.5em; }

/* ------ GALLERY------ */
/* ------ VENCEDORES------ */
.wrapper-gallery .main-image {
  background-image: url("../img/brickwall.png");
  background-repeat: repeat;
  position: relative;
  display: table;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center; }
  .wrapper-gallery .main-image img {
    max-width: 1100px;
    width: 100%; }

/* ------ VENCEDORES------ */
#ui-datepicker-div {
  z-index: 9999 !important; }

.wrapper-legal h1 {
  margin: 0;
  padding: 0; }
.wrapper-legal h3 {
  font-family: "BebasNeueBold", sans-serif;
  color: #449ed5;
  text-transform: initial;
  letter-spacing: 1.3px;
  padding-top: 40px;
  display: block;
  padding-bottom: 20px;
  margin: 0; }
.wrapper-legal h4 {
  font-family: "BebasNeueBold", sans-serif;
  color: #449ed5;
  padding-top: 20px;
  padding-bottom: 10px;
  display: block;
  margin: 0; }
.wrapper-legal h3 {
  font-size: 1.375rem; }
  @media (min-width: 768px) {
    .wrapper-legal h3 {
      font-size: 1.75rem; } }
  @media (min-width: 992px) {
    .wrapper-legal h3 {
      font-size: 1.875rem; } }
.wrapper-legal h4 {
  font-size: 1rem; }
  @media (min-width: 768px) {
    .wrapper-legal h4 {
      font-size: 1.25rem; } }
  @media (min-width: 992px) {
    .wrapper-legal h4 {
      font-size: 1.5625rem; } }
.wrapper-legal p, .wrapper-legal ul, .wrapper-legal li {
  font-size: 1.1875rem; }
  .wrapper-legal p.legal, .wrapper-legal ul.legal, .wrapper-legal li.legal {
    margin-bottom: 20px; }
  .wrapper-legal p ul, .wrapper-legal ul ul, .wrapper-legal li ul {
    margin-bottom: 15px; }
  @media (min-width: 768px) {
    .wrapper-legal p, .wrapper-legal ul, .wrapper-legal li {
      font-size: 1.125rem; } }
  @media (min-width: 992px) {
    .wrapper-legal p, .wrapper-legal ul, .wrapper-legal li {
      font-size: 1.125rem; } }
.wrapper-legal li {
  margin-bottom: 15px; }
.wrapper-legal ul {
  margin-bottom: 40px; }
  .wrapper-legal ul li.none {
    list-style: none; }
.wrapper-legal a:active {
  text-decoration: none; }
.wrapper-legal span {
  display: inline-block;
  font-weight: 600;
  margin-right: 10px; }

.vmxs, .vmxs-l-m, .vmxs-l-s, .vmxs-l-xs, .vmxs-0-l, .vmxs-l-0 {
  margin-top: 30px !important;
  margin-bottom: 30px !important; }

.vmxs-xl, .vmxs-xl-l, .vmxs-l-xl, .vmxs-xl-m, .vmxs-m-xl, .vmxs-xl-s, .vmxs-s-xl, .vmxs-xl-0, .vmxs-0-xl {
  margin-top: 60px !important;
  margin-bottom: 60px !important; }

.vmxs-m, .vmxs-m-l, .vmxs-m-s, .vmxs-m-xs, .vmxs-0-m, .vmxs-m-0 {
  margin-top: 15px !important;
  margin-bottom: 15px !important; }

.vmxs-s, .vmxs-s-m, .vmxs-s-l, .vmxs-s-xs, .vmxs-0-s, .vmxs-s-0 {
  margin-top: 7.5px !important;
  margin-bottom: 7.5px !important; }

.vmxs-xs, .vmxs-xs-s, .vmxs-xs-m, .vmxs-xs-l, .vmxs-xs-0, .vmxs-0-xs {
  margin-top: 5px !important;
  margin-bottom: 5px !important; }

.vmxs-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.vmxs-l-m {
  margin-bottom: 15px !important; }

.vmxs-m-l {
  margin-bottom: 30px !important; }

.vmxs-s-m {
  margin-bottom: 20px !important; }

.vmxs-m-s {
  margin-bottom: 7.5px !important; }

.vmxs-l-s {
  margin-bottom: 7.5px !important; }

.vmxs-s-l {
  margin-bottom: 30px !important; }

.vmxs-xs-s {
  margin-bottom: 7.5px !important; }

.vmxs-s-xs {
  margin-bottom: 5px !important; }

.vmxs-xs-m {
  margin-bottom: 15px !important; }

.vmxs-m-xs {
  margin-bottom: 5px !important; }

.vmxs-xs-l {
  margin-bottom: 30px !important; }

.vmxs-l-xs {
  margin-bottom: 5px !important; }

.vmxs-xl-l {
  margin-bottom: 30px !important; }

.vmxs-l-xl {
  margin-top: 30px !important; }

.vmxs-xl-m {
  margin-bottom: 15px !important; }

.vmxs-m-xl {
  margin-top: 15px !important; }

.vmxs-xl-s {
  margin-bottom: 7.5px !important; }

.vmxs-s-xl {
  margin-top: 7.5px !important; }

.vmxs-0-m {
  margin-top: 0 !important; }

.vmxs-m-0 {
  margin-bottom: 0 !important; }

.vmxs-0-l {
  margin-top: 0 !important; }

.vmxs-l-0 {
  margin-bottom: 0 !important; }

.vmxs-0-s {
  margin-top: 0 !important; }

.vmxs-s-0 {
  margin-bottom: 0 !important; }

.vmxs-xl-0 {
  margin-bottom: 0 !important; }

.vmxs-0-xl {
  margin-top: 0 !important; }

.vmxs-xs-0 {
  margin-bottom: 0 !important; }

.vmxs-0-xs {
  margin-top: 0 !important; }

.vmxsp {
  margin-top: percentatge(0.05);
  margin-bottom: percentatge(0.05); }

@media (min-width: 768px) {
  .vmsm, .vmsm-l-m, .vmsm-l-s, .vmsm-l-xs, .vmsm-0-l, .vmsm-l-0 {
    margin-top: 60px !important;
    margin-bottom: 60px !important; }

  .vmsm-xl, .vmsm-xl-l, .vmsm-l-xl, .vmsm-xl-m, .vmsm-m-xl, .vmsm-xl-s, .vmsm-s-xl, .vmsm-xl-0, .vmsm-0-xl {
    margin-top: 120px !important;
    margin-bottom: 120px !important; }

  .vmsm-m, .vmsm-m-l, .vmsm-m-s, .vmsm-m-xs, .vmsm-0-m, .vmsm-m-0 {
    margin-top: 30px !important;
    margin-bottom: 30px !important; }

  .vmsm-s, .vmsm-s-m, .vmsm-s-l, .vmsm-s-xs, .vmsm-0-s, .vmsm-s-0 {
    margin-top: 15px !important;
    margin-bottom: 15px !important; }

  .vmsm-xs, .vmsm-xs-s, .vmsm-xs-m, .vmsm-xs-l, .vmsm-xs-0, .vmsm-0-xs {
    margin-top: 10px !important;
    margin-bottom: 10px !important; }

  .vmsm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

  .vmsm-l-m {
    margin-bottom: 30px !important; }

  .vmsm-m-l {
    margin-bottom: 60px !important; }

  .vmsm-s-m {
    margin-bottom: 40px !important; }

  .vmsm-m-s {
    margin-bottom: 15px !important; }

  .vmsm-l-s {
    margin-bottom: 15px !important; }

  .vmsm-s-l {
    margin-bottom: 60px !important; }

  .vmsm-xs-s {
    margin-bottom: 15px !important; }

  .vmsm-s-xs {
    margin-bottom: 10px !important; }

  .vmsm-xs-m {
    margin-bottom: 30px !important; }

  .vmsm-m-xs {
    margin-bottom: 10px !important; }

  .vmsm-xs-l {
    margin-bottom: 60px !important; }

  .vmsm-l-xs {
    margin-bottom: 10px !important; }

  .vmsm-xl-l {
    margin-bottom: 60px !important; }

  .vmsm-l-xl {
    margin-top: 60px !important; }

  .vmsm-xl-m {
    margin-bottom: 30px !important; }

  .vmsm-m-xl {
    margin-top: 30px !important; }

  .vmsm-xl-s {
    margin-bottom: 15px !important; }

  .vmsm-s-xl {
    margin-top: 15px !important; }

  .vmsm-0-m {
    margin-top: 0 !important; }

  .vmsm-m-0 {
    margin-bottom: 0 !important; }

  .vmsm-0-l {
    margin-top: 0 !important; }

  .vmsm-l-0 {
    margin-bottom: 0 !important; }

  .vmsm-0-s {
    margin-top: 0 !important; }

  .vmsm-s-0 {
    margin-bottom: 0 !important; }

  .vmsm-xl-0 {
    margin-bottom: 0 !important; }

  .vmsm-0-xl {
    margin-top: 0 !important; }

  .vmsm-xs-0 {
    margin-bottom: 0 !important; }

  .vmsm-0-xs {
    margin-top: 0 !important; }

  .vmsmp {
    margin-top: percentatge(0.05);
    margin-bottom: percentatge(0.05); } }
@media (min-width: 992px) {
  .vmmd, .vmmd-l-m, .vmmd-l-s, .vmmd-l-xs, .vmmd-0-l, .vmmd-l-0 {
    margin-top: 60px !important;
    margin-bottom: 60px !important; }

  .vmmd-xl, .vmmd-xl-l, .vmmd-l-xl, .vmmd-xl-m, .vmmd-m-xl, .vmmd-xl-s, .vmmd-s-xl, .vmmd-xl-0, .vmmd-0-xl {
    margin-top: 120px !important;
    margin-bottom: 120px !important; }

  .vmmd-m, .vmmd-m-l, .vmmd-m-s, .vmmd-m-xs, .vmmd-0-m, .vmmd-m-0 {
    margin-top: 30px !important;
    margin-bottom: 30px !important; }

  .vmmd-s, .vmmd-s-m, .vmmd-s-l, .vmmd-s-xs, .vmmd-0-s, .vmmd-s-0 {
    margin-top: 15px !important;
    margin-bottom: 15px !important; }

  .vmmd-xs, .vmmd-xs-s, .vmmd-xs-m, .vmmd-xs-l, .vmmd-xs-0, .vmmd-0-xs {
    margin-top: 10px !important;
    margin-bottom: 10px !important; }

  .vmmd-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }

  .vmmd-l-m {
    margin-bottom: 30px !important; }

  .vmmd-m-l {
    margin-bottom: 60px !important; }

  .vmmd-s-m {
    margin-bottom: 40px !important; }

  .vmmd-m-s {
    margin-bottom: 15px !important; }

  .vmmd-l-s {
    margin-bottom: 15px !important; }

  .vmmd-s-l {
    margin-bottom: 60px !important; }

  .vmmd-xs-s {
    margin-bottom: 15px !important; }

  .vmmd-s-xs {
    margin-bottom: 10px !important; }

  .vmmd-xs-m {
    margin-bottom: 30px !important; }

  .vmmd-m-xs {
    margin-bottom: 10px !important; }

  .vmmd-xs-l {
    margin-bottom: 60px !important; }

  .vmmd-l-xs {
    margin-bottom: 10px !important; }

  .vmmd-xl-l {
    margin-bottom: 60px !important; }

  .vmmd-l-xl {
    margin-top: 60px !important; }

  .vmmd-xl-m {
    margin-bottom: 30px !important; }

  .vmmd-m-xl {
    margin-top: 30px !important; }

  .vmmd-xl-s {
    margin-bottom: 15px !important; }

  .vmmd-s-xl {
    margin-top: 15px !important; }

  .vmmd-0-m {
    margin-top: 0 !important; }

  .vmmd-m-0 {
    margin-bottom: 0 !important; }

  .vmmd-0-l {
    margin-top: 0 !important; }

  .vmmd-l-0 {
    margin-bottom: 0 !important; }

  .vmmd-0-s {
    margin-top: 0 !important; }

  .vmmd-s-0 {
    margin-bottom: 0 !important; }

  .vmmd-xl-0 {
    margin-bottom: 0 !important; }

  .vmmd-0-xl {
    margin-top: 0 !important; }

  .vmmd-xs-0 {
    margin-bottom: 0 !important; }

  .vmmd-0-xs {
    margin-top: 0 !important; }

  .vmmdp {
    margin-top: percentatge(0.05);
    margin-bottom: percentatge(0.05); } }
@media (min-width: 1200px) {
  .vm, .vm-l-m, .vm-l-s, .vm-l-xs, .vm-0-l, .vm-l-0 {
    margin-top: 60px !important;
    margin-bottom: 60px !important; }

  .vm-xl, .vm-xl-l, .vm-l-xl, .vm-xl-m, .vm-m-xl, .vm-xl-s, .vm-s-xl, .vm-xl-0, .vm-0-xl {
    margin-top: 75px !important;
    margin-bottom: 75px !important; }

  .vm-m, .vm-m-l, .vm-m-s, .vm-m-xs, .vm-0-m, .vm-m-0 {
    margin-top: 30px !important;
    margin-bottom: 30px !important; }

  .vm-s, .vm-s-m, .vm-s-l, .vm-s-xs, .vm-0-s, .vm-s-0 {
    margin-top: 15px !important;
    margin-bottom: 15px !important; }

  .vm-xs, .vm-xs-s, .vm-xs-m, .vm-xs-l, .vm-xs-0, .vm-0-xs {
    margin-top: 7.5px !important;
    margin-bottom: 7.5px !important; }

  .vm-l-m {
    margin-bottom: 30px !important; }

  .vm-m-l {
    margin-bottom: 60px !important; }

  .vm-s-m {
    margin-bottom: 30px !important; }

  .vm-m-s {
    margin-bottom: 15px !important; }

  .vm-l-s {
    margin-bottom: 15px !important; }

  .vm-s-l {
    margin-bottom: 60px !important; }

  .vm-xs-s {
    margin-bottom: 15px !important; }

  .vm-s-xs {
    margin-bottom: 7.5px !important; }

  .vm-xs-m {
    margin-bottom: 30px !important; }

  .vm-m-xs {
    margin-bottom: 7.5px !important; }

  .vm-xs-l {
    margin-bottom: 60px !important; }

  .vm-l-xs {
    margin-bottom: 7.5px !important; }

  .vm-xl-l {
    margin-bottom: 60px !important; }

  .vm-l-xl {
    margin-top: 60px !important; }

  .vm-xl-m {
    margin-bottom: 30px !important; }

  .vm-m-xl {
    margin-top: 30px !important; }

  .vm-xl-s {
    margin-bottom: 15px !important; }

  .vm-s-xl {
    margin-top: 15px !important; }

  .vm-0-m {
    margin-top: 0 !important; }

  .vm-m-0 {
    margin-bottom: 0 !important; }

  .vm-0-l {
    margin-top: 0 !important; }

  .vm-l-0 {
    margin-bottom: 0 !important; }

  .vm-0-s {
    margin-top: 0 !important; }

  .vm-s-0 {
    margin-bottom: 0 !important; }

  .vm-xl-0 {
    margin-bottom: 0 !important; }

  .vm-0-xl {
    margin-top: 0 !important; }

  .vm-xs-0 {
    margin-bottom: 0 !important; }

  .vm-0-xs {
    margin-top: 0 !important; } }
.vmp {
  margin-top: percentatge(0.05);
  margin-bottom: percentatge(0.05); }

.vpxs-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important; }

.vpxs, .vpxs-l-m, .vpxs-l-s, .vpxs-l-xs, .vpxs-0-l, .vpxs-l-0 {
  padding-top: 30px !important;
  padding-bottom: 30px !important; }

.vpxs-xl, .vpxs-xl-l, .vpxs-l-xl, .vpxs-xl-m, .vpxs-m-xl, .vpxs-xl-s, .vpxs-s-xl, .vpxs-xl-0, .vpxs-0-xl {
  padding-top: 60px !important;
  padding-bottom: 60px !important; }

.vpxs-m, .vpxs-m-l, .vpxs-m-s, .vpxs-m-xs, .vpxs-0-m, .vpxs-m-0 {
  padding-top: 15px !important;
  padding-bottom: 15px !important; }

.vpxs-s, .vpxs-s-m, .vpxs-s-l, .vpxs-s-xs, .vpxs-0-s, .vpxs-s-0 {
  padding-top: 7.5px !important;
  padding-bottom: 7.5px !important; }

.vpxs-xs, .vpxs-xs-s, .vpxs-xs-m, .vpxs-xs-l, .vpxs-xs-0, .vpxs-0-xs {
  padding-top: 5px !important;
  padding-bottom: 5px !important; }

.vpxs-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.vpxs-l-m {
  padding-bottom: 15px !important; }

.vpxs-m-l {
  padding-bottom: 30px !important; }

.vpxs-s-m {
  padding-bottom: 20px !important; }

.vpxs-m-s {
  padding-bottom: 7.5px !important; }

.vpxs-l-s {
  padding-bottom: 7.5px !important; }

.vpxs-s-l {
  padding-bottom: 30px !important; }

.vpxs-xs-s {
  padding-bottom: 7.5px !important; }

.vpxs-s-xs {
  padding-bottom: 5px !important; }

.vpxs-xs-m {
  padding-bottom: 15px !important; }

.vpxs-m-xs {
  padding-bottom: 5px !important; }

.vpxs-xs-l {
  padding-bottom: 30px !important; }

.vpxs-l-xs {
  padding-bottom: 5px !important; }

.vpxs-xl-l {
  padding-bottom: 30px !important; }

.vpxs-l-xl {
  padding-top: 30px !important; }

.vpxs-xl-m {
  padding-bottom: 15px !important; }

.vpxs-m-xl {
  padding-top: 15px !important; }

.vpxs-xl-s {
  padding-bottom: 7.5px !important; }

.vpxs-s-xl {
  padding-top: 7.5px !important; }

.vpxs-0-m {
  padding-top: 0 !important; }

.vpxs-m-0 {
  padding-bottom: 0 !important; }

.vpxs-0-l {
  padding-top: 0 !important; }

.vpxs-l-0 {
  padding-bottom: 0 !important; }

.vpxs-0-s {
  padding-top: 0 !important; }

.vpxs-s-0 {
  padding-bottom: 0 !important; }

.vpxs-xl-0 {
  padding-bottom: 0 !important; }

.vpxs-0-xl {
  padding-top: 0 !important; }

.vpxs-xs-0 {
  padding-bottom: 0 !important; }

.vpxs-0-xs {
  padding-top: 0 !important; }

.vpxsp {
  padding-top: percentatge(0.05);
  padding-bottom: percentatge(0.05); }

@media (min-width: 768px) {
  .vpsm, .vpsm-l-m, .vpsm-l-s, .vpsm-l-xs, .vpsm-0-l, .vpsm-l-0 {
    padding-top: 60px !important;
    padding-bottom: 60px !important; }

  .vpsm-xl, .vpsm-xl-l, .vpsm-l-xl, .vpsm-xl-m, .vpsm-m-xl, .vpsm-xl-s, .vpsm-s-xl, .vpsm-xl-0, .vpsm-0-xl {
    padding-top: 120px !important;
    padding-bottom: 120px !important; }

  .vpsm-m, .vpsm-m-l, .vpsm-m-s, .vpsm-m-xs, .vpsm-0-m, .vpsm-m-0 {
    padding-top: 30px !important;
    padding-bottom: 30px !important; }

  .vpsm-s, .vpsm-s-m, .vpsm-s-l, .vpsm-s-xs, .vpsm-0-s, .vpsm-s-0 {
    padding-top: 15px !important;
    padding-bottom: 15px !important; }

  .vpsm-xs, .vpsm-xs-s, .vpsm-xs-m, .vpsm-xs-l, .vpsm-xs-0, .vpsm-0-xs {
    padding-top: 10px !important;
    padding-bottom: 10px !important; }

  .vpsm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .vpsm-l-m {
    padding-bottom: 30px !important; }

  .vpsm-m-l {
    padding-bottom: 60px !important; }

  .vpsm-s-m {
    padding-bottom: 40px !important; }

  .vpsm-m-s {
    padding-bottom: 15px !important; }

  .vpsm-l-s {
    padding-bottom: 15px !important; }

  .vpsm-s-l {
    padding-bottom: 60px !important; }

  .vpsm-xs-s {
    padding-bottom: 15px !important; }

  .vpsm-s-xs {
    padding-bottom: 10px !important; }

  .vpsm-xs-m {
    padding-bottom: 30px !important; }

  .vpsm-m-xs {
    padding-bottom: 10px !important; }

  .vpsm-xs-l {
    padding-bottom: 60px !important; }

  .vpsm-l-xs {
    padding-bottom: 10px !important; }

  .vpsm-xl-l {
    padding-bottom: 60px !important; }

  .vpsm-l-xl {
    padding-top: 60px !important; }

  .vpsm-xl-m {
    padding-bottom: 30px !important; }

  .vpsm-m-xl {
    padding-top: 30px !important; }

  .vpsm-xl-s {
    padding-bottom: 15px !important; }

  .vpsm-s-xl {
    padding-top: 15px !important; }

  .vpsm-0-m {
    padding-top: 0 !important; }

  .vpsm-m-0 {
    padding-bottom: 0 !important; }

  .vpsm-0-l {
    padding-top: 0 !important; }

  .vpsm-l-0 {
    padding-bottom: 0 !important; }

  .vpsm-0-s {
    padding-top: 0 !important; }

  .vpsm-s-0 {
    padding-bottom: 0 !important; }

  .vpsm-xl-0 {
    padding-bottom: 0 !important; }

  .vpsm-0-xl {
    padding-top: 0 !important; }

  .vpsm-xs-0 {
    padding-bottom: 0 !important; }

  .vpsm-0-xs {
    padding-top: 0 !important; }

  .vpsmp {
    padding-top: percentatge(0.05);
    padding-bottom: percentatge(0.05); } }
@media (min-width: 992px) {
  .vpmd, .vpmd-l-m, .vpmd-l-s, .vpmd-l-xs, .vpmd-0-l, .vpmd-l-0 {
    padding-top: 60px !important;
    padding-bottom: 60px !important; }

  .vpmd-xl, .vpmd-xl-l, .vpmd-l-xl, .vpmd-xl-m, .vpmd-m-xl, .vpmd-xl-s, .vpmd-s-xl, .vpmd-xl-0, .vpmd-0-xl {
    padding-top: 120px !important;
    padding-bottom: 120px !important; }

  .vpmd-m, .vpmd-m-l, .vpmd-m-s, .vpmd-m-xs, .vpmd-0-m, .vpmd-m-0 {
    padding-top: 30px !important;
    padding-bottom: 30px !important; }

  .vpmd-s, .vpmd-s-m, .vpmd-s-l, .vpmd-s-xs, .vpmd-0-s, .vpmd-s-0 {
    padding-top: 15px !important;
    padding-bottom: 15px !important; }

  .vpmd-xs, .vpmd-xs-s, .vpmd-xs-m, .vpmd-xs-l, .vpmd-xs-0, .vpmd-0-xs {
    padding-top: 10px !important;
    padding-bottom: 10px !important; }

  .vpmd-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

  .vpmd-l-m {
    padding-bottom: 30px !important; }

  .vpmd-m-l {
    padding-bottom: 60px !important; }

  .vpmd-s-m {
    padding-bottom: 40px !important; }

  .vpmd-m-s {
    padding-bottom: 15px !important; }

  .vpmd-l-s {
    padding-bottom: 15px !important; }

  .vpmd-s-l {
    padding-bottom: 60px !important; }

  .vpmd-xs-s {
    padding-bottom: 15px !important; }

  .vpmd-s-xs {
    padding-bottom: 10px !important; }

  .vpmd-xs-m {
    padding-bottom: 30px !important; }

  .vpmd-m-xs {
    padding-bottom: 10px !important; }

  .vpmd-xs-l {
    padding-bottom: 60px !important; }

  .vpmd-l-xs {
    padding-bottom: 10px !important; }

  .vpmd-xl-l {
    padding-bottom: 60px !important; }

  .vpmd-l-xl {
    padding-top: 60px !important; }

  .vpmd-xl-m {
    padding-bottom: 30px !important; }

  .vpmd-m-xl {
    padding-top: 30px !important; }

  .vpmd-xl-s {
    padding-bottom: 15px !important; }

  .vpmd-s-xl {
    padding-top: 15px !important; }

  .vpmd-0-m {
    padding-top: 0 !important; }

  .vpmd-m-0 {
    padding-bottom: 0 !important; }

  .vpmd-0-l {
    padding-top: 0 !important; }

  .vpmd-l-0 {
    padding-bottom: 0 !important; }

  .vpmd-0-s {
    padding-top: 0 !important; }

  .vpmd-s-0 {
    padding-bottom: 0 !important; }

  .vpmd-xl-0 {
    padding-bottom: 0 !important; }

  .vpmd-0-xl {
    padding-top: 0 !important; }

  .vpmd-xs-0 {
    padding-bottom: 0 !important; }

  .vpmd-0-xs {
    padding-top: 0 !important; }

  .vpmdp {
    padding-top: percentatge(0.05);
    padding-bottom: percentatge(0.05); } }
@media (min-width: 1200px) {
  .vp, .vp-l-m, .vp-l-s, .vp-l-xs, .vp-0-l, .vp-l-0 {
    padding-top: 60px !important;
    padding-bottom: 60px !important; }

  .vp-xl, .vp-xl-l, .vp-l-xl, .vp-xl-m, .vp-m-xl, .vp-xl-s, .vp-s-xl, .vp-xl-0, .vp-0-xl {
    padding-top: 75px !important;
    padding-bottom: 75px !important; }

  .vp-m, .vp-m-l, .vp-m-s, .vp-m-xs, .vp-0-m, .vp-m-0 {
    padding-top: 30px !important;
    padding-bottom: 30px !important; }

  .vp-s, .vp-s-m, .vp-s-l, .vp-s-xs, .vp-0-s, .vp-s-0 {
    padding-top: 15px !important;
    padding-bottom: 15px !important; }

  .vp-xs, .vp-xs-s, .vp-xs-m, .vp-xs-l, .vp-xs-0, .vp-0-xs {
    padding-top: 7.5px !important;
    padding-bottom: 7.5px !important; }

  .vp-l-m {
    padding-bottom: 30px !important; }

  .vp-m-l {
    padding-bottom: 60px !important; }

  .vp-s-m {
    padding-bottom: 30px !important; }

  .vp-m-s {
    padding-bottom: 15px !important; }

  .vp-l-s {
    padding-bottom: 15px !important; }

  .vp-s-l {
    padding-bottom: 60px !important; }

  .vp-xs-s {
    padding-bottom: 15px !important; }

  .vp-s-xs {
    padding-bottom: 7.5px !important; }

  .vp-xs-m {
    padding-bottom: 30px !important; }

  .vp-m-xs {
    padding-bottom: 7.5px !important; }

  .vp-xs-l {
    padding-bottom: 60px !important; }

  .vp-l-xs {
    padding-bottom: 7.5px !important; }

  .vp-xl-l {
    padding-bottom: 60px !important; }

  .vp-l-xl {
    padding-top: 60px !important; }

  .vp-xl-m {
    padding-bottom: 30px !important; }

  .vp-m-xl {
    padding-top: 30px !important; }

  .vp-xl-s {
    padding-bottom: 15px !important; }

  .vp-s-xl {
    padding-top: 15px !important; }

  .vp-0-m {
    padding-top: 0 !important; }

  .vp-m-0 {
    padding-bottom: 0 !important; }

  .vp-0-l {
    padding-top: 0 !important; }

  .vp-l-0 {
    padding-bottom: 0 !important; }

  .vp-0-s {
    padding-top: 0 !important; }

  .vp-s-0 {
    padding-bottom: 0 !important; }

  .vp-xl-0 {
    padding-bottom: 0 !important; }

  .vp-0-xl {
    padding-top: 0 !important; }

  .vp-xs-0 {
    padding-bottom: 0 !important; }

  .vp-0-xs {
    padding-top: 0 !important; } }
.hpxs-0 {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.hpxs, .hpxs-l-m, .hpxs-l-s, .hpxs-l-xs, .hpxs-0-l, .hpxs-l-0 {
  padding-left: 30px !important;
  padding-right: 30px !important; }

.hpxs-xl, .hpxs-xl-l, .hpxs-l-xl, .hpxs-xl-m, .hpxs-m-xl, .hpxs-xl-s, .hpxs-s-xl, .hpxs-xl-0, .hpxs-0-xl {
  padding-left: 60px !important;
  padding-right: 60px !important; }

.hpxs-m, .hpxs-m-l, .hpxs-m-s, .hpxs-m-xs, .hpxs-0-m, .hpxs-m-0 {
  padding-left: 15px !important;
  padding-right: 15px !important; }

.hpxs-s, .hpxs-s-m, .hpxs-s-l, .hpxs-s-xs, .hpxs-0-s, .hpxs-s-0 {
  padding-left: 7.5px !important;
  padding-right: 7.5px !important; }

.hpxs-xs, .hpxs-xs-s, .hpxs-xs-m, .hpxs-xs-l, .hpxs-xs-0, .hpxs-0-xs {
  padding-left: 5px !important;
  padding-right: 5px !important; }

.hpxs-0 {
  padding-left: 0 !important;
  padding-right: 0 !important; }

.hpxs-l-m {
  padding-right: 15px !important; }

.hpxs-m-l {
  padding-right: 30px !important; }

.hpxs-s-m {
  padding-right: 20px !important; }

.hpxs-m-s {
  padding-right: 7.5px !important; }

.hpxs-l-s {
  padding-right: 7.5px !important; }

.hpxs-s-l {
  padding-right: 30px !important; }

.hpxs-xs-s {
  padding-right: 7.5px !important; }

.hpxs-s-xs {
  padding-right: 5px !important; }

.hpxs-xs-m {
  padding-right: 15px !important; }

.hpxs-m-xs {
  padding-right: 5px !important; }

.hpxs-xs-l {
  padding-right: 30px !important; }

.hpxs-l-xs {
  padding-right: 5px !important; }

.hpxs-xl-l {
  padding-right: 30px !important; }

.hpxs-l-xl {
  padding-left: 30px !important; }

.hpxs-xl-m {
  padding-right: 15px !important; }

.hpxs-m-xl {
  padding-left: 15px !important; }

.hpxs-xl-s {
  padding-right: 7.5px !important; }

.hpxs-s-xl {
  padding-left: 7.5px !important; }

.hpxs-0-m {
  padding-left: 0 !important; }

.hpxs-m-0 {
  padding-right: 0 !important; }

.hpxs-0-l {
  padding-left: 0 !important; }

.hpxs-l-0 {
  padding-right: 0 !important; }

.hpxs-0-s {
  padding-left: 0 !important; }

.hpxs-s-0 {
  padding-right: 0 !important; }

.hpxs-xl-0 {
  padding-right: 0 !important; }

.hpxs-0-xl {
  padding-left: 0 !important; }

.hpxs-xs-0 {
  padding-right: 0 !important; }

.hpxs-0-xs {
  padding-left: 0 !important; }

.hpxsp {
  padding-left: percentatge(0.05);
  padding-right: percentatge(0.05); }

@media (min-width: 768px) {
  .hpsm, .hpsm-l-m, .hpsm-l-s, .hpsm-l-xs, .hpsm-0-l, .hpsm-l-0 {
    padding-left: 60px !important;
    padding-right: 60px !important; }

  .hpsm-xl, .hpsm-xl-l, .hpsm-l-xl, .hpsm-xl-m, .hpsm-m-xl, .hpsm-xl-s, .hpsm-s-xl, .hpsm-xl-0, .hpsm-0-xl {
    padding-left: 120px !important;
    padding-right: 120px !important; }

  .hpsm-m, .hpsm-m-l, .hpsm-m-s, .hpsm-m-xs, .hpsm-0-m, .hpsm-m-0 {
    padding-left: 30px !important;
    padding-right: 30px !important; }

  .hpsm-s, .hpsm-s-m, .hpsm-s-l, .hpsm-s-xs, .hpsm-0-s, .hpsm-s-0 {
    padding-left: 15px !important;
    padding-right: 15px !important; }

  .hpsm-xs, .hpsm-xs-s, .hpsm-xs-m, .hpsm-xs-l, .hpsm-xs-0, .hpsm-0-xs {
    padding-left: 10px !important;
    padding-right: 10px !important; }

  .hpsm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important; }

  .hpsm-l-m {
    padding-right: 30px !important; }

  .hpsm-m-l {
    padding-right: 60px !important; }

  .hpsm-s-m {
    padding-right: 40px !important; }

  .hpsm-m-s {
    padding-right: 15px !important; }

  .hpsm-l-s {
    padding-right: 15px !important; }

  .hpsm-s-l {
    padding-right: 60px !important; }

  .hpsm-xs-s {
    padding-right: 15px !important; }

  .hpsm-s-xs {
    padding-right: 10px !important; }

  .hpsm-xs-m {
    padding-right: 30px !important; }

  .hpsm-m-xs {
    padding-right: 10px !important; }

  .hpsm-xs-l {
    padding-right: 60px !important; }

  .hpsm-l-xs {
    padding-right: 10px !important; }

  .hpsm-xl-l {
    padding-right: 60px !important; }

  .hpsm-l-xl {
    padding-left: 60px !important; }

  .hpsm-xl-m {
    padding-right: 30px !important; }

  .hpsm-m-xl {
    padding-left: 30px !important; }

  .hpsm-xl-s {
    padding-right: 15px !important; }

  .hpsm-s-xl {
    padding-left: 15px !important; }

  .hpsm-0-m {
    padding-left: 0 !important; }

  .hpsm-m-0 {
    padding-right: 0 !important; }

  .hpsm-0-l {
    padding-left: 0 !important; }

  .hpsm-l-0 {
    padding-right: 0 !important; }

  .hpsm-0-s {
    padding-left: 0 !important; }

  .hpsm-s-0 {
    padding-right: 0 !important; }

  .hpsm-xl-0 {
    padding-right: 0 !important; }

  .hpsm-0-xl {
    padding-left: 0 !important; }

  .hpsm-xs-0 {
    padding-right: 0 !important; }

  .hpsm-0-xs {
    padding-left: 0 !important; }

  .hpsmp {
    padding-left: percentatge(0.05);
    padding-right: percentatge(0.05); } }
@media (min-width: 992px) {
  .hpmd, .hpmd-l-m, .hpmd-l-s, .hpmd-l-xs, .hpmd-0-l, .hpmd-l-0 {
    padding-left: 60px !important;
    padding-right: 60px !important; }

  .hpmd-xl, .hpmd-xl-l, .hpmd-l-xl, .hpmd-xl-m, .hpmd-m-xl, .hpmd-xl-s, .hpmd-s-xl, .hpmd-xl-0, .hpmd-0-xl {
    padding-left: 120px !important;
    padding-right: 120px !important; }

  .hpmd-m, .hpmd-m-l, .hpmd-m-s, .hpmd-m-xs, .hpmd-0-m, .hpmd-m-0 {
    padding-left: 30px !important;
    padding-right: 30px !important; }

  .hpmd-s, .hpmd-s-m, .hpmd-s-l, .hpmd-s-xs, .hpmd-0-s, .hpmd-s-0 {
    padding-left: 15px !important;
    padding-right: 15px !important; }

  .hpmd-xs, .hpmd-xs-s, .hpmd-xs-m, .hpmd-xs-l, .hpmd-xs-0, .hpmd-0-xs {
    padding-left: 10px !important;
    padding-right: 10px !important; }

  .hpmd-0 {
    padding-left: 0 !important;
    padding-right: 0 !important; }

  .hpmd-l-m {
    padding-right: 30px !important; }

  .hpmd-m-l {
    padding-right: 60px !important; }

  .hpmd-s-m {
    padding-right: 40px !important; }

  .hpmd-m-s {
    padding-right: 15px !important; }

  .hpmd-l-s {
    padding-right: 15px !important; }

  .hpmd-s-l {
    padding-right: 60px !important; }

  .hpmd-xs-s {
    padding-right: 15px !important; }

  .hpmd-s-xs {
    padding-right: 10px !important; }

  .hpmd-xs-m {
    padding-right: 30px !important; }

  .hpmd-m-xs {
    padding-right: 10px !important; }

  .hpmd-xs-l {
    padding-right: 60px !important; }

  .hpmd-l-xs {
    padding-right: 10px !important; }

  .hpmd-xl-l {
    padding-right: 60px !important; }

  .hpmd-l-xl {
    padding-left: 60px !important; }

  .hpmd-xl-m {
    padding-right: 30px !important; }

  .hpmd-m-xl {
    padding-left: 30px !important; }

  .hpmd-xl-s {
    padding-right: 15px !important; }

  .hpmd-s-xl {
    padding-left: 15px !important; }

  .hpmd-0-m {
    padding-left: 0 !important; }

  .hpmd-m-0 {
    padding-right: 0 !important; }

  .hpmd-0-l {
    padding-left: 0 !important; }

  .hpmd-l-0 {
    padding-right: 0 !important; }

  .hpmd-0-s {
    padding-left: 0 !important; }

  .hpmd-s-0 {
    padding-right: 0 !important; }

  .hpmd-xl-0 {
    padding-right: 0 !important; }

  .hpmd-0-xl {
    padding-left: 0 !important; }

  .hpmd-xs-0 {
    padding-right: 0 !important; }

  .hpmd-0-xs {
    padding-left: 0 !important; }

  .hpmdp {
    padding-left: percentatge(0.05);
    padding-right: percentatge(0.05); } }
@media (min-width: 1200px) {
  .hp, .hp-l-m, .hp-l-s, .hp-l-xs, .hp-0-l, .hp-l-0 {
    padding-left: 2.5% !important;
    padding-right: 2.5% !important; }

  .hp-xl, .hp-xl-l, .hp-l-xl, .hp-xl-m, .hp-m-xl, .hp-xl-s, .hp-s-xl, .hp-xl-0, .hp-0-xl {
    padding-left: 3.125% !important;
    padding-right: 3.125% !important; }

  .hp-m, .hp-m-l, .hp-m-s, .hp-m-xs, .hp-0-m, .hp-m-0 {
    padding-left: 1.25% !important;
    padding-right: 1.25% !important; }

  .hp-s, .hp-s-m, .hp-s-l, .hp-s-xs, .hp-0-s, .hp-s-0 {
    padding-left: 0.625% !important;
    padding-right: 0.625% !important; }

  .hp-xs, .hp-xs-s, .hp-xs-m, .hp-xs-l, .hp-xs-0, .hp-0-xs {
    padding-left: 0.3125% !important;
    padding-right: 0.3125% !important; }

  .hp-l-m {
    padding-right: 1.25% !important; }

  .hp-m-l {
    padding-right: 2.5% !important; }

  .hp-s-m {
    padding-right: 1.25% !important; }

  .hp-m-s {
    padding-right: 0.625% !important; }

  .hp-l-s {
    padding-right: 0.625% !important; }

  .hp-s-l {
    padding-right: 2.5% !important; }

  .hp-xs-s {
    padding-right: 0.625% !important; }

  .hp-s-xs {
    padding-right: 0.3125% !important; }

  .hp-xs-m {
    padding-right: 1.25% !important; }

  .hp-m-xs {
    padding-right: 0.3125% !important; }

  .hp-xs-l {
    padding-right: 2.5% !important; }

  .hp-l-xs {
    padding-right: 0.3125% !important; }

  .hp-xl-l {
    padding-right: 2.5% !important; }

  .hp-l-xl {
    padding-left: 2.5% !important; }

  .hp-xl-m {
    padding-right: 1.25% !important; }

  .hp-m-xl {
    padding-left: 1.25% !important; }

  .hp-xl-s {
    padding-right: 0.625% !important; }

  .hp-s-xl {
    padding-left: 0.625% !important; }

  .hp-0-m {
    padding-left: 0 !important; }

  .hp-m-0 {
    padding-right: 0 !important; }

  .hp-0-l {
    padding-left: 0 !important; }

  .hp-l-0 {
    padding-right: 0 !important; }

  .hp-0-s {
    padding-left: 0 !important; }

  .hp-s-0 {
    padding-right: 0 !important; }

  .hp-xl-0 {
    padding-right: 0 !important; }

  .hp-0-xl {
    padding-left: 0 !important; }

  .hp-xs-0 {
    padding-right: 0 !important; }

  .hp-0-xs {
    padding-left: 0 !important; }

  .hp-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; } }
.nopadding {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.hm, .hm-l-m, .hm-l-s, .hm-l-xs, .hm-0-l, .hm-l-0 {
  margin-left: 15px !important;
  margin-right: 15px !important; }

.hm-xl, .hm-xl-l, .hm-l-xl, .hm-xl-m, .hm-m-xl, .hm-xl-s, .hm-s-xl, .hm-xl-0, .hm-0-xl {
  margin-left: 18.75px !important;
  margin-right: 18.75px !important; }

.hm-m, .hm-m-l, .hm-m-s, .hm-m-xs, .hm-0-m, .hm-m-0 {
  margin-left: 7.5px !important;
  margin-right: 7.5px !important; }

.hm-s, .hm-s-m, .hm-s-l, .hm-s-xs, .hm-0-s, .hm-s-0 {
  margin-left: 3.75px !important;
  margin-right: 3.75px !important; }

.hm-xs, .hm-xs-s, .hm-xs-m, .hm-xs-l, .hm-xs-0, .hm-0-xs {
  margin-left: 1.875px !important;
  margin-right: 1.875px !important; }

.hm-l-m {
  margin-right: 7.5px !important; }

.hm-m-l {
  margin-right: 15px !important; }

.hm-s-m {
  margin-right: 7.5px !important; }

.hm-m-s {
  margin-right: 3.75px !important; }

.hm-l-s {
  margin-right: 3.75px !important; }

.hm-s-l {
  margin-right: 15px !important; }

.hm-xs-s {
  margin-right: 3.75px !important; }

.hm-s-xs {
  margin-right: 1.875px !important; }

.hm-xs-m {
  margin-right: 7.5px !important; }

.hm-m-xs {
  margin-right: 1.875px !important; }

.hm-xs-l {
  margin-right: 15px !important; }

.hm-l-xs {
  margin-right: 1.875px !important; }

.hm-xl-l {
  margin-right: 15px !important; }

.hm-l-xl {
  margin-left: 15px !important; }

.hm-xl-m {
  margin-right: 7.5px !important; }

.hm-m-xl {
  margin-left: 7.5px !important; }

.hm-xl-s {
  margin-right: 3.75px !important; }

.hm-s-xl {
  margin-left: 3.75px !important; }

.hm-0-m {
  margin-left: 0 !important; }

.hm-m-0 {
  margin-right: 0 !important; }

.hm-0-l {
  margin-left: 0 !important; }

.hm-l-0 {
  margin-right: 0 !important; }

.hm-0-s {
  margin-left: 0 !important; }

.hm-s-0 {
  margin-right: 0 !important; }

.hm-xl-0 {
  margin-right: 0 !important; }

.hm-0-xl {
  margin-left: 0 !important; }

.hm-xs-0 {
  margin-right: 0 !important; }

.hm-0-xs {
  margin-left: 0 !important; }

@media (min-width: 992px) {
  .hmmd, .hmmd-l-m, .hmmd-l-s, .hmmd-l-xs, .hmmd-0-l, .hmmd-l-0 {
    margin-left: 60px !important;
    margin-right: 60px !important; }

  .hmmd-xl, .hmmd-xl-l, .hmmd-l-xl, .hmmd-xl-m, .hmmd-m-xl, .hmmd-xl-s, .hmmd-s-xl, .hmmd-xl-0, .hmmd-0-xl {
    margin-left: 120px !important;
    margin-right: 120px !important; }

  .hmmd-m, .hmmd-m-l, .hmmd-m-s, .hmmd-m-xs, .hmmd-0-m, .hmmd-m-0 {
    margin-left: 30px !important;
    margin-right: 30px !important; }

  .hmmd-s, .hmmd-s-m, .hmmd-s-l, .hmmd-s-xs, .hmmd-0-s, .hmmd-s-0 {
    margin-left: 15px !important;
    margin-right: 15px !important; }

  .hmmd-xs, .hmmd-xs-s, .hmmd-xs-m, .hmmd-xs-l, .hmmd-xs-0, .hmmd-0-xs {
    margin-left: 10px !important;
    margin-right: 10px !important; }

  .hmmd-0 {
    margin-left: 0 !important;
    margin-right: 0 !important; }

  .hmmd-l-m {
    margin-right: 30px !important; }

  .hmmd-m-l {
    margin-right: 60px !important; }

  .hmmd-s-m {
    margin-right: 40px !important; }

  .hmmd-m-s {
    margin-right: 15px !important; }

  .hmmd-l-s {
    margin-right: 15px !important; }

  .hmmd-s-l {
    margin-right: 60px !important; }

  .hmmd-xs-s {
    margin-right: 15px !important; }

  .hmmd-s-xs {
    margin-right: 10px !important; }

  .hmmd-xs-m {
    margin-right: 30px !important; }

  .hmmd-m-xs {
    margin-right: 10px !important; }

  .hmmd-xs-l {
    margin-right: 60px !important; }

  .hmmd-l-xs {
    margin-right: 10px !important; }

  .hmmd-xl-l {
    margin-right: 60px !important; }

  .hmmd-l-xl {
    margin-left: 60px !important; }

  .hmmd-xl-m {
    margin-right: 30px !important; }

  .hmmd-m-xl {
    margin-left: 30px !important; }

  .hmmd-xl-s {
    margin-right: 15px !important; }

  .hmmd-s-xl {
    margin-left: 15px !important; }

  .hmmd-0-m {
    margin-left: 0 !important; }

  .hmmd-m-0 {
    margin-right: 0 !important; }

  .hmmd-0-l {
    margin-left: 0 !important; }

  .hmmd-l-0 {
    margin-right: 0 !important; }

  .hmmd-0-s {
    margin-left: 0 !important; }

  .hmmd-s-0 {
    margin-right: 0 !important; }

  .hmmd-xl-0 {
    margin-right: 0 !important; }

  .hmmd-0-xl {
    margin-left: 0 !important; }

  .hmmd-xs-0 {
    margin-right: 0 !important; }

  .hmmd-0-xs {
    margin-left: 0 !important; }

  .hmmdp {
    margin-left: percentatge(0.05);
    margin-right: percentatge(0.05); } }
@media (min-width: 768px) {
  .hmsm, .hmsm-l-m, .hmsm-l-s, .hmsm-l-xs, .hmsm-0-l, .hmsm-l-0 {
    margin-left: 60px !important;
    margin-right: 60px !important; }

  .hmsm-xl, .hmsm-xl-l, .hmsm-l-xl, .hmsm-xl-m, .hmsm-m-xl, .hmsm-xl-s, .hmsm-s-xl, .hmsm-xl-0, .hmsm-0-xl {
    margin-left: 120px !important;
    margin-right: 120px !important; }

  .hmsm-m, .hmsm-m-l, .hmsm-m-s, .hmsm-m-xs, .hmsm-0-m, .hmsm-m-0 {
    margin-left: 30px !important;
    margin-right: 30px !important; }

  .hmsm-s, .hmsm-s-m, .hmsm-s-l, .hmsm-s-xs, .hmsm-0-s, .hmsm-s-0 {
    margin-left: 15px !important;
    margin-right: 15px !important; }

  .hmsm-xs, .hmsm-xs-s, .hmsm-xs-m, .hmsm-xs-l, .hmsm-xs-0, .hmsm-0-xs {
    margin-left: 10px !important;
    margin-right: 10px !important; }

  .hmsm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important; }

  .hmsm-l-m {
    margin-right: 30px !important; }

  .hmsm-m-l {
    margin-right: 60px !important; }

  .hmsm-s-m {
    margin-right: 40px !important; }

  .hmsm-m-s {
    margin-right: 15px !important; }

  .hmsm-l-s {
    margin-right: 15px !important; }

  .hmsm-s-l {
    margin-right: 60px !important; }

  .hmsm-xs-s {
    margin-right: 15px !important; }

  .hmsm-s-xs {
    margin-right: 10px !important; }

  .hmsm-xs-m {
    margin-right: 30px !important; }

  .hmsm-m-xs {
    margin-right: 10px !important; }

  .hmsm-xs-l {
    margin-right: 60px !important; }

  .hmsm-l-xs {
    margin-right: 10px !important; }

  .hmsm-xl-l {
    margin-right: 60px !important; }

  .hmsm-l-xl {
    margin-left: 60px !important; }

  .hmsm-xl-m {
    margin-right: 30px !important; }

  .hmsm-m-xl {
    margin-left: 30px !important; }

  .hmsm-xl-s {
    margin-right: 15px !important; }

  .hmsm-s-xl {
    margin-left: 15px !important; }

  .hmsm-0-m {
    margin-left: 0 !important; }

  .hmsm-m-0 {
    margin-right: 0 !important; }

  .hmsm-0-l {
    margin-left: 0 !important; }

  .hmsm-l-0 {
    margin-right: 0 !important; }

  .hmsm-0-s {
    margin-left: 0 !important; }

  .hmsm-s-0 {
    margin-right: 0 !important; }

  .hmsm-xl-0 {
    margin-right: 0 !important; }

  .hmsm-0-xl {
    margin-left: 0 !important; }

  .hmsm-xs-0 {
    margin-right: 0 !important; }

  .hmsm-0-xs {
    margin-left: 0 !important; }

  .hmsmp {
    margin-left: percentatge(0.05);
    margin-right: percentatge(0.05); } }
@media (max-width: 480px) {
  .hmxs, .hmxs-l-m, .hmxs-l-s, .hmxs-l-xs, .hmxs-0-l, .hmxs-l-0 {
    margin-left: 30px !important;
    margin-right: 30px !important; }

  .hmxs-xl, .hmxs-xl-l, .hmxs-l-xl, .hmxs-xl-m, .hmxs-m-xl, .hmxs-xl-s, .hmxs-s-xl, .hmxs-xl-0, .hmxs-0-xl {
    margin-left: 60px !important;
    margin-right: 60px !important; }

  .hmxs-m, .hmxs-m-l, .hmxs-m-s, .hmxs-m-xs, .hmxs-0-m, .hmxs-m-0 {
    margin-left: 15px !important;
    margin-right: 15px !important; }

  .hmxs-s, .hmxs-s-m, .hmxs-s-l, .hmxs-s-xs, .hmxs-0-s, .hmxs-s-0 {
    margin-left: 7.5px !important;
    margin-right: 7.5px !important; }

  .hmxs-xs, .hmxs-xs-s, .hmxs-xs-m, .hmxs-xs-l, .hmxs-xs-0, .hmxs-0-xs {
    margin-left: 5px !important;
    margin-right: 5px !important; }

  .hmxs-0 {
    margin-left: 0 !important;
    margin-right: 0 !important; }

  .hmxs-l-m {
    margin-right: 15px !important; }

  .hmxs-m-l {
    margin-right: 30px !important; }

  .hmxs-s-m {
    margin-right: 20px !important; }

  .hmxs-m-s {
    margin-right: 7.5px !important; }

  .hmxs-l-s {
    margin-right: 7.5px !important; }

  .hmxs-s-l {
    margin-right: 30px !important; }

  .hmxs-xs-s {
    margin-right: 7.5px !important; }

  .hmxs-s-xs {
    margin-right: 5px !important; }

  .hmxs-xs-m {
    margin-right: 15px !important; }

  .hmxs-m-xs {
    margin-right: 5px !important; }

  .hmxs-xs-l {
    margin-right: 30px !important; }

  .hmxs-l-xs {
    margin-right: 5px !important; }

  .hmxs-xl-l {
    margin-right: 30px !important; }

  .hmxs-l-xl {
    margin-left: 30px !important; }

  .hmxs-xl-m {
    margin-right: 15px !important; }

  .hmxs-m-xl {
    margin-left: 15px !important; }

  .hmxs-xl-s {
    margin-right: 7.5px !important; }

  .hmxs-s-xl {
    margin-left: 7.5px !important; }

  .hmxs-0-m {
    margin-left: 0 !important; }

  .hmxs-m-0 {
    margin-right: 0 !important; }

  .hmxs-0-l {
    margin-left: 0 !important; }

  .hmxs-l-0 {
    margin-right: 0 !important; }

  .hmxs-0-s {
    margin-left: 0 !important; }

  .hmxs-s-0 {
    margin-right: 0 !important; }

  .hmxs-xl-0 {
    margin-right: 0 !important; }

  .hmxs-0-xl {
    margin-left: 0 !important; }

  .hmxs-xs-0 {
    margin-right: 0 !important; }

  .hmxs-0-xs {
    margin-left: 0 !important; }

  .hmxsp {
    margin-left: percentatge(0.05);
    margin-right: percentatge(0.05); } }
.vm-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.gp {
  padding: 60px !important; }

.gp-xl {
  padding: 75px !important; }

.gp-m {
  padding: 30px !important; }

.gp-s {
  padding: 15px !important; }

.gp-xs {
  padding: 7.5px !important; }

/*# sourceMappingURL=styles.css.map */
