:root {
    --main_color: #af1f28;
    --main_color2: #dbb375;
    --main_color_bg: rgb(219 179 117 / 20%);
}

body {
    background: var(--main_color_bg);
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 400;
    color: #333;
    margin: 0px;
    padding: 0px;
    -webkit-text-size-adjust: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

a:hover,
a:focus {
    color: var(--main_color2);
    text-decoration: none;
}

.header_top {
    background-color: #ffffff;
    margin: 0;
    padding: 10px 0 10px 0;
    font-size: 13px;
}

img {
    max-width: 100%;
    max-height: 100%;
    height: auto !important;
}

.container {
    max-width: 1220px;
    width: 100%;
    padding: 0 10px;
}

.row {
    margin-right: -10px;
    margin-left: -10px;
}

.row.new_ver {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.row.new_ver .col {
    padding: 0 10px;
    flex: 0 0 auto;
}

.row.new_ver .col-12 {
    width: 100%;
}

.row.new_ver .col-6 {
    width: 50%;
}

.col_logo {
    width: 20.5%;
    border: none;
    height: 45px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo p {
    width: 66px;
    margin-bottom: 0;
}

.logo span {
    font-size: 30px;
    color: var(--main_color);
    text-transform: uppercase;
    letter-spacing: -1px;
    width: calc(100% - 56px);
}

.footer_top .logo span strong {
    font-weight: 500;
    font-size: 18px;
    display: block;
    line-height: 20px;
}

.col_search {
    width: 54.5%;
    position: relative;
}

.col_notify {
    width: 5%;
}

.col_app {
    width: 20%;
    display: none;
}

.col_account {
    width: 15%;
}

.col_cart {
    width: 5%;
}

.header_top .row {
    align-items: center;
}

.app_download {
    display: flex;
    align-items: center;
    max-width: 100%;
}

.app_download a.btn-app {
    width: 50%;
    margin: 0 2px 0 0;
}

.app_download a.btn-app+a {
    margin: 0 0 0 2px;
}

.col_account .nav-account {
    position: relative;
}

.nav-account-pop {
    position: absolute;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    background: #fff;
    z-index: 999;
    width: 250px;
    right: 0px;
    padding: 15px;
    top: calc(100% + 50px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
}

.nav-account.active .nav-account-pop {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

.col_account .nav-account.active .nav-login-text,
.col_account .nav-account.active .nav-login-text i {
    color: var(--main_color);
}

.nav-account-pop .title {
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
    color: var(--main_color);
    font-weight: 700;
}

.col_account .nav-account button.btn-block {
    background-color: var(--main_color);
    border-color: var(--main_color);
}

.ic {
    display: inline-block;
    background-size: cover !important;
}

.ic_search {
    width: 40px;
    height: 40px;
    background: url(../images/ic_search.png) no-repeat center center;
    cursor: pointer;
    order: 2;
}

.ic_support {
    width: 50px;
    height: 50px;
    background: url(../images/ic_support.png) no-repeat center center;
    background-size: 22px !important;
}

.ic_filter {
    width: 20px;
    height: 20px;
    background: url(../images/ic_filter.png) no-repeat center center;
    background-size: 20px !important;
}

#cart .cart-container {
    width: 34px;
    height: 34px;
    background: #f2f2f2;
    border-radius: 50%;
    text-align: center;
}

#cart .cart-icon {
    background: url(../images/ic_cart.png) no-repeat center center;
    background-size: contain !important;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-top: 7px;
}

#cart .cart-icon .cart-badge {
    top: -12px;
}

.col_search form {
    border-radius: 8px;
    padding: 0;
    width: 100%;
    height: 40px;
    font-size: 14px;
    display: flex;
    border: 1px solid rgb(221, 221, 227);
    overflow: hidden;
    background: #fff;
}

.col_search form .search-btn {
    width: 100px !important;
    color: var(--main_color) !important;
    font-size: 14px !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: 0 8px 8px 0;
    background: transparent !important;
}

.col_search form .search-btn:before {
    content: "";
    display: block;
    position: absolute;
    border-left: 1px solid rgb(221, 221, 227);
    height: 24px;
    left: 0px;
    top: 8px;
}

.col_search form #input_search {
    border: 0 !important;
    width: calc(100% - 140px) !important;
    padding: 0 10px !important;
    outline: none;
    height: 100% !important;
}

.col_search form select {
    height: 100%;
    border: 0;
    width: 100px;
    margin-right: 5px;
}

.col_account .nav-account .nav-login-text {
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.col_account .nav-account .nav-login-text i {
    width: 34px;
    height: 34px;
    background: #f2f2f2;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    font-size: 23px;
    color: #8c8c8c;
    margin-right: 5px;
}

.header_nav {
    background: var(--main_color);
    position: relative;
}

.hover_banner_menu {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 111;
    visibility: hidden;
    opacity: 0;
    top: calc(100% + 20px);
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
}

.hover_banner_menu .col_banner_menu {
    width: 100%;
}

.col_nav_cat {
    width: 20.5%;
    padding-right: 0 !important;
    position: relative;
    z-index: 990;
}

.col_nav_menu {
    width: 79.5%;
    padding-left: 0px !important;
}

.sub_menu {
    position: absolute;
    width: 260px;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
    margin-left: -15px;
    border-radius: 0 0 8px 8px;
    z-index: 9;
    display: none;
}

.sub_menu li>a {
    border-bottom: 1px solid #eee;
    padding: 10px 15px;
    display: block;
    font-size: 14px;
    color: #333;
}

.sub_menu li:last-child>a {
    border: 0;
    border-radius: 0 0 8px 8px;
}

.sub_menu li>a:hover {
    background-color: #f6f6f6;
    color: var(--main_color);
}

.header_menu .menu>li:hover>.sub_menu {
    display: block;
}

.header_menu .menu {
    margin: 0;
    display: flex;
    align-items: center;
}

.header_menu .menu>li {
    position: relative;
    padding: 0 15px;
}

.header_menu .menu>li>a {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffd696;
    height: 40px;
    display: block;
    line-height: 40px;
}

.header_menu .menu li>a:hover {
    color: var(--main_color2);
}

#header {
    background: transparent;
}

.col_banner_menu {
    height: auto !important;
    width: 20.5%;
    padding: 0 0 0 10px !important;
    position: relative;
}

.col_banner_slider {
    width: 79.5%;
}

.banner_menu .home-slide {
    padding-left: 0 !important;
    width: 100%;
}

.header_sub_banner {
    padding-left: 0 !important;
    display: none;
}

ul.menu {
    margin: 0;
}

.banner_menu_cat {
    box-shadow: 0 1px 2px rgb(0 0 0 / 25%);
    border-bottom: 1px solid #eee;
    background: #fff;
    height: 350px;
    overflow-y: auto;
    border-radius: 0 0 0 8px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

.banner_menu_cat li {
    padding: 0 10px;
}

.banner_menu_cat li a {
    display: block;
    border-bottom: 1px solid #eee;
    padding: 6px 0;
    line-height: 19px;
}

.banner_menu_cat li:last-child>a {
    border: 0;
}

.banner_menu_cat li:hover {
    background: var(--main_color2);
}

.banner_menu_cat li:hover>a {
    border-color: var(--main_color2);
    color: #fff;
}

.banner_menu {
    padding-bottom: 20px;
    position: relative;
}

.megamenu_sub_wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0 10px;
}

.megamenu_sub_inner {
    display: flex;
    justify-content: end;
}

.megamenu_sub {
    height: 350px;
    width: calc(79.5% + 6px);
    background: #fff;
    position: relative;
    z-index: 111;
    display: none;
}

.megamenu_sub .item {
    display: none;
    padding: 15px;
    height: 100%;
    overflow-y: auto;
}

.megamenu_sub .item>a {
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
}

.mega_sub {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.mega_sub li {
    width: 33.33%;
    padding: 0 10px;
}

.mega_sub li a {
    padding: 5px 0;
    display: inline-block;
}

.show_megamenu .megamenu_sub_wrap {
    visibility: visible;
    opacity: 1;
}

.show_megamenu .megamenu_sub {
    display: block;
}

.show_megamenu .megamenu_sub .item.active {
    display: block;
}

.menuStick .show_megamenu {
    position: fixed;
    top: 40px;
    z-index: 80;
    left: 0;
    right: 0;
    padding: 0;
}

.col_nav_cat .title {
    height: 40px;
    padding: 0 10px;
    line-height: 40px;
    color: #ffd696;
    text-transform: uppercase;
    font-weight: 700;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
}

.col_nav_cat .title i {
    margin-right: 10px;
    font-size: 20px;
}

#home-slide .item {
    width: 100%;
}

#home-slide .item a {
    display: block;
    height: auto;
    position: relative;
    padding-top: 36.46%;
    width: 100%;
}

