/* * Modal */

:root {
  --color-default: #006778;
  --color-primary: #0D4680;
  --color-secondary: #1497D1;
  --color-footer: #1498d1d8;
  --color-emergente: #ef7e19;
}

.modal{
  width: 200%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.modal-content{
  background: var(--color-primary);
  background: linear-gradient(50deg, var(--color-default) 0%, var(--color-secondary) 0%, var(--color-primary) 81%);
}

.modal-header{
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: space-between;
  border-bottom: transparent !important;
  top: 20px;
  right: 25px;
  z-index: 20000;
}

.modal-title > button{
 font-size: 1rem;
}

.modal-body{
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-modal{
  width: 100%;
  height: 450px;
  background-size: cover;
  border: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('/assets/img/moda_promocion.jpg');
  display: none;
 
}


.modal-footer{
  width: 100%;
  display: flex;
  flex-wrap: nowrap !important;
  flex-direction: column;
 /* * quitar el !important al (justify-content:) para que el boton baje */
  justify-content: center !important;
  align-items: center;
  margin: 0 !important;
  border-top: transparent !important;
}

.title-modal{
  height: 12px;
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.parpadea{
  color: #d6d6d6;
  text-shadow: #000 3px 3px 10px;
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}
/* *---------------------------------
 * Reloj de evento
 * ---------------------------------- */
/*.launch-time{
  display: flex;
  width: 100%;
  height: 500px;
  justify-content: space-around;
  align-items: center;
  border: transparent;
  line-height: 1.8rem;
}

.launch-time span{
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
}

.launch-time div p{
  display: flex;
  justify-content: center;
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0;
}

.dos_puntos{
  padding: 0 !important;
  margin: 0 !important;
} */

.modal-footer button{
   background: transparent;
    border: 2px solid #ffffff;
    outline: none;
    padding: 10px 90px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 500ms ease-in-out;
}

.modal-footer button:hover{
  border: 2px solid #c5c5c5;
  color: #fff;
  background: var(--color-emergente);
  font-weight: 500;
}

/* * Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px){
  .modal{
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 !important;
  } 
    
  .title-modal{
    font-size: 1.5rem !important;
  }

 }

/* * Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 
  
 }

/* * Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
  
 }

/* * X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 
  .title-modal{
    font-size: 1.2rem !important;
  }
 }

/* * XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { 
  .title-modal{
    font-size: 1.2rem !important;
  }

 }
  