#modal::backdrop{
    background-color: rgba(0, 0, 0, 0.5);
}

#modal{
    max-width: 50vw;
}

.modal-content{
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: end;
}

#imagen-medidas{
    object-fit: contain;
    max-width: 90%;
}

#btn-abrir-modal{
    font-family: "Urbanist", Sans-serif;
    padding: 1% 5% 1% 5%;
    color: #000000;
    background-color: #ffff;
    transition: all 0.5s;
    border-color: black;
    font-weight: 600;
    border-radius: 5px;
}

#btn-abrir-modal:hover{
    color: white;
    background-color: #222;
    transition: all 0.5s;
    border-color: black;
    font-weight: 600;
    border-radius: 5px;
}

#btn-cerrar-modal {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding-right: 1vw;
}

@media (max-width: 769px) {
    #modal{
        max-width: 90vw;
    }
}

@media (max-width: 480px){
    .show_image_measurements{
        display: flex;
        justify-content: center;
        padding-bottom: 10vh;
    }

    #modal{
        max-width: 99vw;
    }

    .modal-content{
        flex-direction: column-reverse;
        align-items: end;
    }

    #imagen-medidas{
        max-width: 100%;
    }
}