#home-slide .item a[href="javascript:"] {
    cursor: auto;
}

#home-slide .item a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub_banner .item a {
    display: block;
    position: relative;
    height: 125px;
}

.sub_banner .item a img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-control {
    width: 35px;
    height: 35px;
    top: calc(50% - 17px);
    background: #fff !important;
    opacity: 1;
    border-radius: 50%;
    color: #979797;
    line-height: 35px;
}

.carousel-control:focus,
.carousel-control:hover {
    color: #fff;
    background: var(--main_color2) !important;
}

.left.carousel-control {
    left: 10px;
}

.right.carousel-control {
    right: 10px;
}

.section_book {
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    position: relative;
}

.section_book .title {
    padding: 12px 20px 0px 20px;
    font-weight: bold;
    position: relative;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
}

.section_book .title .title-more {
    font-size: 12px;
    background-color: #eee;
    color: var(--main_color);
    width: 100px;
    height: 30px;
    border-radius: 20px;
    text-align: center;
    text-transform: capitalize;
    margin-left: 10px;
    font-weight: normal;
    line-height: 30px;
}

.section_book .title .title-more:hover {
    color: var(--main_color2);
}

.section_book .title .title-more i {
    margin-left: 3px;
}

.booklist-wrap {
    margin: 0;
}

.booklist-wrap ul li {
    width: 236px;
    padding: 10px;
    margin: 0;
}

