@font-face {
    font-family: myFont;
    src: url(../fonts/Gotham\ Black\ Regular.ttf)
}

@media only screen and (max-width: 780px) {
    .correcto div {
        width: 85% !important;
        color:#000 !important;
    }
    .text_erro {
        width: 85%;
    }
    .but-help {
        display: none;
    }

    .but-help_movil{
        width: 100px;
        background: #EBE26D;
        font-weight: bold;
        color: black;
        border: 0 none;
        border-radius: 1px;
        cursor: pointer;
        padding: 10px 5px;
        margin: 10px 5px;
        display:block;
    }

    .but-help_movil a{
        color:black !important;
        text-decoration: none;
    }
}

.correcto{
    color:#000 !important;
}

body {
    margin: 0 !important;
    font-family: myFont;
    height: 100vh;
    overflow: visible;
}

#logo {
    text-align: center;
    background-color: #EBE26D;
    color: #000;
    height: 100px;
}

#ejemplo2 {
    text-align: center;
    color: #000;
    background-color: #EBE26D;
}

.contenedor {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#cuadro {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;

    background-image: url(../img/47.jpg);
    background-size: cover;
    background-position: center center;
}

#formulario {
    display: none;
    flex: 1 1 auto;
    display: flex;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    background-image: url(../img/bg_form.jpg);
    background-position: center center;
    background-size: cover;
}

.fa-angle-down {
    position: absolute;
    font-size: 80px;
    color: black;
    position: absolute;
    font-size: 80px;
    bottom: 0;
}

.flecha {
    position: absolute;
    width: 100%;
    bottom: 0;
    text-align: center;
    height: 100px;
}

.surf {
    position: absolute;
    width: 2%;
    right: 0;
    top: 350px;
    display: flex;
    z-index: 8;
    flex-direction: column;
}

.surf>.dot {
    cursor: pointer;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    margin: 30px 0 0 0;
}

.surf>.dot:first-child {
    margin: 0 0 0 0;
}

/*INICIO*/

#fas {
    color: white;
}

/*FORMULARIO*/

#msform {
    width: 400px;
    margin: auto;
    text-align: center;
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 3px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/

#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/

#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 13px;
}

#msform select {
    padding: 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 3px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    color: #2C3E50 !important;
    font-size: 13px !important;
}

/*buttons*/

#msform .action-button, .but-help {
    width: 100px;
    background: #EBE26D;
    font-weight: bold;
    color: black;
    border: 0 none;
    border-radius: 1px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #948f45;
}

/*headings*/

.fs-title {
    font-size: 15px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px;
}

.fs-subtitle {
    font-weight: normal;
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

/*progressbar*/

#progressbar {
    padding: 0;
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 9px;
    width: 33.33%;
    float: left;
    position: relative;
}

#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 20px;
    line-height: 20px;
    display: block;
    font-size: 10px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
}

/*progressbar connectors*/

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: white;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1;
    /*put it behind the numbers*/
}

#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none;
}

/*marking active/completed steps green*/

/*The number of the step and the connector before it = green*/

#progressbar li.active:before, #progressbar li.active:after {
    background: #EBE26D;
    color: black;
}

/*END FORMULARIO*/

@media only screen and (max-width:768px) {
    #logo img {
        width: 100%;
    }
    .surf {
        display: none;
    }
}

/*ERROR CAMPOS VACIOS*/

.error {
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 9;
    justify-content: center;
    align-items: center;
}

.text_erro {
    width: 43%;
    height: 195px;
    background-color: #fff;
    border-radius: 5px;
}

.text_erro>.sub_tex_erro {
    height: 75%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.text {
    text-align: center;
}

.but {
    text-align: center;
}

.but button {
    margin: auto;
    width: 75px;
    height: 25px;
    font-size: 15px;
    padding: 1px !important;
}

#load {
    display: none;
}

/*Correcto*/

.correcto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.correcto div {
    width: 25%;
    background-color: #fff;
    padding: 2% 4%;
    /* border-radius: 20px; */
}
.but-help_movil{
    display: none;
}




/*Ayuda*/

.help {
    display: block;
    position: absolute;
    bottom: 0;
}

/*modal Help*/

#modal {
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 9;
}

.bg-modal-help {
    position: absolute;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-help {
    width: 75%;
    background-color: #fff;
}

.cerrar {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 0;
}

.cerrar {
    display: block;
    box-sizing: border-box;
    position: absolute;
    top: 15px;
    color: #fff;
    right: 15px;
    font-size: 35px;
    cursor: pointer;
}