.dialog_bg {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
    transition: all ease-in-out 100ms;
}

.dialog {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 646px;
    max-height: 95vh;
    background-color: #fff;
    border-radius: 4px;
    margin: 0 16px;
    font-size: 14px;
    line-height: 1.5;
}

.dialog p {
    margin-bottom: 16px;
}

.dialog ul li {
    list-style: none;
    margin-bottom: 16px;
}

.mb-2 {
    margin-bottom: 8px !important;
}

.dialog__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.dialog__header {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.dialog__header__title {
    padding: 16px 20px;
    font-size: 24px;
    margin: 0;
}
.dialog__header__close-icon {
    width:24px;
    margin: 10px;
    cursor: pointer;
}
.dialog__header__close-icon path {
    stroke: none;
    fill: rgb(150,150,150)
}

.dialog__content {
    overflow: auto;
    padding: 0px 20px 16px 20px;
    overscroll-behavior: contain;
}