.book_cont {
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    border: 1px solid rgb(235, 235, 240);
    border-radius: 8px;
    padding: 10px;
}

.btn_book_list {
    position: absolute;
    top: calc(50% + 10px);
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    opacity: 0;
    visibility: hidden;
}

.btn_book_list button {
    display: block;
    margin: 5px auto;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    background-image: linear-gradient(var(--main_color), #a30c13);
    border: 1px solid transparent;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
}

.btn_book_list button:hover {
    color: var(--main_color2);
    background: #fff;
    border: 1px solid var(--main_color2);
}

.btn_book_list button i {
    margin-right: 5px;
}

.book_cont:hover {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    border-color: var(--main_color2);
}

/*.book_cont:hover .blw-title a{*/
/*    color: var(--main_color2);*/
/*}*/

.book_cont:hover .btn_book_list {
    top: 50%;
    opacity: 1;
    visibility: visible;
}

.booklist-wrap .blw-thumb {
    padding-top: 100%;
    height: auto;
    margin-bottom: 10px;
    position: relative;
}

.booklist-wrap .blw-thumb .thumb {
    border: 0;
}

.booklist-wrap .blw-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    object-fit: scale-down;
    object-position: center;
}

.booklist .blw-btn.blw-next {
    right: 10px;
    left: auto;
}

.booklist .blw-btn {
    left: 10px;
    width: 35px !important;
    height: 35px;
    top: calc(50% - 17px);
    color: #333;
    font-size: 25px;
    background: #fff;
    border-radius: 50%;
}

.booklist {
    padding: 0 10px;
}

.footer {
    background: #fff;
    overflow: hidden;
}

.footer_top {
    padding: 20px 0;
}

.copyright {
    background: var(--main_color);
    padding: 15px 0 5px;
    text-align: center;
    font-size: 13px;
    color: #ddd;
}

.footer_top .logo {
    margin-bottom: 20px;
}

.tbl-support {
    margin: 0;
}

.tbl-support>tbody>tr>td {
    padding: 5px;
}

.widget_title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0 10px;
}

.widget_title input {
    font-weight: normal;
}

.footer_top .app_download {
    margin-bottom: 20px;
}

.socical a {
    display: inline-block;
    margin: 5px 5px 0 0;
    text-align: center;
    border: 1px solid;
    border-radius: 50%;
}

.socical a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
}

.my_policy {
    padding: 10px 0;
    background: var(--main_color2);
    color: #fff;
}

.policy {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.policy .thumb {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    color: var(--main_color2);
    text-align: center;
    line-height: 50px;
    font-size: 30px;
}

.policy .cont {
    width: calc(100% - 50px);
    padding-left: 10px;
    font-size: 11px;
}

.policy .cont h3 {
    font-size: 14px;
    margin: 0 0 4px;
    font-weight: 700;
}

.book_cont .thumb {
    position: relative;
    overflow: hidden;
}

.nav-account-pop ul {
    margin: 0;
    padding: 0;
}

.nav-account-pop ul li {
    padding: 5px 0;
    border: 0;
}

.nav-account-pop ul li:last-child {
    border: 0;
}

.nav-account-pop ul li a {
    font-size: 14px;
    color: #333;
}

.nav-account-pop ul li a:hover {
    color: var(--main_color);
}

.main_content {
    background: #fff;
    border-radius: 4px;
    padding: 0 10px;
}

.home_main {
    background: var(--main_color_bg);
    margin-left: -10px;
    margin-right: -10px;
}

.header_nav_wrap {
    height: 40px;
}

.carousel-indicators {
    bottom: 0px;
}

.carousel-indicators li {
    background: #fff;
}

.carousel-indicators .active {
    background: var(--main_color);
    border-color: var(--main_color);
}

.menuStick .header_nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    box-shadow: 0px 0px 10px 0px #ccc;
}

.section_book .title.titimg {
    text-align: center;
    display: block;
    height: 20px;
}

.title.titimg .title_img {
    display: inline-block;
    height: 40px;
    background: var(--main_color);
    color: #fff;
    line-height: 40px;
    font-weight: 700;
    padding: 0 50px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.title.titimg .title_img:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid var(--main_color);
    border-left: 16px solid transparent;
    border-top: 0;
    border-right: 5px solid transparent;
    left: -15px;
}

.title.titimg .title_img:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid var(--main_color);
    border-right: 16px solid transparent;
    border-top: 0;
    border-left: 5px solid transparent;
    right: -15px;
}

.msgjs_container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    top: 12px;
    right: 12px;
    display: none;
}

.msgjs {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px !important;
    width: 400px !important;
    -moz-border-radius: 3px !important;
    -webkit-border-radius: 3px !important;
    border-radius: 3px !important;
    background-position: 15px center !important;
    -moz-box-shadow: 0 0 12px #999 !important;
    -webkit-box-shadow: 0 0 12px #999 !important;
    box-shadow: 0 0 12px #999 !important;
    color: #fff !important;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    background-repeat: no-repeat !important;
}

.msgjs.success {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
    background-color: #51a351;
}

.msgjs.info {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
    background-color: #2f96b4;
}

