.section-markets_table {
    padding-top: 0;
    overflow: inherit;
}

.search-container {
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
}

.search-container.swap{
    border-top: 1px solid #F0F0F0;
}

.search-container input {
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    outline: none;
    border: none;
    border-bottom: 1px solid #F0F0F0;
    padding: 24px 32px;
    box-sizing: border-box;
}

.search-container input::placeholder {
    color: #8C8C8C;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.search-icon {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.table-container {
    overflow-x: auto;
    margin: 64px 64px 0;
    white-space: nowrap;
    scrollbar-color: #F0F0F0 transparent;
    scrollbar-width: thin;
    padding-bottom: 16px;
}

table {
    width: 100%;
}

table, th, td {
    border: 1px solid #F0F0F0;
}

tr:nth-child(even):not(.section-header-row, .gmt-row, thead tr) {
    background: #FAFAFA;
}

th, td {
    font-size: 14px;
    padding: 16px 24px;
    text-align: left;
    text-wrap: nowrap;
    font-weight: 500;
}

td:first-child {
    color: var(--black);
    font-weight: 700;
}

.market-holidays td:first-child {
    font-weight: 500;
    color: #595959;
}

th {
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    border: none;
}

.section-header {
    color: var(--black);
    font-size: 24px;
    font-weight: 500!important;
    line-height: 130%;
    padding: 24px;
    text-align: left;
    border: none;
}

.gmt {
    color: var(--black);
    font-weight: 500!important;
    font-style: italic;
    text-align: left;
    border: none;
}

.section-header-row,
.gmt-row {
    position: relative;
    border: 1px solid #F0F0F0;
}

.section-header-row:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    height: calc(100% + 2px);
    width: 8px;
    background-color: var(--primary);
}

.no-results {
    text-align: center;
    margin: 64px;
    font-size: 18px;
}

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

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

@media (max-width: 1024px) {
    .search-container {
        top: 65px;
    }

    .section-header{
        font-size: 20px;
    }

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

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