/*** Bắt đầu css thích ứng đa màn hình ***/

/* Giao diện Desktops and laptops, hoạt động với các màn hình lớn hơn 769px */

@media (min-width: 769px) {


    body {
        /* max-width: 640px !important; */
		max-width: 700px !important; /* Dùng tạm */
    }

    /* Ẩn tính năng của điện thoại */
    .hide-desktop {
        display: none !important;
    }
    /* Điều chỉnh menu dính bên phản hàn hình */
    /*#sidebar .menu-box {
        position: fixed;
        top: 50px;
        width: 235px;
        transform: translateX(700px);
    }*/


}

/* Bắt đầu css mobile, hoạt động với các màn hình điện thoại nhỏ hơn 768px */

@media (max-width: 768px) {


    /* Ẩn tính năng của máy tính */
    .hide-mobile {
        display: none !important;
    }
    /* border-radius 4 gốc ở giao diện search-box mobile  */
    #header .header-search-box .search-input {
        border-radius: 10px !important;
    }
    /* Giảm kích thước logo */
    #header .logo .domain-name {
        font-size: 70% !important;
    }
    #header .logo .domain-ext {
        font-size: 30% !important;
    }
    #header .logo a {
        display: inline-block !important;
        transform: scale(1, 1.9)!important;
    } /* Tăng chiều cao không tăng chiều rộng font chữ */
    #header .header-search-box .suggestions-box {
        font-size: 90%;
    } /* Giảm nhỏ font chữ suggestions-box trên mobile */

    .button-play,
    .user-play-button,
    .button-play-error {
        width: 24px !important;
        height: 24px !important;
        margin: 4px 8px 4px 0px;
    }
    .audio-post-list .post-item .icon-downl-svg,
    .audio-related-posts-list .post-item .icon-downl-svg,
    .playlist-related-posts .post-item .icon-downl-svg {
        display: none;
    }
    /* Nút play ở trong audio_player_custom_version */
    .main-audio-player .play-btn {
        width: 65px !important;
        height: 65px !important;
        margin-right: 15px !important;
    }
    .main-audio-player .icon-play,
    .main-audio-player .icon-pause {
        width: 24px !important;
        height: 24px !important;
    } 
    /*Kết thúc nút play ở trong audio_player_custom_version */


    /* Bắt đầu ẩn hiệu ứng animation icon với mobile */
    .menu-item:hover .icon-svg,
    .button-load-more:hover .icon-svg,
    .load-more-standard-posts:hover .icon-svg,
    .load-more-related-posts:hover .icon-svg,
    .post-audio:hover .post-title .icon-svg,
    .post-standard:hover .post-title .icon-svg,
    .audio-post-list:hover .section-title .icon-svg,
    .standard-post-list:hover .section-title .icon-svg,
    .menu-box:hover .section-title .icon-svg,
    .all-post-list:hover .section-title .icon-svg,
    .pending-post-list:hover .section-title .icon-svg,
    #footer .social-media a:hover .icon-svg  {
        animation: none !important;
    }
    /* Kết thúc ẩn hiệu ứng animation icon với mobile */





}

/* Kết thúc css mobile, hoạt động với các màn hình điện thoại nhỏ hơn 768px */


/*** Kết thúc css thích ứng đa màn hình ***/