/* Containers */

* {
    outline: none;
}

/*body {*/

/*    margin: 0;*/

/*    padding: 0;*/

/*    box-sizing: border-box;*/

/*}*/

/*body {*/

/*    height: 100%;*/

/*    width: 100%;*/

/*}*/

/*#app {*/

/*    height: 100%;*/

/*    width: 100%;*/

/*}*/

/**/

.main-container {
    background: var(--negro);
    width: 100%;
    height: 100vh;
}

.denuncia-container {
    width: 70%;
    max-width: 750px;
    margin: 0 auto;
    height: 250px;
    background: url(../assets/img/MarcoMD.svg);
    background-repeat: no-repeat;
    background-size: 100% 250px;
}

.denuncia-container .denuncia_content{
    display: grid;
    justify-items: center;
    width: 100%;
}

.company_selection {
    width: 100%;
    display: grid;
}

.company_selection .title_selection{
    display: grid;
    justify-content: center;
}

.company_selection .combobox{
    width: 100%;
    max-width: 478px;
    justify-self: center;
}

.elements-container {
    width: 55%;
    margin: 0 auto;
}

.mascara-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 10;
    background: #000;
}

.denuncia_mascara{
    background: linear-gradient(to right, #ffffff 90%, #ff0000 50%, #ffce00 50%, #ffce00 100%) !important;
}

.TipoDenuncia-container {
    background: #333333;
    width: 80%;
    z-index: 10;

    min-height: 80vh;
    border-radius: 20px;
    padding: 20px 10px;
}

.div-padre {
    width: 95% !important;
}

.div-padre .div-imagenes{
    display: grid;
    width: 100%;
    grid-template-columns: 50px 1fr 50px;
}


.div-form {
    min-height: 300px;
    max-width: 550px;
}

.cluster-textfields {
    max-width: 550px;
}

.div-padre {
    height: 100%;
}

/* Texto */

.marco-label {
    color: var(--amarillo);
    font-size: 24px;
    margin: 15px 0px;
}


.text-denuncia {
    width: 100%;
    border-radius: 20px;
    min-height: 120px;
    text-align: left;
    resize: none;
    padding: 6px 15px;
}


.lbl-toggle {
    color: #ffffff;
}

/* Imagenes */

.contenedor_logo_principal {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.title-logo {
    width: 65%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 100px;
}

.logo-pequeno {
    width: 200px;
    margin-left: 30px;
    display: none;
}

.globo {
    width: 75px;
    display: none;
    margin-bottom: 18px;
    margin-right: 15px;
}

.globo_no_mostrado {
    width: 75px;
    /*margin-bottom: 18px;*/
    margin-right: 15px;
}

.logo_pequeno {
    width: 100%;
    max-width: 250px;
}

.NombreEmpresa {
    color: white;
    background: #000;
    display: block;
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    font-size: 13px;
    text-align: center;
}

.cerrar {
    width: 30px;
    height: 25px;
    /*margin-right: 30px;*/
    background: url(../assets/img/Cerrar.svg);
    background-repeat: no-repeat;
    background-size: 30px 25px;
    border: none;
    cursor: pointer;
}


/* ToggleButton */

.toggleButton {
    position: relative;
    background: transparent;
    border-radius: 20px;
    border-color: #fcea92;
    width: 46px;
    height: 25px;
    color: white;
    padding: 5px;
    cursor: pointer;
    margin: 10px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.toggleButton:hover {}

.toggleButton span {
    display: block;
    background: #ffce00;
    height: 17px;
    width: 17px;
    border-radius: 100%;
    position: absolute;
    top: 2px;
    left: -1px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.toggleButton.activo {
    background: transparent;
}

.toggleButton.activo:hover {
    background: transparent;
}

.toggleButton.activo span {
    left: 22.2px;
}

.toggleButton.inactivo span {
    left: 3px;
}

/* Botones */

.button-enviar {
    background: transparent;
    color: #ffce00;
    border-color: #ffce00;
    border-radius: 20px;
    font-weight: normal;
    width: 80px;
    height: 30px;
    cursor: pointer;
}

.button-enviar:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.btn-contratar {
    background: #000;
    color: var(--amarillo);
    border: 1.5px solid var(--amarillo);
    border-radius: 40px;
    cursor: pointer;
    padding: 10px;
    max-width: 150px;

    position: absolute;
    top: 30px;
    right: 30px;
}

.btn-contratar:hover {
    color: var(--grisclaro);
    border-color: var(--grisclaro);
}

.contratar {
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 10;
    background: #000;

}

.contratar .contratar-container {
    background: #333333;
    width: 80%;
    z-index: 10;

    border-radius: 20px;
    padding: 20px;
    position: relative;
    border: 3px solid var(--amarillo);
}

.contratar .contratar-container .cerrar {
    position: absolute;
    top: 10px;
    right: 0px;
}

.contratar .contratar-container p {
    color: var(--grisclaro);
    font-size: 20px;
    line-height: 30px;
}

.contratar .contratar-container .btn-contratar-magiei {
    background: var(--grisclaro);
    border: 40px;
    color: #000;
    padding: 10px;
    border: none;
    margin-top: 40px;
    font-size: 20px;
    border-radius: 30px;
    min-width: 200px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    text-align: center;
}

.contratar .contratar-container span.logo {
    display: inline-block;
    width: 200px;
    height: 50px;
    background: url(../assets/img/YoDenuncio.svg) no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
}

.contratar .contratar-container span.logoMagiei {
    display: inline-block;
    width: 100px;
    height: 30px;
    background: url(../assets/img/magiei.png) no-repeat;
    background-size: contain;
    background-position: top;
    vertical-align: middle;
}


@media only screen and (max-width: 600px) {
    .title-logo {
        width: 80%;
        margin-top: 170px;
        margin-bottom: 0px;
        max-width: none;
    }

    /*CONTENEDORES PRINCIPALES*/
    .denuncia-container {
        width: 90%;
        margin: 0 auto;
        height: 238px;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .company_selection {
        width: 100%;
        margin-bottom: 10px;
    }

    .elements-containter {
        width: 84%;
    }

    /*SUBCONTENEDORES*/
    .div-botones {
        margin: 11px 0px !important;
    }

    /*DISENIOS INDIVIDUALES*/
    .globo {
        width: 40px;
        display: block;
        margin-left: 11px;
        margin-bottom: 0px;
        margin-right: 12px;
    }

    .globo_no_mostrado {
        display: none;
    }


    .button_without_margin {
        margin: 0px 0px 30px 30px;
    }

    .title_selection {
        margin: 0 auto;
        width: 85%;
        grid-auto-flow: column;
        align-items: center;
    }

    .marco-label {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .combobox {
        margin: 0 auto;
        margin-bottom: 11PX;
        width: 85% !important;
        background: white;
        font-size: 12px;
        /*border: solid 3px var(--amarillo);*/
    }
    
    .comboEmpresa{
        background: white;
        border: solid 3px var(--amarillo);
    }
    
    .denuncia_mascara {
        width: 100% !important;
        margin: 10px 0px !important;
        
    }
    .combobox input {
        width: 91% !important;
    }

    .button-enviar {
        margin-top: 10px !important;
    }

    /*TOGGLE SWITCH DESIGN CONTROLLER*/
    .right_position_toggle {
        text-align: right;
        margin-right: 10px;
    }
    .toggleButton {

        margin-right: 15px;
        max-width: 43px;
        width: 40%;

    }
    .toggleButton.activo span {
        left: 20.2px;
    }

}
