@font-face {
    font-family: "Mystery Quest";
    src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}

/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap'); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #efefef;
}

/*:::Boton-Modal:::*/

/* .boton-modal{
    padding: 40px;
    background-color: #fff;
} */

.btn-modal {
    /* padding: 10px 15px; */
    width: 60px;
    height: 60px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
    background-image: url('https://imagenes.conceptbpo.com.co/Confiar/logo-videollamada3.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: fixed;
    bottom: 10px;
    right: 10px;


}

.boton-modal label:hover {
    background-color: #185E83;
}

/*:::Fin Boton-Modal:::*/

/*:::Ventana Modal:::*/
#btn-modal {
    display: none;
}

.container-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(144, 148, 150, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

#btn-modal:checked~.container-modal {
    display: flex;
}

.content-modal {
    width: 100%;
    max-width: 700px;
    padding: 2px 20px;
    background-color: #fff;
    border-radius: 4px;
    text-align: center;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    background-image: url('imagenes/mariposas.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 100px 0px;
    background-color: #f6f6f6;
}

.content-modal h2 {
    margin-bottom: 15px;
}

.content-modal p {
    padding: 15px 0px;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}

.content-modal .btn-cerrar {
    width: 100%;
    margin-top: 5px;
    display: flex;
    justify-content: flex-end;
}

.content-modal .btn-cerrar label {
    padding: 5px;
    /* background-color: #5488a3; */
    color: black;
    /* border-radius: 4px; */
    cursor: pointer;
    transition: all 300ms ease;
    font-weight: 600;
}

/* .content-modal .btn-cerrar label:hover{
    background-color:#185E83;
} */
.cerrar-modal {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width:800px) {
    .content-modal {
        width: 90%;
    }
}

/*:::Fin Ventana Modal:::*/

input[type=text] {
    width: 100%;
    height: 35px;
    padding: 5px;
    margin-top: 5px;
    border: 1px solid #77bf47;
    border-radius: 5px;
}

.contenedor-frase-Confiar {
    background-color: #77bf47;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 1vh;
    color: white;
    font-weight: 600;
    border-radius: 10px;

    -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.75);
}

.contenedores-body {
    width: 100%;
    overflow: hidden;
}

.contenedor-inputs {
    width: 60%;
    float: left;
    height: 200px;
    padding: 10px;
}

.contenedor-imagen {
    width: 40%;
    float: left;
    height: 250px;
    text-align: center;
    justify-content: center;
    align-items: center;

    position: relative;
    top: 20px;

    /* background-size: 100% 100%;
    background-repeat:no-repeat;
    background:url(imagenes/Bienvenida.gif);
    background-size: cover; */
}

/* .contenedor-imagen img{
    width: 100%;
  } */


.imagen-gif-principal {
    
    object-fit: cover;
    width:75%;
    height:75%;
}

.contenedor-mensaje-error {
    background-color: #9C2323;
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    /* display: none; */
}



.boton-iniciar-videollamada {
    background-color: #7b4c9c;
    color: white;
    font-weight: 800;
    border-radius: 10px;
    height: 30px;
    border: 1px solid #7b4c9c;
    padding: 5px 15px 5px 15px;
    margin-bottom: 10px;
}

.boton-iniciar-videollamada:hover {
    cursor: pointer;
    color: black;
}


input:focus {
    outline: none;
    border-style: none;
    border: 1px solid #663e87;
    box-shadow: inset 0 0.7px 0.7px rgba(0, 0, 0, 0.075), 0 0 3px #663e87;
}

.Gif-hover {
    height: 110px;
    width: 100px;
    background-color: red;
    position: fixed;
    bottom: 80px;
    right: 20px;
    border-radius: 5px;
    border: 1px solid #77bf47;
    display: none;
    animation: mymove 0.5s;

}

.btn-modal:hover>.Gif-hover {
    display: block;
    /* background-color: red; */
}


@keyframes mymove {
    /* from {opacity: 0.5;}
    to {opacity: 1;} */
}