.hidden {
    display: none;
}

#qr-shaded-region {
    display: none;
}

video {
    border-radius: 0px !important;
}

#talk-video {
    border-radius: 50% !important;
}


.logosyd{
width: 100%;
max-width: 700px;
margin-bottom: 100px;
}

.terms{
    margin: 50px 0 20px 0;
    color: #fff;
}

.btn-home{
    position: absolute;
    top:50px;
    left: 80px;
    background-color: #527FA8;
    width: 100%;
    max-width: 50px;
    border-radius: 50px;
    padding: 10px;
}

.btn-home:hover{
    transition: all 0.2s ease-out;
    animation: pulse 1.3s infinite;
}

.btn-play{
    border-radius: 50px;
    position: absolute;
    top: 50%;
    left: 68%;
    border: 2px solid #884484;
    background-color: transparent;
    z-index: 1111;
    cursor: pointer;
    transition: all 0.2s ease-out;
    animation: pulse 1.3s infinite;
}

.btn-play-img{
    max-width: 23px;
}

.btn-play:hover{
    background-color:#EB008B;
    border: 2px solid #EB008B;
}

.alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    z-index: 2;
}

/* Estilos para la alerta de éxito */
.alert-success {
    background-color: #4CAF50;
}

/* Estilos para la alerta de error */
.alert-error {
    background-color: #F44336;
}

#reader {
    border: none !important;
    margin: 25px auto;
    display: inline-block;
}

img[alt="Info icon"] {
    display: none;
}

.peerConnectionState-new {
    color: cornflowerblue;
}

.peerConnectionState-connecting {
    color: orange;
}

.peerConnectionState-connected {
    color: green;
}

.peerConnectionState-disconnected,
.peerConnectionState-closed,
.peerConnectionState-failed {
    color: red;
}

.iceConnectionState-new {
    color: cornflowerblue;
}

.iceConnectionState-checking {
    color: orange;
}

.iceConnectionState-connected,
.iceConnectionState-completed {
    color: green;
}

.peerConnectionState-disconnected,
.peerConnectionState-closed,
.peerConnectionState-failed {
    color: red;
}

.iceGatheringState-new {
    color: cornflowerblue;
}

.iceGatheringState-gathering {
    color: orange;
}

.iceGatheringState-complete {
    color: black;
}

.signalingState-stable {
    color: green;
}

.signalingState-have-local-offer,
.signalingState-have-remote-offer,
.signalingState-have-local-pranswer,
.signalingState-have-remote-pranswer {
    color: cornflowerblue;
}

.signalingState-closed {
    color: red;
}

.streamingState-streaming {
    color: green;
}

.streamingState-empty {
    color: grey;
}

/* added css from here */

@font-face {
    font-family: "Eurostile";
    src: url("./static/fonts/Eurostile/Eurostile-Extended-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: "EurostileBlack";
    src: url("./static/fonts/Eurostile/eurostile_extended_black.ttf");
    font-display: swap;
}

@font-face {
    font-family: "EurostileMedium";
    src: url("./static/fonts/Eurostile/eurostile-extd-medium.otf");
    font-display: swap;
}



@font-face {
    font-family: "Neue";
    src: url("./static/fonts/HelveticaNeueRegular/HelveticaNeue Regular.ttf") format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "NeueMedium";
    src: url("./static/fonts/Helvetica-Neue-Font/Helvetica\ Neue\ Medium\ Extended/Helvetica Neue Medium Extended.ttf") format('truetype');
    font-display: swap;
}

body *:not(.webchat__bubble__content):not(.c-pushButton):not(.dictating):not(.ac-pushButton.style-default.ac-selectable) {
    font-family: 'NeueMedium' !important;
    font-size: 16px;
    text-align: center;
    
}



[aria-controls="webchatSendBoxMicrophoneButton"] {
    color: #000 !important;
}

.webchat__bubble__content{
    color: #fff !important;
}

.c-pushButton{
    color: #fff !important;
}

.ac-pushButton.style-default.ac-selectable {
    color: white !important;
}

html,
body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('/static/img/background.png');
    background-position: center;
    /* Adjust this if needed */
    background-repeat: no-repeat;
    background-size: cover;
}

#content {
    width: 60vw;
    position: relative;
    margin: 0 auto;
}

#buttons {
    clear: both;
    padding: 0 0 0 0;
    text-align: center;
}

/* Animación de respiración (pulsación) */
@keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }

button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    margin: 0 5px;
    background-color: #EB008B;
    color: #fff;
}

button:hover {
    background-color: #9480ff;
    cursor: pointer;
    transition: all 0.2s ease-out;
    animation: pulse 1.5s infinite;
}
  
  
  
button.btn-yd {
    padding: 40px 100px;
    border-radius: 50px;
    font-size: 2rem !important;
    border: none;
    font-size: 16px;
    margin: 0 5px;
    color: #fff;
    background-color: #EB008B;
}

