.modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000ab;
    z-index: 10000;
    top: 0;
    left: 0;
    align-items: center;
}

.fade {
    display: none;
}

.show {
    display: flex;
}

.modal-dialog {
    margin: 100px auto;
    padding: 8px;
    border-radius: 16px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #E0E0E0 0%, rgba(224, 224, 224, 0.85) 100%), url(../assets/paper.jpg) lightgray 50% / cover no-repeat;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 424px;
}

body.dark .modal-dialog,
body.dark .block-rounded.shadow-none {
    background: url(../assets/paper_black.jpg) center / cover no-repeat;
}

body.dark .modal-content {
    background: #BD9C49;
}

.modal-content {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 3px;
    background: linear-gradient(180deg, #4D4336 0%, #714A27 63.5%, #AA8E75 79%, #5E5548 98.5%);
}

.block-rounded.shadow-none {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), linear-gradient(180deg, #E0E0E0 0%, rgba(224, 224, 224, 0.85) 100%), url(../assets/paper.jpg) lightgray 50% / cover no-repeat;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 20px;
}

.block-header.block-header-default {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.block-header-default .block-title {
    font-family: Evolventa Bold;
    font-size: 18px;
    line-height: 120%;
}

.btn-block-option i {
    display: none;
}

.btn-block-option {
    background: url(../assets/close.svg) center / contain no-repeat;
    width: 20px;
    height: 20px;
}

#form-balance-transfer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-floating input {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    padding: 10px;
    font-family: Evolventa Bold;
    font-size: 14px;
    line-height: 120%;
}

body.dark .form-floating input {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25) inset, 2px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
    border: none;
    color: #F7F7F7;
}

body.dark #balance-character_id {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25) inset, 2px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
    border: none;
    color: #F7F7F7;
}

body.dark .btn-block-option {
    filter: brightness(0) saturate(100%) invert(98%) sepia(10%) saturate(373%) hue-rotate(220deg) brightness(117%) contrast(81%);
}

.form-label {
    font-family: Evolventa Bold;
    font-size: 14px;
    line-height: 120%;
}

.required.mb-3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#balance-character_id {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #E7E7E7;
    background: #FFF;
    padding: 10px;
    font-family: Evolventa Bold;
    font-size: 14px;
    line-height: 120%;
}