#hngng-tab-container {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
}

#hngng-tab-container .tabs {
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
    margin-bottom: -1px;
}

#hngng-tab-container .tab-holder {
    position: relative;
    height: 160px;
    border-radius: 25px;
    background: var(--block-color);
    border: 1px solid var(--block-border-color);
    z-index: 1;
}

#hngng-tab-container .tab {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: opacity 150ms;
}

#hngng-tab-container .tab-content {
    padding: 20px;
    text-align: left;
}

#hngng-tab-container .tab-content.imgs {
    height: 100%;
}

#hngng-tab-container .tab-content.imgs>div {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    height: 80%;
    align-items: center;
    overflow: auto;
}

#hngng-tab-container .tab-content.imgs>div::-webkit-scrollbar {
    width: 3px;
}

#hngng-tab-container .tab-content.imgs img {
    margin: 5px;
}

#hngng-tab-container label {
    background: #ececec;
    margin: 0 2px;
    padding: 10px 15px;
    width: 17%;
    text-align: center;
    transition: 150ms ease-in-out;
    z-index: 1;
    position: relative;
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 10px 10px 0 0;
    border: 1px solid var(--block-border-color);
    border-bottom: 0px;
}

#hngng-tab-container label:hover {
    cursor: pointer;
}

#hngng-tab-container input.hidden {
    display: none;
}


#hngng-tab-container #tab-1:checked~.tabs label[for="tab-1"],
#hngng-tab-container #tab-2:checked~.tabs label[for="tab-2"],
#hngng-tab-container #tab-3:checked~.tabs label[for="tab-3"],
#hngng-tab-container #tab-4:checked~.tabs label[for="tab-4"] {
    width: 20%;
    background: #fff;
    color: #000000;
}

#hngng-tab-container #tab-1:checked~.tab-holder #tab-1,
#hngng-tab-container #tab-2:checked~.tab-holder #tab-2,
#hngng-tab-container #tab-3:checked~.tab-holder #tab-3,
#hngng-tab-container #tab-4:checked~.tab-holder #tab-4 {
    opacity: 1;
    z-index: 1;
}

.bank-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bank-item {
    list-style: circle !important;
    margin: 0 0 10px;
    width: 48%;
}

.bank-category.full {
    display: block;
}

.bank-category.full .bank-item {
    width: 100%;
}

.bank-price {
    font-weight: bold;
}