@font-face {
    font-family: BebasNeue-Regular;
    src: url(../fonts/BebasNeue-Regular.otf);
}

@font-face {
    font-family: Museo-100;
    src: url(../fonts/Museo_100.otf);
}

@font-face {
    font-family: Museo-300;
    src: url(../fonts/Museo_300.otf);
}

@font-face {
    font-family: Museo-500;
    src: url(../fonts/Museo_500.otf);
}

@font-face {
    font-family: Museo-700;
    src: url(../fonts/Museo_700.otf);
}

@font-face {
    font-family: Museo-900;
    src: url(../fonts/Museo_900.otf);
}

:root {
  --light-yellow: #ffeb8b;
  --yellow: #F7D840;
  --coral: #01BABF;
  --light-green: #357570;
  --dark-green: #01393A;
  --light-pink: #E595C2;
  --dark-pink: #DB0181;
  --white: white;
  --medium-green-eco: #08942f;
  --dark-green-eco: #056d22;
}


body {
  background-color: var(--yellow);
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
  font-family: 'Open Sans', sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 20px;

}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Museo-900', sans-serif;
  color: var(--dark-green);
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Museo-500', sans-serif;
  color: var(--dark-green);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}

h4 {
  margin-bottom: 10px;
  font-family: 'Museo-500', sans-serif;
  color: var(--dark-green);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

.pink {
  color: var(--dark-pink);
}

p {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-green);
  line-height: 22px;
  font-weight: 400;
}

a {
  color: var(--dark-pink);
  text-decoration: none;

}

ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
  color: var(--dark-green);
}

li {
  line-height: 22px;
}

.oblique {
  font-style: oblique;
}

