.modal {
    position: fixed;
    display: none;
    width: fit-content;
    max-width: 94%;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    overflow: auto;
    background-color: #fff;
    padding: 2.5rem;
    z-index: 11;
}

.modal .close {
    position: absolute;
    display: block;
    right: 15px;
    top: 15px;
    width: 24px;
    height: 24px;
    background: url("/images/icons/icon-close.png") no-repeat;
    cursor: pointer;
    text-indent: -9999em;
    border: 0;
}