input[type="radio"] {
    display: none;
}

label {
    color: grey;
}

.clasificacion {
    direction: rtl;
    unicode-bidi: bidi-override;
    font-size: 32px;
    font-size: 3rem;
    display: inline-block;
}

label:hover,
label:hover~label {
    color: orange;
}

input[type="radio"]:checked~label {
    color: orange;
}
.error {
    color: red;
    font-size: 0.9em;
    display: none;
}
.testHeader{
    background-color: #0A132D;
    display: flex;
    padding: 10px 2%;

}
.tituloPagina{
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: left;
    margin-bottom: 5px;
    margin-left: 5px;

}
.subtituloPagina{
    color: white;
    font-size: 1em;
    text-align: center;
    margin-left: 5px;
    margin-top: 0%;
}
.contenedorTitulo{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
}
.navHeader{
    display: flex;
    height: auto;
    margin-left: auto;
}
.elementosNav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 0;
}
.elementosNav a{
    color: white;
    margin: 0 10px;
}
.elementosNav :hover{
    color: none;
}
.logoHeader{
    width: 120px;
    height: auto;
}
.disclaimer{
    background-color: rgba(74, 74, 74, 0.1);
    width: 20%;
    height: 400px;
    display: flex;
    flex-direction: column;
    float: right;
    margin-top: 140px;
    border-radius: 40px;
    border: 2px solid #4A4A4A;
}
.disclaimerTitle{
    color:#4A4A4A;
    margin: auto;
    opacity: 1;
    font-weight: bold;
}
.disclaimerText{
    color:#4A4A4A;
    margin: auto;
    opacity: 1;
    text-align: center;   
}
.cartaProv{
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.errorTextArea{
    text-align: center;
}
.errorTextArea br {
    margin: -5px;
}
body, html{
    margin: 0;
    padding: 0;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

.footer-mb {
    background-color: #0a132d;
    height: 250px;
    color: white;
    text-align: center;
    padding: 10px;
}
.navMobile{
    display: none;
}
.hamburger{
    display: none;
}
.menuMobile{
    display: none;
}

.show-on-mobile{
    display: none;
}
.custom-container{
    width: 50%;
    background-color: white;
}
.dropdown-item:active{
    background-color: #006fb3;
}
.btn:focus{
    box-shadow: none!important;
  
  }
@media (max-width: 800px) {

    .input-group {
        flex-direction: column;
    }

    .input-group-addon, .form-control, .btn {
        margin-bottom: 10px;
    }
    ul {
        list-style-type: none;
        text-align: center;
        padding: 0;
        display: none;
    }

    ul li a {
        color: white;
    }
    .hamburger {
        display: block;
        color: white;
        text-align: right;
        padding: 1%;
    }
    .navbarMobile{
        display: initial;
        background-color: #0A132D;
        width: 100%;
        height: fit-content;
        transition: opacity 0.5s ease, max-height 0.5s ease;
    }
    .menuMobile {
        background-color:rgba(10, 19, 45, 0);
        width: 100%;
        height: fit-content;
        display: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    .input-group {
        flex-direction: row;
    }

    .input-group-addon {
        width: 5%;
    }

    .form-control {
        width: 90%;
    }

    .input-group-addon, .form-control, .btn {
        margin-bottom: 0;
    }
    .col-4{
        width: 100%;
        margin-top: 10%;

    }
    .navHeader{
        display: none;
    }
    .hide-on-mobile{
        display: none;
    }
    .height-fit-content{
        height: fit-content;
        margin-top: 10%;
    }
    .tituloPagina{
        font-size: 1.2em;
    }
    .subtituloPagina{
        font-size: 0.8em;
    }
    .show-on-mobile{
        display: block;
    }
    .custom-container{
        width: 100%;
        background-color: white;
    }

}