.modal-body {
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    padding: 2em;
    border: 1px solid #888;
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-content .wrapper {
    padding: 0;
}

.modal-content .modal-options {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

@media screen and (max-width: 736px) {
    .modal-content {
        width: 100%;
    }

    .modal-content .modal-options {
        flex-direction: column;
    }
}
