#deposit-dialog .dialog-content {
    width: 480px;
}

#deposit-dialog .dialog-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#deposit-dialog .dialog-header-container .dialog-header-title-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#deposit-dialog .dialog-header-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

#deposit-dialog .dialog-header-container img {
    border-radius: 50%;
}

#deposit-dialog .dialog-title {
    text-align: left;
    width: 100%;
    color: #0082ff;
    font-size: 21px;
    margin-bottom: 10px;
    line-height: 31.5px;
}

#deposit-dialog .dialog-description {
    color: #535353;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 34px;
    text-align: left;
    font-weight: medium;
}

.travel-rule .card-header > h1 {
    color: #0082ff;
    font-weight: bold;
    font-size: 21px !important;
    text-align: left;
}

.travel-rule .card-header {
    padding: 0 20px;
    border-bottom: 1px solid #e9e9e9;
    margin-left: -20px;
    margin-right: -20px;
}

.travel-rule .cancel {
    color: #808182;
    font-size: 13;
    text-align: center;
}

.travel-rule label {
    color: #535353;
    font-weight: bold;
    font-size: 16px;
}

.travel-rule .withdraw-note {
    background-color: #f4e2d1;
    color: #ff7c04;
    padding: 10px 15px;
    gap:10px;
    width: 100%;
    text-align: left;
    border-radius: 8px;
    font-size: 14px !important;
    line-height: 18px;
    display:flex;
    align-items:center;
}

.travel-rule .withdraw-note.withdraw-note-info {
    background-color: #D4EAFF;
    color: #000;
    font-size: 14px !important;
}


.travel-rule .withdraw-note svg {
    flex-shrink: 0;
    width:18px;
    height:18px;
}
.travel-rule #address:read-only {
    padding-left: 44px;
}

.travel-rule #address:read-only + .spin-loader {
    display: block !important; /* Show loader when input is readonly */
}

.spin-loader {
    width: 22px;
    height: 22px;
    border: 2px solid #d4eaff; /* Light gray border */
    border-top: 2px solid #007af0; /* Darker border for the spinning effect */
    border-bottom: 2px solid #007af0; /* Darker border for the spinning effect */
    border-right: 2px solid #007af0; /* Darker border for the spinning effect */
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
    position: absolute;
    top: calc(50% - 11px);
    left: 12px; /* Adjust based on spacing needs */
    z-index: 1;
    display: none;
}

.input-loader-wrapper {
    position: relative;
}

@keyframes spin-loader {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.wallet-tag {
    position: absolute;
    right: 8px;
    font-size: 10px;
    font-weight: bold;
    padding: 0px 8px;
    border-radius: 4px;
    top: 8px;
    background-color: #f6f7f9;
    color: #808182;
}

.wallet-tag.hosted {
    background-color: #d4eaff;
    color: #007af0;
}

.wallet-tag.unknown {
    background-color: #f0f0f0;
    color: #808182;
}
.travel-rule .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    padding-top: 36px;
    padding-bottom: 30px;
}
.travel-rule .bordered {
    padding-top: 0px !important;
}
.travel-rule .card-header h1 {
    margin-bottom: 0px !important;
}

.wallet-status.pending,
.wallet-status.under_review {
    background-color: #fdedd3;
    color: #000;
   }

.wallet-status.approved,
.wallet-status.confirmed,
.wallet-status.confirmed_by_vasp,
.wallet-status-list.approved,
.wallet-status-list.confirmed,
.wallet-status-list.confirmed_by_vasp {
  background-color: #E3FCE5;
  color: #000;
}

.wallet-status {
  font-size: 12px;
    padding: 0px 12px;
    border-radius: 10px;
}

.wallet-status-list {
    padding: 12px;
    background-color: lightgray;
}
.wallet-status-list.approved,
.wallet-status-list.confirmed,
.wallet-status-list.confirmed_by_vasp {
    color: #535353;
}

.wallet-status-list.pending,
.wallet-status-list.under_review {
    background-color: #fdedd3;
    color: #535353;
}

.wallet-status.denied,
.wallet-status.declined,
.wallet-status.rejected,
.wallet-status.rejected_by_vasp,
.wallet-status.declined_by_vasp,
.wallet-status-list.denied,
.wallet-status-list.declined,
.wallet-status-list.rejected,
.wallet-status-list.rejected_by_vasp,
.wallet-status-list.declined_by_vasp {
    background-color: #DEBABA;
}

.travel-rule .summary .summary-row {
    border-bottom: 1px solid #e9e9e9;
    padding: 22px 0px;
    display: flex;
    justify-content: space-between;
    gap:14px;
}

.travel-rule .summary .summary-row > span:first-child {
    font-size: 13px;
    color: #808182;
}

.travel-rule .summary .summary-row > span:nth-child(2) {
    font-size: 16px;
    font-weight: bold;
    color: #535353;
    white-space: break-spaces;
    word-break: break-all;
    text-align: start;
}
.btn > .checkmark {
    display: none;
}
.btn.checked > .checkmark {
    display: inline;
    color: white;
}

.select2-selection__clear {
    margin-right: 10px !important; /* Move it away from the border */
    font-size: 18px !important; /* Make it larger */
    cursor: pointer;
}

/* Make "Add new address" white on hover */
.select2-results__option.special-option {
    color: #0082FF /* Default color */;
    font-weight: bold;
}

.select2-results__option.special-option:hover {
    color: white !important; /* Change text to white on hover */
}

table.break-values {
    word-break: break-word;
}

.withdraw-note a {
    color: #0081FF;
    text-decoration: underline;
}
