@import url(/assets/css/font.css);

:root {
    --primary-color: #0f64a7;
    --primary-hover: color-mix(in srgb, var(--primary-color) 85%, black);
    --primary-light: color-mix(in srgb, var(--primary-color) 12%, white);
    --primary-border: color-mix(in srgb, var(--primary-color) 20%, white);
    --primary-gradient: linear-gradient(to right, var(--primary-color), color-mix(in srgb, var(--primary-color) 80%, white));
    --primary-gradient-dark: linear-gradient(to right, var(--primary-color), color-mix(in srgb, var(--primary-color) 80%, black));
    --primary-rgba-08: color-mix(in srgb, var(--primary-color) 8%, transparent);
    --primary-rgba-10: color-mix(in srgb, var(--primary-color) 10%, transparent);
    --primary-rgba-15: color-mix(in srgb, var(--primary-color) 15%, transparent);
    --primary-rgba-20: color-mix(in srgb, var(--primary-color) 20%, transparent);
    --primary-rgba-25: color-mix(in srgb, var(--primary-color) 25%, transparent);
    --primary-rgba-30: color-mix(in srgb, var(--primary-color) 30%, transparent);
    --primary-rgba-35: color-mix(in srgb, var(--primary-color) 35%, transparent);
    --primary-rgba-40: color-mix(in srgb, var(--primary-color) 40%, transparent);
    --primary-rgba-45: color-mix(in srgb, var(--primary-color) 45%, transparent);
    --primary-rgba-80: color-mix(in srgb, var(--primary-color) 80%, transparent);
    --primary-shadow: 0 4px 15px color-mix(in srgb, var(--primary-color) 30%, transparent);
    --bg-page: #10192c;
    --bg-wrapper: #ffffff;
    --bg-card: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-input: #f8fafc;
    --bg-input-focus: #ffffff;
    --bg-dropdown: #ffffff;
    --bg-scrollbar-track: #4e555d00;
    --bg-header: #111827;
    --bg-navbar: #162031;
    --bg-nav-hover: var(--primary-light);
    --bg-footer: #ffffff;
    --bg-footer-subtle: #f8fafc;
    --bg-footer-credit: #f8fafc;
    --text-primary: #f9fcff;
    --text-secondary: #ffffff;
    --text-muted: #64748b;
    --text-on-primary: #ffffff;
    --border-color: #e8edf3;
    --border-subtle: #1e2c43;
    --border-header: #e8edf3;
    --border-footer: #e8edf3
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    overflow-x: hidden !important
}

body.sht-themes {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
    font-family: khotruyen, sans-serif !important;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background: var(--bg-page);
    transition: background-color 150ms ease-out !important
}

a,
a:focus,
a:hover {
    color: var(--primary-color);
    text-decoration: none
}

a {
    color: var(--text-primary)
}

input,
select,
textarea {
    outline: 0
}

::-webkit-scrollbar {
    width: 9px;
    height: 6px
}

::-webkit-scrollbar-track {
    background: var(--bg-scrollbar-track);
    border-radius: 10px
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    min-height: 50px;
    background: var(--primary-gradient);
    transition: background-position .6s ease
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(360deg, var(--primary-hover), var(--primary-color))
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

img:hover {
    filter: brightness(1);
    -webkit-filter: brightness(1)
}

#sht_wrapper {
    max-width: 1022px;
    padding: 0 13px;
    margin: 0 auto;
    background: var(--bg-wrapper)
}

#wrapper {
    background: var(--bg-wrapper);
    padding: 0 0 15px;
    box-shadow: 0 3px 20px 2px rgba(0, 0, 0, .05);
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px
}

#headwrap {
    padding: 5px 0;
    margin: 10px 0
}

#headwrap .col-md-3.slogan {
    margin-top: -5px;
    padding: 0
}

#headwrap .col-md-4 {
    padding-right: 0;
    text-align: right
}

#headwrap .form-group {
    margin: 0
}

#header {
    background: var(--bg-header);
    /* border-bottom:1px solid var(--border-header); */
    transition: .5s
}

#header .site-title {
    margin: 0;
    text-indent: -9999px;
    background: url(/assets/images/sht-dark-logo.png) no-repeat top left;
    background-size: contain;
    height: 45px;
    margin-top: -5px;
    position: relative
}

#header .site-title a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

@media (max-width: 767px) {
    #header .site-title {
        background-position: center !important
    }

    .sht-panel-filter .col-xs-4.text-right {
        text-align: left !important
    }

    #form-filter #btn-movie-filter {
        float: right;
        margin-right: 5px
    }
}

.sht-panel-filter .panel-heading {
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px
}

.sht-panel-filter .panel-heading a {
    color: var(--primary-color)
}

#header>.container {
    padding-left: 0;
    padding-right: 0;
    position: relative
}

.header-nav {
    margin-right: 0;
    position: relative
}

.header-nav img {
    max-width: 100%;
    margin: 10px 0
}

#search-form-pc #search {
    background-color: var(--bg-input);
    background-image: url(/assets/images/search.svg);
    background-position: 13px center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 8px 18px 8px 38px;
    font-size: 13.5px;
    color: var(--text-primary);
    box-shadow: none;
    transition: all .25s ease
}

#search-form-pc #search:focus {
    background-color: var(--bg-input-focus);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-rgba-10) !important
}

#search-form-pc #search::placeholder {
    color: #94a3b8
}

.navbar-container {
    background: var(--bg-navbar);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
    transition: .25s transform;
    backface-visibility: hidden;
    z-index: 9999
}

.navbar-container .container {
    padding: 0
}

.fix.hl-dot-3:before {
    transform: rotate(90deg) scale(.968) skew(1deg) translate(0)
}

.navbar {
    min-height: 48px !important;
    margin: 0
}

.main-navigation {
    background: 0 0;
    border: none
}

.main-navigation .navbar-nav>li>a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: all .25s ease;
    border-right: 1px solid var(--border-color);
    padding: 14px 12px
}

.main-navigation .navbar-nav>li>a i {
    font-size: 15px;

    margin-right: 4px
}

.home .main-navigation .navbar-nav>.active>a {
    background: 0 0
}

.main-navigation .navbar-nav>li>a:focus,
.main-navigation .navbar-nav>li>a:hover {
    /* color: var(--primary-color); */
    background: var(--primary-light)
}

.main-navigation .navbar-nav>.active>a,
.main-navigation .navbar-nav>.active>a:focus,
.main-navigation .navbar-nav>.active>a:hover {
    /* color: var(--primary-color); */
    background: #ffffff14;
    border: none;
}

.main-navigation .navbar-nav>.active>a {
    color: var(--text-primary-color);
    border: none;

}

.main-navigation .navbar-nav>li.current_page_item:first-child a {
    border: none
}

.main-navigation .nav .open>a,
.main-navigation .nav .open>a:focus,
.main-navigation .nav .open>a:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    border: none
}

#main-contents {
    position: relative
}

@media screen and (max-width: 767px) {
    .main-navigation .navbar-nav>li>a {
        padding: 10px
    }

    .main-navigation {
        border-bottom: 0
    }

    .navbar {
        min-height: 35px !important
    }

    .main-navigation .navbar-nav>li>a {
        color: var(--text-secondary);
        padding-left: 22px
    }

    #main-contents {
        padding: 0 10px
    }
}

.dropdown-menu {
    background: var(--bg-dropdown) !important;
    border: 1px solid var(--border-color);
    right: 0
}

@media (min-width: 1200px) {
    #main-contents {
        width: 840px
    }

    #sidebar {
        width: 330px
    }
}

.panel-body {
    padding: 15px
}