.msgjs.warning {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
    background-color: #f89406;
}

.msgjs.error {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
    background-color: #bd362f;
}

.msgjs .close {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    outline: none !important;
}

.site_info {
    font-size: 13px;
}

.site_info .item i.fa {
    width: 25px;
    font-size: 20px;
}

.widget_content li {
    padding: 5px 0;
}

.booklist .blw-btn:hover {
    background: var(--main_color2);
}

#pagination .pagination li.active a {
    background: var(--main_color2) !important;
}

.btn_order,
.btn-pay {
    background: var(--main_color) !important;
    border-bottom: 0 !important;
    color: #fff;
    background-image: linear-gradient(var(--main_color), #da150a) !important;
}

.search-advance {
    padding: 20px;
    max-width: 800px;
    margin: auto;
}

.booklist-wrap .row.new_ver .col {
    margin-bottom: 20px;
}

.booklist-wrap .blw-title {
    text-align: center;
}

.booklist-wrap .blw-writer {
    text-align: center;
}

.blw-writer-link-color {
    color: #a6a6a6;
}

.box-mine {
    background: var(--main_color);
    color: #fff;
    padding: 10px 5px;
    margin: -1px;
    text-align: center;
    border-radius: 4px 4px 0 0;
}

.box-mine .balance span {
    display: inline-block;
    padding: 0 15px;
    padding-right: 30px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    background: #fff;
    color: var(--main_color);
    position: relative;
}

.balance-reward {
    display: inline-block;
    padding: 0 15px;
    padding-right: 30px;
    height: 28px;
    line-height: 28px;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    background: #66ffbb;
    color: var(--main_color);
    position: relative;
}

.box-mine .balance span a {
    position: absolute;
    background: #fff;
    width: 28px;
    height: 28px;
    text-align: center;
    top: 0;
    right: 0;
    display: inline-block;
    font-size: 14px;
    color: var(--main_color);
}

.sub_banner {
    max-width: 230px;
}

.voucher_cp {
    margin-bottom: 10px;
    background: #ccc !important;
    border-radius: 8px;
    padding: 8px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 999;
    display: none;
}

body.page .col_banner_menu,
body.page .col_banner_slider {
    display: none;
}

.hover_banner_menu .col_banner_menu {
    display: block !important;
}

.col {
    padding: 0 10px;
}

.cpa_grid {
    padding: 10px;
}

.cpa_grid .title {
    text-align: center;
    padding: 10px 0 0;
}

.cpa_grid .title h3 {
    margin: 0;
    font-size: 16px;
    color: #555;
}

.cpa_grid .col {
    padding-top: 10px;
    padding-bottom: 10px;
}

.section_title {
    padding: 10px;
}

.section_title .title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    height: auto;
    padding-bottom: 5px;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
}

.cpa_grid .thumb {
    padding-top: 100%;
    position: relative;
}

.cpa_grid .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.cp_detail {
    margin: 0 -10px;
}

.cp_banner {
    padding: 20px 30px 60px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.cp_banner>.thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp_banner .cp_logo {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.cp_logo .thumb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: #ddd;
}

.cp_logo .thumb img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp_logo .cp_name {
    padding-left: 15px;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.cp_banner:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgb(36 36 36 / 50%);
    z-index: 1;
}

.sort_list {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: scroll;
    scrollbar-width: none;
    margin: 0 -10px;
    width: calc(100% - 250px);
}

.cp_container {
    background: var(--main_color_bg);
    padding: 10px 0;
}

.cp_category_wrap {
    width: 20.5%;
}

.cp_entry_wrap {
    width: 79.5%;
}

.cp_category,
.cp_entry {
    min-height: 50px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.total_result {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.total_result .prd_count {
    color: rgb(120, 120, 120);
}

.sort_list a {
    padding: 8px 16px;
    color: rgb(56, 56, 61);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    display: block;
}

.sort_list a:hover,
.sort_list a.active {
    color: var(--main_color);
}

.sort_list a.active::after {
    content: " ";
    background: var(--main_color);
    border-radius: 2px;
    width: 40px;
    height: 4px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -20px;
}

.sort_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cp_search {
    width: 250px;
    border: 1px solid rgb(221, 221, 227);
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.cp_search_input {
    width: calc(100% - 40px);
    border: 0;
    height: 38px;
    outline: none !important;
    padding: 0 10px;
}

.widget_title h3 {
    margin: 0;
    font-size: 16px;
    text-transform: none;
    font-weight: 600;
}

.cp_category {
    padding: 0;
    position: sticky;
    top: 50px;
}

.cp_category .widget_title {
    padding: 15px 15px 10px 15px;
    cursor: pointer;
}

.cp_category_list {
    margin: 0;
}

.cp_category_list li {
    padding: 6px 15px;
}

.cp_category_list li a {
    color: #333;
}

.cp_category_list li>.active {
    font-weight: 600;
}

.cp_category_list li:hover {
    background: rgb(245, 245, 250);
}

.loadding {
    position: relative;
    pointer-events: none;
    overflow: hidden;
}

.loadding:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background: #fff;
    z-index: 1;
    display: block;
}

.loadding:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    z-index: 2;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-color: var(--main_color);
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    -webkit-mask-image: url(../images/loadding.svg);
    mask-image: url(../images/loadding.svg);
}

.btn.loadding:after {
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    margin-left: -15px;
}

.loadding:after {
    -webkit-animation-name: loadding;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-iteration-count: infinite;
    /* Safari 4.0 - 8.0 */
    animation-name: loadding;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@-webkit-keyframes loadding {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(36deg);
    }

    20% {
        transform: rotate(72deg);
    }

    30% {
        transform: rotate(108deg);
    }

    40% {
        transform: rotate(144deg);
    }

    50% {
        transform: rotate(180deg);
    }

    60% {
        transform: rotate(216deg);
    }

    70% {
        transform: rotate(252deg);
    }

    80% {
        transform: rotate(288deg);
    }

    90% {
        transform: rotate(324deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
    background: transparent;
}

.btn_load_more {
    outline: none !important;
    width: 200px;
    font-size: 15px;
}

.btn_load_more:hover {
    color: #fff;
    background: #0d6efd;
}

.radio_custom input[type="radio"] {
    display: none;
}

.checkbox_custom,
.radio_custom {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    min-height: 20px;
}

.radio_custom span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
}

.radio_custom input[type="radio"]+span:after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--main_color);
    border-radius: 50%;
    left: 3px;
    top: 3px;
    display: none;
}

.radio_custom input[type="radio"]:checked+span:after {
    display: block;
}

.checkbox_custom input[type="checkbox"] {
    display: none;
}

.checkbox_custom input[type="checkbox"]+span {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    border-radius: 4px;
}

.checkbox_custom input[type="checkbox"]:checked+span:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 4px;
    background: #333;
    transform: rotate(45deg);
    top: 6px;
    left: 1px;
    border-radius: 10px;
}