button.btn-yd:hover {
    background-color: #EB008B;
    cursor: pointer;
    transition: all 0.2s ease-out;
    animation: pulse 1.5s infinite;

}

button.disabled {
    opacity: 0.7;
    pointer-events: none;
    background-color: #9480ff;
  }

#status {
    clear: both;
    padding: 20px 0 0 0;
    text-align: left;
    display: inline-block;
    zoom: 1;
    line-height: 140%;
    font-size: 15px;
}

#status div {
    padding-bottom: 10px;
}


.video-wrapper-bg {
    background-image: url(/static/img/mask.png);
    height: 400px;
    width: 800px;
    background-position: top;
    background-size: 500px;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.video-hidden{
    display: none;
}
.logosyd-landing{
    width:100%;
    max-width: 500px;
    margin: 60px 0px 10px 10px;
}

.logosyd-landing:hover{
    transform: scale(1.05);
    transition: transform 0.3s ease-out;
}



#webchat {
    background-color: transparent;
}


#webchat * {
    background-color: transparent;
    border: none;
}

.webchat__send-box__main{
    background-color: #888692;
    border: 2px solid white !important; 
    border-radius: 30px !important;
    margin: 8px 10px !important;
    background-color: #fff !important;
    z-index: 2;
    opacity: 1 !important;
}

.ac-textBlock{
    color: #fff !important;
}

.webchat__typingIndicator{
    border: 2px solid white !important; 
    border-radius: 30px !important;
    max-height: 20px !important;

}



.webchat__send-box-text-box__input{
    color: #000 !important;
    font-family: 'NeueMedium' !important;
    font-size: 16px;
    text-align: center;
}

span{
    font-size:15px !important;
    font-family: Neue !important;
}

.webchat__bubble__content{
    background-color: #50549c !important;
    border: 2px solid #50549c !important; 
    border-radius: 10px !important;
}
video {
    display: block;
    /*border:1px solid;*/
    border-radius: 50%;
    background-color: #fff;
}

#webchat {
    overflow-y: auto;
    max-height: 60vh;
    margin-top: 0%;
}

#webchat::-webkit-scrollbar {
    max-width: 5px;
    /* Adjust the width as needed */
}

#webchat::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Adjust the background color as needed */
}

#webchat::-webkit-scrollbar-thumb {
    background: #888;
    /* Adjust the thumb color as needed */
}

.display_btn_rerun {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-items: center;
    margin-bottom: 20px;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-entity {
    position: absolute;
    width: 100%;
    max-width: 150px;
    min-width: 100px;
    top: 70px;
    left: 20%;
}

.content-webchat-container {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.txt-center {
    text-align: center;
}


.fixed-important{
    position:fixed !important;
    bottom: 5px;
    width: 475px;
}


/* ========= QR ==================== */

.chatbot-qr-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
}

img[alt="Camera based scan"] {
    display: none; /* Hide the image */
    opacity: 0.8; /* Set the opacity to 80% (adjust as needed) */
  }

  .form-yd{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .label-yd{
    color: #EB008B !important;
    font-family: 'EurostileBlack' !important;
    font-size:2rem;
    margin: 15px;
  }

  .input-yd-form {
    background-color: rgba(80, 68, 108, 0.5); 
    border-radius: 50px; 
    border: 1px solid #50446c; 
    padding: 40px 80px; 
    width: 50%;
    color: #fff !important; 
    font-size:1.3rem !important;
    z-index: 2;
  }



  .container-fomr-center{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px;
  }

  .webchat__bubble.webchat__bubble--from-user *:not(.webchat__bubble__nub-pad){
    background-color: #EB008B !important;
    border: 2px solid #EB008B !important; 
    border-radius: 10px !important;
  }

  .ac-pushButton{
    background-color: #EB008B !important;
    border: 2px solid #EB008B !important; 
    border-radius: 10px !important;
  }


  .video-container-main{
    border-radius: 50% !important;
    max-width: 450px !important;
  }



  .video-container-main-container{
    clip-path: polygon(5% 35%, 29% 4%, 38% 0, 45% 0, 61% 3%, 84% 20%, 96% 60%, 82% 77%, 67% 92%, 61% 94%, 56% 94%, 22% 85%, 17% 82%, 13% 74%);
  }


  /* Styling for the scrollbar */
#webchat::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar */
}

#webchat::-webkit-scrollbar-track {
    background: #574b74; /* Set the background color of the track (the area behind the scrollbar) */
}

#webchat::-webkit-scrollbar-thumb {
    background: #854187; /* Set the color of the thumb (the draggable part of the scrollbar) */
}

#webchat::-webkit-scrollbar-thumb:hover {
    background: #EB008B; /* Set the color of the thumb when hovering over it */
    cursor: pointer;
}

.container {
    display: flex;
    width: 100%;
    height: 100vh; /* Ajustar según el diseño deseado */
  }
  
  .logos-column, .content-column {
    width: 50%;
    padding: 20px; /* Espaciado opcional */
    box-sizing: border-box;
  }
  
  .logos-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .content-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #logos {
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
}