.section-heading {
    padding: 0 6px 0 0;
    margin: 21px 0 15px;
    font-size: 16px;
    line-height: 20px;
    position: relative
}

.section-heading:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%
}

.section-heading .h-text {
    font-size: 15px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    line-height: 34px;
    padding: 9px 0;
    position: relative;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-weight: 700
}

.section-heading .h-text:before {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 100%;
    background: var(--primary-gradient);
    padding: .5px
}

.section-heading .h-text:after {
    content: '';
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg)
}

.section-heading .heading-nav {
    display: inline-table
}

.sht-post-title-box {
    position: relative;
    line-height: 18px;
    padding: 0 0;
    height: 53px;
    margin: 0;
    width: 100%;
    bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.video-item .sht-post-title-box {
    background: 0 0;
    height: auto
}

.sht-post-title {
    position: relative;
    background: rgba(0, 0, 0, 0);
    line-height: 18px;
    padding: 8px 10px 4px;
    margin: 0;
    bottom: 0;
    width: 100%
}

.list-news .sht-post-title {
    position: static;
    background: 0 0
}

.sht-post-title h2 {
    margin: 0;
    line-height: 20px
}

.popular-post .original_title,
.sht-post-title a,
.sht-post-title h2,
.sht-post-title p {
    font-size: 13px !important;
    color: #1e293b;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 3px
}

.popular-post .original_title.title-2-line,
.sht-post-title.title-2-line a,
.sht-post-title.title-2-line p {
    -webkit-line-clamp: 2
}

.sht-post-title a:hover {
    color: var(--primary-color)
}

.popular-post .original_title,
.sht-post-title .original_title {
    font-size: 11.5px !important;
    margin: 0;
    padding-right: 5px;
    color: #64748b
}

.footer {
    background: var(--bg-footer)
}

.footer-menu {
    background: var(--bg-footer-subtle)
}

.footer-menu ul {
    padding: 0;
    margin: 0
}

.footer-menu ul li {
    list-style: none;
    float: left;
    padding: 15px 0;
    margin-right: 25px
}

.footer-menu ul li a {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700
}

.footer-content {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #64748b;
    font-size: 14px
}

.movie-meta {
    margin-left: 330px
}

.fieldmeta {
    border-bottom: 1px solid #e8edf3;
    padding: 15px 15px 15px 0;
    margin-bottom: 0
}

.fieldmeta a {
    color: var(--primary-color)
}

.movie-meta h1 {
    color: #1e293b;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700
}

.htmlwrap {
    padding: 15px;
    border: 1px solid #e8edf3;
    margin: 10px 0;
    background: #fff;
    font-size: 14px;
    border-radius: 6px
}

.htmlwrap.fb-comment {
    padding: 0
}

.doings {
    margin-top: 10px;
    margin-bottom: 10px
}

.vote-stats span {
    color: #64748b
}

.tags-list {
    margin-bottom: 10px
}

.tags-list a {
    display: inline-block;
    padding: 5px 10px;
    background: #f8fafc;
    margin: 1.5px 0;
    border: 1px solid #e2e8f0;
    color: #475569
}

.tags-list a:hover {
    color: var(--primary-color);
    border-color: var(--primary-border);
    background: var(--primary-light)
}

.title-menu {
    margin: 0;
    padding: 2px;
    font-size: 14px;
    text-transform: uppercase
}

.title-info {
    font-size: 15px;
    color: var(--primary-color);
    text-transform: uppercase
}

a:hover {
    transition: color .2s ease
}

.form-control {
    box-shadow: none !important
}

.btn {
    font-size: 15px;
    padding: 5px 15px
}

.error-chapter {
    text-align: center
}

button,
input {
    outline: 0
}

.disable-select {
    user-select: none
}

#slider {
    background: #fff
}

@media (min-width: 992px) {
    .box {
        margin: 10px;
        padding: 10px
    }

    .box-right {
        margin-left: 0 !important
    }

    .movie-actions {
        padding-left: 10px
    }

    .movie-view {
        padding-right: 10px
    }
}

.heading {
    display: none
}

.navbar-collapse {
    padding-left: 0 !important
}

.navbar-toggle .icon-bar {
    background-color: #e0e0e0
}

.navbar-toggle,
button.navbar-toggle.collapsed {
    margin: 6px 0 6px 0
}

.navbar-toggle.pull-right.collapsed {
    margin: 6px 0 6px 0
}

.sht_box {
    list-style: none;
    padding: 0;
    margin: 10px -2px 20px;
    position: relative;
    overflow: hidden;
    width: auto;
    clear: both
}

.sht-news-box-widget .sht_box {
    margin: auto
}

.sht_box li.col-md-3.col-sm-6.col-xs-6.thumb img {
    width: 100%
}

.sht_box a.sht-thumb {
    position: relative;
    display: inline-block;
    transition: all .7s ease;
    width: 100%
}

.sht_box.news a.sht-thumb {
    width: unset
}

.col-md-3.col-sm-6.col-xs-6.thumb {
    position: relative
}

.sht_box li:nth-child(4n) {
    margin-right: 0 !important
}

@media(max-width: 480px) {
    .logo span {
        font-size: 18px
    }

    .col-md-3.col-sm-6.col-xs-6.thumb {
        padding: 0;
        width: 50% !important;
        margin-right: 5px;
        margin-top: 15px;
        padding: 5px
    }

    .col-md-3.col-sm-6.col-xs-6.thumb img {
        height: auto
    }
}

@media (max-width: 767px) {
    .logo span {
        font-size: 20px
    }

    .logo img {
        max-width: 100%;
        margin-left: 10px
    }

    .navbar-collapse {
        padding-left: 15px !important
    }

    #primary {
        float: none;
        width: 100%
    }

    .col-md-3.col-sm-6.col-xs-6.thumb {
        padding: 5px;
        width: 50%;
        margin-right: 0;
        margin-top: 15px
    }

    .sht_box li.col-md-3.col-sm-6.col-xs-6.thumb img {
        width: 100%
    }

    .info .thumbnail {
        max-width: 100%;
        float: none;
        margin-right: 10px
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important
    }

    #primary {
        float: none;
        width: 100%
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important
    }
}

.text-capitalize {
    text-transform: capitalize
}

.section-title a {
    color: #c5c5c5
}

.grid-1 {
    position: absolute;
    background-color: #e6e6e6;
    clear: both;
    height: 1px;
    width: 100%
}

.grid-1 span {
    display: block;
    height: 100%;
    margin: 0;
    width: 210px
}

.section-bar .grid-1 {
    margin-bottom: 0
}

.section-bar {
    position: relative;
    margin: 15px 0
}

.section-title {
    position: relative
}

.grid-1 span {
    width: 150px;
    background-color: #0cf
}

.grid-1 span {
    background-color: #00afcf
}

.section-tab {
    float: right;
    list-style-type: none;
    margin-top: 8px;
    overflow: hidden;
    white-space: nowrap
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700
}

.sidebar-menu {
    position: relative
}

.np-viewall {
    position: absolute;
    top: 2px;
    right: 0;
    background: #fff;
    line-height: 14px;
    padding: 1px 0 4px 8px
}

.np-viewall a {
    color: var(--primary-color);
    font-size: 14px
}

.widgettitle {
    margin: 0;
    padding: 0;
    color: #1e293b
}

.section-title span {
    float: left;
    font-size: 15px;
    padding: 10px 0;
    color: var(--primary-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-decoration-break: clone;
    font-weight: 700
}

.section-title span::after {
    content: ''
}

.section-title {
    font-size: 16px;
    line-height: 11px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
    display: flow-root
}

.section-title:before {
    content: '';
    border-bottom: 1px solid #e8edf3 !important;
    position: absolute;
    bottom: 0;
    width: 100%
}

.section-title span:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--primary-gradient);
    padding: .5px
}

