.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    min-height: 80%;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
    background-color: #fefefe;
    border-top: 1px solid #aaa;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
    box-shadow: 0 -1px 2px 1px rgba(0, 0, 0, 0.183);
    z-index: 999;
 
}

.modal.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0%);
}

.modal-content {
    padding: 20px;
    text-align: center;
}


.topModal {
    display: flex;
    z-index: 999;
}

.handle {
    display: block;
    width: 100px;
    margin: 0 auto;
    text-align: center;
    background-color: rgb(123, 111, 111);
    user-select: none;
    cursor: grab;
    height: 8px;
    border-radius: 10px;
}
.close {
    font-size: 40px;
    position: absolute;
    right: 10px;
    top: 0px;
    cursor: pointer
}

