:root {
    --color-gray-700: #495057;
    --color-gray-600: #6C757D;
    --color-red-mk: #EB2A2D;
    --color-white: #FFFFFF;
    --color-border: #A1B0CC;
    --color-series-d: #28B4C8;
    --color-series-e: #2D73F5;
    /* Màu xanh background */
    --color-primary: #0094DC;
    --color-bg-grey: #E7E7E7;
    --font-primary: "Inter", serif;
    --color-white: #FFFFFF;
    --color-yellow: #F6C300;
    --color-drk-blue: #0C3960;
    --color-drk-yellow: #cfa602;
    --default-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --secondary-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    --transition: all 250ms ease-in-out;
    --border-color: #cbcbcb52;
    --color-sub-color: #F9FAFB;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* Default */
/*antx sửa*/
body {
    font-family: var(--font-primary);
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Thin.ttf") format('truetype');
    font-weight: 100;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Light.ttf") format('truetype');
    font-weight: 300;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Regular.ttf") format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Medium.ttf") format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: "Roboto";
    src: url("../../fonts/Roboto-Bold.ttf") format('truetype');
    font-weight: 700;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    line-height: 1.4 !important;
    color: #444;
    background-color: #fcfcfc;
}

a:hover {
    text-decoration: none;
}

.clear {
    clear: both;
}
/*antx sua*/
.error-border {
    border-color: red !important;
}

.default-border {
    border-color: #ced4da !important;
}

/*//*/
img {
    max-width: 100%;
}

* {
    padding: 0;
    margin: 0;
    outline: none !important;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

@charset "UTF-8";

.no-padding-lr {
    padding-left: 0;
    padding-right: 0;
}

.no-padding-l {
    padding-left: 0;
}

.no-padding-r {
    padding-right: 0;
}

.no-padding-tb {
    padding-top: 0;
    padding-bottom: 0;
}

.no-padding {
    padding-bottom: 0;
}


/*MENU*/
.menu {
    float: left;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 3;
    position: relative;
}

    .menu ul {
        margin: 0;
    }

    .menu > ul > li {
        float: left;
        position: relative;
        /*margin-right: 30px;*/
    }

        .menu > ul > li:last-child {
            margin-right: 0
        }

        .menu > ul > li > a {
            font-size: 14px;
            display: block;
            color: #000;
            line-height: 35px;
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            -ms-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
            /*text-transform: uppercase;*/
            padding: 0 22px;
            font-weight: 900;
        }

        .menu > ul > li:last-child {
            border-right: 1px solid rgba(255,255,255,0.15);
        }

    .menu > ul > li {
        border-left: 1px solid rgba(255,255,255,0.15);
    }

        .menu > ul > li > a:hover,
        .menu > ul > li > a:focus,
        .menu > ul > li.active > a {
            color: #fff;
            text-decoration: none;
            /*  background: #e50b0b;*/
            background: var(--color-primary);
        }

        .menu > ul > li.sub-menu > a {
            position: relative;
            /*padding-right: 0;*/
        }

            .menu > ul > li.sub-menu > a:after {
                display: none;
                content: '\f107';
                font-family: FontAwesome;
                font-size: 16px;
                position: absolute;
                top: 0;
                right: 0;
                line-height: 52px;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }

        .menu > ul > li > ul {
            /*display: none;*/
            width: 250px;
            position: absolute;
            top: 80px;
            opacity: 0;
            left: -15px;
            z-index: 0;
            visibility: hidden;
            background: #fff;
            border: solid 1px #e5e5e5;
            box-shadow: 1px 4px 8px rgba(0, 0, 0, .05);
            padding: 15px 0;
            -webkit-transition: all .3s;
            -ms-transition: all .3s;
            -moz-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

        .menu > ul > li:hover > ul {
            display: block;
            top: 35px;
            z-index: 2001;
            visibility: visible;
            opacity: 1;
        }

        .menu > ul > li > ul > li {
            position: relative;
            /*    line-height: 38px;*/
            position: relative;
            margin: 5px 0;
            padding: 0 15px;
            display: block;
            float: left;
            width: 100%;
        }

            .menu > ul > li > ul > li > a {
                font-size: 15px;
                font-weight: normal;
                text-transform: none;
                display: block;
                color: #000;
                line-height: 22px;
                padding: 0;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }

                .menu > ul > li > ul > li > a:hover {
                    color: #e70707;
                    /*    padding-left: 12px;*/
                    text-decoration: none;
                    /*    border-left: solid 3px #e70707;*/
                }

            .menu > ul > li > ul > li.sub-menu > a {
                position: relative;
                padding-right: 0;
            }

                .menu > ul > li > ul > li.sub-menu > a:after {
                    /* display: none;  */
                    content: '\f105';
                    font-family: FontAwesome;
                    font-size: 16px;
                    position: absolute;
                    top: 0;
                    right: 0;
                    line-height: 22px;
                    -webkit-transition: all .3s;
                    -moz-transition: all .3s;
                    -ms-transition: all .3s;
                    -o-transition: all .3s;
                    transition: all .3s;
                }


            .menu > ul > li > ul > li > ul {
                /*display: none;*/
                width: 250px;
                position: absolute;
                top: 30px;
                opacity: 0;
                left: 100%;
                z-index: 0;
                visibility: hidden;
                background: #fff;
                border: solid 1px #e5e5e5;
                box-shadow: 1px 4px 8px rgba(0, 0, 0, .05);
                padding: 15px 0;
                -webkit-transition: all .3s;
                -ms-transition: all .3s;
                -moz-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
            }

            .menu > ul > li > ul > li:hover > ul {
                display: block;
                top: -19px;
                left: 100%;
                z-index: 2001;
                visibility: visible;
                opacity: 1;
            }

            .menu > ul > li > ul > li > ul > li {
                position: relative;
                /*    line-height: 38px;*/
                position: relative;
                margin: 5px 0;
                padding: 0 15px;
                display: block;
                float: left;
                width: 100%;
            }

                .menu > ul > li > ul > li > ul > li > a {
                    font-size: 15px;
                    font-weight: normal;
                    text-transform: none;
                    display: block;
                    color: #000;
                    line-height: 22px;
                    padding: 0;
                    -webkit-transition: all .3s;
                    -moz-transition: all .3s;
                    -ms-transition: all .3s;
                    -o-transition: all .3s;
                    transition: all .3s;
                }

                    .menu > ul > li > ul > li > ul > li > a:hover {
                        color: #e70707;
                        /*    padding-left: 12px;*/
                        text-decoration: none;
                        /*    border-left: solid 3px #e70707;*/
                    }

        .menu > ul > li.sub-menu > ul:after {
            content: "";
            background-image: url(../images/icon-submenu.png);
            background-position: center top;
            background-repeat: no-repeat;
            height: 9px;
            left: 28px;
            position: absolute;
            top: -8px;
            width: 19px;
        }

        .menu > ul > li.sub-menu > ul > li.sub-menu > ul:after {
            content: "";
            background-image: url(../images/icon-submenu-left.png);
            background-position: center center;
            background-repeat: no-repeat;
            height: 19px;
            left: -9px;
            position: absolute;
            top: 20px;
            width: 9px !important;
            padding: 0 !important;
        }

        /*child3*/
        .menu > ul > li > ul > li > ul > li.sub-menu > a:after {
            content: '\f105';
            font-family: FontAwesome;
            font-size: 16px;
            position: absolute;
            top: 0;
            right: 0;
            line-height: 22px;
            -webkit-transition: all .3s;
            -moz-transition: all .3s;
            -ms-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
        }

        .menu > ul > li > ul > li > ul > li.sub-menu > a {
            position: relative;
            padding-right: 0;
        }

        .menu > ul > li > ul > li > ul > li:hover > ul {
            display: block;
            top: -19px;
            left: 100%;
            z-index: 2001;
            visibility: visible;
            opacity: 1;
        }

        .menu > ul > li > ul > li > ul > li > ul {
            /* display: none; */
            width: 250px;
            position: absolute;
            top: 30px;
            opacity: 0;
            left: 100%;
            z-index: 0;
            visibility: hidden;
            background: #fff;
            border: solid 1px #e5e5e5;
            box-shadow: 1px 4px 8px rgba(0, 0, 0, .05);
            padding: 15px 0;
            -webkit-transition: all .3s;
            -ms-transition: all .3s;
            -moz-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

        .menu > ul > li.sub-menu > ul > li.sub-menu > ul > li.sub-menu > ul:after {
            content: "";
            background-image: url(../images/icon-submenu-left.png);
            background-position: center center;
            background-repeat: no-repeat;
            height: 19px;
            left: -9px;
            position: absolute;
            top: 20px;
            width: 9px !important;
            padding: 0 !important;
        }

        .menu > ul > li > ul > li > ul > li > ul > li {
            position: relative;
            margin: 5px 0;
            padding: 0 15px;
            display: block;
            float: left;
            width: 100%;
        }

            .menu > ul > li > ul > li > ul > li > ul > li > a {
                font-size: 15px;
                font-weight: normal;
                text-transform: none;
                display: block;
                color: #000;
                line-height: 22px;
                padding: 0;
                -webkit-transition: all .3s;
                -moz-transition: all .3s;
                -ms-transition: all .3s;
                -o-transition: all .3s;
                transition: all .3s;
            }

                .menu > ul > li > ul > li > ul > li > ul > li > a:hover {
                    color: #e70707;
                    text-decoration: none;
                }
/* Footer */
footer {
    background: #0C3960;
    color: white;
    position: relative;
    padding-top: 10px;
}

.footer_info {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

    .footer_info .footer_info_right {
        color: #5a5555;
        font-size: 14px;
        position: relative;
        padding-right: 150px;
    }

        .footer_info .footer_info_right .site_title {
            margin: 0 0 10px 0;
            font-size: 13px;
            font-weight: bold;
        }

        .footer_info .footer_info_right ul {
            margin: 0;
        }

            .footer_info .footer_info_right ul > li {
                display: block;
            }

                .footer_info .footer_info_right .site_title,
                .footer_info .footer_info_right ul > li span {
                    text-align: left;
                    display: block;
                }

                .footer_info .footer_info_right ul > li span {
                    /*font-weight: 300;*/
                    font-size: 13px;
                    line-height: 23px;
                }

.border_bottom {
    background: url(../images/border_bottom_box.jpg) repeat-x;
    height: 10px;
    width: 100%;
    display: block;
}

.online_stt {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    ;
    -moz-transform: translateY(-50%);
    ;
    -ms-transform: translateY(-50%);
    ;
    -o-transform: translateY(-50%);
    ;
    transform: translateY(-50%);
    ;
    width: 150px;
    text-align: right;
}

    .online_stt > span {
        color: #aaa;
        display: block;
    }

        .online_stt > span +
        span {
            font-size: 18px;
            font-weight: bold;
        }
/*MOBILE MENU*/
.btn-menu-canvas {
    display: block;
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    background-color: transparent;
    background-image: none;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 24px;
    margin-bottom: 0;
    padding-top: 3px;
}

.wrapper-container {
    -webkit-transition: transform 0.5s ease 0;
    -moz-transition: transform 0.5s ease 0;
    -ms-transition: transform 0.5s ease 0;
    -o-transition: transform 0.5s ease 0;
    transition: transform 0.5s ease 0;
}

#offcanvas {
    display: block
}

    #offcanvas .navbar-nav ul.level-1 li a {
        cursor: pointer;
        padding-left: 30px;
    }

body.off-canvas-active {
    overflow-x: hidden;
    position: relative;
}

.offcanvas-push:before {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(30, 30, 30, 0.5);
    -webkit-animation: fade 500ms;
    -moz-animation: fade 500ms;
    -ms-animation: fade 500ms;
    animation: fade 500ms;
    z-index: 999999;
}

.custom-menu-canvas a {
    margin-right: 6px;
}

.custom-menu-canvas i {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    line-height: 29px;
    text-align: center;
    color: #fff;
    border: 2px solid;
}

    .custom-menu-canvas i:hover {
        background: transparent;
    }

.custom-menu-canvas .fa-facebook {
    background: #39579a;
    border-color: #39579a;
}

    .custom-menu-canvas .fa-facebook:hover {
        border-color: #39579a;
        color: #39579a;
    }

.custom-menu-canvas .fa-twitter {
    background: #50abf1;
    border-color: #50abf1;
}

    .custom-menu-canvas .fa-twitter:hover {
        border-color: #50abf1;
        color: #50abf1;
    }

.custom-menu-canvas .fa-pinterest-p {
    background: #e32467;
    border-color: #e32467;
}

    .custom-menu-canvas .fa-pinterest-p:hover {
        border-color: #e32467;
        color: #e32467;
    }

.custom-menu-canvas .fa-youtube-play {
    background: #e72d4c;
    border-color: #e72d4c;
}

    .custom-menu-canvas .fa-youtube-play:hover {
        border-color: #e72d4c;
        color: #e72d4c;
    }

.custom-menu-canvas .fa-vimeo {
    background: #69c9a6;
    border-color: #69c9a6;
}

    .custom-menu-canvas .fa-vimeo:hover {
        border-color: #69c9a6;
        color: #69c9a6;
    }

.custom-menu-canvas {
    padding: 15px 20px;
    text-align: center;
}

/*HEADER*/
header {
    /*background-image: url("../images/banner-tutpad.png");*/
    background-color: #fdeac0;
    position: relative;
}

.header_site_info_parent {
    /*background-image: url(../images/banner.jpg);*/
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
    /*padding: 17px 15px 17px 0;*/
    position: relative;
}

.header_site_info_table {
    position: relative;
    display: table;
}

    .header_site_info_table .header_info_left,
    .header_site_info_table .header_info_right {
        display: table-cell;
        vertical-align: middle;
    }

        .header_site_info_table .header_info_right .site_name {
            margin: 0;
        }

.header_content {
    position: relative;
}

.header_search {
    top: 53px;
    right: 15px;
    width: 218px;
    height: 30px;
    border: 1px solid #a7a5a5;
    position: absolute;
    overflow: hidden;
    background-color: rgba( 255,255,255,0.85 );
    padding: 1px;
    z-index: 10;
}

    .header_search .form-control, .header_search .btn {
        background: transparent;
        height: 26px;
        border: none;
        line-height: 26px;
        padding-top: 0;
        padding-bottom: 0;
        /*background-color: #fff;
    background-color: rgba( 255,255,255,0.85 );*/
        color: #444;
        border-radius: 0;
        box-shadow: none;
    }

    .header_search .form-control {
        font-size: 13px;
    }

    .header_search .btn {
        background: #0369cd;
        color: #fff;
        width: 30px;
        padding: 0;
        line-height: 26px;
        border: none !important;
        margin-left: 0 !important;
        margin-right: -1px;
        -webkit-transition: all .25s;
        -moz-transition: all .25s;
        -ms-transition: all .25s;
        -o-transition: all .25s;
        transition: all .25s;
    }

        .header_search .btn:hover,
        .header_search .btn:focus {
            background: #0483FF;
            color: #fff;
        }

.header_site_info_table .header_info_right .site_name a span + span {
    font-size: 28px;
    font-weight: bold;
}

.header_site_info_table .header_info_right .site_name a span {
    display: block;
    font-size: 22px;
    line-height: 1.2;
    color: #c20000;
}

.header_site_info_table .header_info_right .site_name a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    clear: both;
    display: block;
}

.header_site_info_table .header_info_left img {
    max-height: 75px;
}

.header_site_info_table .header_info_right {
    padding-left: 25px;
}

.social > ul {
    margin: 0;
    text-align: right;
}

    .social > ul > li {
        display: inline-block;
    }

        .social > ul > li:first-child > a {
            margin-left: 0;
        }

        .social > ul > li > a {
            color: #fff;
            margin-left: 15px;
            font-size: 15px;
            line-height: 36px;
        }

.menu_section {
    background: var(--color-white);
    position: relative;
}

/* .menu_section:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 10px;
        background: url(../images/bg-pattern.png);
    }*/

.menu_parent {
    background: var(--color-white);
    width: 100%;
    border-top: 1px solid var(--color-white);
    height: 36px;
}

.menu > ul > li > a .fa-home {
    font-size: 18px;
    vertical-align: middle;
}


.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    color: #444;
    background-color: #ffffff;
    border-color: #ffffff;
    padding: 0 14px;
    font-size: 12px;
    line-height: 50px;
    border-radius: 50%;
    z-index: 99999;
    box-shadow: 5px 10px 20px -10px rgb(0 0 0 / 35%);
    width: 45px;
    height: 45px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

    .back-to-top:hover,
    .back-to-top:focus {
        background-color: #ffffff;
        border-color: #ffffff;
        color: #f9bd7a;
    }


.breadcrumb {
    background: transparent;
}

    .breadcrumb a {
        font-size: 14px;
        color: black !important;
    }

.day_date_time {
    color: #87919c;
}

.topbar {
    clear: both;
    display: block;
    background: #fff;
    overflow: hidden;
    /*border-bottom: 1px solid #d7d7d7;*/
}

.breadcrumb {
    background: transparent;
    margin: 0 !important;
    padding: 10px 0;
    text-align: left;
}

.day_date_time {
    padding: 10px 15px;
}

.main_body {
    padding: 20px 0 30px 0;
    /*border-top: 1px solid #fff;*/
    position: relative;
    background: url(../images/bg.png) #fff;
}

    .main_body:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 19px;
        background: url(../images/main_body_top_bg.png) repeat-x top;
    }
