*{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fefefe;
}

.grid-50{
 display: grid;
 grid-template-columns: 50% 50%;
}



body,#root{
    width: 800px;
    height: 600px;
    background-color: #fefefe;
}

.container {
    width: 100%;
    text-align: center;
    max-width: 1200px;
    box-sizing: border-box;
}

#video-element {
    width: 100%;
    height: 100%;
    transform: scaleX(-1);
}

.video-Cam {
    position: relative; /* Asegura que el posicionamiento absoluto se base en este contenedor */
}

#canvas-element {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    transform: scaleX(-1);
}
.mt-2{
    margin-top: 20px;
}
.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.title{
    font-size: 26px;
}
.gap-2{
    gap:20px;
}
@media screen and (min-width: 120px ) and (max-width: 1250px) {
    div {
        width: auto;
        height: auto;
    }

   
}



@media screen and (min-width: 120px ) and (max-width: 500px) {
    div {
        width: auto;
        height: auto;
    }

    .grid-50{
        grid-template-columns: 100%;
    }
}



#message {
    position: fixed;
    transform: translate(-50%);
    left: 50%;
    color: white;
    font-weight: 500;
    text-shadow: -1px 1px 0 #000;
    text-align: center;
    font-size: 40pt;
    max-width: 90vw;
    z-index: 3;
}

.info-container {
    width: 100%;
    text-align: center;
}



.card {
    max-width: 90%;
    max-height: 500px;
    margin: 0 auto 20px;
    background-color: #225451;
    text-align: center;
    color: white;
    border: 1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-body {
    padding: 0px;
}

.card-body h1 {
    margin-top: 20px;
}

.card-body ul {
    list-style-type: none;
    padding-left: 0;
}

.card-body li {
    margin: 15px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: normal;
}

.card-body li:last-child {
    border-bottom: none;
}

#fourth_indication {
    margin-top: 30px;
}

.circle-container {
    padding-top: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.loader {
    border: 15px solid #f3f3f3;
    border-top: 15px solid #17a2b8;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin: 20px auto;
    animation: spin 1s linear infinite;
}

.padding-300{
    padding-bottom: 300px;
}

.page{
    height: 570px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.step-group{
    display: flex;
    margin-top: 30px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
}

.step-group p{
    font-size: 18px;
}

.img-group{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:30px;
    position: relative;
    
}


.img-group i{
    position: absolute;
    font-size: 20px;
   }
.desenfocado{
  width: 124px;
  height: 124px;
}

.img-group .fa-check-circle{
    top:0;
    color:rgb(20, 156, 20);
}
.subtitle{
  margin-top: -10px !important;
}

.img-group .fa-times-circle{
    top:0;
    right: -25px;
    color:rgb(138, 21, 21);
}
.btn-info {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: #17a2b8;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  
  .btn-info:hover {
    background-color: #138496;
    border-color: #117a8b;
  }
  
  .btn-info:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
  }
  
  .btn-info:active {
    background-color: #117a8b;
    border-color: #10707f;
  }
  
  .btn-info:disabled {
    opacity: 0.65;
    pointer-events: none;
    background-color: #17a2b8;
    border-color: #17a2b8;
  }
  

  .circle-button{
    border-radius: 50% !important;
    padding: 0px;
    width: 40px;
    height: 40px;

  }
 .circle-button .fa-chevron-right{
margin-left: 4px;
 }
 .circle-button .fa-chevron-left{
    margin-right: 4px;
     }
  
.line{

    opacity: 0.4; 
     width: 300px;
     background-color: #17a2b8;
     height: 2px;
 }

 .color-light-blue{
  color: #17a2b8;
 }

.white-screen{
  background-color: white;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: 100;
}
