@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*,
body {
    font-family: "Kanit", sans-serif;
}

@media (orientation: landscape) {
    body {
        width: 100%;
        height: 100%;
        min-height: 100vh;
        overflow-x: hidden;
    }
    .main {
        width: 100%;
        /* min-height: 100vh; */
    }
}

.btn,
.btn:hover,
.btn:active,
.btn:focus {
    box-shadow: none;
}

.main {
    background-image: url("../images/news_presents/background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.menu-bar {
    width: 75px;
    height: 100%;
    max-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #fc0733;
    z-index: 50;
}
.menu-bar ul {
    padding-left: 4px;
    padding-right: 4px;
    list-style: none;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.menu-bar ul li {
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d00733;
    font-weight: 500;
}
.menu-bar ul li:last-child {
    border-bottom: none;
    border-top: 2px solid #d00733;
}
.main .container-contents {
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
    padding-left: 150px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cardSession {
    cursor: pointer;
}
.btnPlatVideo {
    background-color: #fc0733;
    color: #ffffff;
    font-size: 1rem;
    border: 2px solid #fc0733;
}
.btnPlatVideo:hover {
    background-color: transparent;
    color: #fc0733;
}
.btnBack {
    background-color: #fc0733;
    color: #ffffff;
    font-size: 1rem;
    border: 2px solid #fc0733;
}
.pageLive {
    position: absolute;
    top: 0;
    left: 0;
}
footer.footer-copyright {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    left: 0;
    background-color: #00000048;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
}
footer.footer-copyright .footer-copyright {
    color: #c9c9c9;
    font-size: 0.85rem;
}

footer.footer-copyright .footer-copyright a {
    color: #c9c9c9;
}
@media screen and (max-width: 1399px) {
    .main .container-contents {
        padding-left: 100px;
    }
}
@media screen and (min-width: 1400px) {
    .main .container-contents {
        width: 100%;        
        overflow-y: auto;
        padding-left: 150px;
        padding-right: 200px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
@media screen and (min-width: 768px) {
    .onlyMobile {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .menu-bar {
        width: 100%;
        height: 70px;
        max-height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        background-color: #fc0733;
        z-index: 99;
        display: flex;
    }
    .menu-bar ul {
        flex-direction: row;
        padding-left: 0;
        padding-right: 0;
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .menu-bar ul li {
        cursor: pointer;
        text-align: center;
        color: #ffffff;
        height: 62px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border-bottom: none;
        border-right: 2px solid #d00733;
        font-weight: 500;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .menu-bar ul li:last-child {
        border-bottom: none;
        border-top: none;
        border-right: none;
        border-left: 2px solid #d00733;
    }
    .main .container-contents {
        width: 100%;        
        overflow-y: auto;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 90px;
        padding-bottom: 20px;
    }
    .onlyDesktop {
        display: none;
    }
}
