﻿/*CSS QUE SE CARGA DIRECTAMENTE EN EL DOM DEL SITIO HOST PARA DEFINIR EL ESTILO DEL CONTENEDOR*/

.iframe_one .input-wrapper-widget {
    position: relative;
    margin-bottom: 0 !important;
}

.iframe_one  {
    overflow: hidden;
    position: relative;
    margin-bottom: 0 !important;
}

.iframe_one input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.7rem;
}

.iframe_one label {
    position: absolute;
    left: 1.8rem;
    top: 0.7rem;
    transition: 0.2s;
    color: grey;
    font-size: 1em;
}

.iframe_one input:focus + label,
.iframe_one input:valid + label {
    top: 0.2rem;
    font-size: 0.5rem;
    color: #1976d2;
}
 
@media only screen and (min-width: 800px) {

    .contenedor_one {
        position: fixed;
        z-index: 70;
        right: 2.2em;
        bottom: 2em;
        width: 35vw;
        overflow: hidden;
        height: 70vh; 
        background-color: #EEF2F4;
        border-radius: 15px;
        padding: 8em 20px 15px 20px;
        box-shadow: 0px 0px 22px -6px rgba(0,0,0,0.3);
    }
}

@media only screen and (max-width: 801px) {

    .contenedor_one {
        position: fixed;
        z-index: 10000;
        right: 10px;
        height: 99vh;
        bottom: 10px;
        width: 80vw;
        overflow: hidden;
        background-color: #EEF2F4;
        border-radius: 15px;
        padding: 7em 15px 10px 15px;
        box-shadow: 0px 0px 22px -6px rgba(0,0,0,0.3);
    }
}

.cabecera {
    cursor: pointer;
    display: flex;
    text-align: center;
    position: absolute;
    width: 100%;
    top: 0px;
    height: 6em;
    left: 0;
    border-radius: 15px 15px 0 0;
    align-items: center;
}

.control_no_visible {
    display: none;
}

.contenedor_icono_cerrar {
    display: table-cell;
    vertical-align: middle;
}

    .contenedor_icono_cerrar:hover {
        color: red;
    }

.cerrarPanel {
    background-color: rgba(2,2,2, 0.3);
    cursor: pointer;
    display: table;
    text-align: center;
    position: absolute;
    right: 1em;
    top: 1em;
    padding: 4px;
    border-radius: 0.5em;
} 
    .cerrarPanel:hover {
        background-color: rgba(2,2,2, 0.8);
    }

.abrirPanel {
    z-index: 10;
    bottom: 10px;
    width: auto;
    height: auto;
    cursor: pointer;
    display: flex;
    opacity: 0.4;
    transition: opacity 1s linear;
    margin-right: 0.4em;
}

    .abrirPanel:hover {
        opacity: 1;
    }

.one_contenedor_iframe { 
    width: 100%;
    height: 100%;
    overflow-y: auto; 
    border-radius: 15px;
    box-shadow: 0px 0px 22px -6px rgba(0,0,0,0.3);
    background-color: white;
}

.contenedor_texto_croop {
    padding: 5px 10px;
    min-width: 2em;
    width: auto;
    height: auto;
    border-radius: 16px;
    text-align: center;
    color: white;
    vertical-align: middle;
}

.contenedor_imagen_croop {
    position: relative;
    width: 35%;
    float: right;
    height: 100%;
    border-radius: 0 10px 10px 0;
    text-align: center;
    color: white;
    vertical-align: middle;
    padding-left: 5px;
    padding-right: 5px;
}

.contenedor_widgets_general {
    position: fixed;
    right: 0;
    height: auto;
    width: auto;
    bottom: 10px;
    display: flex;
}
 
.contenedor_form_login_widget {
    height: 100%;
    background-color: var(--bg-color-componente, white);
    overflow-y: auto;
    padding-top: 1em;
}
