.modal-button {
    cursor: pointer;
    margin: 0 auto;
    width: 300px;
}

.modal {
    display: none;
    height: 100vh;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: scroll;
}

.modal__contents {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    width: 90%;
    max-height: 90vh;
}

.modal__body {
    position: relative;
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
}

.modal__close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.modal__close-button span {
    display: inline-block;
    vertical-align: middle;
    color: #ff663f;
    line-height: 1;
    width: 25px;
    height: 3px;
    background-color: #ff663f;
    position: relative;
    transform: rotate(45deg);
}
.modal__close-button span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff663f;
    border-radius: inherit;
    transform: rotate(90deg);
}


.modal-bg {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

body.scroll-stop {
    overflow: hidden;
}