.checkbox_custom input[type="checkbox"]:checked+span:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 4px;
    background: #333;
    transform: rotate(-45deg);
    top: 4px;
    left: 4px;
    border-radius: 10px;
}

.search_page_filter {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: calc(100vh - 64px);
    width: calc(100% - 40px);
    max-width: 600px;
    overflow: hidden;
    z-index: 9999;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    display: none;
}

.open_filter .search_page_filter,
.open_filter .overlay {
    display: block;
}

.filter_head {
    position: relative;
    padding: 15px 40px;
    text-align: center;
    border-bottom: 1px solid rgb(235, 235, 240);
}

.filter_head h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

.filter_body {
    height: calc(100% - 123px);
    padding: 24px;
    overflow: hidden auto;
}

.filter_footer {
    display: flex;
    padding: 15px 24px;
    border-top: 1px solid rgb(235, 235, 240);
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.filter_body .widget {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(235, 235, 240);
}

.filter_body .widget_title {
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter_item {
    margin-bottom: 10px;
}

.is_show {
    display: block !important;
}

.is_hide {
    display: none !important;
}

.toggler {
    font-size: 14px;
    text-decoration: underline !important;
    color: #333;
}

.filter_head .close {
    color: #333;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    position: absolute;
    right: 8px;
    top: 8px;
    font-size: 16px;
}

.search_result {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(235, 235, 240);
}

.search_result .show_filter {
    width: 105px;
    padding-left: 10px;
}

.search_result .sort {
    display: flex;
    align-items: center;
    width: 180px;
    padding-left: 10px;
}

.search_result .sort .bootstrap-select {
    width: 110px !important;
    margin-left: 8px !important;
}

.search_result .total {
    width: calc(100% - 285px);
    line-height: 34px;
}

.btn_show_filter {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    background: none;
    font-size: 14px;
    line-height: 20px;
    color: rgb(39, 39, 42);
    padding: 6px 12px;
    border: 1px solid rgb(221, 221, 227);
    border-radius: 4px;
    gap: 8px;
}

.btn_show_filter:hover {
    background-color: #e6e6e6;
}

.filter_more .filter_item.is_show {
    display: block !important;
}

.filter_item.first_show {
    display: block !important;
}

.comment_title {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 10px;
}

.comment_form {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.comment_form textarea.form-control {
    border: 0;
    resize: none;
    outline: none !important;
    box-shadow: none !important;
}

.comment_form_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #ccc;
}

.rating_form {
    display: flex;
    align-items: center;
}

.rating_form .rating {
    margin-left: 10px;
    display: flex;
}

.rating_form .rating i {
    color: #ccc;
    cursor: pointer;
    font-size: 20px;
    width: 21px;
    height: 20px;
    margin: 0 1px;
    background-color: #ccc;
    -webkit-mask-image: url(../images/star.svg);
    mask-image: url(../images/star.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    display: inline-block;
}

.rating_form .rating i.active {
    background-color: #FCD832;
}

.btn_send_review {
    min-width: 70px;
    color: var(--main_color);
    border-color: var(--main_color);
}

.btn_send_review:hover {
    color: #fff;
    background-color: var(--main_color);
}

#detail .detail-thumb {
    position: sticky;
    top: 40px;
    margin: 15px 0 0;
    overflow: hidden;
}

.comment_list {
    margin-top: 20px;
}

.comment_item+.comment_item {
    padding-top: 10px;
}

.comment_item {
    display: flex;
}

.cmt_avatar {
    width: 40px;
}

.cmt_avatar i {
    font-size: 40px;
    color: #ccc;
}

.cmt_body {
    padding: 10px;
    margin-left: 20px;
    background: #f6f6f6;
    border-radius: 4px;
    position: relative;
    width: calc(100% - 60px);
}

.cmt_body:after {
    content: " ";
    position: absolute;
    left: -10px;
    top: 10px;
    border-top: 10px solid transparent;
    border-right: 10px solid #f6f6f6;
    border-left: none;
    border-bottom: 10px solid transparent;
}

.cmt_rating {
    margin: 5px 0;
}

.cmt_title strong {
    font-size: 14px;
    color: #333;
    display: inline-block;
    margin-right: 10px;
}

.cmt_title span {
    font-size: 12px;
    font-style: italic;
}

.show_rating,
.show_rating i.sum {
    display: inline-block;
    width: 75px;
    height: 14px;
    background-color: #ccc;
    -webkit-mask-image: url(../images/star.svg);
    mask-image: url(../images/star.svg);
    -webkit-mask-size: cover;
    mask-size: 15px;
}

.show_rating i.sum {
    background-color: #FCD832;
}

.cmt_des {
    font-size: 14px;
    color: #555;
}

.prd_rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.prd_rating .show_rating {
    margin: 0 5px;
}

.prd_rating .total {
    color: var(--main_color);
}

.cmt_view_more {
    margin-top: 20px;
    color: var(--main_color2);
    border-color: var(--main_color2);
    outline: none !important;
}

.cmt_view_more:hover {
    color: #fff;
    background-color: var(--main_color2);
}

.section_box_title {
    padding: 10px 0 0;
    border-bottom: 1px solid var(--main_color);
    margin: 0 20px;
}

.section_box_title span {
    padding: 12px 20px 8px 10px;
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--main_color);
    color: #fff;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.section_box_title span:before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: var(--main_color);
    position: absolute;
    right: -8px;
    bottom: 0;
}

.section_box_title span:after {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    right: -16px;
    bottom: 0px;
    background: #fff;
}

.section_box_title .title-more {
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.book_cont .blw-version {
    position: relative;
    margin: 5px 0;
    overflow: hidden;
}

.book_cont .blw-version span {
    font-size: 15px;
    font-weight: 600;
    line-height: 25px;
}

.book_cont .blw-version button {
    display: inline-block;
    background: var(--main_color);
    color: #fff;
    border: 1px solid;
    border-radius: 15px 0 0 15px;
    font-size: 15px;
    font-weight: 600;
    position: absolute;
    right: -125px;
    min-width: 30px;
    height: 30px;
    margin-top: -3px;
    line-height: 30px;
    padding: 0 10px;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
}

.book_cont .blw-version button.out_stock {
    right: -96px;
    opacity: 0.8;
}

.book_cont:hover .blw-version button {
    right: -96px;
}

.book_cont:hover .blw-version button.out_stock {
    right: -67px;
}

.book_cont .blw-version button:hover {
    right: 0 !important;
}

.book_cont .blw-version button span {
    font-size: 13px;
    display: inline-block;
    margin-left: 5px;
    font-weight: 600;
}

.cpc-right {
    position: sticky;
    top: 50px;
}

#home-slide {
    border-radius: 0 0 8px 0;
    overflow: hidden;
    height: 100%;
    background: #e8e8e8;
}

.price ins {
    text-decoration: none;
}

.price del {
    font-size: 0.8em;
    color: #888;
    margin-right: 3px;
}

.prd_discount {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 24px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #da251c;
    position: absolute;
    top: 14px;
    right: -25px;
    z-index: 1;
    font-weight: 500;
}

.count_down {
    background: var(--main_color2);
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    padding: 2px 5px;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    line-height: 15px;
    box-shadow: 0px 0px 5px 0px var(--main_color2);
    -webkit-box-shadow: 0px 0px 5px 0px var(--main_color2);
    -moz-box-shadow: 0px 0px 5px 0px var(--main_color2);
    margin-right: 5px;
}

.count_down i {
    margin-right: 3px;
    font-size: 15px;
}

.zalo_msg_box {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}

.tel_msg_box {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 99;
}

.zalo_msg_box img {
    width: 50px;
    height: 50px;
}

.tel_msg_box img {
    width: 50px;
    height: 50px;
}

.media {
    background-size: 100% 100%;
    width: 30px;
    height: 30px;
}

#loading {
    z-index: 1000;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("../images/loading-icon.gif");
}