/*Đăng nhập*/
.acc_type .mana_check {
    display: block;
    width: auto !important;
    height: auto !important;
}

.acc_type {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    float: left;
}

    .acc_type .mana_check {
        padding: 0 !important;
    }

        .acc_type .mana_check label {
            margin-top: 2px !important;
            float: left;
            margin-right: 5px !important;
        }

    .acc_type span {
        display: inline-block;
        float: left;
    }



.mana_check {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
    height: 15px;
    width: 44px;
}

    .mana_check input[type=checkbox] {
        display: none;
    }

        .mana_check input[type=checkbox] + label {
            background: transparent;
            height: 14px;
            width: 14px;
            display: inline-block;
            padding: 0 0 0 0;
            border: 1px solid #b9b9b9;
            cursor: pointer;
            margin: 0;
            max-width: none;
        }

        .mana_check input[type=checkbox]:checked + label {
            border-color: #4496e7;
            background: url("../images/check.png");
            background-size: contain;
        }

        .mana_check input[type=checkbox]:checked {
            display: none;
        }

.form_block {
    display: block;
    width: 100%;
    padding: 15px 0;
}

.main_title {
    display: block;
    margin-bottom: 15px;
    clear: both;
    overflow: hidden;
}

    .main_title .main_title_h2 {
        font-weight: bold;
        line-height: 1.4;
        margin: 0;
        text-transform: uppercase;
        display: block;
        font-size: 24px;
        color: #e21936;
    }

    .main_title.center .main_title_h2, .main_title.center .main_title_des {
        text-align: center;
    }

    .main_title .main_title_des {
        line-height: 1.4;
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: 300;
        color: #777;
    }

.form_bordered {
    border: 1px solid #ccc;
    padding: 25px;
    border-radius: 3px;
}

.form_center {
    margin: 0 auto;
}

.form_2xsmall {
    max-width: 400px;
    width: 100%;
}

.form_small {
    max-width: 550px;
    width: 100%;
}