.section-title span {
    position: relative;
    line-height: 20px
}

.popular-post {
    padding: 0;
    margin: 0 0 25px
}

.popular-post .item {
    clear: both;
    margin: 1px 0;
    padding-right: 10px;
    line-height: 1.2;
    list-style-type: none;
    overflow: hidden;
    background: #fff;
    background-size: 200% 100%;
    transition: .8s;
    position: relative
}

.popular-post .item:hover {
    background-position: right center
}

.popular-post .item:hover .top-view {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text
}

.popular-post .item:hover h3.title {
    color: var(--primary-color);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.popular-post .item:first-child {
    margin-top: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.popular-post .item:last-child {
    border: none;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
}

.popular-post .viewsCount {
    font-size: 14px;
    margin-top: 5px;
    color: #64748b;
    display: flow-root
}

.popular-post .post_meta {
    font-size: 14px;
    position: absolute;
    right: 10px;
    bottom: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 6px 2px;
    background-size: 200% 100%;
    background-image: var(--primary-gradient);
    transition: .7s;
    border-radius: 3px;
    text-transform: capitalize
}

.popular-post .item:hover .post_meta {
    background-position: right center
}

.popular-post a.ajax-tab {
    color: #64748b
}

.popular-post .item-link {
    display: block;
    overflow: hidden;
    position: relative;
    margin: 10px;
    padding: 0;
    float: left;
    border-radius: 7px;
    transition: all .3s ease-in-out
}

#reading-history-list .item-link {
    border-radius: 5px
}

.popular-post .post-thumb {
    float: left;
    width: 78px;
    height: 92px;
    object-fit: fill;
    transition: all .3s ease-in-out
}

#reading-history-list .post-thumb {
    width: 70px;
    height: 70px;
    object-fit: fill
}

.popular-post .is_trailer {
    background: var(--primary-color);
    padding: 2px 4px;
    color: #fff;
    font-size: 14px;
    position: absolute;
    top: 0;
    right: 0
}

.popular-post h3.title {
    cursor: pointer;
    padding: 10px 2px 0;
    margin: 0;
    font-size: 14px;
    color: #1e293b;
    line-height: 20px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    font-weight: 700
}

.popular-post .stat {
    color: #64748b;
    display: block;
    font-size: .8166em;
    height: 1.4em;
    line-height: 1.4em;
    overflow: hidden
}

.popular-post .info {
    color: #64748b;
    display: block;
    font-size: .81em;
    height: 1.4em;
    line-height: 1.4em
}

.popular-post .episode {
    display: inline-block;
    margin: 10px 0 0;
    padding: 3px 5px;
    background: var(--primary-color);
    color: #fff;
    font-size: 14px
}

.popular-post-2col {
    margin: 15px -15px
}

.keyword {
    height: 30px;
    float: left;
    border: 1px solid #fff;
    width: 100%;
    background: #fff
}

#search-form {
    margin: 5px
}

@media (min-width: 1024px) {

    #search-form,
    #user-info {
        display: none !important
    }
}

input.search-btn.pull-right {
    position: absolute;
    right: 0;
    border: 1px solid var(--primary-color);
    background: var(--primary-color) url(/assets/images/search.png) 49% no-repeat;
    background-size: 13px;
    padding: 5px 16px;
    margin: 0
}

.mega .navbar-nav>li:last-child ul {
    width: 600px;
    left: -251px
}

.navbar-brand {
    color: #fff
}

.navbar-nav .dropdown-menu {
    z-index: 9999
}

.navbar-nav .mega .dropdown-menu {
    width: 800px;
    max-height: 400px;
    z-index: 9999;
    padding: 0;
    transition: .5s all;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 3px
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
    text-decoration: none;
    background-color: var(--primary-light);
    transition: .5s all;
    color: var(--primary-color)
}

@media (min-width: 768px) {
    .navbar-nav .dropdown-menu::before {
        content: '';
        z-index: 999;
        display: block;
        top: -13px;
        left: 30px;
        position: absolute
    }

    .navbar-nav .dropdown-menu::after {
        content: '';
        border-bottom: 8px solid #fff;
        border-left: 8px solid transparent;
        z-index: 999;
        display: block;
        border-right: 8px solid transparent;
        top: -8px;
        left: 37px;
        position: absolute
    }
}

.dropdown-menu>li>a {
    color: #1e293b;
    padding: 8px 15px;
    white-space: normal;
    font-size: 14px
}

@media (max-width: 767px) {
    .navbar-nav>li>.dropdown-menu li {
        float: none !important
    }

    .dropdown-menu {
        width: 100% !important
    }

    .navbar-nav .dropdown-menu {
        margin-top: 0 !important;
        border-top: 1px solid #e8edf3 !important
    }

    #header>#headwrap {
        height: auto
    }

    #logo-bg {
        display: none !important
    }

    #sht-player-wrapper {
        height: auto !important;
        width: auto !important;
        margin: auto -15px
    }

    .button-watch .col-md-8 {
        text-align: center !important;
        padding: 0
    }
}

@media (min-width: 992px) and (max-width:1199px) {
    #header>#headwrap {
        height: auto
    }

    #logo-bg {
        display: none !important
    }
}

.nav-tabs {
    border-bottom: 1px solid #e8edf3
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid #e8edf3;
    border-bottom-color: transparent;
    cursor: default
}

#autonext.pull-left {
    margin-top: 5px
}

#lightout {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    opacity: .95;
    height: 100%;
    width: 100%;
    display: none
}

tr.download-server-name {
    background: rgba(0, 0, 0, .05);
    border: none;
    color: #1e293b;
    font-size: 14px
}

tr.title {
    background: #ddd;
    color: #f34949
}

.col-md-4.slogan {
    padding-left: 0
}

.wrap-content .info {
    padding: 15px 0
}

.info .thumbnail {
    float: left;
    margin-right: 10px
}

.info .entry-header .entry-title {
    font-size: 20px;
    margin: 0 0 8px
}

.info .entry-header .entry-meta span {
    display: block;
    padding: 3px 0
}

.col-md-8.pull-right {
    padding-right: 0
}

@media (min-width: 768px) and (max-width:1024px) {

    #search-form.collapse.in,
    #user-info.collapse.in {
        display: block !important
    }
}

.sht-entry-box .item-content {
    max-height: 50px;
    overflow: hidden;
    transition: all .2s ease
}

.sht-entry-box .item-info {
    margin-bottom: 10px;
    font-size: 14px
}

.content-single img,
.sht-entry-box .item-content {
    max-width: 100%
}

.sht-entry-box .item-content {
    max-height: 120px;
    overflow: hidden;
    transition: all .2s ease
}

@media(max-width: 767px) {
    .sht-entry-box .item-content {
        height: 80px
    }

    .sht-entry-box .item-content.toggled {
        height: auto
    }
}

.sht-entry-box .item-content.toggled {
    max-height: none
}

.item-content-toggle {
    position: relative;
    margin: 5px 0 0
}

.widget_sht_tagcloud_widget .item-content-toggle {
    border-top: solid 1px #e8edf3;
    text-align: center;
    position: relative;
    margin: 5px 0 0
}

.widget_sht_tagcloud_widget .item-content-toggle {
    margin: 30px 0 0
}

.item-content-toggle .item-content-gradient {
    position: absolute;
    height: 40px;
    width: 100%;
    bottom: 26px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%)
}

.video-item .item-content {
    color: #475569;
    line-height: 1.8;
    width: 100%;
    padding: 10px 0;
    font-size: 14px
}

.item-content-toggle .show-more {
    border-top: none;
    padding: 8px 7px 0 0;
    cursor: pointer;
    font-size: 14px
}