#bg-loading {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

#home_topic.loadding:after {
    bottom: 0;
    top: auto;
}

.logo img {
    width: 56px;
}

.app_download a.btn-app img {
    height: 41px;
}

#related {
    padding-top: 20px;
}

.banner_menu_cat.loadding:after {
    top: 50%;
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
}

#related.loadding:after,
#home-slide.loadding:after {
    top: 50%;
    margin-top: -20px;
}

.give_book_list .creator {
    display: block;
    color: #999;
    font-size: 13px;
}

.give_book_list .give_time {
    display: block;
    margin-bottom: 5px;
}

.btn_show_notify {
    width: 34px;
    height: 34px;
    background: #f2f2f2;
    border-radius: 50%;
    text-align: center;
    display: block;
    position: relative;
}

.notify-badge {
    position: absolute;
    left: 20px;
    top: -5px;
    height: 22px;
    font-size: 13px;
    line-height: 22px;
    min-width: 22px;
    padding: 0 7px;
    border-radius: 11px;
    display: inline-block;
    background: #b3100f;
    color: #fff;
}

.btn_show_notify i {
    font-size: 20px;
    color: #8c8c8c;
    line-height: 34px;
}

.notification_fix {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 999;
    background: #fff;
    transform: translateX(250px);
    -webkit-transform: translateX(250px);
    -moz-transform: translateX(250px);
    transition: all 0.1s ease-in;
    -webkit-transition: all 0.1s ease-in;
    -moz-transition: all 0.1s ease-in;
}