.form_medium {
    max-width: 650px;
    width: 100%;
}

.form_larger {
    max-width: 750px;
    width: 100%;
}

.form_fullWidth {
    max-width: 100%;
    width: 100%;
}

.form_shadow {
    box-shadow: 0 20px 20px -20px rgba(0,0,0,0.25);
}

.form_shadow_half {
    box-shadow: 0 20px 20px -20px rgba(0,0,0,0.1);
}

.form_content .form-control {
    box-shadow: none;
    border-color: #ddd;
}

.form_content label .required {
    color: #ff0000;
    margin-left: 5px;
}

.bootstrap-select > .btn,
.form_content .form-control:focus {
    border-color: #66afe9;
}

.form_content form {
    background: #fff;
}

.btn-blue:active, .btn-blue:focus, .btn-blue:hover {
    color: #fff;
    background-color: #07d;
}

.btn-blue {
    color: #fff;
    border: 1px solid #06d;
    background: #08f;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(0,0,0,.2);
}

.btn-red:active, .btn-red:focus, .btn-red:hover {
    color: #fff;
    background-color: #c20000;
}

.btn-red {
    color: #fff;
    border: 1px solid #e21936;
    background: #e21936;
    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 0 rgba(0,0,0,.2);
    box-shadow: 0 1px 0 rgba(0,0,0,.2);
}

.bootstrap-select > .btn {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    border-color: #ddd;
}

.regInfo_form .form_control_dot .form-control,
.regInfo_form .form_control_dot .bootstrap-select > .btn {
    border-radius: 0;
    border: none;
    border-bottom: 1px dotted #eee;
    padding-left: 0;
    padding-right: 0;
    color: #999;
    -webkit-transition: all .05s;
    -moz-transition: all .05s;
    -ms-transition: all .05s;
    -o-transition: all .05s;
    transition: all .05s;
    background: none;
}

    .regInfo_form .form_control_dot .form-control:focus,
    .regInfo_form .form_control_dot .bootstrap-select > .btn:focus {
        border-color: #66afe9;
        color: #444;
    }

.regInfo_form .form_control_dot .bootstrap-select.open > .btn {
    padding-left: 15px;
    padding-right: 15px;
}

.new_info {
    clear: both;
    display: block;
    margin-top: 30px;
    float: left;
    width: 100%;
}

.multi_btn > .btn {
    margin-left: 5px;
    margin-right: 5px;
}

.opacity0 {
    opacity: 0;
}

.info_form .gr_btn_left, .info_form .btn_right {
    float: left;
}

.info_form .gr_btn_left {
    width: calc(100% - 130px);
    width: -webkit-calc(100% - 130px);
    width: -moz-calc(100% - 130px);
    width: -ms-calc(100% - 130px);
    width: -o-calc(100% - 130px);
}

.info_form .btn_right {
    width: 130px;
}

.over_auto {
    overflow: auto;
}

.form_table {
    margin-top: 20px;
}

.table thead tr th {
    color: #fff;
    border: none;
    vertical-align: top;
}

.table thead {
    background: #0088ff;
}

.pagination {
    margin: 10px 2px;
}

.form_bordered.info_form {
    padding: 20px 25px 15px 25px;
}

.topbar_search {
    padding-top: 5px;
}

    .topbar_search .form-control, .topbar_search .btn {
        padding-top: 0;
        padding-bottom: 0;
        height: 28px;
    }

    .topbar_search .form-contron {
        line-height: 28px;
    }

.search_sort {
    position: relative;
    overflow: hidden;
    clear: both;
    margin: 15px 0 10px 0;
}

    .search_sort .search_sort_left {
        padding-left: 0;
        float: left
    }

    .search_sort .search_sort_right {
        padding-right: 0;
        float: right;
    }

    .search_sort .sortitem a {
        color: #96a09d;
    }

        .search_sort .sortitem a.active {
            color: #007bc1;
            box-shadow: 2px 2px 4px rgba(0,0,0,.05);
        }

    .search_sort .sortitem a {
        display: inline-block;
        border: 1px solid #eee;
        line-height: 30px;
        padding: 0 15px;
        margin-left: 10px;
        border-radius: 4px;
        min-width: 145px;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .search_sort .sortitem a:hover, .search_sort .sortitem a:focus {
            border-color: #eee;
            color: #555;
            box-shadow: 2px 2px 4px rgba(0,0,0,.05);
        }

        .search_sort .sortitem a i {
            padding-right: 5px;
            font-size: 12px;
        }

            .search_sort .sortitem a i:before {
                content: "\f0dc";
            }

    .search_sort .sortitem {
        display: inline-block;
    }

    .search_sort .search_sort_left h4 {
        font-weight: 400;
        font-size: 15px;
        color: #96a09d;
    }

        .search_sort .search_sort_left h4 span {
            color: #ed1d24 !important;
        }

.sr-only {
    position: inherit;
}

.bootstrap-select > .btn {
    padding-right: 25px;
}

    .bootstrap-select > .btn > .filter-option {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.reg_info_link {
    color: #96a09d;
}

    .reg_info_link.active {
        color: #007bc1;
        box-shadow: 2px 2px 4px rgba(0,0,0,.05);
    }

.reg_info_link {
    display: inline-block;
    border: 1px solid #5bc0de;
    line-height: 30px;
    padding: 0 15px;
    margin-left: 10px;
    border-radius: 4px;
    min-width: 145px;
    background: #5bc0de;
    color: #fff;
}

    .reg_info_link:hover, .reg_info_link:focus {
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        background-color: #31b0d5;
        color: #fff;
        box-shadow: 2px 2px 4px rgba(0,0,0,.05);
    }

    .reg_info_link i {
        padding-right: 5px;
        font-size: 12px;
    }

.reg_info_link {
    float: right;
    margin: 10px 0;
}

.reg_info_div {
    display: block;
    position: relative;
    overflow: hidden;
    clear: both;
}

.drop_user {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    ;
    -moz-transform: translateY(-50%);
    ;
    -ms-transform: translateY(-50%);
    ;
    -o-transform: translateY(-50%);
    ;
    transform: translateY(-50%);
    ;
}

.md-account {
    margin: 0 auto;
}

    .md-account .modal-dialog {
        margin-left: auto;
        margin-right: auto;
        max-width: 480px;
        width: 100% !important;
    }

    .md-account .md-forgotEmail {
        width: 300px !important;
        height: 245px;
        border-radius: 10px;
        overflow: hidden;
    }

    .md-account .modal-backdrop, .md-zindex .modal-backdrop {
        z-index: 0;
    }

.modal-content {
    box-shadow: 0 5px 15px rgba(0,0,0,.125);
    border: none;
    background: transparent;
    border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 5px !important;
    position: relative;
    overflow: hidden;
}

.modal-header {
    background-color: #fff;
    cursor: move !important;
    /*border: none;*/
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.modal-logo {
    /*display: none;*/
    float: left;
    padding-right: 15px;
}

.modal-title {
    text-transform: uppercase;
    color: #444;
    font-weight: bold;
}

.modal-title {
    margin: 0;
    line-height: 25px;
}

.md-account .form-top-left h3, h4 {
    font-weight: 400;
    font-size: 15px;
    color: #96a09d;
}

.md-account img {
    max-width: 100%;
}

.main-logo {
    width: auto;
    max-height: 25px;
}

.md-account .modal-body {
    padding-left: 15px;
    padding-right: 15px;
}

.modal-body {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 20px;
}

.modal-body {
    padding-bottom: 20px;
    background: #fff;
}

.md-account .social-login-buttons {
    margin-top: 25px;
}

.md-account .btn-link-1.btn-link-1-facebook {
    background: #4862a3;
}

.md-account .btn-link-1.btn-link-1-twitter {
    background: #55acee;
}

.md-account .btn-link-1.btn-link-1-google-plus {
    background: #dd4b39;
}

.md-account .btn-link-1 {
    display: inline-block;
    height: 34px;
    margin: 2px;
    padding: 0 20px 0 20px;
    background: #19b9e7;
    font-size: 16px;
    font-weight: 300;
    line-height: 34px;
    color: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    width: 29%;
}

.md-account a, .md-account a:hover, .md-account a:focus {
    color: #fff;
    text-decoration: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s;
}

.md-account .btn-link-1 i {
    padding-right: 5px;
    vertical-align: middle;
    font-size: 20px;
    line-height: 20px;
}

.md-account .form-top {
    overflow: hidden;
    padding: 0 25px 0 25px;
    background: #fff;
    -moz-border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    text-align: left;
}

.md-account .form-bottom {
    padding: 0 25px 20px 25px;
    -moz-border-radius: 0 0 4px 4px;
    -webkit-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    text-align: left;
}

#frm-forgetpass label.sr-only, #frm-login label.sr-only, #frm-register label.sr-only, #frm-change label.sr-only, #frm-FogetPassword label.sr-only, #frm-resetpassword label.sr-only, #frm-feedback label.sr-only {
    position: relative;
    height: auto;
    width: auto;
    font-weight: normal;
    color: #555;
    /*an.tx thêm frm-change*/
}

.md-account label {
    display: inline-block;
    margin-right: 15px;
    margin-top: 6px;
    margin-bottom: 0;
    color: #333;
    font-size: 14px;
    font-weight: 700;
}

.sr-only {
    position: inherit;
}

.md-account .input-group {
    margin-bottom: 15px;
}

.md-account .input-group-addon {
    min-width: 41px;
    background: #fff;
    color: #999;
    padding: 0 12px !important;
    height: 30px !important;
    line-height: 30px !important;
}

.md-account .form-group input {
    box-shadow: none;
}

.md-account input {
    padding: 0 15px;
    height: 34px;
    line-height: 34px;
    outline: none;
    box-shadow: none;
}

.acc_type {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin-bottom: 10px;
    float: left;
    width: 300px;
}

    .acc_type .mana_check {
        margin: 5px 0;
        padding: 0 !important;
    }

    .acc_type .mana_check {
        display: block;
        width: auto !important;
        height: auto !important;
    }

.mana_check {
    display: table-cell;
    vertical-align: middle;
    padding: 0 15px;
    height: 15px;
    width: 44px;
}

    .mana_check input[type=checkbox] {
        display: none;
    }

        .mana_check input[type=checkbox] + label {
            background: transparent;
            height: 14px;
            width: 14px;
            display: inline-block;
            padding: 0 0 0 0;
            border: 1px solid #b9b9b9;
            cursor: pointer;
            margin: 0;
            max-width: none;
        }

.acc_type .mana_check label {
    margin-top: 2px !important;
    float: left;
    margin-right: 10px !important;
}

.acc_type span {
    display: inline-block;
    float: left;
}

.mana_check input[type=checkbox]:checked + label {
    border-color: #4496e7;
    background: url("../images/check.png");
    background-size: contain;
}

#frm-login .form-group.text-right .input-group.text-right {
    display: block;
    width: 100%;
    padding-right: 1px;
}
/*an.tx thêm frm-change*/
#frm-change .form-group.text-right .input-group.text-right {
    display: block;
    width: 100%;
    padding-right: 1px;
}

