/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.logo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 0.3125rem;
}
.logo-brand img{
    height: 50px;
}

.txt-title{
    text-align: center;
    padding: 0 0 30px 0;
}

.welcome{
    text-align: justify;
}

/* .container_check.version_2:hover{
    background: #fffcfc;
} */

.not-found-box{
    display: flex;
    align-items:center;
    justify-content: center;
    padding-top: 180px;     
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border-left-color: #434bdf;
  
    animation: spin 1s ease infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  

.spinner-overlay{
    left: 0 !important;
    top: 0 !important;
    z-index: 10000 !important;
    width: 100% !important;
    height: 100% !important;
    position: fixed !important;
    background-color: rgba(251, 251, 251, 0.4) !important;
    /* background-color: rgba(239, 235, 235, 0.90) !important; */
    /* cursor: pointer !important; */
    visibility: visible !important;
    transition: visibility 0s, opacity 0.4s linear !important;
    display: block;
    inset: 0;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* cursor: wait !important;  */
    /* animation: fade-out 1000ms forwards; */
    pointer-events: none;
}

.hide-spinner{
  animation: fade-out 800ms forwards;
}

@keyframes fade-out{
  from{
    opacity:1;
  }
  to{
    opacity:0;
  }
}

.progress-bar-h{
  height: 2px!important;
}
.progress-bar-color{
  background: #6c3!important;
}

.remove-question{
  display: none;
}


.start-page-container{
  display: flex;
  justify-self: center;
  align-items: center;
  padding: 50px 0;
  height: 100px;
}
.start-page-container .title{
  font-size: 2.0rem;
  color: rgb(123, 123, 123);
}
.evaluation-start{
  padding-top: 20px;
  display: flex;
  justify-content: center;
}


.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #434bdf!important;
  color: #fff;
  font-size: 1em;
  transition: background .5s ease;
  -moz-transition: background .5s ease;
  -webkit-transition: background .5s ease;
  -o-transition: background .5s ease;
}

.swal2-styled.swal2-confirm:hover {
  background: #d80075!important;
  color: #fff;
}

.on-top-section{
  padding: 30px 0 0px 0;
  color: #099997!important;
  font-size: 1.05rem!important;  
}

.question-note{
    color: #7cd6d5!important;
    /* font-size: 1.05rem!important;     */
}

.tm-20{
  margin-top: 30px!important;
}
.bm-30{
  margin-bottom: 30px!important;
}
.question-box{
  margin-bottom: 30px;
}
.survey-next-button{
  padding: 20px 0; 
  margin: 0 10px 0;
  text-align: right;
 }
 
 .row-answer-options{
   
   padding: 0 0px;
   margin: 0 0px!important;
 }
 .row-answer-options h5{
   color:#fff;
   font-size: 1.25em;
   padding: 6px 8px!important;
   margin-bottom: 15px;
   border: 1px solid #f5f5f5;
   border-radius: 4px;
   background-color: rgba(106,107,110, .7); /*#fbfbfb; #545557 #6a6b6e */
 
 }

 .privacy_check .checkmark{
    border: 1px solid #434bdf!important; 
 }
 
 .correct-answer{
  color: #0c8f07!important;;
 }

 .wrong-answer{
  color: #b10c0c!important;;
 }

 .check-correct .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0c8f07!important;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.check-wrong .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b10c0c!important;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.survey-header h5{
  padding: 5px 10px;
}


/*animations*/

.animation-wrong{
  animation: shake 0.82s;
}

@keyframes shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

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


@keyframes firework {
  0% { 
    transform: translate(-50%, 60vh);
    width: 0.5vmin;
    opacity: 1;
  }
  50% { 
    width: 0.5vmin;
    opacity: 1;
  }
  100% { 
    width: 45vmin; 
    opacity: 0; 
  }
}

.firework,
.firework::before,
.firework::after {
  /* --top: 60vh; */
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5vmin;
  aspect-ratio: 1;
  background:
    /* random backgrounds */
    radial-gradient(circle, #0c8f07 0.2vmin, #0000 0) 50% 00%,
    radial-gradient(circle, #0c8f07 0.3vmin, #0000 0) 00% 50%,
    radial-gradient(circle, #0c8f07 0.5vmin, #0000 0) 50% 99%,
    radial-gradient(circle, #0c8f07 0.2vmin, #0000 0) 99% 50%,
    radial-gradient(circle, #0c8f07 0.3vmin, #0000 0) 80% 90%,
    radial-gradient(circle, #0c8f07 0.5vmin, #0000 0) 95% 90%,
    radial-gradient(circle, #0c8f07 0.5vmin, #0000 0) 10% 60%,
    radial-gradient(circle, #0c8f07 0.2vmin, #0000 0) 31% 80%,
    radial-gradient(circle, #0c8f07 0.3vmin, #0000 0) 80% 10%,
    radial-gradient(circle, #0c8f07 0.2vmin, #0000 0) 90% 23%,
    radial-gradient(circle, #0c8f07 0.3vmin, #0000 0) 45% 20%,
    radial-gradient(circle, #0c8f07 0.5vmin, #0000 0) 13% 24%
    ;
  background-size: 0.5vmin 0.5vmin;
  background-repeat: no-repeat;
  animation: firework 2s infinite;
}

.firework::before {
  transform: translate(-50%, -50%) rotate(25deg) !important; 
}

.firework::after {
  transform: translate(-50%, -50%) rotate(-37deg) !important;
}

/* 
.survey-header-animation{
  background-color: #f8c;
} */

/* Css - Texto con Degradado */
.survey-header-animation {
  /* padding: 5px 10px; */
  color: #fff;
  border-radius: 7px;
  animation: fadeIn 1s ease-in, fluido 4s ease-in-out 2;
  /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); */
  background: linear-gradient(-45deg, #2D1696, #197D79, #04629D, #B7E6E4);
  background-size: 300%;
  /* -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent; */
}

@keyframes fluido {
    0% { background-position: 0 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0 50% }
}

@keyframes fadeIn{
  0%{ opacity: 0;}
  50%{ opacity: 1;}
}
