.home_asset_codebox {
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    display: flex;
    flex-direction: column;
}

.home_asset_tab {
    width: 100%;
    height: 100%;
}

.home_asset_tabList {
    display: flex;
}

.home_asset_title {
    background-color: rgba(10, 9, 37, .12);
    width: fit-content;
    border-radius: 7px 7px 0 0;
    color: #262626;
    text-align: center;
    padding: 10px 10px;
    cursor: pointer;
}

.home_asset_tab_active {
    color: white;
    background-color: #0A0925;
}

.home_asset_restitle {
    color: white;
    background-color: rgb(47 39 85);
    width: -webkit-fill-available;
    border-radius: 7px 7px 0 0;
    text-align: center;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.home_asset_hide {
    display: none;
}


.home_asset_title>span {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
}

.home_asset_title>span>span,
.home_asset_title>span>div {
    margin-right: 0.5rem;
}

.home_asset_container {
    background: #0A0925;
    max-height: 24rem;
    width: -webkit-fill-available;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 1.5rem;
    color: white;
    font-size: large;
    border-radius: 0 0 5px 5px;
    position: relative;
}

.home_asset_key,
.home_asset_sub-key {
    color: #8B75F2;
}

.home_asset_value {
    color: #87E8DE;
    padding-left: 1rem;
}

.home_asset_value_dark {
    color: #1AB0A1;
}

.home_asset_sub-key {
    padding-right: 1rem;
}

.home_asset_container::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f500;
}

.home_asset_container::-webkit-scrollbar-thumb {
    background-color: #403D82;
    border-radius: 5px;
}

.home_asset_container::-webkit-scrollbar-track {
    background-color: #f5f5f500;
}

.home_asset_footer {
    color: white;
    position: sticky;
    bottom: 0;
    background: #0A0925;
    padding: 1rem 1.5rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-end;
    width: -webkit-fill-available;
}

.home_asset_button {
    background-color: #1169f9;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

#response1,
#response2 {
    display: none;
}

.home_asset_yellow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: yellow;
}

@media (max-width: 650px) {
    .home_asset_footer {
        justify-content: stretch;
    }

    .home_asset_button {
        width: 100%;
    }
}