.forgetpass {
    cursor: pointer;
}

.md-account .form-bottom form button.btn {
    width: 100%;
    height: 34px;
    line-height: 34px;
    padding: 0 15px;
}

.forgetpass:hover, .forgetpass:focus {
    color: #277cbe;
    text-decoration: underline;
}

.md-account .btn-link-1.btn-link-1-facebook:hover,
.md-account .btn-link-1.btn-link-1-facebook:focus {
    background: #29499a;
}

.md-account .btn-link-1.btn-link-1-twitter:hover,
.md-account .btn-link-1.btn-link-1-twitter:focus {
    background: #2698ef;
}

.md-account .btn-link-1.btn-link-1-google-plus:hover,
.md-account .btn-link-1.btn-link-1-google-plus:focus {
    background: #d21700;
}

.md-account .form-top-left h3 {
    margin-top: 0;
}

.md-account .form-top-left h3 {
    text-transform: uppercase;
    text-align: left;
}

.md-account h3 {
    font-size: 22px;
    font-weight: 300;
    color: #555;
    line-height: 30px;
}

.md-account .form-top-right {
    float: left;
    width: 25%;
    padding-top: 5px;
    font-size: 35px;
    color: #eee;
    line-height: 49px;
    text-align: right;
}

.md-account .form-top-left {
    float: left;
    width: 75%;
    /* padding-top: 25px; */
}

.drop_user > a {
    color: #fff;
    display: inline-block;
    background: #fbb03c;
    padding: 5px 10px;
    border-radius: 3px;
    margin-left: 5px;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

    .drop_user > a:hover, .drop_user > a:focus {
        background: #fac95d;
        text-decoration: none;
        border-radius: 5px;
    }

/*OTHER PAGE*/
body:not(.bg_img) .main_body {
    background: #fff;
}

    body:not(.bg_img) .main_body:after {
        opacity: .5;
    }

body:not(.bg_img) .topbar {
    border-bottom: 1px solid #eee;
}

/*page_title*/
.page_title {
    margin-bottom: 15px;
    clear: both;
    overflow: hidden;
}

    .page_title h2 {
        margin: 0;
        color: #444;
        text-transform: uppercase;
        font-weight: bold;
        font-size: 14px;
    }

/*article*/
.article-header {
    /*background: #f7f3ea;*/
    padding: 8px 15px 8px 0;
    /*border-left: 2px solid #605f5f;*/
}

    .article-header > h1 {
        margin: 0;
        font-size: 16px;
        color: #af4037;
        text-transform: uppercase;
        font-weight: bold;
    }

.post-summary {
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.article-content .rte {
    margin-top: 5px;
}

.demo_info h4 {
    color: #444;
    font-weight: bold;
}

.demo_info ul li {
    display: block;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

    .demo_info ul li i {
        color: #0375bc;
        position: absolute;
        top: 1px;
        left: 0;
    }

        .demo_info ul li i:before {
            content: "\f111";
            font-size: 5px;
            vertical-align: middle;
            display: inline-block;
        }

.other_demo > span {
    color: #444;
    font-weight: bold;
    margin: 10px 0;
}

    .other_demo > span + span {
        font-weight: normal;
        display: block;
    }

        .other_demo > span + span > b {
            color: #ff0000;
        }


.content-contact #validateForm .row {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    justify-content: space-around;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    align-content: space-around;
}

    .content-contact #validateForm .row .form-group:last-child {
        width: 100%;
    }

    .content-contact #validateForm .row .form-group {
        width: 50%;
    }

.register_flex .form-group {
    width: 50%;
    padding: 0 15px;
}

.register_flex {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    justify-content: space-around;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    align-content: space-around;
}

.content-contact .form-group .form-control {
    box-shadow: none;
    border-color: #ddd;
}

.not_found_btn {
    position: relative;
    overflow: hidden;
    clear: both;
    margin-bottom: 15px;
}

.main_button_2 {
    color: #fff;
    background: #f7941e;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    border-radius: 20px !important;
    display: inline-block;
    padding: 3px 20px 0 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative !important;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    overflow: hidden !important;
    font-size: 13px;
    border-bottom: 2px solid #cd832b;
    line-height: 32px;
    font-weight: bold;
    z-index: 1;
    border-left: 0;
    border-right: 0;
    border-top: 0;
}

    .main_button_2:hover, .main_button_2:focus {
        color: #fff;
        text-decoration: none;
        -webkit-border-radius: 20px !important;
        -moz-border-radius: 20px !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }

    .main_button_2:hover {
        border-color: #f7941e;
    }

        .main_button_2:hover:after {
            width: 100%;
        }

    .main_button_2:after {
        overflow: hidden !important;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: #FFA438;
        -webkit-transition: all .25s ease;
        -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
        -o-transition: all .25s ease;
        transition: all .25s ease;
        z-index: -1;
    }
/*contact*/
.space90 {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    content: "";
}

.contact-info h2 {
    font-weight: 600;
    font-size: 25px;
    color: #434343;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-info ul {
    padding-left: 0;
}

.contact-info li {
    display: block;
    padding: 5px 0;
    padding-left: 35px;
    font-size: 15px;
    color: #545454;
}

.contact-info .email {
    background: url('../images/ico-email.png') no-repeat;
    background-position: left center;
}

.contact-info .phone {
    background: url('../images/ico-phone.png') no-repeat;
    background-position: left center;
}

.contact-info .position {
    background: url('../images/ico-position.png') no-repeat;
    background-position: left center;
}

.md-account .form-group {
    margin-bottom: 10px;
}

.form-group {
    margin-top: 20px;
    margin-bottom: 20px;
}

/*.product-img {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
}

.section-products .btn_readmore {
    opacity: 0;
    visibility: hidden;
}

.product_item {
    margin-bottom: 80px;
    position: relative;
    background: url(../images/feat_item.png) no-repeat;
    padding-right: 10px;
    padding-top: 3px;
    background-size: 200px 262px;
    padding-bottom: 1px;
    width: 200px;
    height: 262px;
    margin: 0 auto 80px auto;
}

.section-products {
    padding: 0 70px 0 60px;
    background: url(../images/feat_shelf.png);
    margin-top: 15px;
    clear: both;
}

.product-img {
    width: 200px;*/
/*height: 258px;*/
/*height: auto;
    position: relative;
    overflow: hidden;
    display: block;
}

    .product-img > img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }


.section-products .btn_readmore {
    position: absolute;
    top: 60%;
    left: 50%;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    transform: translate(-50%,-50%);
}

.product_item:hover .btn_readmore {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.product-img-parent {
    position: relative;
}

    .product-img-parent > a:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.25);
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -ms-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        opacity: 0;
        visibility: hidden;
    }

.product_item:hover .product-img-parent > a:after {
    opacity: 1;
    visibility: visible;
}

.section-products .btn_readmore > a {
    color: #444;
    border: 1px solid #fff;
    padding: 7px 15px;
    border-radius: 15px;
    background: #fff;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

    .section-products .btn_readmore > a:hover {
        background: #2db3db;
        color: #fff;
        border-color: #2db3db;
    }*/

.breadcrumb > .active > a,
.breadcrumb a:hover {
    color: var(--color-primary) !important;
}

/*.breadcrumb > li + li:before {
    font-family: "Fontawsome";
    padding: 0 5px;
    color: #ccc;
    content: "\f061";
}*/
/*
.product-filter button.active {
    color: #444;
}

.product-filter button {
    background-color: #ffffff;
    border-color: #ffffff;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 34px;
    border-radius: 50%;
    z-index: 99999;
    box-shadow: 5px 10px 20px -10px rgb(0 0 0 / 35%);
    width: 45px;
    height: 45px;
    display: block;
    border: none;
    margin-bottom: 10px;
}

    .product-filter button.active .fa {
        color: #fbb03c;
    }

    .product-filter button .fa {
        color: #ddd;
    }

.product-filter {
    position: fixed;
    bottom: 65px;
    right: 20px;
}


.product-grid-show .item {
    position: relative;
}

.product_item_right {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    padding-left: 230px;
    width: 100%;
}

    .product_item_right .product-name {
        margin-top: 0;
        font-size: 22px;
        display: block;
        line-height: 1.4;
    }

.product-name a:hover {
    color: #1390df;
}

.book_author a {
    color: #777;
    text-shadow: #ffffff 0 1px 1px;
}

.book_author {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
}

    .book_author a > i {
        font-size: 16px;
    }

.btn_readmore_list >
a {
    color: #fff;
    background: #2db3db;
    padding: 8px 20px;
    display: inline-block;
    border-radius: 15px;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #eee;
}

    .btn_readmore_list > a:hover {
        background: #1597be;
        border-bottom: 1px solid #fff;
        border-right: 1px solid #eee;
    }

.btn_readmore_list {
    clear: both;
    overflow: hidden;
    float: left;
    display: block;
    margin-top: 15px;
}

.product_item_right .product-name a {
    color: #444;
    text-shadow: #ffffff 0 1px 1px;
}

    .product_item_right .product-name a:hover,
    .product_item_right .product-name a:focus {
        color: #2db3db;
        text-decoration: none;
    }
*/
.mana_pagination .pagination {
    margin: 0 auto 15px auto;
}

    .mana_pagination .pagination li {
        margin: 5px;
        display: inline-block;
    }