.show_notify .notification_fix {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
}

.show_notify .overlay {
    display: block;
}

.show_notify body {
    overflow: hidden;
}

.notification_wrap .head {
    border-bottom: 1px solid #ccc;
    padding: 20px 10px 10px;
    text-align: center;
    position: relative;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}

.notification_wrap .head .close {
    color: #333;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.notification_wrap .head .read-all {
    color: #333;
    position: absolute;
    top: 20px;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    cursor: pointer;
    opacity: .7;
    text-shadow: none;
}

.notification_wrap .head .read-all:hover {
    opacity: 1;
}

.notify_body {
    overflow-y: auto;
    max-height: calc(100vh - 51px);
}

.notification_wrap .foot {
    text-align: center;
    padding: 10px;
}

.notify_read_more {
    color: var(--main_color);
    text-decoration: underline !important;
}

.notify_data .item {
    display: flex;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

.notify_data .img {
    width: 40px;
    padding: 0px 10px 0 0;
}

.notify_data .cont {
    width: calc(100% - 40px);
}

.notify_data .img i {
    font-size: 25px;
    color: #555;
}

.notify_data .cont h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
}

.notify_data .cont span {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

.notify_data .cont p {
    margin: 0;
    text-align: justify;
}

.notify_data.loadding:after {
    bottom: 50px;
    top: auto;
}

.notify_data .item.un_read {
    background: #F6EDDE;
}

.detail_option {
    display: flex;
}

.detail_option .item {
    width: 50%;
    padding: 5px;
    max-width: 200px;
}

.btn_option {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.btn_option span {
    display: block;
    font-size: 15px;
}

.btn_option strong {
    font-size: 18px;
    color: var(--main_color);
}

.detail_btn {
    display: flex;
}

.detail_btn .item {
    max-width: 200px;
    padding: 5px;
    width: 100%;
}

.detail_btn button {
    width: 100%;
    background: var(--main_color);
    color: #fff;
    border-radius: 4px;
    height: 50px;
    font-size: 18px;
    font-weight: bold;
}

.detail_btn button:hover {
    opacity: 0.7;
}

.btn_option.active {
    border: 2px solid var(--main_color);
}

.price_option ins {
    text-decoration: none;
    font-weight: bold;
    font-size: 26px;
    color: var(--main_color);
    line-height: 1.5;
}

.price_option del {
    color: #777;
    font-size: 18px;
    font-weight: bold;
    margin-right: 5px;
}

.price_option {
    padding: 5px 0;
}

.price_option span {
    font-weight: bold;
    font-size: 20px;
    color: #444;
}

.cpa_grid .col {
    margin-bottom: 20px;
}

.book_cont button.loadding:after {
    width: 16px;
    height: 16px;
    top: 50%;
    margin: -8px 0 0 -8px;
    background-color: #fff;
    left: 19px;
}

.book_cont button.loadding i {
    opacity: 0;
}

.book_cont button.atc_success i {
    opacity: 1;
}

.atc_success i::before {
    content: "\f00c";
}

.btn_option.out_of_stock {
    background: url(../images/ic_outstock.png) no-repeat bottom right;
    background-size: 60px;
    cursor: no-drop;
}

img.lazy[src='/static/images/loadding.svg'] {
    object-fit: scale-down;
    -webkit-animation-name: loadding;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 4s;
    /* Safari 4.0 - 8.0 */
    -webkit-animation-iteration-count: infinite;
    /* Safari 4.0 - 8.0 */
    animation-name: loadding;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.section_book.loadding {
    min-height: 400px;
}

.section_book.loadding:after {
    top: 50%;
    margin-top: -20px;
}

.book_cont .blw-version button.loadding {
    pointer-events: all;
}

.table_responsive {
    overflow-x: auto;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.table_responsive table {
    min-width: 800px;
}

.table_responsive thead {
    position: sticky;
    top: 0;
}

/*.table_responsive th:last-child, .table_responsive td:last-child {*/
/*    position: sticky;*/
/*    right: 0;*/
/*}*/

.table_responsive tbody tr:nth-child(2n + 1) td {
    background: #fff !important;
}

.table_responsive tbody tr:nth-child(2n) td {
    background: #f1f1f1 !important;
}

.tag {
    font-size: 14px;
    padding: .3em .4em .4em;
    margin: 0 .1em;
}

.tag a {
    color: #bbb;
    cursor: pointer;
    opacity: 0.6;
}

.tag a:hover {
    opacity: 1.0
}

.tag .remove {
    top: 0;
}

.tag a {
    margin: 0 0 0 .3em;
}

.tag a .glyphicon-white {
    color: #fff;
    margin-bottom: 2px;
}

.search_applied_title {
    display: flex;
    padding: 5px 0 5px;
}

.search_applied {
    display: flex;
    padding: 5px 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(235, 235, 240);
}

.search_result {
    padding: 10px 0 10px !important;
    margin-bottom: 10px !important;
}

.search_applied {
    flex-wrap: wrap;
}

.search_applied .tag {
    margin-bottom: .2em;
}

.filter_body .widget_footer {
    display: none;
}

/*Pagination*/
.paginationjs-pages ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-ajax {
    position: relative;
}

.pagination-ajax .paginationjs-pages {
    display: flex;
    justify-content: center;
}

.pagination-ajax.disabled:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 9;
}

.pagination-ajax i.active {
    display: inline-block;
}

i.icon_ajax_load.active {
    display: inline-block;
}

.pagination-ajax .paginationjs-pages ul {
    display: flex;
    justify-content: center;
}

.paginationjs .paginationjs-pages li {
    list-style: none;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.1);
    padding: 0 2px;
}

.paginationjs .paginationjs-pages li>a {
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    background: transparent;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    text-align: center;
    padding: 0 5px;
    font-weight: 600;
    border-radius: 8px;
}

.paginationjs .paginationjs-pages li:hover>a {
    background: rgba(39, 39, 42, 0.12);
}

.paginationjs .paginationjs-pages li.active>a {
    background: var(--main_color);
    color: #fff;
}

.trial_submit_wrap {
    position: fixed;
    bottom: 10px;
    width: 170px;
    text-align: center;
    left: 0;
}

.paginationjs .paginationjs-pages li:first-child,
.paginationjs .paginationjs-pages li:last-child {
    background: transparent;
    border-radius: 8px;
}

.paginationjs .paginationjs-pages li:first-child {
    margin-right: 5px;
}

.paginationjs .paginationjs-pages li:last-child {
    margin-left: 5px;
}

.paginationjs .paginationjs-pages li:first-child a,
.paginationjs .paginationjs-pages li:last-child a {
    border: 1px solid;
    color: var(--main_color);
    border-radius: 4px;
    line-height: 30px;
    font-size: 20px;
}

.paginationjs .paginationjs-pages li:first-child:hover a,
.paginationjs .paginationjs-pages li:last-child:hover a {
    background: rgb(175 31 40 / 10%);
}

.paginationjs .paginationjs-pages li.disabled>a {
    color: rgb(0 0 0 / 50%);
    cursor: no-drop;
}

.paginationjs .paginationjs-pages li:nth-child(2) {
    padding-left: 0;
    border-radius: 8px 0 0 8px;
}

.paginationjs .paginationjs-pages li:nth-last-child(2) {
    padding-right: 0;
    border-radius: 0 8px 8px 0;
}

/*End Pagination*/
.search_container {
    padding-bottom: 20px;
}

.shop_nav {
    margin: 0;
    position: absolute;
    padding: 10px;
    display: flex;
    z-index: 9;
    bottom: 0px;
}

.shop_nav li {
    padding: 0 15px 10px;
    position: relative;
}

.shop_nav li.active:after {
    content: "";
    width: 20px;
    height: 5px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    border-radius: 5px;
}

.shop_nav li a {
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 20px;
    font-weight: 500;
}

.shop_nav li.active a {
    font-weight: 700;
}

.shop_info {
    background: var(--main_color_bg);
    padding-top: 10px;
}

.shop_info .section_title {
    text-align: center;
}

.shop_info_content {
    background: #fff;
    border-radius: 8px;
    padding-bottom: 20px;
}

.info_dropdown {
    padding: 10px;
    width: 100%;
    max-width: 800px;
    margin: 20px auto 0;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px #ddd;
}

.info_dropdown .item {
    display: flex;
    align-items: center;
}

.info_dropdown .item .td {
    width: 30%;
    text-align: right;
    padding: 8px 5px;
}

.info_dropdown .item .td+.td {
    text-align: left;
    width: 70%;
}

.html_convert {
    padding: 30px;
}

.html_convert:after {
    content: "";
    display: table;
    clear: both;
}

.html_convert table {
    width: 100% !important;
    margin: 0 !important;
}

.html_convert table td {
    padding: 0 3px !important;
}

.html_convert img {
    height: auto !important;
}

.html_convert .foot {
    width: 50%;
    float: right;
}

/* Password visibility toggle icons */
.password-wrapper {
    position: relative;
    display: block;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    z-index: 10;
}

.password-toggle:hover {
    color: #333;
}

/* For Bootstrap input-group */
.input-group-addon.toggle-password {
    cursor: pointer;
}