.widget_sht_tagcloud_widget .item-content-toggle .show-more {
    border: 1px solid #e8edf3;
    border-top: none;
    padding: 4px 10px
}

.item-content-toggle .show-more:hover {
    color: var(--primary-color)
}

#main-contents .wrap-slider,
.related-movies .wrap-slider {
    margin: 0
}

.wrap-slider {
    position: relative;
    overflow: hidden
}

.fullwith-slider .wrap-slider {
    margin-bottom: 15px
}

.grid-item figure {
    overflow: hidden;
    border-radius: 3px
}

.sht_box .grid-item {
    padding: 2px
}

.grid-item,
.grid-item .sht-thumb {
    position: relative
}

.grid-item img {
    width: 100%
}

#sidebar .item img,
.grid-item img,
.popular-post .item {
    transition: all .3s ease-in-out
}

#sidebar .item:hover img,
.grid-item:hover img,
.popular-post .item:hover img {
    transform: scale(1.2);
    transition: all .3s ease-in-out
}

.grid-item .duration,
.grid-item .episode,
.grid-item .is_trailer,
.grid-item .status,
.grid-item .time {
    padding: 2px 6px;
    position: absolute;
    font-size: 12px;
    color: #fff;
    text-align: center
}

.grid-item .time {
    top: 2px;
    right: 2px;
    bottom: auto;
    background: #f44336
}

.grid-item .episode {
    font-size: 11px;
    font-weight: 700;
    right: 0;
    bottom: 53px;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 9px;
    z-index: 2;
    border-radius: 3px 0;
    background-size: 200% 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    max-width: 90%;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    transition: .7s;
    text-transform: capitalize
}

.grid-item .duration {
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: .5s ease-in-out;
    background-size: 200% 100%;
    background-image: var(--primary-gradient);
    box-shadow: 0 4px 15px 0 var(--primary-rgba-40);
    border-radius: 3px
}

.grid-item:hover .duration {
    bottom: 5px;
    right: 5px;
    opacity: 1;
    z-index: 1
}

.grid-item .status {
    left: 3px;
    top: 3px;
    background: var(--primary-color);
    z-index: 1;
    background-size: 200% 100%;
    border-radius: 3px;
    transition: .7s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    max-width: 95%;
    -webkit-box-flex: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis
}

.grid-item:hover .status {
    background-position: right center
}

.grid-item .status:after {
    content: "";
    border: 4px solid transparent;
    border-bottom: 4px solid var(--primary-hover);
    transform: rotate(44deg);
    position: absolute;
    bottom: -4px;
    left: 2px;
    z-index: 999999
}

.grid-item .is_trailer {
    right: 3px;
    top: 2px;
    background: var(--primary-color);
    z-index: 1
}

.grid-item .is_trailer:after {
    content: "";
    border: 4px solid transparent;
    border-bottom: 4px solid #a3465b;
    transform: rotate(44deg);
    position: absolute;
    bottom: -4px;
    left: 1px;
    z-index: 999999
}

.grid-item .views {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--primary-color);
    font-size: 10px;
    color: #fff;
    padding: 3px 7px
}

.item-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 10px;
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(30%, rgba(0, 0, 0, .52)), color-stop(100%, rgba(0, 0, 0, .52)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .48) 30%, rgba(0, 0, 0, .8) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .43) 30%, #131313 100%)
}

.grid-item img {
    aspect-ratio: 7.5/10
}

@media only screen and (max-width: 480px) {
    .ads-5 {
        width: 50%
    }
}

@media(max-width: 767px) {
    .col-xs-12.carousel-sliderWidget {
        padding: 0 8px
    }

    .sht_box.video-item .sht-thumb img {
        height: 110px
    }
}

@media screen and (min-width: 991px) {
    .grid-item img {
        width: -webkit-fill-available
    }

    .sht_box.video-item .sht-thumb img {
        height: 150px
    }
}

@media (max-width: 1200px) {
    .navbar-header {
        float: none
    }

    .navbar-left,
    .navbar-right {
        float: none !important
    }

    .navbar-toggle {
        display: block
    }

    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1)
    }

    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px
    }

    .navbar-collapse.collapse {
        display: none !important
    }

    .navbar-nav {
        float: none !important;
        margin-top: 7.5px
    }

    .navbar-nav>li {
        float: none
    }

    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px
    }

    .collapse.in {
        display: block !important
    }
}

.grid-item .icon_overlay,
.slider-thumb .icon_overlay {
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 30px;
    opacity: 0;
    transition: all .5s ease-in-out;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
    background-image: url(/wp-content/themes/haunmovies/assets/images/play-icon.png) no-repeat center center
}

.grid-item:hover .icon_overlay,
.slider-thumb:hover .icon_overlay {
    opacity: .75
}

.parent {
    width: 100%;
    height: 100%;
    display: table;
    text-align: center
}

.parent>.child {
    display: table-cell;
    vertical-align: middle
}

.sht-search-form {
    margin-top: 0;
    padding-left: 0
}

#mobile-search-form.sht-search-form {
    margin-top: 10px;
    position: relative
}

#mobile-search-form.sht-search-form .form-group {
    margin-bottom: 5px;
    position: relative
}

@media (max-width: 767px) {
    #search-form {
        margin: 0 !important;
        overflow: visible !important
    }

    #search-form.collapse.in {
        overflow: visible !important
    }

    #mobile-search-form .ui-autocomplete.ajax-results,
    .ui-autocomplete.ajax-results {
        position: absolute !important;
        top: calc(100% + 5px) !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        z-index: 999999 !important
    }

    .user.user-login-option .dropdown-menu {
        left: 0 !important
    }
}

.sht-social-plugin {
    list-style: none;
    padding: 0;
    display: inline-block;
    float: left;
    margin-top: 5px
}

.sht-social-plugin li {
    float: left;
    margin-right: 5px
}

.sht-social-plugin li span {
    vertical-align: initial !important
}

.sht-social-plugin a {
    color: #fff
}

@media screen and (max-width: 767px) {
    .sht-social-plugin {
        display: grid
    }

    .nav-tabs.nav-justified>li {
        float: left !important
    }
}

.film_info,
.film_info .col-md-12 {
    padding: 0;
    margin-bottom: 7.5px;
    overflow: hidden
}

.film_info span {
    display: block;
    padding: 10px 0;
    margin: -1px 0;
    float: left;
    width: 33.33333%
}

@media (max-width: 767px) {
    .film_info span {
        float: none;
        width: 100%
    }
}

.film_info .col-xs-12,
.film_info .col-xs-4,
.film_info .col-xs-8 {
    padding: 5px 0
}

.film_info .col-xs-12.alert {
    padding: 5px 15px
}

.film_info span.alert-warning {
    background-color: #fff4bd;
    border-color: #ffb213
}

.movie_info {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    height: auto;
    padding: 0;
    border-radius: 5px
}

.movie-btn {
    position: absolute;
    bottom: -8px
}

.film-poster {
    position: relative;
    width: 72.2%;
    height: auto;
    overflow: hidden;
    padding: 0
}

.film-poster .poster-image {
    width: 100%;
    max-height: 350px
}

.film-poster .poster {
    max-width: 100%;
    width: 100%;
    height: 301px;
    transition: .7s all;
    filter: brightness(.7)
}

.film-poster:hover .poster {
    filter: brightness(1.2);
    transition: .7s all
}

.movie-poster {
    position: relative;
    width: 27.8%;
    padding: 0;
    display: inline-block
}

@media (min-width: 1200px) {
    .sht-movie-wrapper.tpl-2 .movie-poster:after {
        content: '';
        width: 200%;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 270px
    }
}