strong {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.picture-frame {
    border: 5px solid var(--white);
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: block;
  width: 260px;
  height: 35vh;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-landing {
  display: block;
  height: 1050px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #33959e;
}

.hero-overlay-landing {
  height: 100%;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-image: url('../images/Fondo_azul.jpg');
  background-position: 50% 31%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5%;
  padding-right: 8%;
  padding-left: 8%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand {
  margin-top: 20px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.bands-block {
  max-width: 500px;
  margin-top: 59px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.text-block-old {
  margin-top: 42px;
}

.tickets-text {
  font-family: 'Futurabt boldcondensed', sans-serif;
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
}

.tickets-text.orange-text {
  margin-top: 31px;
  font-family: 'Futurabt mediumcondensed', sans-serif;
  color: #fab041;
  font-weight: 500;
}

.button {
  margin-top: 27px;
  padding: 15px 25px;
  border-radius: 3px;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: 'Futurabt boldcondensed', sans-serif;
  color: #33959e;
  font-size: 20px;
  letter-spacing: 1px;
}

.button:hover {
  background-color: #fab041;
}

.button.button-newsletter {
  margin-top: 0px;
  padding: 10px 15px;
  color: #ff0081;
  text-transform: uppercase;
}

.button.button-newsletter:hover {
  background-color: #004d6d;
  color: #fff;
}

.content-wrapper-landing {
  position: relative;
  display: block;
  height: 100%;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.footer {
  position: static;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /*height: 200px;*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: var(--dark-green);
}

.footer.footer-pages {
  position: static;
}

.legal {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  background-color: var(--dark-green);
  text-align: center;
  border-top: 1px solid var(--coral);
}

.max-40 {
  max-width: 40%;
}

.edif_left {
  position: absolute;
  left: 0px;
  bottom: 10%;
  width: 20%;
  height: 60%;
  -webkit-flex-basis: 250px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  background-image: url('../images/Img_edif_izq.png');
  background-position: 0px 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.edif_right {
  position: absolute;
  right: 0px;
  bottom: 12%;
  width: 20%;
  height: 60%;
  float: right;
  -webkit-flex-basis: 250px;
  -ms-flex-preferred-size: 250px;
  flex-basis: 250px;
  background-image: url('../images/Img_edif_der.png');
  background-position: 100% 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.image-framework {
  border: 5px solid #fff;
}

.grass {
  position: relative;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  height: 100%;
  background-image: url('../images/Img_cesped.png');
  background-position: 50% 122%;
  background-size: contain;
  background-repeat: no-repeat;
}

.rugby {
  position: absolute;
  left: 8%;
  bottom: 5%;
  display: block;
  width: 7%;
  height: 15%;
  background-image: url('../images/Img_rugby.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.caballito {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: 12%;
  height: 12%;
  background-image: url('../images/Img_caballito.png');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

.legal-text {
  display: inline-block;
  font-family: 'Museo-500', sans-serif;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

.dot {
  width: 5px;
  height: 5px;
  margin-top: 3px;
  margin-right: 7px;
  margin-left: 7px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 300px;
  background-color: hsla(0, 0%, 100%, .5);
}

.brands-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 10px;
  padding-left: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.brands-block.brand-block-hide {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.brands-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.footer-credits {
  font-family: Din1451engschrift, sans-serif;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.line {
  width: 1px;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #fff;
}

.social-block {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 9900;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;

}

.social-block a {
  
  
}

.social-icon:hover {
  opacity: 0.6;
}

.social-icon.icon-web:hover {
  background-image: url('../images/Icon_square_web_pink.svg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.social-icon.icon-face:hover {
  background-image: url('../images/Icon_square_facebook_pink.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.social-icon.icon-tweeter:hover {
  background-image: url('../images/Icon_square_twitter_pink.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.social-icon.icon-insta:hover {
  background-image: url('../images/Icon_square_instagram_pink.svg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.social-icon.icon-spotify:hover {
  background-image: url('../images/Icon_square_Spotify_pink.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.social-icon.icon-youtube:hover {
  background-image: url('../images/Icon_square_Youtube_pink.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.img-social {
  width: 35px;
}

.line-hor {
  width: 20px;
  height: 1px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  background-color: #233B3D;
}

.line-hor.line-hor-longer {
  width: 40px;
}

.line-hor.line-blue {
  background-color: #004562;
}

.newsletter-block {
    position: absolute;
    top: 5em;
    right: 3em;
    z-index: 9901;
}

.newsletter-block a {
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    font-family: 'Museo-700', sans-serif;
    color: var(--dark-green);
    border: 1px solid;
    padding: .2em .3em;
}

.newsletter-block a:hover {
    color: var(--light-green);
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  display: none;
  background-color: #f1eeee;
}

.header {
  padding-top: 47px;
  padding-bottom: 90px;
  text-align: center;
}

.content {
  height: 100%;
  padding-bottom: 320px;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.overlay-section {
  background-image: none;
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
}

.sponsors-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 5%;
  padding-left: 5%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.edriaax {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.powered-text {
  font-family: 'Futurabt lightcondensed', sans-serif;
  color: #fff;
}

.img-edriaax {
  margin-left: 13px;
}

.legal-column {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.navbar {
    height: 150px;
    background-color: var(--yellow);
    background-image: url(../images/Header_bg.png);
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 40px;
}

.navbar-2702 {
  background-image: url('../images/Header_bg_blue_clouds.png');
}

.slider-hero {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: transparent;
}

.slider-hero-banner {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: transparent;
  height: 160px;
}

.w-slider-arrow-left,
.w-slider-arrow-right {
  color: var(--yellow);
}

.interpol {
  background-image: url('../images/interpol_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.nav-link {
  padding-right: 20px;
  padding-left: 0;
  margin-right: 20px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: 'Museo-900', sans-serif;
  color: var(--dark-green);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-link.no-right {
  margin-right: 0;  
}

.nav-link.yellow {
  color: #f0e964;
}

.nav-link.yellow:hover {
  color: #e6e3a2;
}

.nav-link.blue {
  color: #95dfff;
}

.nav-link.blue:hover {
  color: #4ca4ca;
}

.nav-link.green {
  color: var(--medium-green-eco);
}

.nav-link.green:hover {
  color: var(--dark-green-eco);
}

.nav-link:hover {
  color: var(--light-green);
}

.nav-link.w--current {
  color: var(--coral);
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: none;
  margin-top: 90px;
  float: right;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dropdown-toggle-menu {
  display: block;
  color: #fff;
}

.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 80vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.band-of-horses {
  background-image: url('../images/Foto_Boh.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.the-kooks {
  background-image: url('../images/kooks_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.line-up {
  display: inline-block;
  background-image: -webkit-linear-gradient(270deg, #95d5db, hsla(0, 0%, 100%, 0)), url('../images/Cartel_bg.jpg');
  background-image: linear-gradient(180deg, #95d5db, hsla(0, 0%, 100%, 0)), url('../images/Cartel_bg.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
}

.slide-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.slide-content.slide-content-lineup {
  display: block;
  padding-top: 120px;
  text-align: center;

  postition: relative;
}

.section-decoration {
    height: 170px;
    background-image: url(../images/bg-shrubbery.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.footer-bar {
    height: 10px;
    background-color: var(--coral);
}

.button-2 {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 3px;
  background-color: var(--dark-pink);
  font-family: 'Museo-500', sans-serif;
  font-size: 21px;
  margin-right: 10px;
}

.button-2:hover {
  background-color: var(--light-green);
}

.menu-button {
  width: 65px;
  height: 65px;
  padding: 5px;
}

.menu-button.w--open {
  background-color: transparent;
}

.square-front {
  position: absolute;
  left: 0px;
  top: 7px;
  right: 0px;
  display: block;
  width: 50px;
  height: 50px;
  margin-right: auto;
  margin-left: auto;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transform: translate3d(0px, 0px, 25px);
  transform: translate3d(0px, 0px, 25px);
}

.square-parent {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  -webkit-perspective: 2000px;
  perspective: 2000px;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

.leftx {
  position: absolute;
  left: 8px;
  top: 14px;
  width: 25px;
  height: 3px;
  background-color: #fff;
  -webkit-transform: perspective(1200px) rotateX(0deg) rotateY(45deg) rotateZ(0deg) translate3d(10px, 0px, -15px);
  transform: perspective(1200px) rotateX(0deg) rotateY(45deg) rotateZ(0deg) translate3d(10px, 0px, -15px);
}

.leftx._2 {
  top: 24px;
}

.leftx._3 {
  top: 34px;
}

.rightx {
  position: absolute;
  top: 14px;
  right: 8px;
  width: 25px;
  height: 3px;
  background-color: #fff;
  -webkit-transform: rotateX(0deg) rotateY(-45deg) rotateZ(0deg) translate3d(-10px, 0px, -15px);
  transform: rotateX(0deg) rotateY(-45deg) rotateZ(0deg) translate3d(-10px, 0px, -15px);
}

.rightx._2 {
  top: 24px;
}

.rightx._3 {
  top: 34px;
}

.square-floor {
  position: absolute;
  left: 8px;
  top: 7px;
  right: 0px;
  width: 50px;
  height: 50px;
  -webkit-perspective: 9999px;
  perspective: 9999px;
  -webkit-transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, -25px);
  transform: rotateX(90deg) rotateY(0deg) rotateZ(0deg) translate3d(0px, 0px, -25px);
}

.xline {
  position: absolute;
  left: 0px;
  top: 50%;
  right: 0px;
  display: block;
  width: 45px;
  height: 3px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--dark-green);
  -webkit-transform: translate(0px, -50%) rotate(45deg);
  -ms-transform: translate(0px, -50%) rotate(45deg);
  transform: translate(0px, -50%) rotate(45deg);
}

.xline._2 {
  -webkit-transform: translate(0px, -50%) rotate(-45deg);
  -ms-transform: translate(0px, -50%) rotate(-45deg);
  transform: translate(0px, -50%) rotate(-45deg);
}

.test {
  height: 100vh;
  background-color: #0098ff;
}

.body {
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.tittle-section {
  display: block;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.tittle-section-block {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: 253px;
}

.tittle-header {
  position: relative;
  display: inline-block;
  border-top: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  font-family: 'Museo-900', sans-serif;
  color: var(--white);
  font-size: 40px;
  line-height: 60px;
}

.tittle-section-header {
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: var(--light-green);
}

.tittle-section-header.section-artist {
  height: 650px;
}

.tittle-section-header.section-artist.artist-interpol {
  background-image: url('../images/interpol_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.tittle-section-header.section-artist.artist-kooks {
  background-image: url('../images/Foto_Thekooks.jpg');
  background-position: 50% -12%;
  background-size: cover;
  background-repeat: repeat;
}

.tittle-section-header.section-artist.artist-milky {
  background-image: url('../images/Foto_MilkyChance_500.jpg');
  background-position: 50% 15px;
  background-size: cover;
  background-repeat: repeat;
}

.tittle-section-header.section-artist.artist-carlos-sadness {
  background-image: url('../images/Foto_Carlossadness.jpg');
  background-position: 50% -44px;
  background-size: cover;
  background-repeat: repeat;
}

.tittle-section-header.section-artist.artist-band-of-horses {
  background-image: url('../images/Foto_Boh.jpg');
  background-position: 50% -4%;
  background-size: cover;
  background-repeat: repeat;
}

.tittle-section-header.section-artist.artist-liam {
  background-image: url('../images/image001.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: repeat-x;
}

.tittle-section-header.section-artist.artist-charli {
  background-image: url('../images/Foto_Charlixcx.jpg');
  background-position: 50% -37px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-yall {
  background-image: url('../images/yall_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-miss-caffeina {
  background-image: url('../images/caffeina_1.jpg');
  background-position: 48% 18px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-maga {
  background-image: url('../images/maga_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-exquirla {
  background-image: url('../images/exquirla_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-varry-brava {
  background-image: url('../images/varry_1.jpg');
  background-position: 50% 13px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-elyella {
  background-image: url('../images/elyella_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-holy {
  background-image: url('../images/holy_1.jpg');
  background-position: 50% 0px;
  background-size: cover;
}

.tittle-section-header.section-artist.artist-ivan {
  background-image: url('../images/ivan_ferreiro.jpg');
  background-position: 50% -70px;
  background-size: cover;
}

.section {
  padding: 3%;
  /*background-image: url('../images/Img_edif_der_bg.jpg'), url('../images/Img_edif_izq_bg.jpg');
  background-position: 100% 100%, 0px 100%;
  background-repeat: no-repeat, no-repeat;*/
  background-color: var(--yellow);
  background-image: url(../images/bg-leaves-01.png);
  background-repeat: repeat-y;
  background-position: top;
  background-size: cover;
  padding-bottom: 10em;
}

.section.sizing-contain {
    background-size: contain;
}

.contain-section {
  padding: 3%;
  /*background-image: url('../images/Img_edif_der_bg.jpg'), url('../images/Img_edif_izq_bg.jpg');
  background-position: 100% 100%, 0px 100%;
  background-repeat: no-repeat, no-repeat;*/
  background-image: url(../images/bg-clouds.png), linear-gradient(#099cda, #99cbf1);
  background-repeat: repeat-y;
  background-position: top;
  background-size: contain;
  padding-bottom: 10em;
}

.home-section {
    padding: 3%;
    background-color: var(--yellow);
    background-image: url(../images/bg-leaves.png);
    background-repeat: repeat-y;
    background-position: center;
    background-size: contain;
}

.home-section h2 {
    text-align: center;
}

.section-bdcoder {
  paddign: 3%;
  background-image: url('../images/photocall_876876.png');  
}

.container {
  display: block;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.text-green {
  color: var(--medium-green-eco);
  font-weight: 700;
}

.container.white-container {
    background: rgb(255, 233, 120);
    border-bottom: 1px solid var(--white);
    padding: 1em;
}

.container.artist-container {
  margin-top: -100px;
}

.column {
  padding: 15px;
}

.column.col-25 {
  width: 25%;
}

.column.col-33 {
  width: 33.33%;
}

.column.col-50 {
  width: 50%;
}

.column.col-75 {
  width: 75%;
}

.column.col-100 {
  width: 100%;
}

.column.col-artist {
  width: 70%;
  background: rgb(255, 233, 120);
  border-bottom: 1px solid var(--white);
}

.column.col-video-artist {
  position: relative;
  width: 30%;
}

.column.col-100 {
  width: 100%;
}

.block {
  color: var(--dark-pink);
  width: 100%;
}

.block:hover {
  color: #ff0081;
}

.picture-block {
  /*-webkit-filter: grayscale(100%);
  filter: grayscale(100%);*/
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
}

.picture-block:hover {
  -webkit-filter: none;
  filter: none;
}

.picture-block img {
  width: 100%;
}

.picture-block-home {
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
}

.picture-block-home:hover {
  -webkit-filter: none;
  filter: none;
}

.picture-block-home img {
   width: 100%;
}

.tittle-block {
    margin-bottom: 10px;
    font-family: 'Museo-500', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    background-color: rgba(255,255,255,1);
    padding: 10px;
    box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
}

.text-block {
  padding: 40px 100px 20px 20px;
}

.artist-name {
  color: var(--dark-pink);
  font-size: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-family: 'Museo-700', sans-serif;
}

.info-block {
  display: none;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Futurabt mediumcondensed', sans-serif;
  color: var(--dark-green);
  font-size: 22px;
  line-height: 29px;
  letter-spacing: 0.5px;
}

.video-block {
  position: absolute;
  left: -90px;
  top: 0px;
  width: 400px;
  margin-top: 120px;
  border: 6px solid #efe865;
}

.video-block.video-hide {
  display: none;
}

.text-center {
  text-align: center;
}

.social-artist-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-img:hover {
  opacity: 0;
}

.date {
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  color: #33959e;
  font-weight: 600;
}

.news-ttittle {
  color: #ff0081;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
}

.back-button {
  padding-left: 50px;
  background-color: transparent;
  background-image: url('../images/Icon_back_green.svg');
  background-position: 10px 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  color: var(--dark-green);
  font-weight: 600;
}

.back-button:hover {
  background-image: url('../images/Icon_back_light_green.svg');
  background-position: 10px 50%;
  background-size: 30px;
  background-repeat: no-repeat;
  color: var(--light-green);
}

.line-up-image {
  width: 960px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  /*padding-top: 40px;*/
}

.password-heading {
  color: #004562;
}

.dropdown-list-2 {
  display: inline-block;
  background-color: #fff;
}

.dropdown-link {
  color: var(--dark-green);
  text-align: left;
  background: var(--light-yellow);
}

.dropdown-link:hover {
  color: var(--light-green);
}

.dropdown-link.w--current {
  color: var(--coral);
}

.dropdown-list.w--open {
  background-color: #fff;
  font-family: 'Museo-900', sans-serif;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
}

.icon-toggle {
  margin-right: 0px;
}

.img-line-up {
    display: block;
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
}

.wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.liam-gallagher {
  background-image: url('../images/image001.jpg');
  background-position: 50% 22%;
  background-size: cover;
  background-repeat: no-repeat;
}

.slider-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  /*padding: 30px;*/
  padding-bottom: 30px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.slider-content.slider-content-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.slider-tittle {
    font-family: 'Museo-500', sans-serif;
    color: #fff;
    font-size: 50px;
    line-height: 70px;
    text-transform: uppercase;
    margin-left: 15px;
}

.slider-tittle-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider-tittle-block.slider-tittle-block-right {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.slider-tittle-block.slider-tittle-block-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.pink-bar {
  width: 200px;
  height: 10px;
  margin-right: 10px;
  margin-left: 10px;
  background-color: #ff0081;
}

.charlie-xcx {
  background-image: url('../images/Foto_Charlixcx.jpg');
  background-position: 50% -8px;
  background-size: cover;
  background-repeat: no-repeat;
}

.la-femme {
  background-image: url('../images/lafemme_1.jpg');
  background-position: 50% 80px;
  background-size: cover;
  background-repeat: no-repeat;
}

.artista-sorpresa {
  background-image: url('../images/Img_fondo_sorpresa.jpg');
  background-position: 50% 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.mask-2 {
  position: absolute;
}

.brands-footer-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.img-brand-footer {
  margin-right: 10px;
}

.img-brand-footer.img-radio3 {
  width: 45px;
}

.img-brand-footer.img-mondo {
  width: 55px;
  margin-right: 0px;
}

.img-brand-footer.img-elpais {
  width: 65px;
}

.img-brand-footer.img-instituciones {
  width: 185px;
}

.img-brand-footer.img-organiza {
  width: 245px;
}

.img-brand-footer.img-venta {
  width: 285px;
}

.artista-sorpresa-content {
  position: relative;
  display: block;
  height: 100%;
  padding-top: 95px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.img-interrogacion {
  display: block;
  width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.div-block {
  position: relative;
}

.img-texto-sorpresa {
  position: absolute;
  width: 700px;
}

.line-up-image-ver {
  display: none;
}

.pop-up-subscribe {
  position: relative;
  z-index: 9999;
  display: block;
  width: 400px;
  height: auto;
  padding: 20px;
  border: 6px solid #fff;
  background-color: #ff0081;
  -webkit-perspective: 1px;
  perspective: 1px;
}

.pop-up-text {
  margin-bottom: 15px;
  font-family: 'Futurabt mediumcondensed', sans-serif;
  color: #fff;
  font-size: 28px;
  line-height: 29px;
  text-align: left;
  letter-spacing: 0.5px;
}

.pop-up-text.text-conditions {
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  line-height: 10px;
  letter-spacing: 0.5px;
}

.field-label {
  color: #fff;
  font-size: 17px;
  text-align: left;
}

.text-field {
  border: 2px solid #fab041;
}

.text-field:focus {
  border-color: #33959e;
  color: #004562;
}

.form {
  text-align: left;
}

.link-newsletter {
  color: #fff;
  text-decoration: underline;
}

.form-wrapper {
  margin-bottom: 0px;
}

.close-newsletter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 35px;
  height: 35px;
  padding: 10px;
  float: right;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-close {
  font-family: 'Futurabt book', sans-serif;
  color: #fff;
  font-size: 33px;
  line-height: 33px;
}

.pop-up-bg {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  display: none;
  margin-right: auto;
  margin-left: auto;
  padding-top: 180px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: rgba(1, 23, 32, .85);
}

.checkbox {
  background-color: #fff;
}

.heading {
  color: #004d6d;
}

.video-block-inside{
  display:none;
}

html.w-mod-js *[data-ix="preloader"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}

html.w-mod-js *[data-ix="edif-left"] {
  opacity: 0;
  -webkit-transform: translate(-150px, 0px);
  -ms-transform: translate(-150px, 0px);
  transform: translate(-150px, 0px);
}

html.w-mod-js *[data-ix="edif-right"] {
  opacity: 0;
  -webkit-transform: translate(150px, 0px);
  -ms-transform: translate(150px, 0px);
  transform: translate(150px, 0px);
}

html.w-mod-js *[data-ix="fade-in-left"] {
  opacity: 0;
  -webkit-transform: translate(-41px, 0px);
  -ms-transform: translate(-41px, 0px);
  transform: translate(-41px, 0px);
}

html.w-mod-js *[data-ix="fade-in-right"] {
  opacity: 0;
  -webkit-transform: translate(41px, 0px);
  -ms-transform: translate(41px, 0px);
  transform: translate(41px, 0px);
}

html.w-mod-js *[data-ix="fadedown-logo"] {
  opacity: 0;
  -webkit-transform: translate(0px, -33px);
  -ms-transform: translate(0px, -33px);
  transform: translate(0px, -33px);
}

html.w-mod-js *[data-ix="fade-up"] {
  opacity: 0;
  -webkit-transform: translate(0px, 30px);
  -ms-transform: translate(0px, 30px);
  transform: translate(0px, 30px);
}

html.w-mod-js *[data-ix="bands"] {
  opacity: 0;
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

html.w-mod-js *[data-ix="square-front-menu"] {
  opacity: 1;
}

html.w-mod-js *[data-ix="xline"] {
  opacity: 0;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
  -ms-transform: rotate(45deg) translate(0px, 50%);
  transform: rotate(45deg) translate(0px, 50%);
}

html.w-mod-js *[data-ix="xline-2"] {
  opacity: 0;
  -webkit-transform: rotate(-45deg) translate(0px, 50%);
  -ms-transform: rotate(-45deg) translate(0px, 50%);
  transform: rotate(-45deg) translate(0px, 50%);
}

html.w-mod-js *[data-ix="-popup-newsletter-"] {
  opacity: 0;
  -webkit-transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
}

html.w-mod-js *[data-ix="popup-initial-apparance"] {
  opacity: 0;
  -webkit-transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
  transform: rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
}

html.w-mod-js *[data-ix="bg-initial-apparance"] {
  display: none;
  opacity: 0;
}

.guion li{list-style-type: none;color:#004d6d;}
.guion li:before{content: "- "}

.sesion{
      background-color: rgba(255,255,255,.8);
      padding:20px;
}

ul li{
  color: var(--dark-green);
  margin-bottom: 10px;
}

.sp-block{
  display:inline-block;
  width:47%;
  margin:1em;
  padding: 1em;
      background: rgb(255, 233, 120);
    border-bottom: 1px solid var(--white);
}

.colorista{
  width:80px !important;
}
.sp-img{
  display:initial;
  width:39%;
  text-align:center;
  margin-right: 20px;
}
.sp-img img{
  vertical-align: top;
  max-width: 110px;
  margin-bottom: 1em;
  margin-top: 7px;
}


.texto-sp{
  display:inline-block;
  width:59%;
  font-size: 15px;
  text-align: justify;
}

.franz{
    background-image: url(../images/franz.jpg);
    background-position: 50% 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.title-franz{
  color:#ff0081;
}

.line-footer{
  height:80px;
  vertical-align: middle;
  display:grid;
}

.img-brand-footer.img-patrocinadores{
  /*width:230px;*/
  height: 80px;
}

.img-por{
  /*width:700px;*/
  text-align: center;
}

.texto-imagen{
  width:60%;
  display:-webkit-box;
}

.texto-desc{
  position:relative;
  left:160px;
  width:690px;
}

.texto-desc-square{
  position: relative;
  left: 80px;
  width: 780px;
}

.texto-desc p, .texto-desc-square p{
  text-align: justify;
}

.text-justify {
  text-align: justify;
}

.img-desc{
  /*width:50%;*/
  position:absolute;
  width:300px;
  margin-right: 50px;
  left:-150px;
}

.img-desc-square{
  /*width:50%;*/
  position: absolute;
  width: 150px;
  top: 10px;
  left: -75px;
  background: var(--light-yellow);
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0,0,0,.5);
}

.img-desc img, .img-desc-square img{
  /*border:6px solid #ff0081*/
}

.apart{
  position:relative;
  background-color: hsla(58, 71%, 92%, .98);
  padding: 20px;
}

.apart-white {
  /*background-color: #FFF !important;*/
  position:relative;
    padding: 20px;  
}

.artist-name.text-pc{
    display:block;
  }

.artist-name.text-resp{
  display:none;
}

.font-titulo{
  font-size: 45px;
  line-height: 1;
}
.col-33-prensa{
  width:33.3%;
  float:left;
}

.col-100-prensa{
  width: 100%;
  float: left;
}

.col-100-prensa p{
  font-size: 12px;
  font-style: oblique;
}

.numero-grande{
  color: var(--dark-pink);
  font-size: 30px;
}

.letra-grande{
  color: var(--coral);
  font-size:30px;
}

.pink-bar-small{
  width: 120px;
  height: 10px;
  margin-right: 10px;
  margin-left: 10px;
  background-color: var(--dark-pink);
}
.artista-box{
    background-color: rgba(1, 57, 58,0.6);
    margin-bottom: -2.1em;
    padding-right: 1em;
}

.justify-content {
    justify-content: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1em; }
.mt-2 { margin-top: 2em; }
.mt-3 { margin-top: 3em; }
.mt-4 { margin-top: 4em; }
.mt-5 { margin-top: 5em; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1em; }
.mb-2 { margin-bottom: 2em; }
.mb-3 { margin-bottom: 3em; }
.mb-4 { margin-bottom: 4em; }
.mb-5 { margin-bottom: 5em; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 1em; }
.pt-2 { padding-top: 2em; }
.pt-3 { padding-top: 3em; }
.pt-4 { padding-top: 4em; }
.pt-5 { padding-top: 5em; }
.pt-6 { padding-top: 6em; }
.pt-7 { padding-top: 7em; }
.pt-8 { padding-top: 8em; }
.pt-9 { padding-top: 9em; }
.pt-10 { padding-top: 10em; }

.col-50{
  width:46%;
  float:left;
  margin-right: 34px;
}

.title-p{
  font-size: 20px;
  text-align: center;
  line-height: initial;
}

.popup{
  display: none;
  position: fixed;
  z-index: 9999;
  width:70%;
  height:70%;
  top:17%;
  left:15%;
  border: 6px solid #e9de5b;
}

.popup-background {
    display:none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #34495E;
    opacity: 0.3;
    top: 0;
    left: 0;
}

.popup
.popup-close{
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  position: absolute;
  top: -15px;
  right: -45px;
  color:#fff;
}

.popup-video{
  width:100%;
  height:100%;
}

.fa-1{
  font-size: 2em !important;
}

.overlay-content {
  position: relative;
  overflow: visible;
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.col-33-anteriores{
  display:inline-block;
  width:32.33%;
}

.col-33 img {
    /*border: 5px solid #fff;*/
}

.col-33-anteriores img {
    /*border: 5px solid #fff;*/
    -webkit-box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
}

.col-25-galeria{
  display: inline-block;
  width: 24.33%;
}

.col-25-galeria img{
  /*border: 5px solid #fff;*/
  -webkit-box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 14px -8px rgba(0,0,0,0.75);
}
  
@media (min-width: 1115px){
  .nav-menu{
    display:flex;
  }
}

@media (max-width:1114px){
  .menu-button{
    display:block;
    margin-top: 61px;
    padding: 5px;
    direction: rtl;
  }
  .nav-menu {
    z-index: 9999;
    margin-top: 0px;
    background-color: #33959e;
    text-align: center;
  }
  .nav-link{
    text-align:center;
  }
  .w-dropdown{
    text-align: center;
  }
}

@media (max-width: 991px) {
  .menu-button {
    width: 65px;
    height: 65px;
    margin-top: 61px;
    padding: 5px;
    direction: rtl;
    display:block;
  }
  .menu-button.w--open {
    background-color: transparent;
  }
  .square-front {
    position: absolute;
    left: 0px;
    top: 7px;
    right: 0px;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: auto;
    margin-left: auto;
    padding: 0px;
  }
  .square-parent {
    position: absolute;
    top: 0px;
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .leftx {
    position: absolute;
    left: 8px;
    top: 14px;
    width: 25px;
    height: 3px;
    background-color: #fff;
  }
  .leftx._2 {
    top: 24px;
  }
  .leftx._3 {
    top: 34px;
  }
  .rightx {
    position: absolute;
    top: 14px;
    right: 8px;
    width: 25px;
    height: 3px;
    background-color: #fff;
  }
  .rightx._2 {
    top: 24px;
  }
  .rightx._3 {
    top: 34px;
  }
  .square-floor {
    position: absolute;
    left: 8px;
    top: 7px;
    right: 0px;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: auto;
    margin-left: auto;
  }
  .xline {
    position: absolute;
    left: 0px;
    top: 50%;
    right: 0px;
    display: block;
    width: 45px;
    height: 3px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--dark-green);
  }
  .menu-container {
    position: relative;
  }
  .nav-link {
    text-align: center;
    margin-right: 0;
  }
  .nav-menu {
    z-index: 9999;
    margin-top: 0px;
    background-color: #85c5ef;
    text-align: center;
  }
  .w-dropdown-toggle{
    display: block;
  }
  .w-dropdown-list {
    position: static;
  }
  .img-por{
    width:100%;
  }

  .artist-name.text-pc{
    display:none;
  }

  .artist-name.text-resp{
    display:block;
  }

  .img-desc, .img-desc-square{
    position:inherit;
    display:block;
  }

  .texto-desc, .texto-desc-square{
    position:initial;
    width:100%;
    margin-top: 30px;
  }

  .texto-imagen{
    display:block;
    width:100%;
  }

  .col-50{
    width:44%;
    display:inline-block;
    float:none;
  }
  .w-lightbox-close{
    right:0;
  }
}

@media (max-width: 767px) {

  .hero-container {
    padding-top: 17%;
    padding-right: 10%;
    padding-left: 10%;
  }
  .brand {
    width: 230px;
    padding-left: 0px;
  }
  .footer {
    height: auto;
  }
  .edif_left {
    bottom: 7%;
  }
  .edif_right {
    bottom: 9%;
  }
  .brands-block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .brands-block.brand-block-hide {
    display: none;
  }
  .brands-block.brands-50 {
    width: 50%;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .brands-wrapper {
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .line {
    display: none;
  }
  .sponsors-block {
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
  }
  .edriaax {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .legal-column {
    padding-bottom: 14px;
  }
  .navbar {
    /*height: 190px;*/
  }
  .slider-hero {
    height: 500px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }
  .interpol {
    background-position: 50% 50%;
    background-size: cover;
  }
  .nav-link {
    text-align: center;
  margin-right: 0;
  }
  .nav-menu {
    z-index: 9999;
    margin-top: 0px;
    background-color: var(--light-yellow);
    text-align: center;
  }
  .hero {
    height: auto;
  }
  .band-of-horses {
    background-position: 50% 50%;
  }
  .the-kooks {
    background-position: 50% 50%;
  }
  .slide-content.slide-content-lineup {
    padding-top: 79px;
  }
  .menu-button {
    width: 65px;
    height: 65px;
    margin-top: 61px;
    padding: 5px;
    direction: rtl;
  }

  .slider-hero-banner {
      height: 60px;
  }

  .menu-button.w--open {
    background-color: transparent;
  }
  .square-front {
    position: absolute;
    left: 0px;
    top: 7px;
    right: 0px;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: auto;
    margin-left: auto;
    padding: 0px;
  }
  .square-parent {
    position: absolute;
    top: 0px;
    right: 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .leftx {
    position: absolute;
    left: 8px;
    top: 14px;
    width: 25px;
    height: 3px;
    background-color: var(--dark-green);
  }
  .leftx._2 {
    top: 24px;
  }
  .leftx._3 {
    top: 34px;
  }
  .rightx {
    position: absolute;
    top: 14px;
    right: 8px;
    width: 25px;
    height: 3px;
    background-color: var(--dark-green);
  }
  .rightx._2 {
    top: 24px;
  }
  .rightx._3 {
    top: 34px;
  }
  .square-floor {
    position: absolute;
    left: 8px;
    top: 7px;
    right: 0px;
    display: block;
    width: 50px;
    height: 50px;
    margin-right: auto;
    margin-left: auto;
  }
  .xline {
    position: absolute;
    left: 0px;
    top: 50%;
    right: 0px;
    display: block;
    width: 45px;
    height: 3px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--dark-green);
  }
  .menu-container {
    position: relative;
  }
  .tittle-section-block {
    width: 340px;
    height: 110px;
    background-size: cover;
    margin-left: 150px;
  }
  .tittle-header {
    font-size: 30px;
    line-height: 40px;
  }
  .tittle-section-header.section-artist {
    height: 550px;
  }
  .tittle-section-header.section-artist.artist-band-of-horses {
    background-position: 50% 35px;
    background-size: cover;
  }
  .container {
    display: block;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: left;
  }
  .container.artist-container {
    margin-top: -20px;
  }

  .column.col-25 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    width: 100%;
  }

  .column.col-33 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    width: 100%;
  }

  .column.col-50 {
      -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
    width: 100%;
    margin-right: 0;
}

  .text-block {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
  }
  .artist-name {
    font-size: 50px;
    letter-spacing: 0.2px;
  }
  .info-block {
    margin-top: 10px;
  }
  .news-ttittle {
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0.1px;
  }
  .line-up-image {
    display: none;
    width: 320px;
    margin-top: 137px;
  }
  .text-block-2 {
    display: inline-block;
  }
  .slider-tittle {
    font-size: 50px;
    line-height: 60px;
  }
  .pink-bar {
    width: 80px;
  }
  .charlie-xcx {
    background-position: 50% 50%;
  }
  .artista-sorpresa {
    background-size: cover;
  }
  .img-brand-footer.img-mondo.img-hide {
    display: none;
  }
  .column-footer {
    display: none;
  }
  .artista-sorpresa-content {
    padding-top: 135px;
  }
  .img-interrogacion {
    width: 400px;
  }
  .line-up-image-ver {
    display: block;
    /*width: 280px;*/
    margin-right: auto;
    margin-left: auto;
  }
  .pop-up-bg {
    padding-top: 100px;
  }

  .img-line-up{
    width:500px;
  }
  .pink-bar-small{
    width:80px;
  }
  .popup{
    width:70%;
    height:70%;
    top:20%;
    left:15%;
  }

  .lineup-slider-message {
      padding: 0px !important;
  }

  .lineup-slider-message h1 {
      font-size: 2.3rem !important;
      margin: 5px 0 !important;
  }
}

@media (max-width: 767px){
  

  .video-block {
    display: none;
  }
  .video-block-inside{
    display:block;
    border: 6px solid #ff0081;
  }

  .col-50{
    width:42%;
    display:inline-block;
    float:none;
  }
}

@media (max-width: 479px) {
  .newsletter-block {
    top: 1em;
    left: .7em;
}

  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 12px;
    line-height: 16px;
  }
  .hero-landing {
    height: auto;
  }
  .hero-overlay-landing {
    height: auto;
    background-position: 50% 0px;
    background-size: 550px;
  }
  .hero-container {
    padding-top: 22%;
    padding-right: 12%;
    padding-left: 12%;
  }
  .brand {
    width: 180px;
    margin-top: 49px;
  }
  .bands-block {
    margin-top: 20px;
  }
  .tickets-text {
    font-size: 24px;
    line-height: 24px;
    text-align: center;
  }
  .tickets-text.orange-text {
    margin-top: 25px;
    font-size: 18px;
  }
  .button {
    padding: 10px 15px;
    font-size: 14px;
  }
  .content-wrapper-landing {
    height: auto;
  }
  .footer {
    left: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .legal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .edif_left {
    left: 0px;
    bottom: 15%;
    height: 15%;
  }
  .edif_right {
    right: 0px;
    bottom: 15%;
    height: 15%;
  }
  .grass {
    position: relative;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 700px;
    background-position: 50% 100%;
    background-size: 500px;
  }
  .rugby {
    left: 8%;
    bottom: 5%;
    width: 15%;
    height: 10%;
  }
  .caballito {
    right: 5%;
    bottom: 5%;
    width: 24%;
  }
  .dot {
    display: none;
  }
  .brands-block {
    margin-bottom: 25px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .brands-block.brands-50 {
    width: 70%;
  }
  .brands-block.brands-50.brands-30 {
    /*width: 60%;*/
    width: 100%;
  }
  .brands-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .footer-credits {
    padding-bottom: 5px;
  }
  .line {
    display: none;
  }
  .social-block {
    padding-top: 20px;
  }
  .header {
    padding-bottom: 42px;
  }
  .content {
    padding-right: 5%;
    padding-bottom: 106px;
    padding-left: 5%;
  }
  .brand-section {
    width: 200px;
    margin-top: 23px;
  }
  .edriaax {
    position: static;
    right: 13px;
    bottom: -32px;
    margin-top: 15px;
    margin-bottom: 7px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .legal-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .navbar {
    padding-right: 10px;
  }
  .slider-hero {
    height: 260px;
    /*margin-top: 145px;*/
  }
  .interpol {
    background-position: 50% 0px;
    background-size: cover;
  }
  .band-of-horses {
    background-position: 50% 0px;
    background-size: cover;
  }
  .the-kooks {
    background-position: 50% 6px;
  }
  .slide-content.slide-content-lineup {
    padding-top: 38px;
  }
  .tittle-section {
    /*margin-top: 130px;*/
  }
  .tittle-section-block {
    z-index: 9000;
    height: auto;
    padding-right: 10px;
    padding-left: 10px;
    margin-left: 10px;
  }
  .tittle-header {
    font-size: 21px;
    line-height: 31px;
    letter-spacing: 0px;
  }
  .tittle-section-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .tittle-section-header.section-artist {
    height: 300px;
    padding-top: 23px;
  }
  .tittle-section-header.section-artist.artist-kooks {
    background-position: 50% 18px;
  }
  .tittle-section-header.section-artist.artist-carlos-sadness {
    background-position: 50% 17px;
  }
  .tittle-section-header.section-artist.artist-band-of-horses {
    background-position: 50% 17px;
    background-size: cover;
  }
  .section {
    padding-right: 0%;
    padding-left: 0%;
  }
  .section.section-test {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .container.artist-container {
    margin-top: -40px;
  }

  .column.col-artist {
    width: 100%;
  }

  .section-decoration {
      height: 40px;
      background-position: bottom;
      background-size: contain;
  }

  .dropdown-link {
    color: var(--light-green);
    text-align: center;
    background: #fff4bc;
  }

  .tittle-block {
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.1px;
  }
  .text-block {
    padding: 0px;
  }
  .artist-name {
    font-size: 40px;
    line-height: 60px;
  }
  .info-block {
    margin-bottom: 20px;
  }
  .line-up-image {
    width: 230px;
    margin-top: 14px;
  }
  .icon-slider {
    margin-left: 5px;
  }
  .icon-slider.icon-slider-right {
    margin-right: 5px;
    margin-left: 35px;
  }
  .liam-gallagher {
    background-position: 50% 50%;
  }
  .slider-content {
    padding: 30px 0px 40px;
  }
  .slider-tittle {
    font-size: 30px;
    line-height: 30px;
  }
  .pink-bar {
    width: 50px;
    height: 3px;
  }
  .charlie-xcx {
    background-position: 50% 50%;
    background-size: cover;
  }
  .la-femme {
    background-position: 50% 0px;
  }
  .artista-sorpresa {
    background-position: 50% 0px;
    background-size: 410px 310px;
  }
  .artista-sorpresa-content {
    padding-top: 63px;
  }
  .img-interrogacion {
    width: 240px;
  }
  .line-up-image-ver {
    /*width: 160px;*/
    width: 240px;
    margin-top: 0px;
  }
  .slide-nav {
    padding-top: 20px;
    font-size: 9px;
  }

  .sp-block{
    display:block;
    width:100%;
    vertical-align: top;
    margin:1em;
  }
  .sp-img{
    display:block;
    width:100%;

  }
  .texto-sp{
    display:block;
    width:100%;
    font-size: 15px;
  }

  .line-footer{
    height:45px;
  }

  .img-por{
    width:100%;
  }

  .artist-name.text-pc{
    display:none;
  }

  .artist-name.text-resp{
    display:block;
  }

  .img-desc{
    position:inherit;
    width:100%;
  }

  .texto-desc{
    position:initial;
    width:100%;
    margin-top: 30px;
  }

  .texto-imagen{
    display:block;
    width:100%;
  }

  .font-titulo{
    line-height: 1;
  }
  .col-33-prensa{
    width:100%;
  }
  .img-line-up{
        width: 100%;
  }
  .pink-bar-small{
    width: 50px;
    height: 3px;
  }
  
  .col-50{
    width:100%;
    margin-bottom: 10px;
  }
  .col-33-anteriores{
    width:50%;
  }
  .col-25-galeria{
    width:32%;
  }
  .w-lightbox-backdrop{
    z-index:10000;
  }
  .popup{
    width:80%;
    height:30%;
    top:31%;
    left:10%;
  }
  .popup
  .popup-close{
    right:-13%;
  }
  .w-lightbox-close{
    right: 25em;
  }

  .lineup-slider-message {
      padding: 0px !important;
  }

  .lineup-slider-message-thanks {
      bottom: 50px !important;
  }

  .lineup-slider-message h1 {
      font-size: 1.5rem !important;
      margin: 0px 0 !important;
  }
}

@media (min-height: 768px){
  .line-up-image{
    /*padding-top: 110px;*/
  }
}

@font-face {
  font-family: 'Din alternate';
  src: url('../fonts/DIN_Alternate.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt boldcondensed';
  src: url('../fonts/FuturaBT-BoldCondensed.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Din1451engschrift';
  src: url('../fonts/din1451engschrift.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt bold';
  src: url('../fonts/FuturaBT-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt light';
  src: url('../fonts/FuturaBT-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt lightcondensed';
  src: url('../fonts/FuturaBT-LightCondensed.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt book';
  src: url('../fonts/FuturaBT-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt medium';
  src: url('../fonts/FuturaBT-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Futurabt mediumcondensed';
  src: url('../fonts/FuturaBT-MediumCondensed.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

.close-newsletter {
  font-family: 'Futurabt book', sans-serif;
  color: #fff;
  font-size: 33px;
  right: 0;
  top: 0;
  position: absolute;
}

/* ================================================================
FORM ACCPRESS */

.panel-form {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 25px;
    border-radius: 2px;
    max-width: 100%;
    color: #024d6d;
}

.panel-form.wide {
  max-width: 1000px;
}

.input-label {
    display: inline-block;
    padding-bottom: 4px;
}

.mini-label {
  font-size: 13px;
}

input:not([type=submit]):not([type=file]), textarea, select {
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.075);
}

.input {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 35px;
  margin: 0;
  font-size: 15px;
  border: none;
    background: #f8f8f8;
    padding: 10px;
}

select {
  height: 40px !important;
}

input, textarea, select, .uneditable-input {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    color: #777;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 9px;
    padding: 5px;
    width: 100%;
    height: 26px;
}

.input.input-error {
  border-color: red;
}

input[type="checkbox"] {
    margin-right: 12px;
    position: relative;
    top: 8px;
    height: auto;
}

input[type="checkbox"],
input[type="file"],
input[type="radio"] {
  width: auto;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  border: none;
  top: 0;
}
textarea.input {
  height: 100px;
}

input[type="file"] {
  background: transparent;
}

.input-group label {
    display: inline-block;
}

.form-button {
    color: #024d6d;
    padding: 5px;
    border: 1px solid #024d6d;
    background: none;
}
.form-button:hover {
  background: none;
}
.form-button:disabled {
    border-color: #80bfda !important;
    color: #80bfda;
    background: none !important;
}

.acompanante-block {
    background: rgba(255,255,255,.3);
    display: none;
}

.text-center {
  text-align: center;
}

.sweet-alert button.swal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
    background: none;
    color: #444;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
}

.form-title {
  margin: 25px 0;
}
.form-title-wrapper {
  position: relative;
  background: #f7c818;
  display: inline-block;
  padding: 3px;
}
.form-title-wrapper:after{
  display: block;
  content: ' ';
  position: absolute;
  top: 100%;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 9px 0 9px;
  border-color: #f7c718 transparent transparent transparent;
}
.form-title h2 {
  font-family: 'NettO';
  color: #000;
  border: 2px dotted #555;
  margin: 0;
  line-height: 1;
  padding: 3px;
  font-weight: 700;
  font-size: 22px;
}

.condicion-red {
  font-size: 13px;
  color: #FA5A48;
}

.mini-sep {
    height: 15px;
}

.col-1 {
  padding-bottom: 15px;
}
.col-2 {
  padding-bottom: 15px;
}
.col-3 {
  padding-bottom: 15px;
}

@media (min-width: 680px) {
  .row {
    margin: 0 -10px;
  }
  .row:after {
    /** CLEARFIX **/
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }

  .col-1 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 100%;
    padding: 0 10px 15px 10px;
  }
  .col-2 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 50%;
    padding: 0 10px 15px 10px;
  }
  .col-3 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    width: 33.33333%;
    padding: 0 10px 15px 10px;
  }
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.banner-section {
    padding: 5em 0 0 0;
    background: var(--yellow);
}

.lineup-slider-message {
    background: rgba(223, 47, 120, 0.85);
    box-shadow: 0px 2px #004A6C;
    padding: 10px;
    margin-bottom: 10px;
}

.lineup-slider-message-thanks {
    position: absolute;
    width: 100%;
    bottom: 80px;
}

.lineup-slider-message h1 {
    font-family: 'BebasNeue-Regular';
    color: #fff;
    font-size: 4rem;
    text-shadow: 2px 2px #004A6C;
    margin: 5px 0;
    line-height: 58px;
    font-weight: 100;
}

