.s-card {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding-top: 8px;
    overflow: hidden;
}

.s-w {
    width: 100%;
}

.s-dropdown {
    margin-left: 10px;
}
.s-table {
    width: 100%;
}

.s-table thead {
    height: 35px;
    font-size: 14pt;
    position: sticky;
    top: 0;
    z-index: 2;
}
.s-table tr {
    height: 65px;
    font-size: 12pt;
    color: var(--primary-color);
}

.light-theme {
    .s-table tr:not(:last-child) {
        border-bottom: 0.03em solid var(--border-color);
    }
}

.s-table thead tr {
    height: 55px !important;
}

.s-table td {
    text-align: right;
}

.s-table th {
    text-align: right;
    padding-bottom: 2px;
    font-weight: 400;
    color: var(--column-header-color);
    font-size: 1em;
}

.s-tablel td {
    text-align: left !important;
}

.s-tablel th {
    text-align: left !important;
}

.s-cell-bg-1 {
    background-color: var(--cell-bg-1);
}

.s-cell-bg-2 {
    background-color: var(--cell-bg-2);
}


#s-table-body tr:hover td{
    background-color: var(--highlight-color) !important;
}

.trf{
    padding-left: 15px;
    text-align: left !important;
}

.trl{
    padding-right: 15px;
}

.snippet-column-holder{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.snippet-column-holder .news-card {
    width: calc(50% - 10px);
}


@media screen and (max-width: 1300px) {
    .snippet-column-holder{
        flex-direction: column;
    }

    .snippet-column-holder .news-card {
        width: 100%;
    }

    .snippet-column-space {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 850px) {
    .s-hide {
       display:none;
    }
    .s-table tr {
        font-size: 12pt;
    }
}

