.v-dialog {
    font-family: 'Noto Sans', sans-serif;
    color: var(--text-primary);
    font-style: normal;
    line-height: 20px;
    align-items: center;
    bottom: 0;
    display: none;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 8px;
    position: fixed;
    right: 0;
    top: 0
}

.v-dialog-body .content {
    padding: 0;
}

.v-dialog.v-dialog-sm .v-dialog-container {
    max-width: 450px;
}

.v-dialog.v-dialog-lg .v-dialog-container {
    box-shadow: none;
    max-width: 960px
}

.v-dialog.active,
.v-dialog:target {
    display: flex;
    display: -ms-flexbox;
    opacity: 1;
    z-index: 400
}

.v-dialog.active .v-dialog-overlay,
.v-dialog:target .v-dialog-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 40, 58, 0.3);
    top: 0;
    z-index: 0;
}

.v-dialog.active .v-dialog-container,
.v-dialog:target .v-dialog-container {
    animation: slide-down .2s ease 1;
    z-index: 1
}

.v-dialog-container {
    display: flex;
    width: 100%;
    max-width: 675px;
    background-color: var(--white);
    box-shadow: 0px 0px 1px rgb(26 32 36 / 32%), 0px 1px 2px rgb(91 104 113 / 32%);
    border-radius: 7px;
    flex-direction: column;
    padding: 25px;
    padding-bottom: 0;
}

.v-dialog-container.v-dialog-fullheight {
    max-height: 100vh
}

.v-dialog-container .v-dialog-header {
    color: #454d5d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.v-dialog-container .v-dialog-header .v-dialog-title {
    font-size: 21px;
    font-weight: 400;
}

.v-dialog-container .v-dialog-body {
    padding: 0;
    position: relative;
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    margin-top: 25px;
}

.v-dialog-container .v-dialog-body .v-dialog-input {
    display: block;
    width: 100%
}

.v-dialog-container .v-dialog-body .prompt-error-message {
    color: #d9534f;
    font-size: 14px
}

.v-dialog-container .v-dialog-footer {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-dialog-container .v-dialog-btn {
    font-family: 'Noto Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-7);
    border: 1px solid transparent;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    transition: all ease-in-out 0.3s;
    text-transform: capitalize;
    padding: 7px 10px;
}

.v-dialog-container .v-dialog-btn.success {
    color: var(--white);
    background-color: var(--accent-primary);
    box-shadow: inset 0px -1px 0px rgb(0 0 0 / 20%);
    margin-left: auto;
}

.v-dialog-container .v-dialog-btn.v-dialog-btn-danger {
    color: #d9534f
}

.v-dialog-container .v-dialog-btn.v-dialog-btn-close {
    height: 20px;
    line-height: 20px;
    margin-left: 8px;
    padding: 0;
    width: 20px;
    color: #50596c;
}

.v-dialog-container .v-dialog-btn.v-dialog-btn-close:before {
    content: "\2715"
}

.v-dialog-container .v-dialog-btn.disabled,
.v-dialog-container .v-dialog-btn:disabled,
.v-dialog-container .v-dialog-btn[disabled] {
    cursor: default;
    opacity: .5;
    pointer-events: none
}