

/* page chart 1 */
.page-chart-1{
    width: 100%;
    height: auto;
}

.area-chart{
    width: auto;
    height: auto;
    margin: 20px 80px 0px 80px;
    /* border: 1px red solid; */
}

.header-chart{
    width: 100%;
    height: fit-content;
    /* border: 1px white solid; */
}

.title-chart{
    font-size: 40px;
    font-weight: 200;
    font-family: "Bebas Neue";
    margin: 0px;
    color: white;
}

/* area top */

.area-top-chart {
    width: 100%;
    height: auto;
    /* border: 1px green solid; */
    display: flex;
    gap: 20px;
}

.tab-chart {
    width: calc(25% - 20px);
    height: 50px;
    border: 3px var(--primary-color) solid;
    color: black;

    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.tab-chart:hover {
    background-color: var(--primary-color);
    color: white;
}

.text-tab {
    font-size: 24px;
    font-weight: 200;
    font-family: "Bebas Neue";
    margin: 20px 0px;
}

.active {
    background-color: var(--primary-color); /* Warna aktif tab */
    color: white;
}

.text-tab{
    font-size: 24px;
    font-weight: 200;
    font-family: "Bebas Neue";
    margin: 20px 0px;
}

.hidden {
    display: none; /* Sembunyikan tabel yang tidak aktif */
}
/* ------------ */




.content-chart {
    width: 100%;
    height: fit-content;
    /* border: 1px black solid; */
}

.header-chart {
    width: 100%;
    height: auto;
    /* border: 1px red solid; */
    margin-top: 25px;
}

.title-chart {
    font-size: 40px;
    font-family: "Bebas Neue";
    font-weight: 200;
    margin: 0px;
    color: black;
}

.chart {
    margin: 10px 0px;
    height: 60%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

thead tr {
    text-align: left;
    font-size: 26px;
    border-bottom: 1px solid #fff;
    color: black;
}

thead th {
    font-weight: 300;
}

tbody tr {
    font-size: 20px;
    border-bottom: 5px solid #fff;
    color: white;
    height: 60px !important;
    background-color: #272727;
    margin: 0px 10px;
    border-radius: 10px !important;
    margin-bottom: 20px;
}


td {
    min-height: 40px;
}

.row-chart{
    width: 100%;
    height: 60px;
    background-color: #272727;
    border-radius: 12px;
    display: flex;
}

.col-no{
    width: 5%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    font-family: "Poppins";
}

.col-name{
    width: 90%;
    height: 100%;
    color: white;
    font-family: "Poppins";
    display: flex;
    justify-content: start;
    align-items: center;
}

.col-btn-play{
    width: 5%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}


.btn-play-chart {
    height: fit-content;
    width: fit-content;
    cursor: pointer;
    /* margin-top: 15px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-play-chart span {
    font-size: 32px;
    color: white;
}

.hidden {
    display: none; /* Sembunyikan tabel yang tidak aktif */
}
.bottom-chart {
    width: 100%;
    height: auto;
    /* border: 1px red solid; */
    display: flex;
    justify-content: center;
}

.area-btn-more{
    width: fit-content;
    height: auto;
}

.btn-see-more {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 18px;
    background-color: transparent;
    color: #006fa7;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    border: 2px #006fa7 solid;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-see-more:hover {
    background-color: #006fa7;
    color: white;
}

.btn-see-less {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    font-size: 18px;
    background-color: transparent;
    color: #006fa7;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    border: 2px #006fa7 solid;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.btn-see-less:hover {
    background-color: #006fa7;
    color: white;
}

/* .area-btn-chart {
    width: auto;
    height: auto;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
} */

.text-btn-chart {
    border: 1px black solid;
    font-size: 18px;
    font-family: "Poppins";
    padding: 5px 20px;
    font-weight: 500;
    border-radius: 5px;
    color: black;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    cursor: pointer;
    margin: 0px;
}

.text-btn-chart:hover {
    /* border: 1px white solid; */
    background-color: white;
    color: black;
}

/* ------------ */



/* area streaming news */

.page-chart-2 {
    width: 100%;
    height: auto;
    background-color: white;
    margin-top: 50px;
}

.area-streaming-news{
    width: auto;
    margin: 0px 80px 0px 80px;
    padding-bottom: 30px;
    height: auto;
    /* border: 1px red solid; */
}

.area-content-SN{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* margin-top: ; */
    padding-top: 30px;
    margin-bottom: 30px;
}

/* area content kiri */

.area-content-SN-kiri{
    width: 100%;
    height: auto;
    /* border: 1px pink solid; */
    margin-top: 20px;
}

.header-SN-kiri{
    width: 100%;
    height: fit-content;
    /* border: 1px #ffdb00 solid; */
}

.title-SN-kiri{
    font-size: 38px;
    font-family: "Bebas Neue";
    font-weight: 200;
    /* color: white; */
    margin: 0px;
}

.content-SN-kiri{
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.box-streaming{
    width: 100%;
    height: 220px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-play-streaming{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
    position: absolute;
}

.image-streaming{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    filter: brightness(0.5);
    border-radius: 8px;
}

/* .btn-play-streaming:hover{
    background-color: rgb(49, 49, 49);
} */

.btn-play-streaming span {
    color: black;
    font-size: 30px;
}
/* -------------------- */

.line-SN{
    width: 100%;
    border: 1px black solid;
}


/* area content kanan */

.area-content-SN-kanan{
    width: 100%;
    height: auto;
    /* border: 1px salmon solid; */
}

.header-news {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-news {
    margin: 0px;
    font-family: "Bebas Neue";
    font-size: 38px;
    font-weight: 200;
    /* color: white; */
}

.link-box-news {
    width: calc(25% - 10px); /* Setengah kontainer minus setengah gap */
    color: black;
}

.more-news{
    margin: 0px;
    font-family: "Poppins";
    font-size: 18px;
    font-weight: 200;
    display: flex;
    color: black;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.more-news i{
    font-size: 22px;
}

.content-news {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 10px;
}

.box-news {
    width: 100%;
    /* height: 340px; */
    /* max-height: 120px; */
    /* background-color: #f0f0f0; */
    border-radius: 15px;
    /* display: flex; */
    /* padding: 10px; */
    /* justify-content: center;
    align-items: center; */
    box-sizing: border-box;
    gap: 8px;
}

.area-image {
    width: 100%;
    /*border: 1px black solid;
    */
    border-radius: 20px;
    /* background-color: #333; */
    /* height: 100%; */
}

.line-top-info {
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.area-text-desk-top-info {
    /* width: 100%; */
    height: fit-content;
    max-height: 50%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    margin-top: 5px;
    /* padding: 10px; */
    /* border: 1px rgb(40, 40, 40) solid; */
    border-radius: 8px;
}

.area-tag {
    display: flex;
    gap: 4px;
    margin-top: 5px;
}

.tag-top-info {
    font-family: "Bebas Neue";
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
    overflow-wrap: break-word;
    padding: 2px 0;
}

/* .area-text {
    height: 54px;
} */

.desk-top-info {
    font-family: "Poppins";
    margin: 0px;
    font-size: 16px;
    overflow-wrap: break-word;
    padding: 2px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Membatasi 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden; /* Menyembunyikan sisa teks yang tidak muat */
    text-overflow: ellipsis;
    font-weight: 700;
}

.date-top-info {
    font-family: "Poppins";
    margin: 0px;
    font-size: 12px;
    overflow-wrap: break-word;
    padding: 2px 0;
}

.image-top-info {
    width: 100%;
    height: 50%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19); /* Shadow */
}
/* -------------------- */

/* ------------------- */