    /* Layout */
    
    .main {}
    
    #left-col {
        display: inline-block;
        vertical-align: top;
        width: 350px;
    }
    
    .filters {
        width: 320px;
    }
    
    .filters .action {
        border-top: 1px solid darkslategray;
        margin-top: 10px;
        padding-top: 5px;
    }
    
    #listings-container {
        text-align: left;
        display: inline-block;
        vertical-align: top;
        border: 1px solid #1E1E1E;
    }
    
    #right-col {
        width: 350px;
        display: inline-block;
        vertical-align: top;
    }
    
    #howMany {
        width: 60px;
    }
    
    label.textLabel {
        display: block;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 9pt;
        color: #777;
    }
    
    label {
        color: #777
    }
    /* Scrollbars */
    
    .scrollbars::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
        background-color: black;
    }
    
    .scrollbars::-webkit-scrollbar {
        width: 10px;
        background-color: #F5F5F5;
    }
    
    .scrollbars::-webkit-scrollbar-thumb {
        background-color: #111;
        border: 2px solid #555555;
    }
    /* LISTINGS */
    
    .item-container {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 5px;
        padding-right: 5px;
        /* border-bottom: 1px solid #444; */
    }
    
    .item-container:nth-child(2n) {
        background: #222 !important;
        /* background: #11114b !important; */
    }
    
    .item-image {
        display: inline-block;
        height: 55px;
        width: 55px;
        border-radius: 5px;
    }
    
    .item-info,
    .item-buy {
        display: inline-block;
        vertical-align: top;
        padding-left: 10px;
        text-align: left;
        margin-left: 2px
    }
    
    .item-buy {
        margin-right: 0px;
    }
    
    .buy-info {
        display: inline-block;
        text-align: right;
    }
    
    .item-info {
        width: 270px;
        color: lightgray
    }
    
    .item-price {
        display: inline-block;
        background-color: #999;
        border-radius: 2px;
        padding-left: 2px;
        padding-right: 2px;
        font-size: 12pt;
        margin-top: 3px;
    }
    
    .item-time {
        text-align: right;
        font-size: 9pt;
        color: #888;
    }
    
    .item-rarity-description {
        display: inline-block;
        background-color: #999;
        border-radius: 2px;
        padding: 2px;
        padding-left: 4px;
        padding-right: 4px;
        margin-left: 10px;
        font-size: 9pt;
    }
    
    .mythic {
        background-color: #822423;
    }
    
    .legendary {
        background-color: #9B8755;
    }
    
    .epic {
        background-color: #6A55A4;
    }
    
    .rare {
        background-color: #4D8ABC;
    }
    
    .unrevealed {
        background-color: #666;
    }
    
    .item-container:hover {
        background-color: #2B2B2D !important;
    }
    
    .item-image:hover {
        transform: scale(3);
        transition: 0.3s;
    }
    /* INFO */
    
    #stats {
        font-size: 11pt;
    }
    
    .filters div.left {
        display: block;
        text-align: left;
        padding-left: 5px;
        padding-top: 5px;
        padding-bottom: 0;
    }
    /* WALLET BUTTONS */
    
    button.wallet-button {
        padding: 3px 6px;
    }
    
    button.wallet-button .button-icon {
        margin-bottom: 0px;
    }
    
    button[disabled] {
        background-color: #aaa;
        cursor: not-allowed;
    }
    /* LOGS */
    
    #logs {
        overflow-y: auto;
        max-height: 400px;
        text-align: left;
    }
    
    #logs p {
        margin: 5px;
        padding: 4px;
        border-radius: 3px;
        font-size: 9pt;
        font-weight: 100;
    }
    
    #logs .low {
        background-color: #333;
    }
    
    #logs .normal {
        background-color: #2f4f4f;
    }
    
    #logs .high {
        background-color: #009879;
    }
    
    #logs .important {
        background-color: darkred;
        font-weight: bold;
    }
    
    #logs p.timestamp {
        font-size: 6pt;
        margin: 0;
        padding: 0;
        color: #ddd;
        float: right;
    }
    
    #version {
        color: #999;
        font-size: 9pt;
    }
    
    #mouseover-warning {
        margin: 5px;
        padding: 4px;
        border-radius: 3px;
        font-size: 13;
        background-color: yellow;
        color: black
    }
    /* Blinking BG */
    
    .blink-bg {
        animation: blinkingBackground 3s infinite;
    }
    
    @keyframes blinkingBackground {
        0% {
            background-color: #9B8755;
        }
        50% {
            background-color: darkred
        }
        100% {
            background-color: #9B8755;
        }
    }
    /* Blinking Border */
    
    .blinking-border {
        animation: blinkingBorder 2s infinite;
    }
    
    @keyframes blinkingBorder {
        0% {
            border: 1px solid #1E1E1E;
        }
        50% {
            border: 1px solid yellow;
        }
        100% {
            border: 1px solid #1E1E1E;
        }
    }
    
    #selectedTraits div {
        background: darkslategray;
        margin: 2px 1px;
        padding-top: 3px;
        padding-bottom: 3px;
        padding-left: 10px;
        padding-right: 4px;
        border-radius: 20px;
        color: #999;
        display: inline-block;
        font-size: 11pt;
    }
    
    #selectedTraits button {
        margin: 0;
        padding: 0;
        margin-left: 5px;
        border-radius: 10px;
        width: 20px;
        height: 20px;
    }
    
    .traitFilters {
        margin-top: 5px;
        border-bottom: 1px solid #444;
        border-top: 1px solid #444;
        padding-bottom: 7px !important;
    }
    
    #btnAddTraitFilter,
    #btnPrivateKeyConnect {
        padding: 5px;
        margin: 0px;
        width: 20px;
    }
    
    #spanPrivateKeyWalletId {
        color: #777;
        font-size: 10pt;
        font-weight: bold;
    }
    
    #collection-description {
        color: lightgray;
        max-width: 800px;
        font-size: 10pt;
    }
    /* Info Cards */
    
    .info-card {
        background-color: #2B2B2D;
        border-radius: 5px;
        display: inline-block;
        font-size: 10pt;
        margin: 3px;
        padding: 5px;
    }
    
    .info-card-title {
        text-align: left;
        text-transform: uppercase;
        font-weight: bold;
        color: #777;
        font-size: 10pt;
        height: 20px;
        text-align: center;
        margin-bottom: 3px;
    }
    
    .info-card-provider {
        display: inline-block;
        border-right: 1px solid darkslategray;
        padding: 0px 15px;
    }
    
    .info-card-provider:last-child {
        border-right: none;
    }
    
    .info-card-provider .key {
        margin: 0;
        color: lightgray
    }
    
    .info-card-provider .value {
        margin: 0;
        font-weight: bold;
    }
    /* Responsive */
    
    @media only screen and (max-width: 768px) {
        /* #left-col {
            width: 100%;
        }
        .filters {
            width: 100%;
            margin-left: 0px !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
        } */
        /* LISTINGS */
        #listings-container {
            margin-top: 10px;
            margin-bottom: 10px;
            border-top: 20px solid #2B2B2D;
            border-left: 1px solid #2B2B2D;
            border-right: 1px solid #2B2B2D;
            border-bottom: 20px solid #2B2B2D;
            border-radius: 5px;
        }
        .item-container {
            padding-top: 5px;
            padding-bottom: 5px;
            padding-left: 2px;
            padding-right: 2px;
            font-size: 10pt
        }
        .item-price {
            font-size: 10pt;
        }
        .item-time {
            font-size: 6pt;
        }
        .item-rarity-description {
            font-size: 9pt;
        }
        @keyframes blinkingBorder {
            0% {
                border-top: 20px solid #2B2B2D;
                border-left: 1px solid #2B2B2D;
                border-right: 1px solid #2B2B2D;
                border-bottom: 20px solid #2B2B2D;
            }
            50% {
                border-top: 20px solid yellow;
                border-left: 1px solid yellow;
                border-right: 1px solid yellow;
                border-bottom: 20px solid yellow;
            }
            100% {
                border-top: 20px solid #2B2B2D;
                border-left: 1px solid #2B2B2D;
                border-right: 1px solid #2B2B2D;
                border-bottom: 20px solid #2B2B2D;
            }
        }
        .item-image:hover {
            transform: scale(3) translate(18px);
            transition: 0.3s;
        }
    }