.mana_pagination .paging_bootstrap {
    text-align: center;
}

.mana_pagination .pagination li a {
    color: #444;
    border-color: #fff;
    background: #fff;
    border-radius: 0;
    font-size: 15px;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    border-width: 1px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 34px;
    text-align: center;
    width: 35px;
    height: 35px;
    line-height: 33px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    transition: all .25s;
    box-shadow: 5px 10px 20px -10px rgba(0,0,0,.25);
}

    .mana_pagination .pagination li a:hover,
    .mana_pagination .pagination li.active a {
        color: #fff;
        border-color: #fbb03c;
        background: #fbb03c;
    }

.mana_pagination .pagination li {
    margin: 5px;
    display: inline-block;
}

.mana_pagination .dropup a.dropdown-toggle {
    color: #888;
    border-color: #eee;
    background: #fff;
    border-radius: 5px;
    font-size: 15px;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    padding-left: 20px;
    padding-right: 20px;
}

    .mana_pagination .dropup a.dropdown-toggle:hover, .mana_pagination .dropup a.dropdown-toggle:focus {
        background: none;
        color: #888;
        border-color: #ddd;
        box-shadow: 2px 2px 4px rgba(0,0,0,.075);
    }

.mana_pagination .dropdown-menu-right {
    left: 0;
    right: auto;
    border-color: #ddd;
    box-shadow: 3px 3px 6px rgba(0,0,0,.125);
}

.find_result_text {
    margin-top: 0;
    font-size: 20px;
    line-height: 1.4;
    color: #444;
    text-shadow: #ffffff 0 1px 1px;
    text-align: center;
    display: block;
    margin-bottom: 15px;
    clear: both;
    overflow: hidden;
    float: left;
    width: 100%;
}

    .find_result_text > b {
        color: #fbb03c;
    }

body.book_detail .page_title {
    display: none;
}

body.book_detail .page_title {
    display: none;
}

body.book_detail .article-header {
    background: transparent;
    border: none;
    padding: 0;
}

    body.book_detail .article-header > h1 {
        text-transform: unset;
        font-size: 22px;
        color: #c20000;
        line-height: 1.4;
    }

body.book_detail .article-content .rte {
    margin-top: 10px;
}

body.book_detail .post-summary {
    font-weight: bold;
    text-transform: unset;
    color: #444;
    line-height: 1.4;
    font-size: 14px;
}

    body.book_detail .post-summary > i {
        font-style: normal;
    }

.date-author span:last-child {
    padding-right: 0;
}

.date-author span {
    margin-bottom: 5px;
    display: inline-block;
    padding-right: 15px;
    font-size: 12px;
    color: #515151;
}

.date-author {
    margin-bottom: 5px;
    margin-top: 5px;
}

.post_text_body {
    font-size: 14px;
    line-height: 1.7;
    /*white-space: pre-wrap;*/
}

    .post_text_body img {
        max-width: 100%;
        display: block;
        margin: 5px auto;
    }

        .post_text_body img + b {
            float: left;
            overflow: hidden;
            clear: both;
            width: 100%;
            text-align: center;
            font-style: italic;
        }

.article_tableHeader {
    display: table;
    width: 100%;
    margin-bottom: 20px;
}


.article_tableHeader_left, .article_tableHeader_right {
    display: table-cell;
    vertical-align: top;
}

.article_tableHeader_right {
    padding-left: 15px;
}

.article_tableHeader_left {
    width: 200px;
}

    .article_tableHeader_left img {
        -webkit-box-shadow: 10px 20px 20px -20px rgba(0,0,0,0.5) !important;
        -moz-box-shadow: 10px 20px 20px -20px rgba(0,0,0,0.5) !important;
        box-shadow: 10px 20px 20px -20px rgba(0,0,0,0.5) !important;
        border-radius: 3px;
    }

.book_btn_act {
    position: relative;
    display: block;
    clear: both;
}

    .book_btn_act > .btn {
        margin-right: 5px;
    }

        .book_btn_act > .btn:last-child {
            margin-right: 0;
        }


.is-component-book {
    margin-top: 10px
}

    .is-component-book a {
        padding: 5px 10px;
    }

        .is-component-book a:hover {
            color: #fff;
            background-color: #286090;
            border-color: #204d74;
        }


.w-1210 {
    width: 1225px !important;
}


/*style anlp*/
.icon-bao {
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
}

.icon-email-bao {
    background-image: url('../images/icon-email-bao.svg');
}

.icon-phone-bao {
    background-image: url('../images/icon-phone-bao.svg');
}

.icon-hashtag {
    background-image: url('../images/icon-hashtag.svg');
}

.icon-star-bao {
    background-image: url('../images/icon-star-bao.svg');
}

    .icon-star-bao.active {
        background-image: url('../images/icon-star-bao-active.svg');
    }

.icon-edit-bao {
    background-image: url('../images/icon-edit-bao.svg');
}

.icon-reply-bao {
    background-image: url('../images/icon-reply-bao.svg');
}

.w-h-26 {
    width: 26px;
    height: 26px;
}

.w-h-16 {
    width: 16px;
    height: 16px;
}

.w-h-20 {
    width: 20px;
    height: 20px;
}

.w-h-32 {
    width: 32px;
    height: 32px;
}

.text-color-red {
    color: var(--color-red-mk);
}

.ml-6px {
    margin-left: 6px;
}

.ml-3px {
    margin-left: 3px;
}

#footer {
    /* border-bottom: 8px solid var(--color-red-mk);
    background-color: var(--color-white);*/
    /* position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;*/
}

.footer_info {
    display: flex;
    padding-top: 28px;
    /*padding-bottom: 44px;*/
}

.footer_info-img {
    flex: 0 0 250px;
    max-width: 250px;
    margin-right: 60px;
}

    .footer_info-img > img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 1px;
        vertical-align: middle;
    }

.footer-info__desc {
    /*flex: 1 1 auto;
    display: flex;*/
    flex-wrap: wrap;
    width: 100%;
    text-align: right;
}

.footer-info__desc-left,
.footer-info__desc-right {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
}

.footer-info__desc-txt {
    display: flex;
    align-items: center;
    color: var(--color-gray-700);
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
}


.footer-info__desc-name {
    margin-left: 3px;
    font-weight: 700;
}

/*comment*/
/*.star-list {
    display: flex;
    align-items: center;
}

.star-item {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-right: 1px;
}

.comments-box__body-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comments-box__body-top-left {
    display: flex;
    align-items: center;
}

.comments-box__total {
    margin-left: 12px;
}

    .comments-box__total span[data-comment-count="0"] {
        display: none;
    }

    .comments-box__total span[data-comment-count] {
        font-size: 16px;
        line-height: 16px;
        font-weight: 600;
    }

.dropdown-btn-cm {
    padding: 4px 8px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-white);
    font-size: 15px;
    line-height: 24px;
    color: var(--color-gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
}

    .dropdown-btn-cm::after {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url("../images/icon-chevron-down-bao.svg");
        background-repeat: no-repeat;
        background-position: center;
        vertical-align: middle;
        margin-left: 8px;
    }

    .dropdown-btn-cm[aria-expanded="true"]::after {
        transform: rotate(180deg);
        transform-origin: center;
    }

.comment-item {
    display: flex;
    margin-bottom: 10px;
}

.user-cm {
    flex: 0 0 289px;
    max-width: 289px;
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
}

.comment-content {
    flex: 1 1 auto;
    padding-left: 12px;
    padding-right: 12px;
}

.user-cm__img {
    width: 64px;
    height: 64px;
    vertical-align: middle;
    object-fit: cover;
    display: block;
    flex: 0 0 64px;
}

.user-cm__info {
    margin-left: 10px;
    flex: 1 1 auto;
    overflow: hidden;
}

.user-cm__name {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.user-cm__gmail {
    margin-bottom: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 200px;
}

.comment-content__vote {
    display: flex;
    align-items: center;
    background-color: #F8F8F8;
    border-radius: 4px;
    padding: 11px 8px;
}

.mb-0px {
    margin-bottom: 0;
}

.comment-content__vote-total {
    margin-left: 10px;
}

.comment-content__vote-bc {
    font-weight: 600;
    font-size: 14px;
    margin-right: 10px;
}

.comment-content__text-title {
    color: #68717A;
    margin-top: 12px;
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 8px;
}

.textarea-cm {
    width: 100%;
    resize: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    height: 60px;
}

    .textarea-cm::placeholder {
        padding: 4px;
        color: #ADB5BD;
        font-size: 14px;
    }*/

.cta-dangbl {
    background-color: var(--color-red-mk);
    border-radius: 4px;
    font-size: 16px;
    color: var(--color-white);
    padding: 8px 12px;
    margin-top: 12px;
    outline: none !important;
    display: inline-block;
    border: 0;
}
/*
.product-img > img[src="/Content/images/logo_bao_nhan_dan.png"] {
    object-fit: contain;
}

*/
.login-messeges-error {
    color: #e20002;
}

