

body{
background: url(/img/fondov2.jpg);
background-repeat:no-repeat;
background-size: cover;
background-attachment: fixed;
overflow-y: auto;
scroll-behavior: smooth;
}

a:link, a:visited{
  color: #39c0ed;
}


.lead {
font-size: 1rem;
font-weight: 300;
}

.img-text{
  width: 50%;
}

.fixed-img{
    position: absolute;
    z-index: 2;
    right: 4%;
    width: 44%;
}

input[type=text], input[type=email], input[type=number]   {
    border: none;
    padding: 3px 5px;
    background: transparent;
    width: 90%;
    margin: 0px 10px;
}

input:focus{
 outline: none;
}
.card span{
    background: #e0e0e0;
  border-radius: 20px;
  padding: 6px;
}

.btn-primary {
    color: #fff;
   background: rgb(11,142,170);
    background: linear-gradient(360deg, rgb(2 138 167) 24%, rgba(0,212,255,1) 100%);
}

.check-label{
    color: #9e9e9e;
    font-weight: 400;
}


.form-check-input:checked:focus {
    border-color: #39c0ed;
}
.form-check-input:checked {
    background-color: #39c0ed;
    border-color: #39c0ed;
}

.form-check-input[type=checkbox]:checked, .form-check-input[type=checkbox]:checked:focus {
    background-color: #39c0ed;
}

@keyframes right {
    from {
      transform: translateX(20%);
      opacity: 0;
    }
    50%{
      opacity: 0.5;
    }
    to  {
      transform: translateX(0%);
      opacity: 1;
    }
  }

  @keyframes left {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to  {
      transform: translateX(0);
      opacity: 1;
    }
  }

  .animUp {
    opacity: 0;
  }
  @keyframes up {
    from {
      transform: translateY(100px);
      opacity: 0;
    }
    50%{
      opacity: .5;
    }
    to  {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes down {
    from {
      transform: translateY(-100px);
      opacity: 0;
    }
    50%{
      opacity: .5;
    }
    to  {
      transform: translateY(0);
      opacity: 1;
    }
  }

@keyframes zoomInLeft {
from {
opacity: 0;
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
}
60% {
opacity: 1;
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
}
100% {
    transform: scale(1);
opacity: 1;
}
}



  @keyframes bounceInicio {
    0% { 
       opacity: 0; 
       transform: scale(.3);
    }
    50% { 
       opacity: 1;
       transform: scale(1.05);
    }
    70% {
       transform: scale(.9);
    }
    100% {
       transform: scale(1);
       opacity: 1;
    }
  } 


.dialog{
position: fixed;
top: 0%;
left: 0%;
height: 100vh;
width: 100%;
background: #0000003d;
z-index: 2;
display: flex;
align-items: center;
justify-content: center;
}


.messagebody{
width: 80%;
height: auto;
border-radius: 6px;
padding: 1rem;
display: flex;
align-items: center;
justify-content: center;
}

@media(min-width:760px){
.messagebody{
  width: 400px !important;
}

.center-container{
  height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


}



h1{
  color: white;
  margin-top: 2rem;
  font-weight: 800;
}

.h-numeral{
  font-weight: 800;
  color: white;
  font-size: 2rem;
  margin-right: .5rem;
}

.contenedor{
  display: flex; align-items: center; color: white;
}

.check{
  animation: bounceInicio  1s ease-in;
}

#idcupon{
  color: #ff075b;
  font-weight: bolder;
  font-size: 2rem;
  display: block;
  text-align: center;
  background: #00000000;

}

.fechas h1{
  color: #686868;
}

.fechas strong{
  color: grey;
}


.fechas span{
  background: transparent;
  color: #2196F3;
}

@media(max-width:536px){
  h1{
    font-size: 1.1rem;
  }
}

h1{
  font-size: 1.6rem;
}


.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  /* padding: 10px; */
  font-size: 16px;
}
/* input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
} */
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}