
.modal-custom {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.671);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    min-width: 400px;
    z-index: 8;
    overflow: auto;

}
.modal-content-custom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 500px;
    border-radius: 0.5rem;
    
}

.modal-custom-full {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.671);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content-custom-full {
    position: relative;
    width: 50vw; /* O 100vw si quieres sin margen */
    height: 82vh; /* O 100vh si quieres sin margen */
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    overflow-y: auto;
    box-sizing: border-box;
}

.close-button {
    width: 4rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    padding: 5px;
    z-index: 9999;
    font-size: 2em;
    color: #000;
    margin: -10px;
}
.close-button:hover {
    opacity: .7;
}

.close-modal{
    position: absolute;
    top: 0;
    right: 12px;
}
.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
    z-index: 9999!important;
    overflow: auto;
}

.modal-custom ul li{
    list-style: none;
}

.botom-modal{
    width: 100%;
    text-align: center;
}

.box-hide{
    display: none;
}

.botom-modal button{
    border: none;
    padding: 6px 20px;
    background-color: #3f51b5;
    border-radius: 5px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    -webkit-box-shadow: -2px 4px 16px -2px rgb(45 46 44 / 25%);
    -moz-box-shadow: -2px 4px 16px -2px rgba(45, 46, 44, .25);
    box-shadow: -2px 4px 16px -2px rgb(45 46 44 / 25%);
}
.botom-modal button:hover{
    opacity: .9;
}

.text-modal {
    margin:2em;
}
.text-modal p{
    font-size: 15px;
    color: #000;
}
.text-modal h4,h3,h2{
    font-family: arial;
    color: #000;
    font-weight: 500;
}

.modal-title{
    font-weight: 600;
    color: rgb(22, 22, 22);
    font-size: 16px;
}


@media screen and (max-width: 568px ) {
    .modal-content-custom {
        width: 400px;

    }
}

@media screen and (max-width: 768px){
    .modal-content-custom {
        padding: 1rem .2em;
        width: 90%;
    }   

    .modal-title{
        padding-left: 2em;
    }

    .modal-content-custom {
        top: 10%;
        margin-top: 30rem;
        
    }
}