.modal-wd {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    border: 2px solid var(--theme-color-1);
    border-radius: 20px;
    width: 100%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    transition: bottom 0.5s ease;
}

.modal-wd.show {
    bottom: 10px;
}
.textmodal {
    display: flex; flex-direction: column; align-items:center; justify-content: center; margin-left: 5px;
}