.login-messeges-success {
    color: #009c0a;
}
/* Initial state */
div.modal-review__rating-order-wrap > span {
    display: block;
    float: left;
    height: 30px;
    width: 40px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='80'%20height='30'%3E%3Cpath%20d='M17.5,12.5h-8.5l6.8,5-2.6,8.1,6.8-5,6.8,5-2.6-8.1,6.8-5h-8.5l-2.6-8.1z'%20fill='%23c0c0c0'%20stroke='%23c0c0c0'/%3E%3Cpath%20d='M57.5,12.5h-8.5l6.8,5-2.6,8.1,6.8-5,6.8,5-2.6-8.1,6.8-5h-8.5l-2.6-8.1z'%20fill='%23ffd83d'%20stroke='%23eac328'/%3E%3C/svg%3E");
    background-position: 0 0; /* gray star */
}

/* Persistent state */
div.modal-review__rating-order-wrap[data-rating-value] > span {
    background-position: -40px 0; /* gold star */
}

div.modal-review__rating-order-wrap > span.active ~ span {
    background-position: 0 0; /* gray star */
}

/* Hover state */
div.modal-review__rating-order-wrap[class]:hover > span {
    background-position: -40px 0; /* gold star */
}

div.modal-review__rating-order-wrap[class] > span:hover ~ span {
    background-position: 0 0; /* gray star */
}

/*.comment-reply {
    margin-left: 289px;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 0.875rem 0.75rem;
    border-radius: 2rem;
}

    .comment-reply .user-cm {
        flex: 0 0 30px;
        max-width: 289px;
        padding-left: 0;
        padding-right: 12px;
        display: flex;
    }

        .comment-reply .user-cm .user-cm__name span {
            color: #000;
            font-weight: normal;
            font-size: 10px;
            background: #eebc49;
            padding: 2px 6px;
            border-radius: 3px;
            line-height: 18px;
        }
*/

.mb-10 {
    margin-bottom: 10px;
}

.cta-dangbl:hover {
    color: var(--color-white);
}

.cta-cm__box {
    display: flex;
    align-items: center;
}

.cta-cm {
    display: flex;
    align-items: center;
    margin-right: 4px;
    cursor: pointer;
}

.text-reply {
    display: none;
}

.input-reply {
    border-radius: 4px;
    border: 1px solid var(--color-border);
    font-size: 14px;
    padding: 10px 3px;
    width: 100%;
    height: 32px;
}
/*
.jsCommentContent textarea {
    padding: 5px 7px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    width: 100%;
    text-align: left;
    resize: none;
}
*/
#outerContainer {
    height: 100vh !important;
}

/*.jsCommentContent textarea:disabled {
    border: none;
    outline: none;
    background-color: transparent;
    resize: none;
    text-align: left;
    white-space: pre-line;
    -moz-text-align-last: left;
    text-align-last: left;
    overflow: hidden;
}

.jsCommentContent textarea:disabled {
    border: none;
    border-radius: 0;
}

.jsSubmit.show {
    display: inline-block;
}

.jsSubmit {
    display: none;
}*/

#outerContainer {
    height: 100vh !important;
}


.invalid-feedback {
    color: red;
    margin-top: 5px;
    display: block;
    clear: both;
    font-size: 13px;
}

.input-icon.input-icon-fix .invalid-feedback {
    margin-top: 5px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -20px;
}


.is-invalid {
    border: 1px solid red;
    background-color: #ffffd5;
    margin: 0;
    color: red;
}

.input-icon.input-icon-fix .is-invalid {
    /*border-left: 0;*/
}

.input-icon.input-icon-fix .input-group-addon.is-invalid {
    border-left: 1px solid red;
    /*border-right: 0;*/
    background-color: rgb(255, 255, 213);
}

.mt-3px {
    margin-top: 3px;
}

.user-cm__img + .user-cm__info > .user-cm__name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 200px;
}

.is-prev, .is-next {
    color: #444;
    border-color: #fff;
    background: #fff;
    font-size: 15px;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    border-width: 1px;
    font-weight: bold;
    border-radius: 50%;
    min-width: 34px;
    text-align: center;
    width: 50px;
    height: 50px;
    line-height: 45px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    -ms-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
    transition: all .25s;
    box-shadow: 5px 10px 20px -10px rgb(0 0 0 / 25%);
    position: absolute;
    left: -25px;
    top: calc(45% - 25px);
    font-size: 25px;
    opacity: 0.6;
}

.is-next {
    left: auto;
    right: -25px;
}


    .is-next:hover,
    .is-prev:hover {
        color: #fff;
        border-color: #fbb03c;
        background: #fbb03c;
        opacity: 1;
    }

    .is-next:focus,
    .is-prev:focus,
    .is-next:hover,
    .is-prev:hover {
        text-decoration: none;
    }


.btn-download {
    background-color: #8602FF;
    color: #fff
}

    .btn-download:hover,
    .btn-download:focus {
        color: #fff;
        background-color: #7801e5;
        border-color: #8602FF;
    }


.is-border-cm {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 20px 0;
}

/*.comments-box__heading {
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 10%);
    height: 38px;
}

    .comments-box__heading > span {
        box-shadow: inset 0 -2px 0 #eb2a2d;
        text-transform: uppercase;
        padding-bottom: 8px;
        font-weight: 500;
        margin-left: 10px;
    }

.comments-box__body {
    padding-left: 15px;
}*/
/*loadding*/
#wraploadding {
    background-color: #fff;
    opacity: 0.8;
    z-index: 5000;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
}

    #wraploadding div#imgloadding {
        width: 100px;
        height: 100px;
        margin: auto;
        position: relative;
    }

.book_btn_act .dropdown-menu > li > a {
    padding: 10px 20px;
}

input#StorageUsed::-webkit-outer-spin-button,
input#StorageUsed::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input#StorageUsed[type=number] {
    -moz-appearance: textfield;
}

.hashtag {
    background: #eeeeee;
    border-radius: 10px;
    font-size: 13px;
    height: 32px;
    line-height: 32px;
    color: #666;
    padding: 0 8px;
    margin-right: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
    cursor: pointer;
    font-weight: 600;
}

    .hashtag:hover {
        background-color: #d3d3d3
    }

.flex {
    display: flex;
}



.body_content {
    position: relative;
}

.banner_right, .banner_left {
    position: absolute;
    top: 60px;
    width: 250px;
    height: auto;
    /*background-color: #a23022;
    color: #ffd600;*/
    padding: 1.5rem;
    text-align: justify;
    font-family: 'Times New Roman';
    z-index: 9999;
    font-size: 15px;
    background-color: #dfbd6f99;
    color: #222;
}

.banner_right {
    right: -25%;
}

.banner_left {
    left: -25%;
}


.header_site_logo {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
}

.header_site_text {
    position: absolute;
}

.header_site_text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
}


.footer-info__desc_title {
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 1209px) {
    .banner_right, .banner_left {
        display: none !important;
    }
}

@media (max-width: 1500px) and (min-width: 1360px) {
    .banner_right {
        width: 200px !important;
        right: -18% !important;
    }

    .banner_left {
        width: 200px !important;
        left: -18% !important;
    }
}

@media (max-width: 1359px) and (min-width: 1300px) {
    .banner_right {
        width: 180px !important;
        right: -15% !important;
    }

    .banner_left {
        width: 180px !important;
        left: -15% !important;
    }
}

@media (max-width: 1299px) and (min-width: 1210px) {
    .banner_right {
        width: 150px !important;
        right: -11% !important;
    }

    .banner_left {
        width: 150px !important;
        left: -11% !important;
    }
}

/* chỉnh sửa*/
/*@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }


    @media (min-width: 992px) {
        .col-md-5s {
            width: 20%;
            float: left;
        }
    }

    .section-products {
        background-size: 990px 263px;
    }

    .product_item {
        height: 200px;
        width: 150px !important;
        margin-bottom: 62px !important;
    }
}*/



.slider p {
    margin-top: 75px;
    font-size: 14px;
}

.gallery-responsive img {
    margin-left: 20px;
}

.slick-prev:before, .slick-next:before {
    color: #c10000 !important;
    font-size: 40px;
}

.slick-prev {
    left: -46px;
}

.box-slider {
    width: 90%;
    margin: 0 auto;
}
/* thêm mới style*/
.top-container {
    background-color: var(--color-bg-grey)
}

.top_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .top_header > ul {
        height: 100%;
        width: fit-content;
        list-style: none;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        padding: 0.5rem;
    }

    /* .top_header > ul > li :after {
            content: "/";
        }

        .top_header > ul > li:last-child :after {
            content: "";
        }*/

    .top_header > span {
        cursor: pointer;
    }

#main-header {
    background-color: var(--color-primary);
    color: white;
    font-family: var(--font-primary);
}

