
@import url("HelveticaNowDisplay.css");
@import url("HelveticaNowMicro.css");
@import url("HelveticaNowText.css");



html, body {
  padding: 0;
  margin: 0;
  font-family: HelveticaNowDisplay;
}

.background {
  width: 100%;
  height: 450px;
  position: absolute;
  top: 100px;
  z-index: -2;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('assets/imagen_background.png');
}

.content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 500px;
  /* justify-content: center; */
  align-items: center;
}

.content .title {
  font-size: 60px;
  color: #f72a74;
  font-weight: 300;
  background-color: transparent;
  width: 717px;
  text-align: center;
  margin-top: 22px;
}

.content .roulete {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  overflow: hidden;
  /* width: 100%; */
}

.content .roulete .slot {
  position: relative;	
  width: 270px;
  height: 250px;
  margin: 0 10px;
  -webkit-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
}

.content .roulete .slot.crop {
  overflow: hidden;
}

.content .roulete .slot img{
  width: 270px;
  height: 250px;
}

/*.content .roulete .slot.crop img{
	position: absolute;
   	width: 270px;
  	height: auto;
  	top: -50%
}*/


.content .play  {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 100px;
  background-color: white;
  border: 1px solid #c0c0c0;
}

.content .play img {
  width: 20px;
  margin: 0 0 0 5px;
}

.bottom-content {
  display: flex;
  flex-direction: column;
  /* margin-top: 20px; */
  align-items: center;
}

.bottom-content .phrase {
  font-size: 28px;
  font-weight: 800;
  margin-top: 20px;
  color: #fff;
  /* font-stretch: semi-condensed; */
  background-color: #f72a74;
  padding: 10px 17px;
  width: 420px;
  text-align: center;
}

.bottom-content .rounds {
  font-size: 25px;
  font-weight: 800;
  margin: 15px 0;
}

.bottom-content .message_1,
.bottom-content .message_2 {
  line-height: 0.5;
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin: 15px 0 0;
}

.bottom-content .message_3,
.bottom-content .message_4 {
  font-size: 12px;
  margin-top: 35px;
  font-weight: normal;
  text-align: center;
  /* margin: 15px 0 0; */
}

.bottom-content .buttons {
  display: flex;
  margin: 10px;
}

.bottom-content .buttons .cupon,
.bottom-content .buttons .probar_nuevamente {
  background-color: #32631a;
  padding: 10px 20px;
  color: white;
  font-size: 17px;
  border: none;
  margin: 10px 20px;
  -webkit-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
}

.bottom-content .buttons .probar_nuevamente {
  background-color: #fc5226;
}

.bottom-content .cupon {
  background-color: #32631a;
  padding: 10px 20px;
  color: white;
  font-size: 17px;
  border: none;
  margin-top: 10px;
  -webkit-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
}

.check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: 0 10px;
  cursor: pointer;
  border-radius: 100px;
  background-color: white;
  border: 1px solid #c0c0c0;
}

.check img {
  width: 38px;
  margin: 0;
}

a.descarga_ya {
  padding: 10px 24px;
  background-color: #3b34ff;
  border: none;
  margin: 15px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  outline: none;
  box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.12);
  text-decoration: none;
  -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.12);
  -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.12);
}

@keyframes flickerAnimation 
{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}

.blur
{
-webkit-animation: flickerAnimation .5s infinite;
-moz-animation: flickerAnimation .5s infinite;
-o-animation: flickerAnimation .5s infinite;
animation: flickerAnimation .05s infinite;
filter: blur(4px);
-webkit-filter: blur(4px);
}

.shake
{
  animation: shake 0.2s cubic-bezier(.36,.07,.19,.97) both;
  transform: translate3d(0, 0, 0);
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(0, 0px, 0);
  }
  
  20%, 80% {
    transform: translate3d(0, 10px, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(0, -16px, 0);
  }

  40%, 60% {
    transform: translate3d(0, 0px, 0);
  }
}

.top
{
  animation: top .05s cubic-bezier(.36,.07,.19,.97) infinite;
  transform: translate3d(0, 0, 0);
  position: relative;
}

@keyframes top {
  10%, 90% {
    transform: translate3d(0, 0px, 0);
  }
  
  20%, 80% {
    transform: translate3d(0, 100px, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(0, -100px, 0);
  }

  40%, 60% {
    transform: translate3d(0, 0px, 0);
  }
}

.top2
{
  animation: top2 .12s cubic-bezier(.36,.07,.19,.97) infinite;
  transform: translate3d(0, 0, 0);
  position: relative;
}

@keyframes top2 {
  10%, 90% {
    transform: translate3d(0, 0px, 0);
  }
  
  20%, 80% {
    transform: translate3d(0, -100px, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(0, 100px, 0);
  }

  40%, 60% {
    transform: translate3d(0, 0px, 0);
  }
}

.top3
{
  animation: top3 .13s cubic-bezier(.36,.07,.19,.97) infinite;
  transform: translate3d(0, 0, 0);
  position: relative;
}

@keyframes top3 {
  10%, 90% {
    transform: translate3d(0, 0px, 0);
  }
  
  20%, 80% {
    transform: translate3d(0, 100px, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(0, -100px, 0);
  }

  40%, 60% {
    transform: translate3d(0, 0px, 0);
  }
}


@media all and (max-width: 700px) {
  .background {
    height: 350px;
  }

  .content_section {
    height: 400px;
  }

  .content {
    height: unset;
  }

  .content .title {
    font-size: 30px;
    width: unset;
    padding: 5px 20px;
  }

  .content .roulete {
    width: 100%;
  }

  .content .roulete .slot {
    position: relative;
    width: 100%;
    height: unset;
    margin: 0 10px;
    -webkit-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
    box-shadow: 0px 3px 5px 1px rgba(0,0,0,0.4);
  }
  
  .content .roulete .slot.crop {
    overflow: hidden;
  }
  
  .content .roulete .slot img{
    width: 100%;
    height: unset;
  }

  .bottom-content .phrase {
    text-align: center;
    width: 242px;
    font-size: 30px;
  }

  .bottom-content .message_1, .bottom-content .message_2{
    font-size: 15px;
  }
}

@media all and (max-width: 420px) {
  .bottom-content .phrase {
    text-align: center;
    /* font-size: 40px */
  }
  .bottom-content .rounds {
    text-align: center;
    font-size: 22px
  }

  .bottom-content .message_1, .bottom-content .message_2 {
        line-height: 1;
  }
}


@media all and (max-width: 380px) {
  .bottom-content .message_1, .bottom-content .message_2 {
    line-height: 1;
    font-size: 18px;
    text-align: center;
  }

  .buttons .probar_nuevamente {
    font-size: 13px;
    margin: 10px 12px;
  }
}

