.frame {
    opacity: 1;
    height: auto;
    overflow: visible;
    filter: blur(0);
    transition: opacity 0.6s ease, filter 0.6s ease, height 0.6s ease;
}

.frame:not(.active) {
    opacity: 0;
    height: 0;
    filter: blur(5px);
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.frame.active {
    opacity: 1;
    height: auto;
    filter: blur(0);
    visibility: visible;
    pointer-events: auto;
}

.frame button,
.frame a {
    width: 100%;
    margin: 5px 0px;
}

.navi-area .navi-breadcrumb {
    display: block;
    color: #198754;
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.navi-area .navi-title {
    display: block;
    font-size: 1.05rem;
}

.navbar a {
    text-decoration: none;
    color: inherit;
}

/* --- MODAL - USER WALLET --- */

.wallet-information table td {
    text-align: left;
    padding: 5px;
}

.wallet-img-frame {
    height: 70px;
    width: 100%;
    position: relative;
    display: inline-block;
}

.wallet-img-frame img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
}

.--centerized-box {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.--centerized-item {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}