.bodyForModal {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 999;
    background: #fff;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    overflow: hidden;
}

.modal::-webkit-scrollbar {
    display: none;
}

.bodyForModal::-webkit-scrollbar {
    display: none;
}

.closeButton {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-right: 20px;
    cursor: pointer;
}