@media (min-width: 992px) {
    .sht-movie-wrapper.tpl-2 .movie-poster:after {
        content: ''
    }

    .sht-movie-wrapper.tpl-2 .movie-detail p {
        padding: 3px 0
    }
}

.movie-poster img {
    width: 100%;
    height: 300px;
    display: inline-block;
    border: 6px solid #1f2933
}

.sht-movie-wrapper.tpl-2 .movie-poster img {
    border: none;
    border-radius: 6px
}

@media(max-width: 767px) {
    .movie-poster img {
        width: 100%;
        height: auto;
        display: inline-block;
        border: 6px solid #1f2933
    }

    .sht-movie-wrapper.tpl-2 .movie-poster img {
        border: 3px solid #1f2933
    }
}

.movie-poster .sht_imdbrating {
    background: #f38f38;
    display: inline;
    padding: 7px 8px;
    border-radius: 100%;
    position: absolute;
    top: 60px;
    left: 6px;
    z-index: 9;
    color: #fff
}

.movie-poster .rating-detail {
    text-align: center;
    margin-top: 3px;
    font-size: 14px
}

.movie-detail {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-left: 25px;
    padding-top: 5px;
    background: #fff;
    color: #475569
}

.movie-detail {
    position: unset;
    padding: 0 25px;
    overflow: hidden;
    border-bottom-right-radius: 5px;
    background: 0 0
}

.movie-detail a {
    color: var(--primary-color);
    margin-left: 3px
}

.movie-detail a:hover {
    color: var(--primary-hover)
}

.movie-detail p {
    margin-bottom: 2px;
    font-size: 14px;
    color: #475569
}

.released a {
    margin: 0 1px
}

.sht-movie-wrapper.tpl-2 .movie-detail p {
    padding: 3px 0;
    margin-bottom: 0;
    color: #475569
}

.sht-movie-wrapper.tpl-2 .movie-detail p.released {
    color: #64748b
}

.sht-movie-wrapper.tpl-2 .movie-detail p:last-child {
    border: none;
    padding-bottom: 0
}

.sht-movie-wrapper.tpl-2 .movie-detail p span+span {
    padding: 3px 7px 3px;
    color: #fff;
    background-size: 300% 100%;
    background-image: var(--primary-gradient);
    border-radius: 3px;
    font-size: 14px;
    text-transform: capitalize;
    margin-left: 3px
}

.sht-movie-wrapper.tpl-2 .movie-detail h1.entry-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    border-bottom: 1px #e8edf3 solid;
    padding-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone
}

.sht-movie-wrapper.tpl-2 .movie-detail p.org_title {
    color: #afafaf;
    font-size: 14px;
    padding: 5px 0
}

@media (max-width: 767px) {
    .sht-movie-wrapper.tpl-2 .movie-detail p {
        padding: 5px 0;
        border-bottom: none
    }
}

@media (min-width: 768px) and (max-width:1024px) {
    .sht-movie-wrapper.tpl-2 .movie-detail p {
        padding: 4px 0;
        border-bottom: none
    }
}

@media (min-width: 1024px) and (max-width:1366px) {
    .sht-movie-wrapper.tpl-2 .movie-detail p {
        padding: 4px 0;
        border-bottom: none
    }
}

.movie-title {
    position: absolute;
    bottom: -44px;
    width: 100%;
    padding: 10px 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 0;
    font-size: 22px;
    text-align: right;
    color: #cecece;
    background: rgba(12, 12, 12, .45);
    text-shadow: #fff 0 0 10px
}

@media (max-width: 480px) {
    .movie_info {
        position: relative;
        height: 250px
    }

    .film-poster {
        height: auto
    }

    .movie-title {
        font-size: 15px
    }
}

@media (max-width: 991px) {
    .film-poster {
        float: right
    }
}

@media (max-width: 767px) {
    .movie-detail {
        float: none;
        width: 100%;
        margin: 0;
        padding: 0;
        text-align: left;
        position: unset;
        padding: 0;
        background: 0 0
    }

    .movie-detail p {
        padding: 4px 10px;
        margin-bottom: -1px
    }

    .sht-movie-wrapper.tpl-2 .movie-detail p,
    .sht-movie-wrapper.tpl-2 .movie-detail p.org_title {
        padding: 5px 0
    }

    .sht-movie-wrapper.tpl-2 .movie-detail p.org_title {
        margin-top: 3px
    }

    .sht-movie-wrapper.tpl-2 .movie-detail p:last-child {
        border: 1px solid #e8edf3;
        padding-bottom: 5px
    }

    .movie-detail p:last-child {
        margin-bottom: 1px
    }

    .movie_info {
        position: relative;
        margin-bottom: 15px;
        overflow: hidden;
        height: auto;
        text-align: center
    }

    .sht-movie-wrapper.tpl-2 .movie_info {
        margin-top: 15px
    }

    .movie-poster {
        float: none;
        width: initial
    }

    .film-poster {
        width: 100%;
        float: none
    }

    .film-poster .poster {
        height: auto
    }

    .sht-movie-wrapper.tpl-2 .film-poster {
        margin-top: 20px;
        width: 100%
    }

    .sht-movie-wrapper.tpl-2 .movie-poster {
        max-width: 80%
    }
}

@keyframes sht-pulse {
    0% {
        transform: scale(0);
        opacity: 0
    }

    25% {
        transform: scale(0);
        opacity: .3
    }

    50% {
        transform: scale(.2);
        opacity: .5
    }

    75% {
        transform: scale(.6);
        opacity: .7
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0
    }

    8% {
        transform: scale(0);
        opacity: 0
    }

    15% {
        transform: scale(.1);
        opacity: 1
    }

    30% {
        transform: scale(.5);
        opacity: 1
    }

    100% {
        opacity: 0;
        transform: scale(1)
    }
}

.pulse-holder {
    display: block;
    position: absolute;
    top: 22%;
    right: 2%
}

.pulse-holder .pulse-marker {
    width: 6px;
    height: 6px;
    background: #c00;
    border-radius: 28px
}

.pulse-holder .pulse-rays {
    margin: 0 auto;
    position: absolute;
    right: -12px;
    top: -12px;
    z-index: 10;
    background-color: transparent;
    opacity: .1;
    width: 30px;
    height: 30px;
    border: 2px solid #f78b8b;
    border-radius: 100px;
    animation: pulse 2s linear infinite;
    border-image: initial
}

@-moz-document url-prefix() {

    .popular-post .original_title,
    .sht-post-title a,
    .sht-post-title p {
        background: 0 0
    }

    .popular-post .original_title,
    .sht-post-title .original_title {
        height: 20px;
        overflow: hidden
    }

    .sht-post-title h2 {
        height: 20px;
        overflow: hidden
    }
}

.tooltip.top .tooltip-arrow {
    border-top-color: var(--primary-color) !important
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: var(--primary-color) !important
}

.tooltip-inner {
    background-color: var(--primary-color) !important
}

.tooltip.right .tooltip-arrow {
    border-right-color: var(--primary-color) !important
}

.nav-tabs.nav-justified {
    border-bottom: 2px solid #e8edf3
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap
}

.nav-tabs.nav-justified>li>a {
    color: #64748b;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid transparent
}

.nav-tabs>li>a:hover {
    border-color: var(--primary-color) !important;
    background: var(--primary-light) !important;
    color: var(--primary-color)
}

