#modal{
    display: none;
    position: absolute;
    top: 15%;
    left: 20%;
    z-index: 100;
    background-color: white;
    min-width: 65%;
    width: 65%;
    max-width: 65%;
    padding: 10px;
    height: auto;
    border: 1px solid black;
    border-radius: 20px;
}

#opacidad{
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}

#cerrarModal{
    position: absolute;
    right: 1%;
    top: 1%;
    background-color: red;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 50px;
    border: 0px;
    color: white;
    font-weight: bold;
}

#cabezaModal{
    background: linear-gradient(90deg, rgba(214,0,254,1) 0%, rgba(136,1,254,1) 77%);
    min-width: 100%;
    width: 100%;
    height: 80px;
    max-width: 100%;
    /*padding: 15px;*/
    text-align: center;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}

#cabezaModal > h2{
    font-size: 1.8em;
    font-weight: bold;
    font-size: 500;
    color: white !important;
}

#cuerpoModal{
    padding: 10px;
    font-size: 20px;
}

.btn-modal{
    display: flex;
    justify-content: center;
}

#cuerpoModal  > .btn-modal > button{
    background: linear-gradient(90deg, rgba(214,0,254,1) 0%, rgba(136,1,254,1) 77%);
    font-size: 1em;
    padding: 20px 25px;
    border: 0px;
    color: white;
    font-weight: bold;
    border-radius: 20px;

}


#term-condi{
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    color: #222;
    margin: 10px;
    text-align: center;

}


#term-condi p{
    font-size: 1em;

}


@media only screen and (max-width: 770px) {

    #modal{
        top: 3%;
        left: 5%;
        z-index: 100;
        min-width: 85%;
        width: 85%;
        max-width: 85%;
    }
    #term-condi p{
        font-size: 0.65em;

    }

    #cuerpoModal  > .btn-modal > button{
        padding: 17px 17px;

    }


}


@media only screen and (max-width: 570px) {
    #cuerpoModal  > .btn-modal > button{
        padding: 12px 12px;
        font-size: 0.9em;

    }
}
