/**
* Branding $COLORS*/
/*------------------------*\
|      $MIXINS
/*------------------------*/
/**
* Branding $COLORS*/
/*------------------------*\
|      $MIXINS
/*------------------------*/
/**
* Branding $COLORS*/
/*------------------------*\
|      $MIXINS
/*------------------------*/
html {
  font-size: 24px;
}

body {
  color: #fff;
  background: #fff;
  font-weight: normal;
  width: 100%;
  max-width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

body, .smooth-container {
  scroll-behavior: smooth;
}

p {
  font-size: 24px;
  line-height: 1.4;
  font-weight: normal;
  margin-top: 0;
}

p b {
  font-weight: bold;
}

p a {
  text-decoration: underline;
}

figure {
  margin: 0;
}

.clear {
  clear: both;
}

.wow {
  visibility: hidden;
}

.fadein {
  opacity: 0;
}

.hidden_a {
  opacity: 0;
}

.visible {
  opacity: 1;
}

.wrapper {
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

.wrapper.wrapper-home {
  padding-top: 148px;
}

.wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 2.5rem;
}

@media only screen and (max-width: 991px) {
  .wrap {
    padding: 0 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .wrap {
    padding: 0 15px;
  }
}

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.row.row-small {
  margin-right: -.3em;
  margin-left: -.3em;
}

.row.row-small > [class^="col-"],
.row.row-small > [class*=" col-"] {
  padding-right: .3em;
  padding-left: .3em;
}

.row.row-big {
  margin-right: -2.2rem;
  margin-left: -2.2rem;
}

.row.row-big > [class^="col-"],
.row.row-big > [class*=" col-"] {
  padding-right: 2.2rem;
  padding-left: 2.2rem;
}

@media only screen and (max-width: 550px) {
  .row.row-big {
    margin-right: -15px;
    margin-left: -15px;
  }
  .row.row-big > [class^="col-"],
  .row.row-big > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
  }
}

* {
  outline: none;
}

a, button {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

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

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

@media (max-width: 1500px) {
  html, body, p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .animated,
  .animated-delay1,
  .animated-delay2,
  .animated-delay3,
  .animated-delay4,
  .wow {
    /*CSS transitions*/
    -webkit-transition-property: none !important;
    transition-property: none !important;
    /*CSS transforms*/
    -webkit-transform: none !important;
    transform: none !important;
    /*CSS animations*/
    -webkit-animation: none !important;
    animation: none !important;
    visibility: visible !important;
  }
}

@font-face {
  font-family: 'Helvetica Neue';
  src: url("fonts/HelveticaNeue.woff2") format("woff2"), url("fonts/HelveticaNeue.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Trajan Pro';
  src: url("fonts/TrajanPro-Bold.woff2") format("woff2"), url("fonts/TrajanPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Trajan Pro';
  src: url("fonts/TrajanPro-Regular.woff2") format("woff2"), url("fonts/TrajanPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

header .logo {
  display: block;
  width: 18rem;
  margin-top: 2rem;
}

header .logo h1 {
  margin: 0;
}

header .logo img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  header .logo {
    width: 250px;
    margin-top: .5rem;
    max-width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  header .logo {
    width: 200px;
    margin-top: .5rem;
    max-width: 100%;
  }
}

header .btn-menu {
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: .7rem;
  right: 1rem;
  z-index: 2;
  font-size: 2rem;
  display: none;
}

@media only screen and (max-width: 768px) {
  header .btn-menu {
    display: block;
  }
}

header nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header nav ul li {
  border-right: 1px solid #fff;
}

header nav ul li:last-child {
  border: none;
}

header nav ul li a {
  font-size: .65rem;
  color: #fff;
  display: block;
  padding: .5rem 1rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  header nav {
    display: none;
  }
}

header.h-interior {
  position: relative;
}

@media only screen and (max-width: 550px) {
  header.h-interior {
    padding: 1rem;
  }
}

header.h-interior .logo {
  width: 15rem;
  margin-top: .5rem;
}

header.h-interior .logo img {
  margin-bottom: 1rem;
}

header.h-interior .logo p {
  font-size: .83rem;
  color: #fff;
  font-weight: normal;
  line-height: 1.2;
}

header.h-interior .logo p.big {
  font-size: 1rem;
}

header.h-interior .logo p#texto-musica {
  display: none;
}

@media only screen and (max-width: 768px) {
  header.h-interior .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
  }
  header.h-interior .logo img {
    width: 195px;
    margin-right: 1rem;
  }
  header.h-interior .logo p {
    width: 178px;
  }
}

@media only screen and (max-width: 550px) {
  header.h-interior .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    width: 100%;
    margin-top: 0;
  }
  header.h-interior .logo img {
    width: 50%;
    min-width: 50%;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  header.h-interior .logo p {
    width: 50%;
    min-width: 50%;
    font-size: 13px;
    padding-right: 10px;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 380px) {
  header.h-interior .logo {
    margin-top: .5rem;
  }
  header.h-interior .logo p {
    font-size: 10px;
  }
}

.menu-mobile {
  display: none;
}

@media only screen and (max-width: 768px) {
  .menu-mobile {
    display: block;
    position: absolute;
    top: .5rem;
    left: .5rem;
    width: calc(100% - 1rem);
    background: #fff;
    padding: 2rem 1rem 1rem;
    display: block;
    z-index: 999;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
  .menu-mobile.visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu-mobile .cerrar-menu {
    position: absolute;
    top: .2rem;
    right: .5rem;
    color: #B2B2B2;
    cursor: pointer;
    font-size: 1.5rem;
  }
  .menu-mobile .logo {
    margin-bottom: 1rem;
    text-align: center !important;
    display: block !important;
  }
  .menu-mobile .w-menu {
    padding: 0 2rem 4rem;
  }
  .menu-mobile .w-menu a {
    font-size: 15px;
    font-weight: bold;
    color: #868686;
    display: block;
    border-bottom: 1px solid #707070;
    padding: 1.5rem 1rem;
  }
}

@media only screen and (max-width: 768px) and (max-width: 480px) {
  .menu-mobile .w-menu {
    padding: 0 1rem 3rem;
  }
}

.bg-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-home {
  position: relative;
  min-height: 100vh;
}

.c-home.c-ingresar {
  z-index: 999;
}

@media only screen and (max-width: 768px) {
  .c-home.c-ingresar {
    z-index: 1;
  }
}

.c-home .texto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
  padding-top: 12rem;
  padding-right: 6rem;
  padding-bottom: 2rem;
  min-height: calc(100vh - 9.5rem);
}

@media only screen and (max-width: 768px) {
  .c-home .texto {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12rem 15px 10rem;
  }
}

@media only screen and (max-width: 550px) {
  .c-home .texto {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12rem 15px 12rem;
  }
}

.c-home .texto .w-texto {
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-home .texto .w-texto p {
  font-size: .95rem;
  color: #fff;
  margin: 0 0 .8rem;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.1;
}

@media only screen and (max-width: 550px) {
  .c-home .texto .w-texto p {
    font-size: 15px;
  }
}

.c-home .texto .w-texto h3 {
  margin: 0 auto 1rem;
  font-size: 1.33rem;
  font-weight: 900;
  color: #fff;
  display: inline-block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: .2rem 1rem .2rem;
}

@media only screen and (max-width: 550px) {
  .c-home .texto .w-texto h3 {
    font-size: 21px;
  }
}

.c-home .texto .w-texto h4 {
  font-size: 1.083rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 1.5rem;
  text-transform: uppercase;
}

@media only screen and (max-width: 550px) {
  .c-home .texto .w-texto h4 {
    font-size: 15px;
  }
}

.c-home .texto .w-texto a {
  font-size: 1.083rem;
  color: #fff;
  font-weight: 900;
  background: #C2092F;
  padding: .2rem 1rem .3rem;
  display: inline-block;
  width: 10.4rem;
}

.c-home .texto .w-texto a:hover {
  background: #000;
  color: #C2092F;
}

@media only screen and (max-width: 550px) {
  .c-home .texto .w-texto a {
    font-size: 26px;
    padding: .4rem 3rem .5rem;
    width: auto;
  }
}

.c-home .texto .w-texto.ingresar-datos {
  text-align: center;
  width: 16.5rem;
  max-width: 100%;
  margin-top: -4.5rem;
  padding-bottom: 3rem;
}

@media only screen and (max-width: 768px) {
  .c-home .texto .w-texto.ingresar-datos {
    margin-top: 0;
    padding-bottom: 2rem;
  }
}

.c-home .texto .w-texto.ingresar-datos h3 {
  font-size: 1.4rem;
  margin: 0 0 0.2rem;
  font-weight: 900;
  color: #fff;
  border: none;
  padding: 0;
}

.c-home .texto .w-texto.ingresar-datos .estrella {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: .5rem;
}

.c-home .texto .w-texto.ingresar-datos .estrella img {
  width: 1.7rem;
  height: auto;
  margin: 0 .5rem;
}

.c-home .texto .w-texto.ingresar-datos .estrella:before {
  content: "";
  width: 4rem;
  height: 1px;
  background: #fff;
  display: inline-block;
}

.c-home .texto .w-texto.ingresar-datos .estrella:after {
  content: "";
  width: 4rem;
  height: 1px;
  background: #fff;
  display: inline-block;
}

.c-home .texto .w-texto.ingresar-datos input[type="email"],
.c-home .texto .w-texto.ingresar-datos input[type="text"] {
  height: 2.9rem;
  width: 100%;
  border: 1px solid #fff;
  background: transparent;
  border-radius: .6rem;
  padding: .5rem;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.c-home .texto .w-texto.ingresar-datos .check-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.2rem;
  text-align: left;
}

.c-home .texto .w-texto.ingresar-datos .check-group input {
  width: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  margin-right: .3rem;
}

.c-home .texto .w-texto.ingresar-datos .check-group label {
  margin: 0;
  color: #fff;
  font-size: .85rem;
}

.c-home .texto .w-texto.ingresar-datos .check-group label a {
  font-size: .85rem;
  color: #fff;
  font-weight: normal;
  background: transparent;
  padding: 0;
  display: inline-block;
  width: auto;
}

.c-home .texto .w-texto.ingresar-datos input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

.c-home .texto .w-texto.ingresar-datos input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

.c-home .texto .w-texto.ingresar-datos input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

.c-home .texto .w-texto.ingresar-datos input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.c-home .texto .w-texto.ingresar-datos select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-repeat: no-repeat;
  background-image: url("../images/bg-select.png");
  background-size: auto 10px;
  background-position: calc(100% - 1rem) center;
  background-color: transparent;
  height: 2.9rem;
  width: 100%;
  border: 1px solid #fff;
  border-radius: .6rem;
  padding: .5rem;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  text-align-last: center;
}

.c-home .texto .w-texto.ingresar-datos option {
  color: #333 !important;
}

.c-home .texto .w-texto.ingresar-datos input[type="submit"] {
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  background: #C2092F;
  padding: 1rem 1rem;
  border-radius: .5rem;
  text-transform: uppercase;
  border: none;
  width: 13.3rem;
  max-width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.c-home .texto .w-texto.ingresar-datos input[type="submit"] {
  color: #C2092F;
  background: #000;
}

.c-home .texto .w-texto.ingresar-datos h4 {
  font-size: .7rem;
  font-weight: 900;
  margin: 0 0 .75rem;
}

.c-home .texto .w-texto.ingresar-datos p {
  font-size: .7rem;
  font-weight: 300;
  margin-bottom: 2rem;
}

.c-home .texto .w-texto.ingresar-datos .redes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-home .texto .w-texto.ingresar-datos .redes a {
  background: none;
  padding: 0;
  width: 3.4rem;
  margin: 0 .75rem;
}

.c-home .texto .w-texto.ingresar-datos .redes a img {
  width: 100%;
}

.c-home .banner {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
}

.c-home .banner img {
  width: 100%;
  vertical-align: bottom;
}

.b-interior {
  position: relative;
}

.b-interior .bg-interior {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
}

.b-interior .s-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: -9rem;
  z-index: 20;
}

@media only screen and (max-width: 991px) {
  .b-interior .s-header {
    margin: 0;
  }
}

.b-interior .s-header .clips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  margin-left: 0rem;
}

@media only screen and (max-width: 1200px) {
  .b-interior .s-header .clips {
    margin-left: 8rem;
  }
}

@media only screen and (max-width: 991px) {
  .b-interior .s-header .clips {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .b-interior .s-header .clips {
    margin-bottom: 1rem;
  }
}

.b-interior .s-header .clips .item {
  font-size: .875rem;
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: .2rem .5rem;
  margin: 0 1.2rem;
  position: relative;
}

.b-interior .s-header .clips .item .eliminar-clip {
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #000;
  border: 1px solid #fff;
  font-size: .7rem;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  right: -.5rem;
  bottom: -.5rem;
  cursor: pointer;
}

.b-interior .s-header .clips .item.activo {
  background: #C2092F;
}

.b-interior .s-header .clips .item.activo .eliminar-clip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.b-interior .s-header .clips .item:after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: #fff;
  display: block;
  left: 100%;
  top: 45%;
  position: absolute;
}

.b-interior .s-header .clips .item:last-child:after {
  display: none;
}

@media only screen and (max-width: 550px) {
  .b-interior .s-header .clips .item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 9px;
    margin: 0 8px;
    padding: 3px 5px;
  }
  .b-interior .s-header .clips .item:after {
    width: 17px;
  }
}

.b-interior .s-header .tabs-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 0rem;
}

.b-interior .s-header .tabs-cat.oculto {
  visibility: hidden;
}

@media only screen and (max-width: 991px) {
  .b-interior .s-header .tabs-cat.oculto {
    height: 0;
  }
}

.b-interior .s-header .tabs-cat .item {
  text-align: center;
  margin: 0 1.5rem;
  cursor: pointer;
}

.b-interior .s-header .tabs-cat .item figure {
  width: 3.75rem;
  margin: 0 auto .5rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.b-interior .s-header .tabs-cat .item:hover figure {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.b-interior .s-header .tabs-cat .item figure img {
  width: 100%;
}

.b-interior .s-header .tabs-cat .item p {
  font-size: .66rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  background: transparent;
  border-radius: .3rem .3rem 0 0;
  padding: .4rem .8rem .4rem;
  margin-bottom: 0;
}

.b-interior .s-header .tabs-cat .item.activo p {
  background: #fff;
  color: #7E7E7E;
}

@media only screen and (max-width: 550px) {
  .b-interior .s-header .tabs-cat .item {
    width: 25%;
    margin: 0;
    padding: 0 5px;
  }
  .b-interior .s-header .tabs-cat .item figure {
    max-width: 100%;
  }
  .b-interior .s-header .tabs-cat .item p {
    font-size: 11px;
    padding: 5px;
    font-weight: normal;
  }
}

@media only screen and (max-width: 350px) {
  .b-interior .s-header .tabs-cat .item p {
    font-size: 9px;
    font-weight: normal;
  }
}

.grid-img {
  padding: 1rem 5px;
}

.grid-img .w-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 43rem;
  max-width: 100%;
  margin: 0 auto;
}

.grid-img .w-grid .item {
  width: 20%;
  padding: .2rem;
  cursor: pointer;
  position: relative;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.grid-img .w-grid .item:hover {
  opacity: .85;
}

.grid-img .w-grid .item img {
  width: 100%;
  vertical-align: bottom;
}

.grid-img .w-grid .item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-image: url("../images/estrella.png");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
}

.grid-img .w-grid .item.seleccionado:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

@media only screen and (max-width: 768px) {
  .grid-img .w-grid .item {
    width: 33.33%;
  }
}

.banner-interior img {
  width: 100%;
  vertical-align: bottom;
}

.s-musica {
  padding: 3rem 15px;
}

@media only screen and (max-width: 768px) {
  .s-musica {
    padding: 1rem 15px;
  }
}

.s-musica .w-musica {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 43rem;
  max-width: 100%;
  margin: 0 auto;
}

.s-musica .item-musica {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.s-musica .item-musica figure {
  position: relative;
  width: 6.66rem;
  min-width: 6.66rem;
  cursor: pointer;
  overflow: hidden;
}

.s-musica .item-musica figure img {
  width: 100%;
  vertical-align: bottom;
  -webkit-transition: all .8s ease;
  transition: all .8s ease;
}

.s-musica .item-musica figure:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.s-musica .item-musica figure img.ic-play {
  position: absolute;
  top: calc(50% - .8rem);
  left: calc(50% - .4rem);
  bottom: 50%;
  width: 1.25rem;
  height: auto;
}

.s-musica .item-musica figure .ic-pause {
  position: absolute;
  top: calc(50% - .8rem);
  left: calc(50% - .4rem);
  bottom: 50%;
  width: 1.25rem;
  height: auto;
  font-size: 1.4rem;
  display: none;
}

.s-musica .item-musica .texto {
  padding-left: 1.5rem;
  padding-right: 1rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media only screen and (max-width: 768px) {
  .s-musica .item-musica .texto {
    padding-left: 15px;
  }
}

.s-musica .item-musica .texto h3 {
  margin: 0 0 1rem;
  font-size: .917rem;
  color: #868686;
  font-weight: 900;
  border-bottom: 1px solid #c79999;
  padding-bottom: .3rem;
  display: block;
}

.s-musica .item-musica .texto a {
  font-size: .66rem;
  color: #fff;
  font-weight: 900;
  background: #C2092F;
  padding: .5rem 1rem;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.s-musica .item-musica .texto a:hover {
  color: #C2092F;
  background: #000;
}

.s-musica .item-musica.sonando figure .ic-play {
  display: none;
}

.s-musica .item-musica.sonando figure .ic-pause {
  display: block;
}

.modal {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  top: 100%;
  visibility: hidden;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}

.modal.visible {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.modal .w-modal figure {
  height: 70vh;
  margin-bottom: .5rem;
}

.modal .w-modal video {
  height: 70vh;
  max-width: 300px;
  width: auto;
  margin-bottom: .5rem;
}

.modal .w-modal figure img {
  height: 100%;
  width: auto;
}

.modal .w-modal .botones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.modal .w-modal .botones .cerrar {
  width: 2.3rem;
  background: #000000;
  color: #C2092F;
  cursor: pointer;
  font-size: 1.5rem;
  padding: .1rem .7rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.modal .w-modal .botones .cerrar i {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.modal .w-modal .botones .cerrar:hover i {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal .w-modal .botones .seleccionar {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  padding: .5rem 2rem;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  background: #C2092F;
  margin-left: .2rem;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.modal .w-modal .botones .seleccionar:hover {
  color: #C2092F;
  background: #000;
}

.w-panel .panel-item {
  display: none;
}

.w-panel .panel-item.visible {
  display: block;
}

#loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75) url(../images/loading2.gif) no-repeat center center;
  z-index: 10000;
}

.preview {
  padding: 1rem 0 3rem;
  text-align: center;
}

.preview .figure {
  height: auto;
  margin: 0 auto .5rem;
  width: 15rem;
}

.preview .figure img {
  width: 100%;
  height: auto;
}

.preview .figure video {
  width: 100%;
  height: auto;
}

.preview .botones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.preview .botones .cerrar {
  width: 2.3rem;
  background: #000000;
  color: #C2092F;
  cursor: pointer;
  font-size: 1.5rem;
  padding: .1rem .7rem;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.preview .botones .seleccionar {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  padding: .5rem 2rem;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  background: #C2092F;
  margin-left: .2rem;
}

.preview .botones .seleccionar {
  color: #C2092F;
  background: #000;
}

.preview video {
  height: 60vh;
  max-width: 300px;
  width: auto;
}

header.header-ingresar {
  height: 5rem;
  z-index: 9999;
}

.modal .w-modal {
  position: relative;
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.loader {
  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #C2092F;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  position: absolute;
  top: 40%;
  margin: 0 auto;
  right: 0;
  left: 0;
}

.modal .w-modal video {
  position: relative;
  z-index: 2;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.video-ganador {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
}

.video-ganador .cerrar-video {
  position: absolute;
  color: #fff;
  cursor: pointer;
  height: 50px;
  top: 1.5rem;
  width: 50px;
  text-align: center;
  right: 1rem;
  font-size: 2rem;
  z-index: 999;
}

.video-ganador .w-modal {
  width: auto;
  max-width: 100%;
}

.video-ganador .w-modal video {
  width: auto;
  height: 80vh;
  max-width: 100%;
}
/*# sourceMappingURL=estilos.css.map */