@media (max-width: 767px) {

    .nav-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        margin-bottom: 1px !important
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.related-film {
    margin-bottom: 20px
}

.fadeOut {
    animation-name: fadeOut
}

.slide-text {
    background: rgba(0, 0, 0, .68);
    color: #fff;
    padding: 15px 30px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px
}

.slide-text h3,
.slide-text p {
    color: #fff;
    margin: 0
}

@media (max-width: 767px) {
    .slide-text {
        background: rgba(0, 0, 0, .75);
        color: #fff;
        padding: 10px 15px;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 0
    }

    .slide-text h3 {
        font-size: 15px;
        color: #fff
    }

    .slide-text a.btn {
        display: none
    }
}

#footer {
    background: var(--bg-footer);
    margin-top: 20px;
    border-top: 1px solid var(--border-footer)
}

#footer .footer-logo {
    border-bottom: 1px solid var(--border-footer);
    margin: 0 -20px 0;
    padding: 3px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center
}

#footer .footer-logo img {
    width: 180px;
    height: auto;
    margin-bottom: 0;
    display: inline-block
}

#footer p {
    color: var(--text-muted);
    padding: 15px 0;
    font-size: 14px
}

#footer p a {
    color: var(--primary-color)
}

#footer ul li {
    display: inline-block
}

#footer ul li a {
    color: var(--text-secondary)
}

#footer .widget {
    padding: 15px
}

#footer .widget ul {
    margin: 0;
    list-style: none;
    padding: 0
}

#footer .widget:nth-child(2) {
    padding-left: 30px
}

#footer .widget .widget-title {
    background-color: transparent;
    padding: 0 0 10px;
    border: none;
    border-bottom: 1px solid var(--border-footer);
    box-shadow: none;
    color: var(--text-primary);
    font-size: 18px;
    margin: 0
}

#footer .widget .widget-title:after {
    border: none
}

#footer .widget .tagcloud {
    padding: 0
}

#footer .widget .tagcloud a {
    line-height: 20px;
    padding: 4px 10px;
    margin: 2px 1px 2px 0;
    color: var(--text-secondary);
    display: inline-block;
    background: var(--bg-footer-subtle);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    transition: .5s
}

#footer .widget .tagcloud a:after {
    content: ''
}

#footer .widget .tagcloud a:hover {
    background: var(--primary-color);
    color: #fff
}

#footer .about {
    background: var(--bg-footer);
    padding: 0 20px 10px
}

.container.footer-columns {
    padding: 0
}

.footer-credit {
    background: var(--bg-footer-credit);
    border-top: 1px solid var(--border-footer)
}

.footer-credit .row.container {
    padding: 0
}

.credit {
    padding: 8px 0;
    color: var(--text-muted)
}

.credit a {
    color: var(--primary-color)
}

.credit p {
    margin: 0;
    text-transform: uppercase
}

@media screen and (max-width: 767px) {
    #footer {
        background-image: none;
        margin-top: 20px
    }

    .credit {
        padding: 8px
    }
}

.tagcloud {
    padding: 15px 0
}

.tagcloud a {
    padding: 2px 5px;
    font-size: 13px !important;
    display: inline
}

.social {
    float: right
}

.social a {
    color: #fff
}

.social a .hl-facebook:hover {
    background: #29689e
}

.social a .hl-twitter:hover {
    background: #299d9e
}

.social a .hl-pinterest:hover {
    background: #841412
}

.social a .hl-gplus:hover {
    background: #bb4947
}

#footer p.text-right {
    padding: 0 !important;
    margin-bottom: 0
}

.textwidget {
    margin-bottom: 15px
}

#footer .textwidget {
    margin: 0
}

.the_tag_list a {
    padding: 6px 10px;
    margin: 1px 1px 2px;
    color: #649fe3;
    font-size: 12px;
    display: inline-block;
    line-height: 15px;
    background: #83868b30;
    border-radius: 3px;
    background-size: 300% 100%;
    transition: .7s
}

.the_tag_list a:hover {
    color: var(--primary-color);
    background-position: right center
}

.the_tag_list a:last-child:after {
    content: ''
}

.sht-movie-wrapper {
    position: relative;
    overflow: hidden
}

.entry-content h3 {
    font-size: 18px;
    margin-top: 0
}

.entry-header {
    font-size: 25px;
    color: var(--primary-color);
    font-weight: 700;
    font-family: khotruyen
}

.single-post .wrap-content,
.single-video .wrap-content {
    padding-top: 15px
}

@media(max-width: 767px) {

    .single-post .wrap-content,
    .single-video .wrap-content {
        padding-top: 0;
        margin-top: -1px
    }
}

.user {
    padding: 3px;
    display: inline-block;
    float: right
}

@media(max-width: 767px) {
    .user {
        padding: 8px;
        display: inline-block;
        float: none;
        width: 100%;
        flex-wrap: nowrap
    }
}

.input-group i.hl-cancel,
.input-group i.hl-spin4 {
    position: absolute;
    right: 8px;
    bottom: 10px;
    z-index: 9;
    color: #fff
}

.page .post-content {
    padding: 15px 0
}

.entry-content,
.post-content {
    margin-top: -1px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    color: #475569
}

.post-content,
.single-news .entry-content {
    background: #fff;
    margin-top: 15px;
    border: 1px solid #e8edf3;
    border-radius: 8px
}

.entry-content h2 {
    font-size: 18px;
    font-family: inherit;
    line-height: 26px;
    margin-top: 0;
    color: #1e293b
}

.entry-content img {
    margin: 15px auto;
    border: 5px solid #f1f5f9;
    height: inherit !important;
    display: block
}

#expand-post-content {
    margin-top: 10px
}

.heads-up {
    transform: translateY(-6rem);
    transform: translate3d(0, -6rem, 0)
}

.foot-down {
    transform: translateY(6rem);
    transform: translate3d(0, 6rem, 0)
}

#easy-top {
    background: var(--primary-color);
    text-align: center;
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 4px;
    padding: 6px;
    display: none;
    z-index: 10;
    color: #fff;
    font-size: 16px;
    border-radius: 50%
}

#easy-top:hover {
    background: var(--primary-hover)
}

.sht-search-form .input-group-addon.film.hidden-xs {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b
}

.funny .form-control,
.sht-search-form .form-control {
    box-shadow: none !important;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 14px;
    border-radius: 20px !important;
    transition: .7s all;
    padding: 10px 40px;
    background: #fff url(/assets/images/search.svg) 5px 2px no-repeat
}

.sht-search-form .form-control:focus {
    border-color: var(--primary-color);
    border-radius: 3px !important;
    transition: .7s all
}

.sht-search-form .btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-left: none;
    padding: 3px 15px;
    border-radius: 20px !important
}

.sht-search-form .btn-primary:hover {
    background: var(--primary-hover)
}

.sht-search-form .btn-primary .glyphicon-search {
    padding-top: 5px
}

.sht-search-filter {
    background: 0 0;
    padding: 15px 0 0;
    overflow: hidden
}

.sht-search-filter .btn-group {
    padding: 0;
    margin-bottom: 10px;
    width: 100%
}

@media (min-width: 991px) {

    .sht-search-filter .btn-group .col-md-1:first-child,
    .sht-search-filter .btn-group .col-md-2:first-child {
        padding-left: 15px
    }

    .sht-search-filter .btn-group .col-md-1,
    .sht-search-filter .btn-group .col-md-2 {
        padding-right: 0;
        padding-left: 8px
    }

    .sht-search-filter .btn-group .col-md-3 {
        padding: 0 0 8px 8px;
        width: 22%
    }

    .sht-search-filter .btn-group .col-md-1 {
        width: 14.5%
    }
}

.sht-search-filter .filter-box {
    border: 1px solid #e8edf3;
    background: #fff;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 20px;
    padding: 0
}

.sht-search-filter .filter-box-title {
    background: #f8fafc;
    color: #1e293b;
    padding: 4px 10px;
    text-transform: uppercase;
    font-size: 14px;
    display: none
}

