.fdmodal-web {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    width: -webkit-fill-available;
    background-color: #00000080;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.fdmodal-web.active {
    display: flex !important;
}

.fddialog-box {
    width: 450px;
    border-radius: 16px;
    background-color: white;
    overflow: hidden;
}

.fddialog-head {
    padding: 20px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-bottom: #e6e6e6 solid 1px;
}

.fddialog-body {
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
}

.fddialog-body span {
    font-weight: 600;
}

.fddialog-footer {
    display: flex;
    justify-content: right;
    padding: 10px 10px 20px 10px;
}

.fddialog-footer button {
    font-size: 14px;
    padding: 12px 25px;
    border-radius: 40px;
    cursor: pointer;
    border: transparent solid 1px;
    margin-right: 5px;
}

.fddialog-footer button.c {
    background-color: transparent;
    border: #e6e6e6 solid 1px;
}

.fddialog-footer button.b {
    background-color: #000;
    color: white;
    border: #000 solid 1px;
}

.fddialog-footer button.r {
    background-color: rgb(239 68 68);
    border: rgb(239 68 68) solid 1px;
    color: white;
}

.fddialog-footer button:nth-last-child(1) {
    margin-right: 0;
}