/* address tab */

.wallet--tab .nav-tabs {
    border-color: var(--color-border);
}

.wallet--tab .nav-item .nav-link {
    background-color: var(--color-layout);
    border-radius: 0px;
    border: none;
    color: var(--color-layout-text);
    font-weight: 500;
    padding: 4px 16px;
    font-size: 14px;
}

.wallet--tab .nav-item .nav-link.active {
    background-color: var(--color-primary);
    border-radius: 0px;
    border: none;
    color: var(--color-button-text);
    font-weight: 500;
}

/* content */

.wallet--tab .tab-content {
    margin-top: 25px;
}

/* address wrapper */

.wallet--wrapper {
    background-color: var(--color-body);
    border-radius: var(--common-radius);
    padding: 0px;
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
}

@media (min-width: 1px) {
    .wallet--wrapper {
        flex-direction: column;
    }
}

@media (min-width: 768px) {
    .wallet--wrapper {
        flex-direction: row;
    }
}

/* part */

.wallet--part:last-of-type {
    margin-bottom: 0px;
}

.wallet--part {
    display: block;
    background-color: var(--color-layout);
    border-radius: var(--common-radius);
    padding: 20px 18px;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .wallet--part {
        display: inline-block;
        /*width: 48%;*/
        width: 100%;
        margin-bottom: 0px;
    }
}

/* top */

.wallet--part-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 5px;
}

.wallet--part-top h6 {
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.wallet--part-top .btn {
    padding: 0px;
    font-size: 16px;
    color: var(--color-text);
    background-color: var(--color-layout);
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    margin-left: 7px;
    border-radius: 50%;
}

.wallet--part-top .btn:hover {
    background-color: var(--color-primary);
}

.wallet--part-top .btn.danger:hover {
    background-color: var(--bs-danger);
}

.wallet--part-top .btn.create {
    font-size: 14px;
    width: auto;
    height: auto;
    border-radius: var(--common-radius-md);
    margin: 0px;
    padding: 0px 4px;
}

.wallet--part-top .btn.create svg {
    background-color: var(--color-primary);
    font-size: 17px;
    margin-left: 8px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
}

/* middle */

.wallet--part-middle {
    display: block;
}

.wallet--wrapper {
    display: block;
    text-align: center;
}

.wallet--wrapper img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 10px;
    margin-top: 0px;
    filter: brightness(0) invert(1);
}

.wallet--wrapper img.invert-icons {
    filter: unset;
}

.wallet--wrapper .price {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.4px;
    margin-bottom: 0px;
}

.wallet--wrapper .currency {
    font-size: 14px;
    font-weight: 500;
    margin-left: 7px;
}

.wallet--wrapper .currency:before {
    content: "(";
    font-size: 10px;
    margin-right: 3px;
}

.wallet--wrapper .currency:after {
    content: ")";
    font-size: 10px;
    margin-left: 3px;
}

/* submit */

.btn--submit.for-wallet {
    margin-top: 5px;
    width: 140px;
}

/* wallet checkbox */

.wallet--switch {
    background-color: var(--color-layout);
    padding: 3px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: var(--common-radius);
}

.wallet--switch input {
    margin: 0px !important;
    height: 14px;
    min-width: 40px;
}

/* price */

.wallet--switch-total {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.wallet--switch label {
    padding: 0px;
    margin: 0px;
    margin-left: 12px;
}

.wallet--switch label span {
    font-size: 14px;
    margin-left: 9px;
    font-weight: 600;
}

.wallet--switch label span:before {
    content: "(";
    font-size: 11px;
    margin-right: 3px;
}

.wallet--switch label span:after {
    content: ")";
    font-size: 11px;
    margin-left: 3px;
}
