.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 111;

    background-color: rgba(0, 0, 0, .3);
}

.modal.active {
    display: block;
}

.modal-wrapper {
    width: 90%;
    max-width: 400px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    border-radius: 32px;
}

.modal-wrapper img {
    width: 100%;
}

.modal-wrapper h4 {
    
}

.modal-wrapper p {

}

.modal-wrapper button {
    border: none;
    background-color: #1A5CC0;
}
.modal-wrapper button:hover {
    color: #ffffff;
    background-color: #1A5CC0;
}