.header-text {
    margin: 0.5rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-title {
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
    margin-bottom: 5px;
}

.header-subtitle {
    margin-top: 5px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 300;
    text-align: left;
}

.main-search {
    background: var(--color-primary);
    padding: 1rem;
}

.icon-search {
    color: var(--color-white);
}

.btn-search {
    background: var(--color-yellow);
}

.img-logo {
    width: 64px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-search:hover {
    background: var(--color-drk-yellow);
}
/*old product*/
.box-item {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--default-box-shadow);
    margin-bottom: 1.5rem;
}

.box-header {
    color: var(--color-white);
    padding: 0.5rem 1rem;
    background-color: var( --color-drk-blue);
}

    .box-header > h1 {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        line-height: 19.2px;
        text-align: center;
        text-underline-position: from-font;
        padding: 0.25rem;
        margin: 0;
    }
/*antx-them*/
.tailieumuon {
    padding: 10px 15px;
    text-align: right;
}

    .tailieumuon a {
        color: #f6c300;
        font-weight: bold;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
    }

        .tailieumuon a:hover {
            color: #e0b300;
        }

    .tailieumuon .play-icon {
        margin-left: 5px;
        font-size: 12px;
        background: #f6c300;
        color: #fff;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

.book-contaner-header {
    width: fit-content;
    background: var(--color-primary);
    border-radius: 5px 5px 0 0;
    text-transform: uppercase;
}

.book-contaner {
    border-bottom: 0.5rem solid var(--color-primary);
}

.book-type-title {
    padding: 0.5rem 1rem;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    text-underline-position: from-font;
    color: var(--color-white);
    text-shadow: var(--default-box-shadow);
}

.section-books {
    margin: 1rem 0;
}

.item-wapper {
    transform: translateY(0);
    cursor: pointer;
    box-shadow: var(--default-box-shadow);
    border-radius: 0.5rem;
    overflow: hidden;
    padding: 10px;
    transition: var(--transition)
}

    .item-wapper:hover {
        box-shadow: var(--secondary-box-shadow);
        transform: translateY(-1rem);
    }

.item-img {
    height: 150px;
}

    .item-img > img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        transition: all 3s ease-in-out;
    }

.item-title {
    padding: 0.5rem 1rem;
}
/*end-item*/
/*product */
.product_title {
    margin: 0;
}

.document-title {
    display: -webkit-box; /* Use a flexbox layout */
    -webkit-box-orient: vertical; /* Set the box orientation to vertical */
    overflow: hidden; /* Hide overflowing content */
    text-overflow: ellipsis; /* Add ellipsis */
    -webkit-line-clamp: 2; /* Number of lines to display */
    color: black;
}

.product-wrap {
    display: block;
    position: relative;
    width: 10rem;
}

    .product-wrap .has-noflip-image {
        border-radius: 0 1rem 1rem 0;
    }

    .product-wrap img {
        max-width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 0.5rem 0.5rem 0;
        box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.24);
    }

.catalog-image {
    position: relative;
    background-color: rgba(194, 197, 209, 0.253);
    height: 50%;
    border-radius: 0 1rem 1rem 0;
    padding: 1.5rem;
}

.product-buttons {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    z-index: 9999;
}

    .product-buttons > div a {
        font-size: 16px;
        transition: none;
        background-color: white;
        color: black;
        display: block;
        padding: 0.5rem 0.75rem;
        border-radius: 0.3rem;
    }

    .product-buttons > div {
        transform: translateY(40%);
        opacity: 0;
    }

.catalog-image:hover .product-buttons > div {
    transform: translateY(0);
    opacity: 1;
}

.product-buttons > .item-1 {
    transition: all 250ms ease-in-out;
}

.product-buttons > .item-2 {
    transition: all 250ms ease-in-out 100ms;
}

.product-buttons > .item-3 {
    transition: all 250ms ease-in-out 200ms;
}

    /*.product-buttons > .item-1:hover,
    .product-buttons > .item-2:hover,
    .product-buttons > .item-3:hover {
    }*/

    .product-buttons > .item-1:hover a,
    .product-buttons > .item-2:hover a,
    .product-buttons > .item-3:hover a {
        color: white;
        background: black;
    }
/* transiton */
.catalog-image::after {
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 0 1rem 1rem 0;
    background-color: rgba(255, 0, 0, 0);
    z-index: 1;
    transition: all 300ms ease-in-out;
}

.catalog-image:hover::after {
    background-color: rgb(88 88 88 / 24%);
}

.product-content a {
    text-decoration: none;
}

.product-content div {
    margin: 0.5rem 0;
}

.product-cats > a {
    font-size: 0.8rem;
    color: #606775;
}

.product_title > a {
    color: black;
    font-size: 1.2rem;
}

.authors-list {
    color: #606775;
}

    .authors-list > a {
        color: black;
    }

.product-price {
    color: red;
    font-size: 18px;
    font-weight: 600;
}
/* tooltip */
/*.tooltip {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        position: absolute;
        z-index: 1;
        bottom: 150%;
        left: 50%;
        margin-left: -60px;
    }

        .tooltip .tooltiptext::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: black transparent transparent transparent;
        }

    .tooltip:hover .tooltiptext {
        visibility: visible;
    }

.tooltiptext {
    transition: none !important;
}*/

/*endproduct*/
.book-container-content {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.book-container-content-6 {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}


.top_header_nav {
    font-size: 14px;
    padding: 0 10px;
    cursor: pointer;
    transition: var(--transition);
}

    .top_header_nav:hover {
        color: var(--color-primary);
    }

    .top_header_nav > a {
        color: #444;
    }

    .top_header_nav:hover > a {
        color: var(--color-primary);
    }
/*thêm mới sticky header 
*/
.sticky {
    position: fixed !important; /* Cố định header */
    top: 0 !important;
    z-index: 99999;
    left: 0 !important;
    width: 100% !important;
}

.box-content {
    font-size: 14px;
    padding: 0 0.5rem;
    /* padding: 0.5rem 1rem;*/
}

    .box-content > ul {
        list-style: none;
    }

        .box-content > ul > li {
            padding: 10px;
        }

            .box-content > ul > li > b {
                color: var(--color-drk-blue);
            }

.box-content-sumary > li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.5rem;
}

    .box-content-sumary > li:not(:last-child) {
        border-bottom: 1px solid var(--border-color);
    }

    .box-content-sumary > li > .value {
        padding: 0.25rem 0.5rem;
        background: var(--color-yellow);
        color: var(--color-white);
        border-radius: 2rem;
        font-weight: 700;
        font-size: 12px;
    }

    .box-content-sumary > li > .title {
        font-weight: 700;
        font-size: 14px;
    }

.box-content-menu > li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.box-content-menu > li > a {
    color: #000;
    font-weight: 700;
}

.box-content-menu > li {
    transition: var(--transition);
    background: var(--color-white);
}

    .box-content-menu > li:hover {
        background: var(--border-color)
    }

@media (max-width: 600px) {
    .box-slider {
        width: 80%;
    }
}
/*comment*/
.comment-item {
    margin: 1rem;
}

.comment-avt {
    height: 40px;
    width: 40px;
}

    .comment-avt > img {
        border-radius: 2rem;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comment-user-name {
    font-size: 14px;
    font-weight: 700;
}

.comment-date {
    margin-left: 1rem;
    color: var(--color-gray-600);
    font-weight: 600;
    font-size: 14px;
}

.comment-content {
    padding: 0.5rem 0;
    font-size: 14px;
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 3rem;
    color: var(--color-gray-600);
}

    .comment-footer > div > i {
        font-size: 18px;
    }

    .comment-footer > div > .fa-thumbs-up:hover {
        color: var(--color-primary);
        cursor: pointer;
    }

    .comment-footer > div > .fa-thumbs-down:hover {
        color: var(--color-primary);
        cursor: pointer;
    }

    .comment-footer > div > .fa-comment:hover {
        color: var(--color-primary);
        cursor: pointer;
    }
/*    swipeer*/
.swiper-document {
    width: 100%;
    height: 50rem;
    margin: 1rem 0;
    /* // height: fit-content;*/
}

.swiper-book {
    margin: 1rem 0;
    width: 100%;
    height: fit-content;
}

.swiper-document > .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2) !important;
    /* Center slide text vertically */
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-book > .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next:after, .swiper-button-prev:after {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.2rem;
    opacity: 0.5;
    transition: var(--transition)
}

.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
    opacity: 1 !important;
}
/*tracuu*/
.form-box {
    margin-bottom: 2rem;
}

.form-box-header {
    border-bottom: 0.5rem solid var(--color-primary);
}

.form-box-title-content {
    width: fit-content;
    background: var(--color-primary);
    border-radius: 5px 5px 0 0;
    text-transform: uppercase;
}

.form-box-title-value {
    padding: 0.5rem 1rem;
    font-weight: 700;
    line-height: 19.2px;
    text-align: left;
    text-underline-position: from-font;
    color: var(--color-white);
    text-shadow: var(--default-box-shadow);
}

.form-box-content {
    padding: 2rem;
    box-shadow: var(--default-box-shadow);
}

.align-center-form {
    display: flex;
    align-items: center;
}

    .align-center-form > label {
        font-size: 14px;
        font-weight: 700;
        line-height: 21px;
        text-align: left;
        text-underline-position: from-font;
    }

.center-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.form-box-content > div > .title {
    font-size: 14px;
}

/*.card-libary-header {
    text-align: center;
    padding: 1rem;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid black;
}

.card-libary-wapper {
    //border: 1px solid black;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-libary {
    width: 402px;
    border: 1px solid black;
    border-radius: 0.5rem;
}

.card-libary-content {
    padding: 0.5rem 1rem;
    height: 100%;
}

.card-libary-content-img > img {
    object-fit: cover;
    width: 100%;
    height: 108px;
}
*/
.Captcha-conatiner {
    display: flex;
    align-items: center;
    gap: 2rem;
}



.btn-captcha {
    color: white;
    background-color: var(--color-primary);
}

.imgcaptcha {
    height: 40px;
}

.captcha-title-input {
    width: 150px;
}

.commet-form {
    padding: 2rem;
}

.form-box-content-menu > ul {
    font-size: 14px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0 14px;
    background-color: var(--color-primary);
    margin: 0;
}

    .form-box-content-menu > ul > li > a {
        display: inline-block;
        padding: 0.6rem;
        color: white;
        font-weight: 600;
        cursor: pointer;
    }

.form-box-content-menu > active {
    color: var(--color-drk-blue);
}

.details-image > img {
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}

.details-image {
    height: 300px;
    width: 180px
}

.form-box-content-details {
    display: flex;
    align-items: center;
}

.details-right-box {
    text-align: center;
    border-radius: 0.5rem;
    padding: 1rem;
    background: var(--color-sub-color)
}

