.custom-dialog__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.custom-dialog__wrapper[data-visible="true"] {
    display: block;
}

.custom-dialog__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 800px;
}

.dialog__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dialog__header .dialog__title {
    text-align: center;
    width: 100%;
    font-weight: 700;
    font-size: 20px;
}

.dialog__header .dialog__close {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .dialog__header {
        margin-bottom: 10px;
    }

    .dialog__header .dialog__title {
        text-align: center;
        width: 100%;
        font-weight: 700;
        font-size: 18px;
    }

    .custom-dialog__content {
        padding: 10px;
        width: 75%;
    }
}