.sht-search-filter .filter-box label {
    margin-right: 5px;
    cursor: pointer;
    font-weight: 400;
    line-height: 17px
}

.sht-search-filter .col-md-8 .filter-box label {
    width: 31%
}

.sht-search-filter .filter-box label:hover {
    color: var(--primary-color)
}

.sht-search-filter .filter-box label::before {
    content: '\2023';
    font-size: 18px
}

.col-md-9 .filter-box .panel-body {
    padding: 15px 30px
}

.sht-search-filter .form-inline .form-control {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    border-radius: 0;
    background: #fff;
    padding: 4px 0 4px 10px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    font-size: 14px;
    border-radius: 3px
}

.sht-search-filter .col-md-4.subtitle {
    padding-right: 15px
}

.sht-search-filter input[type=radio]+label:hover,
.sht-search-filter input[type=radio]:checked+label {
    font-weight: 700;
    color: var(--primary-color)
}

.sht-search-filter input[type=radio] {
    display: none
}

.ui-helper-hidden-accessible {
    display: none
}

.ui-autocomplete.ajax-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 15px;
    background-color: #fff;
    list-style: none;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, .12), 0 4px 6px -2px rgba(0, 0, 0, .05);
    border-radius: 12px;
    margin: 0;
    padding: 6px 0;
    display: block;
    z-index: 9999;
    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden
}

.ui-autocomplete.ajax-results::-webkit-scrollbar {
    width: 6px;
    background: #f8fafc
}

.ui-autocomplete.ajax-results::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px
}

.ui-autocomplete.ajax-results::-webkit-scrollbar-thumb:hover {
    background: #94a3b8
}

.ui-autocomplete.ajax-results .ajax-search-header {
    padding: 10px 16px;
    font-size: 13px;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 500;
    background: #fff
}

.ui-autocomplete.ajax-results .ajax-search-header strong {
    color: var(--primary-color);
    font-weight: 600
}

.ui-autocomplete.ajax-results .ajax-search-header i {
    margin-right: 6px;
    color: #94a3b8
}

.ui-autocomplete.ajax-results .ajax-search-empty {
    padding: 24px 16px;
    text-align: center;
    color: #94a3b8;
    font-size: 13.5px;
    background: #fff
}

.ui-autocomplete.ajax-results .ajax-search-empty i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
    color: #cbd5e1
}

.ui-autocomplete.ajax-results li.ajax-search-item,
.ui-autocomplete.ajax-results li.exact_result {
    padding: 8px 14px;
    cursor: pointer;
    border-top: none;
    border-bottom: 1px solid #f8fafc;
    background: #fff;
    transition: background-color .15s ease;
    overflow: hidden
}

.ui-autocomplete.ajax-results li.ajax-search-item:hover,
.ui-autocomplete.ajax-results li.exact_result:hover {
    background-color: #f8fafc
}

.ui-autocomplete.ajax-results li a {
    display: block;
    text-decoration: none;
    color: #1e293b;
    white-space: inherit
}

.ui-autocomplete.ajax-results .sht_list_item {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden
}

.ui-autocomplete.ajax-results .image {
    flex-shrink: 0;
    margin: 0;
    float: none
}

.ui-autocomplete.ajax-results img {
    width: 44px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    display: block;
    margin: 0
}

.ui-autocomplete.ajax-results .item-info {
    flex: 1;
    min-width: 0
}

.ui-autocomplete.ajax-results .comic-title,
.ui-autocomplete.ajax-results .label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #1e293b !important;
    background: 0 0 !important;
    padding: 0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    margin: 0 0 4px 0
}

.ui-autocomplete.ajax-results li:hover .comic-title,
.ui-autocomplete.ajax-results li:hover .label {
    color: var(--primary-color) !important
}

.ui-autocomplete.ajax-results .adstt {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--primary-color);
    background: var(--primary-light, #fee2e2);
    padding: 2px 7px;
    border-radius: 4px;
    line-height: 1.3
}

.ui-autocomplete.ajax-results .ajax-search-footer {
    padding: 10px 14px;
    text-align: center;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-radius: 0 0 12px 12px
}

.ui-autocomplete.ajax-results .ajax-search-footer a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s ease
}

.ui-autocomplete.ajax-results .ajax-search-footer a:hover {
    gap: 10px
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color)
}

.pagination>li>a,
.pagination>li>span {
    color: #475569;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 6px 12px
}

.pagination>li>a:hover {
    color: var(--primary-color);
    background-color: var(--primary-light);
    border-color: var(--primary-color)
}

.pagination>li>span.dots,
.pagination>li>span.dots:hover {
    color: #94a3b8;
    background-color: #f8fafc;
    border: 1px solid #e8edf3
}

.sht-item {
    position: relative;
    line-height: 0;
    border-radius: 5px
}

.sht-item span {
    line-height: 1.6
}

.circle {
    stroke: #ff3939;
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    transition: all .5s ease-in-out;
    opacity: .3
}

