.markets_title {
    text-align: center;
    margin-bottom: 48px;
}

.table-container {
    overflow-x: auto;
    margin: 0 64px 0;
}

table {
    width: 100%;
}

thead tr {
    background: var(--white);
}

thead tr td {
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    padding: 16px 16px;
}

tr:nth-child(even) {
    background: var(--white);
}

td {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding: 16px;
}

td:nth-child(1) {
    width: 18.55%;
    font-size: 12px;
    color: var(--black);
    font-weight: 700;
}
td:nth-child(2) {
    /*width: 45.38%;*/
    width: calc(65.64% - 201px);
}
td:nth-child(3) {
    width: 15.73%;
}
td:nth-child(4) {
    /*width: 20.26%;*/
    width: 201px;
}

.btn.buy,
.btn.sell {
    display: inline-flex;
    min-width: 80px;
    min-height: 36px;
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    border-radius: 8px;
    padding: 6px 12px;
    transition: var(--transition);
}

.btn.buy {
    color: #2B9A52;
    background: #EBF8EF;
    margin-right: 8px;
}

.btn.buy:hover {
    text-decoration: none;
    background: #57C27D;
    color: var(--white);
}

.btn.buy:active {
    text-decoration: none;
    background: #57C27D;
    color: var(--white);
    outline: 4px solid rgba(87, 194, 125, 0.32);
}

.btn.sell {
    color: #C12525;
    background: #F9E9E9;
}

.btn.sell:hover {
    text-decoration: none;
    background: #CC4C4C;
    color: var(--white);
}

.btn.sell:active {
    text-decoration: none;
    background: #CC4C4C;
    color: var(--white);
    outline: 4px solid rgba(204, 76, 76, 0.32);
}

.disclaimer {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.25px;
    margin-top: 32px;
    text-align: center;
}

.btn-load {
    margin: 32px auto 0 auto;
}

.hidden {
    display: none;
}

@media (max-width: 1439px) {
    .table-container {
        margin: 0;
    }

    table {
        margin: 64px 64px 0;
    }
}

@media (max-width: 1440px) {
    td:nth-child(1) {
        width: inherit;
        min-width: 184px;
    }
    td:nth-child(2) {
        width: inherit;
        min-width: 451px;
    }
    td:nth-child(3) {
        width: inherit;
        min-width: 156px;
    }
    td:nth-child(4) {
        width: inherit;
        min-width: 201px;
    }
}

@media (max-width: 1024px) {
    .markets_title {
        font-size: 36px;
        line-height: 48px;
        letter-spacing: -1px;
        margin-bottom: 48px;
    }

    table {
        margin: 56px 32px 0;
    }
}

@media (max-width: 640px) {
    table {
        margin: 48px 24px 0;
    }
}