.btn-custom {
    padding: 1rem 0;
    color: var(--color-white);
    outline: none;
    border: none;
    border-radius: 0.2rem;
    font-family: var( --font-primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

    .btn-custom:hover {
        opacity: 0.8;
    }

.btn-addCart {
    background: linear-gradient(90deg, #F59E0B 0%, #D53337 100%);
    margin: 1rem 0;
    width: 100%;
}

    .btn-addCart > i {
        font-size: 1.5rem;
        padding-right: 0.5rem;
        color: #D63637;
    }

.btn-addFavorite {
    background: linear-gradient(90deg, #4CC8F2 0%, #0D6EFD 100%);
    width: 100%;
}

    .btn-addFavorite > span {
        margin-right: 1rem;
    }

.btn-borrow {
    background: linear-gradient(90deg, #42E05C 0%, #009951 100%);
    margin: 1rem 0;
    width: 100%;
}

    .btn-borrow > img {
        width: 24px;
        height: 24px;
        margin-right: 1rem;
    }

.btn-folow {
    cursor: pointer;
    color: var(--color-white);
    padding: 0.3rem 0.4rem;
    border-radius: 2rem;
    background: var(--color-primary);
    transition: var(--transition);
}

.btn-cusom-download {
    cursor: pointer;
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
    padding: 10px 15px;
    border-radius: 5px;
    background: #248BCC;
}

.custom-disabled {
    background-color: var(--color-bg-grey) !important;
    cursor: not-allowed !important;
}

    .custom-disabled:focus {
        color: white !important;
        text-transform: none !important;
    }

    .custom-disabled:hover {
        opacity: 1 !important;
    }

.btn-cusom-download:hover {
    color: white;
}

.form-box-content-dowload-row {
    display: flex;
    align-items: center;
    margin: 14px 0;
}

    .form-box-content-dowload-row > div > b {
        font-size: 14px;
    }

.form-check-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.book-row-wapper {
    padding: 1rem;
    box-shadow: var(--default-box-shadow);
    margin: 2rem 0;
}

.book-content-title {
    color: var(--color-primary);
    font-weight: 600;
    margin: 14px 0;
}

.book-image {
    width: 150px;
    height: 189px;
}

    .book-image > img {
        object-fit: cover;
        width: 100%;
        max-height: 100%;
    }

.book-content .item {
    font-size: 14px;
    margin-bottom: 9px;
}

.Book-DKCB {
    margin: 14px 0;
}

    .Book-DKCB > .title {
        font-weight: bold;
    }

.btn-folow {
    cursor: pointer;
    color: var(--color-white);
    padding: 0.2rem 0.4rem;
    border-radius: 2rem;
    background: var(--color-primary);
    transition: var(--transition);
}

    .btn-folow:hover {
        opacity: 0.7;
    }

.folow {
    cursor: pointer;
    color: var(--color-primary);
}

.card-libary-wapper {
    border-radius: 0.4rem;
    box-shadow: var(--secondary-box-shadow);
    position: relative;
    font-size: 14px;
    width: 462px;
    height: 272px;
    background-image: url(/Content/images/LibaryCardBackGround.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-libary-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.card-libary-img-wrap {
    width: 75px;
    height: 100px;
    border: 1px solid #dbdbdb;
}

    .card-libary-img-wrap img {
        min-width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-libary-content .title {
    font-weight: 600;
    padding: 0 16px;
}

.card-libary-title {
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    position: absolute;
    top: 19px;
    left: 149px;
}
/*profile*/
.dropdown-profile {
    min-width: 200px !important;
    padding: 0.5rem;
}

.menu-avatar-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    height: 20px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.Guest-name {
    width: 200px;
    margin: 5px;
    overflow: hidden;
    font-weight: bold;
    text-overflow: ellipsis;
}

.Guest-email {
    width: 200px;
    overflow: hidden;
    font-weight: bold;
    text-overflow: ellipsis;
}

.dropdown-profile-header {
    color: black;
    text-align: center;
    padding: 10px 5px 10px 5px;
}

.dropdown-profile hr {
    margin: 0;
}

.dropdown-profile > .dropdown-item {
    display: block;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    font-size: 14px;
    color: var(--color-gray-600)
}

    .dropdown-profile > .dropdown-item:hover {
        background-color: var(--color-primary);
        color: white;
    }

    .dropdown-profile > .dropdown-item > i {
        padding-right: 0.5rem;
    }

.dropdown-profile .menu-avatar {
    padding: 0.5rem 1rem;
}

.avatar-image-wrapper {
    margin: auto;
    height: 80px;
    width: 80px;
    border-radius: 100rem;
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0.5px solid var(--color-bg-grey);
}

    .avatar-image-wrapper > img {
        width: 100%;
        max-height: 100%;
        object-fit: cover;
    }

.menu-avatar {
    cursor: default;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}
/*comment*/
.comment-form-wrapper {
    width: calc(100% - 40px - 10px);
    padding: 1rem;
    background-color: #fbf6f6;
    border-radius: 0.6rem;
}

    .comment-form-wrapper hr {
        border-color: black;
    }

.input-comment {
    min-height: 50px;
    max-height: 100px;
    overflow: hidden;
    resize: none;
    border: none;
    font-size: 14px;
    outline: none;
    width: 100%;
    background-color: #fbf6f6;
}

.comment-container {
    display: flex;
    gap: 14px;
}

.input-comment::placeholder {
    color: #808080;
}

.btn-send-comment {
    background: none;
    border: none;
    outline: none;
    font-size: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .form-check > label {
        margin: 5px 0 0;
    }
/*icon trong form bằng nhau*/
.input-group-addon > i:first-child {
    width: 20px;
}
/*custom notification*/
.cus-notification {
    overflow: hidden;
    border-radius: 5px;
    position: fixed;
    box-shadow: var(--default-box-shadow);
    z-index: 999999;
    right: 20px;
    min-width: 200px;
    max-width: 250px;
    top: 20px;
    background-color: white;
    font-size: 14px;
}

.cus-notification-header {
    font-weight: 600;
    background-color: #42E05C;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cus-notification-close {
    cursor: pointer;
}

    .cus-notification-close:hover {
        color: black;
    }

.cus-notification-body {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

    .cus-notification-body > ul {
        list-style: none;
        margin-bottom: 0;
    }

    .cus-notification-body > span {
        font-size: 20px;
        color: #42E05C;
    }

.cus-notification-errors .cus-notification-header {
    background-color: #DE2418 !important;
}

.cus-notification-errors > .cus-notification-body > span {
    color: #DE2418;
}

.display-image {
    height: 200px;
    width: 150px;
    box-shadow: var(--default-box-shadow);
    position: relative;
    overflow: hidden;
}

    .display-image > img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .display-image > .closeDemoImage {
        position: absolute;
        top: 5px;
        right: 5px;
    }
/*//demo image*/
.avartar-demo-img > img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.avartar-demo-img {
    height: 240px;
}

.avartar-demo-body {
    padding: 20px;
}

.avartar-demo-wrapper {
    background-color: white;
    height: 450px;
    width: 230px;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: var(--default-box-shadow);
}

.avatar-demo-container {
    position: relative;
}

.avartar-demo-wrapper {
    position: absolute;
    right: -230px;
}

.avartar-demo-header {
    font-weight: bold;
    border-bottom: 1px solid var(--color-bg-grey);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.avartar-demo-content > p {
    line-height: 20px;
    font-weight: bold;
    white-space: pre-wrap !important;
}

.loading {
    background-image: url("/Assets/app/img/loading.gif") !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 30px;
}

.form-box-content-details-mid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 15px;
    gap: 20px;
}

.detatils-description {
    font-size: 16px;
    margin: 20px 0;
}
/*style phan trang Base*/
.dataTables_paginate .txtNumberOfPageCustom {
    height: 32px;
    margin: 2px;
    border: 1px solid #ccc;
    padding: 5px;
    width: 45px;
    color: #333333;
    text-align: center;
}

.dataTables_paginate {
    display: flex;
    align-items: center;
    justify-content: end;
}

.dataTables_info strong {
    font-weight: normal;
}

.dataTables_info > div {
    display: inline-block;
    font-size: 13px;
}
/*style button */
.btn-icon {
    background: none;
    font-size: 20px;
    border: none;
    border-radius: 100px;
    margin-left: 10px;
    transition: all 300ms ease;
}

    .btn-icon :hover {
        background-color: rgb(204 204 204 / 0.35);
    }
/*fix dropdown menu*/

.account-area {
    margin: 0;
    list-style: none;
}

.dropdown-notifications {
    padding: 0;
}

.cus-icon-notify {
    color: white;
    font-size: 18px;
}

.cus-badge-ntf {
    position: absolute;
    right: -12px;
    top: -10px;
    background: red;
    border-color: red;
}

.comment-text {
    max-height: 3em; /* 2 dòng (khoảng 1.5em mỗi dòng) */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Giới hạn 2 dòng */
    -webkit-box-orient: vertical;
    position: relative;
    margin-bottom: 0;
    word-break: break-word; /* Đảm bảo ngắt từ đúng cách */
}

    .comment-text.expanded {
        max-height: none;
        -webkit-line-clamp: unset;
        white-space: normal;
    }

    .comment-text + .read-more {
        display: none;
        color: var(--color-primary);
        text-decoration: underline;
        cursor: pointer;
        font-size: 0.9em;
        margin-top: 5px;
    }

    .comment-text.has-more + .read-more {
        display: inline;
    }

    .comment-text.expanded + .read-more.hide,
    .comment-text.expanded + .read-more.show {
        display: none;
    }

    .comment-text.expanded + .read-more.hide {
        display: inline;
    }

.read-more {
    text-decoration: underline;
    color: var(--color-primary);
    cursor: pointer;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