.section-btn {
    color: #98acbd;
    font-size: 14px;
    background: #0b0f15;
    padding: 1px;
    margin-top: 4px;
    display: inline-table;
    border-radius: 20px;
    margin-left: 8px;
    cursor: pointer;
    transition: .7s all;
    background: linear-gradient(to right, red, #d60dd6);
    background: linear-gradient(to right, red, orange)
}

.section-btn:hover {
    background: #337ab7;
    color: #fff
}

.section-btn>span {
    display: inline-block;
    transform: skew(20deg);
    padding: 4px 13px;
    background: #141c24;
    border-radius: 20px
}

.section-btn.active {
    background: #1d588e;
    color: #8da4b7;
    background-image: linear-gradient(to right, #6eff00 0, #e49f20 100%, red 100%)
}

a.see-more {
    background: var(--primary-gradient);
    width: 30%;
    display: inline-block;
    text-align: right;
    margin: 5px 0;
    padding: 4px 12px;
    border-radius: 20px;
    transition: .5s all;
    color: #fff;
    float: right
}

a.see-more:hover {
    background: var(--primary-hover);
    color: #fff;
    transition: .5s all
}

.popover {
    font-family: khotruyen
}

.popover-title {
    text-align: center
}

.popover-title .film-title {
    color: var(--primary-color);
    font-weight: 600
}

.toggle {
    display: none
}

.toggle,
.toggle *,
.toggle :after,
.toggle :before,
.toggle+.toggle-button,
.toggle:after,
.toggle:before {
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.toggle ::-moz-selection,
.toggle :after::-moz-selection,
.toggle :before::-moz-selection,
.toggle+.toggle-button::-moz-selection,
.toggle::-moz-selection,
.toggle:after::-moz-selection,
.toggle:before::-moz-selection {
    background: 0 0
}

.toggle ::selection,
.toggle :after::selection,
.toggle :before::selection,
.toggle+.toggle-button::selection,
.toggle::selection,
.toggle:after::selection,
.toggle:before::selection {
    background: 0 0
}

.toggle+.toggle-button {
    outline: 0;
    display: inline-block;
    width: 45px;
    height: 20px;
    position: relative;
    cursor: pointer;
    border: 2px solid #333;
    user-select: none
}

.toggle+.toggle-button:after,
.toggle+.toggle-button:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%
}

.toggle+.toggle-button:after {
    left: 0
}

.toggle+.toggle-button:before {
    display: none
}

.toggle:checked+.toggle-button:after {
    left: 50%
}

.toggle+.toggle-button {
    padding: 2px;
    transition: all .2s ease;
    border: 2px solid rgba(156, 174, 192, .58);
    border-radius: 2em
}

.toggle+.toggle-button:after {
    transition: all .2s ease;
    background: rgba(156, 174, 192, .59);
    content: "";
    border-radius: 1em
}

.toggle:checked+.toggle-button:after {
    left: 50%
}

.blur-up {
    filter: blur(5px);
    transition: filter .4s
}

.blur-up.lazyloaded {
    filter: blur(0)
}

.sht-vertical-widget {
    overflow: hidden;
    margin: auto -15px
}

.adult-content-title {
    color: #ff4f4f;
    font-weight: 700
}

.adult-content-info {
    color: #3e3e3e;
    font-size: 14px
}

.sht-full-player {
    background: #000;
    padding: 10px 0;
    margin-bottom: 10px
}

.sht-full-player .container {
    padding: 0
}

@media (min-width: 991px) {
    .sht-centered {
        display: flex;
        justify-content: center
    }

    .sht-full-player {
        background: #000;
        padding: 10px 0;
        margin-top: 0
    }
}

.login .modal-dialog {
    width: 350px
}

.login .modal-footer {
    padding: 15px
}

.login .modal-header {
    padding: 15px 20px
}

.login .modal-header .modal-title {
    color: #1e293b;
    font-weight: 700
}

.login .modal-body {
    padding: 30px;
    display: block
}

.login .form-control {
    border-radius: 6px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: none;
    color: #1e293b
}

.big-login,
.big-register {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 7px;
    border-width: 2px;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    padding: 16px 60px;
    text-transform: uppercase;
    transition: all .3s ease 0s;
    width: 300px
}

.big-login {
    margin-bottom: 20px
}

.big-login:hover {
    background-color: var(--primary-hover);
    color: #fff
}

.big-register {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color)
}

.big-register:hover {
    border-color: var(--primary-hover);
    color: var(--primary-hover);
    background-color: var(--primary-light)
}

a.login_button {
    font-family: khotruyen;
    padding: 5px 7px 5px 7px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #dcdcdc;
    color: #333;
    text-decoration: none;
    font-size: 14px
}

.login_overlay {
    height: 100%;
    width: 100%;
    background-color: #f6f6f6;
    opacity: .9;
    position: fixed;
    z-index: 998
}

.btn-default[disabled]:hover {
    background-color: #5ad3ff !important
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .85;
    box-shadow: none
}

.luotxem.off {
    background: #ffffff00;
    border: #fbfbfb00;
    color: #ffffff1f
}

.luotxem.off:hover {
    background: #ffffff00;
    border: #fbfbfb00;
    color: #ffffff1f
}

.stt-top {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    color: #01c083;
    padding: 2px 4px;
    z-index: 2
}

.bao {
    padding: 10px 0 1px 0;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 3px
}

span.dp-dao {
    float: right;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
    color: #fbf8f4;
    background: var(--primary-color);
    user-select: none
}

span.dp-dao:hover {
    background-image: linear-gradient(to right, var(--primary-hover), var(--primary-color));
    background: var(--primary-hover)
}

span.dp-dao a,
span.dp-dao i {
    color: #fff
}

span.dp-dao.locc {
    float: unset;
    font-size: 14px
}

.loc {
    text-align: center
}

#headwrap .col-md-3.slogan {
    margin-top: 0;
    padding: 0
}

span.adstt {
    display: inline-block;
    font-size: 11px;
    font-weight: 300;
    margin: 5px 5px 0 0;
    padding: 1px 6px;
    border-radius: 50px;
    color: #fff;
    background: var(--primary-color)
}

.thong-tin {
    display: grid;
    gap: 15px;
    grid-template-columns: auto 1fr;
    margin: 15px 0;
    color: #1e293b;
    align-items: center
}

h1.chap-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5
}

h1.chap-title a {
    color: var(--primary-color)
}

h1.chap-title a:hover {
    color: var(--primary-hover)
}

.chap-ct {
    display: flex;
    justify-content: center;
    justify-items: end;
    align-items: center;
    gap: 10px;
    background: var(--bg-nav-hover);
    border: 1px solid #e8edf3;
    flex-wrap: wrap;
    padding: 5px;
    transition: all .3s ease-in-out
}

.read a span {
    text-align: center;
    height: 38px;
    padding: 0 16px;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13.5px;
    transition: .3s;
    user-select: none;
    box-sizing: border-box
}

.read a span i {
    font-size: 14px
}

.read a:nth-of-type(3n+1) span {
    background-image: var(--primary-gradient)
}

.read a:nth-of-type(3n+2) span {
    background-image: var(--primary-gradient)
}

.read a:nth-of-type(3n+3) span {
    background-image: var(--primary-gradient-dark)
}

.read a.btn-bookmark-link span.btn-bookmark {
    background: #fff;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    background-image: none;
    padding: 0;
    width: 38px;
    min-width: 38px;
    justify-content: center;
    box-sizing: border-box
}

.read a.btn-bookmark-link span.btn-bookmark i {
    color: var(--primary-color);
    font-size: 15px
}

.read a.btn-bookmark-link span.btn-bookmark.bookmarked,
.read a.btn-bookmark-link span.btn-bookmark:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    background-image: var(--primary-gradient)
}

.read a.btn-bookmark-link span.btn-bookmark.bookmarked i,
.read a.btn-bookmark-link span.btn-bookmark:hover i {
    color: #fff
}

.read a:hover span {
    transform: scale(1.05)
}

.read a:active span {
    transform: scale(.95)
}

.read {
    padding: 0 20px;
    margin-bottom: 5px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center
}

a[rel="category tag"] {
    background: var(--primary-light);
    display: inline-block;
    padding: 3px 7px;
    border-radius: 2px;
    border: 1px solid var(--primary-border);
    color: var(--primary-color);
    margin: 4px 4px 0 0;
    font-size: 13px
}

a[rel="category tag"]:hover {
    background: var(--primary-color);
    color: #fff
}

ul#list-chap {
    padding: 10px 0;
    list-style: none;
    margin: 10px;
    max-height: 380px;
    overflow: hidden;
    overflow-y: auto
}

li.chapter a {
    display: grid;
    grid-template-columns: 3fr 2fr;
    border-bottom: 1px dashed #e8edf3;
    margin: 0;
    padding: 6px 5px;
    color: #334155
}

li.chapter:hover {
    background: var(--primary-light)
}

.chapter a:visited {
    color: #94a3b8
}

.chapter a:hover,
li.chapter:hover {
    color: var(--primary-color)
}

.form-sele {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-width: 50%
}

.time {
    margin-bottom: 10px;
    text-align: center;
    color: #64748b
}

.top-view {
    position: absolute;
    font-size: 35px;
    font-weight: 700;
    margin: 0;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 2px 2px 3px rgba(0, 0, 0, .3)
}

.alert a {
    color: var(--primary-color)
}

.the_tag_list::-webkit-scrollbar,
span::-webkit-scrollbar,
ul::-webkit-scrollbar {
    width: 5px
}

@keyframes sht-bookmark-img-animation {
    0% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    10% {
        transform: rotate(-5deg) scale(1) skew(1deg)
    }

    20% {
        transform: rotate(5deg) scale(1) skew(1deg)
    }

    30% {
        transform: rotate(-5deg) scale(1) skew(1deg)
    }

    40% {
        transform: rotate(5deg) scale(1) skew(1deg)
    }

    50% {
        transform: rotate(0) scale(1) skew(1deg)
    }

    100% {
        transform: rotate(0) scale(1) skew(1deg)
    }
}

span.adstt.dptt {
    font-size: 12px;
    padding: 4px 7px;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
    margin: 2px;
    border-radius: 2px
}

.show-mobile {
    display: none !important
}

.show-pc {
    display: block !important
}

@media (max-width: 767px) {
    .show-mobile {
        display: block !important
    }

    .show-pc {
        display: none !important
    }
}