a,
a:hover {
    text-decoration: none;
    transition: color 0.3s linear;
}

a {
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

.form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

body {
    position: relative;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-size: 100% auto;
    font-size: 16px;
    z-index: -1;
}

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

.border-right-none {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.border-left-none {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.hitclub-header-description-search {
    display: block;
}

@media only screen and (max-width: 800px) {
    .hitclub-header-description-search {
        position: absolute;
        top: 60px;
        margin: 0;
        height: 40px;
        z-index: 9;
        display: none;
    }
}

.hitclub-header-description-search .form-control {
    border-radius: 5px 0 0 5px;
}

.hitclub-header-description-search .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: none;
}

.hitclub-header-description-search .btn {
    border-radius: 0 5px 5px 0;
}

.hitclub-header-description-search .btn span svg {
    fill: #fff;
}

@media only screen and (max-width: 800px) {
    .menu-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        height: 100%;
        max-width: 320px;
        background-color: var(--primary-color);
        background-size: cover;
        color: var(--primary-variant);
        z-index: 9999;
        transform: translateX(-100%);
        transition: 0.5s;
        overflow-y: scroll;
        padding-bottom: 50px;
    }
}

.menu-mobile ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul {
        margin-top: 50px;
        margin-bottom: 1rem;
    }
}

.menu-mobile ul li {
    display: inline-block;
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li {
        display: block;
        position: relative;
        border-bottom: 1px solid #ffefef4a;
    }
}

.menu-mobile ul li>a {
    display: inline-block;
    line-height: 65px;
    color: var(--light-color);
    font-size: 16px;
    font-weight: 400;
    padding-right: 20px;
    padding-left: 20px;
}

.menu-mobile ul li>a:hover {
    background-color: var(--primary_darker-color);
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li>a {
        font-size: 15px;
        text-transform: uppercase;
        display: block;
        padding: 15px 10px;
        line-height: 1.5;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li .li-plus {
        position: absolute;
        width: 45px;
        height: 45px;
        line-height: 45px;
        text-align: center;
        display: block;
        top: 0;
        right: 0;
        color: #fff;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li .li-plus:before,
    .menu-mobile ul li .li-plus:after {
        position: absolute;
        content: "";
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-90deg);
        background-color: #fff;
        transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
        -webkit-transform: translate(-50%, -50%) rotate(-90deg);
        -moz-transform: translate(-50%, -50%) rotate(-90deg);
        -ms-transform: translate(-50%, -50%) rotate(-90deg);
        -o-transform: translate(-50%, -50%) rotate(-90deg);
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li .li-plus:before {
        width: 11px;
        height: 1px;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li .li-plus:after {
        width: 1px;
        height: 11px;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li .clicked {
        transform: rotate(180deg);
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li .clicked.li-plus:before {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul li>ul {
        display: none;
        position: absolute;
        background: var(--primary-color);
        width: 100%;
        min-width: 250px;
        z-index: 1;
        transition: all 0.5s ease-in-out;
        left: 0;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li>ul {
        margin-top: 0;
        display: none;
    }
}

@media only screen and (min-width: 1050px) {
    .menu-mobile ul li>ul li {
        display: block;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li>ul li {
        border: none;
    }
}

@media only screen and (min-width: 1050px) {
    .menu-mobile ul li>ul li a {
        display: block;
        line-height: 1;
        padding: 15px 20px;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul li>ul li a {
        padding-left: 25px;
    }
}

@media only screen and (min-width: 1050px) {
    .menu-mobile ul li>ul li a:hover {
        background-color: var(--primary_darker-color);
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul li:hover ul {
        display: block;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul .current-menu-item a {
        color: #fff;
        font-size: 15px;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul .current-menu-item ul a {
        color: #fff;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile ul .current-menu-parent ul {
        display: block;
    }
}

.menu-mobile ul .menu-item-has-children {
    position: relative;
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul .menu-item-has-children>a {
        position: relative;
    }
}

@media only screen and (min-width: 1000px) {
    .menu-mobile ul .menu-item-has-children>a:after {
        content: "";
        position: absolute;
        background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='caret-down' class='svg-inline--fa fa-caret-down fa-w-10' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23fff' d='M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z'%3E%3C/path%3E%3C/svg%3E");
        background-size: 10px;
        background-repeat: no-repeat;
        background-position: center;
        top: 45%;
        right: 3%;
        width: 10px;
        height: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile .menu-mobile-close {
        position: absolute;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        top: 0;
        right: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile .menu-mobile-close svg {
        color: var(--light-color);
        width: 50%;
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile .menu-mobile-close svg path {
        fill: var(--light-color);
        stroke: var(--light-color);
    }
}

@media only screen and (max-width: 800px) {
    .menu-mobile.menu-mobile-active {
        transform: translate(0);
    }
}

.overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1998;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.overlay.overlay-active {
    opacity: 1;
    visibility: visible;
}

.header__bars {
    cursor: pointer;
}

.header__bars svg {
    color: var(--light-color);
}

.header__close {
    display: none;
}

.header__close svg {
    color: var(--light-color);
}

.header__search svg {
    fill: var(--light-color);
}

.hitclub-footer-left-icon ul {
    list-style-type: none;
    margin: 0;
}

.hitclub-footer-left-icon ul li {
    display: inline-block;
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.hitclub-footer-left-icon ul li a {
    display: inline-block;
    margin: 5px;
}

.hitclub-footer-left-icon ul li a svg {
    filter: grayscale(100%);
    border-radius: 50%;
    width: auto;
}

.hitclub-footer-left-icon ul li a svg:hover {
    filter: grayscale(0%);
}

.hitclub-footer-left-content ul {
    list-style-type: none;
    margin: 0;
}

.hitclub-footer-left-content ul li {
    display: inline-block;
}

.hitclub-footer-left-content ul li a {
    color: var(--light-color);
    font-size: 14px;
    padding-right: 10px;
    margin-right: 10px;
}

.hitclub-footer-left-content ul li a:hover {
    color: var(--secondary-color);
}

.hitclub-footer-left-content ul li:not(:last-child) a {
    border-right: 1px solid #fff;
}

.hitclub-footer-right a {
    font-size: 15px;
    line-height: 1.5;
}

.hitclub-footer-brand {
    background: rgba(0, 16, 9, 0.8);
}

.hitclub-footer-brand p {
    font-size: 13px;
    color: var(--gray-color);
    margin: 0;
}

.hitclub-footer-btn {
    bottom: 10px;
    left: 0;
}

.hitclub-footer-btn a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    opacity: 1 !important;
    transition: transform 0.2s;
    border-radius: 35px;
}

.hitclub-footer-btn-signin {
    z-index: 2;
    position: relative;
    color: var(--light-color);
    background: var(--primary_darker-color);
    border: 1px solid var(--primary_darker-color);
    border-radius: 35px;
}

.hitclub-footer-btn-signin:hover {
    color: var(--primary-color);
    background: var(--light-color);
}

.hitclub-footer-btn-signup {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    margin-left: -45px;
    color: var(--light-color);
    border-radius: 35px;
}

@media only screen and (max-width: 500px) {
    .hitclub-footer-btn-signup {
        margin-left: -32px;
    }
}

.hitclub-footer-btn-signup:hover {
    color: var(--secondary-color);
    background: var(--light-color);
}

.backToTop {
    position: fixed;
    z-index: 2222;
    bottom: 130px;
    right: -120%;
    background-color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    text-align: center;
    transition: 0.8s;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
}

.backToTop:hover {
    background-color: var(--primary-color);
}

.backToTop.show__backToTop {
    right: 10px;
}

.hitclub-main-description-title a {
    font-weight: 600;
    line-height: 1.2em;
}

.hitclub-main-description-title.small-title a {
    display: -webkit-box;
    height: 40px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
}

.hitclub-main-description-time *> {
    display: inline-block;
}

.hitclub-main-description-time img {
    border-radius: 100%;
    height: 25px;
    object-fit: cover;
}

.hitclub-main-description-time span {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
}

.hitclub-main-description-time-updates {
    border-left: 1px solid var(--gray-color);
}

.hitclub-main-description-content p {
    line-height: 1.5;
    font-weight: 400;
    font-size: 1rem;
}

.hitclub-main-description-content a {
    border-radius: 5px;
    color: var(--light-color);
    font-size: 15px;
}

.hitclub-main-description-content a:hover {
    border: 1px solid var(--primary-color);
    background-color: var(--light-color);
    color: var(--primary-color);
}

:root {
    --primary-color: #ffbb00;
    --primary_darker-color: #c02e05;
    --secondary-color: #dc3545;
    --light-color: #fff;
    --dark-color: #2f4468;
    --gray-color: #e4e4e4;
    --black-color: #242424;
}

.hitclub-text-primary {
    color: var(--primary-color);
}

.hitclub-text-primary:hover {
    background-color: #35343a;
}

.black-color {
    color: var(--black-color);
}

.dark-color {
    color: var(--dark-color);
}

.hitclub-hover-primary:hover {
    color: var(--primary-color);
}

.hitclub-bg-primary {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.hitclub-bg-hover-primary:hover {
    background-color: var(--primary_darker-color);
}

.hitclub-bg-primary_darker {
    background-color: var(--primary_darker-color);
}

.hitclub-bg-hover-secondary:hover {
    background-color: var(--secondary-color);
}

@media only screen and (max-width: 500px) {
    .hitclub-detail-description-title {
        font-size: 1.2rem;
    }
}

.hitclub-detail-description-content {
    border: 1px dashed var(--gray-color);
    border-right: none;
    border-left: none;
}

.hitclub-detail-description-post {
    border-top: 1px solid var(--gray-color);
}

.hitclub-detail-description-post-content:hover svg {
    color: var(--primary-color);
}

@media only screen and (max-width: 0px) {
    .hitclub-detail-description-post-content a {
        top: -12px;
        right: 3px;
    }
}

.hitclub-detail-author {
    border-left: 3px solid var(--primary-color);
    flex-direction: row;
}

@media only screen and (max-width: 800px) {
    .hitclub-detail-author-avatar {
        margin-right: 0;
        width: 100%;
        margin-top: -33px;
    }
}

.hitclub-detail-author-avatar img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.hitclub-detail-author-description-title p {
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.hitclub-detail-author-description-content {
    line-height: 1.6em;
}

.hitclub-detail-posts-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-color);
}

.card {
    background-color: #000;
    color: #fff;
}

.hitclub-detail-posts-title:before {
    content: "";
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    display: inline-block;
    margin-right: 3px;
}

.hitclub-detail-bredcrumb {
    border: 1px solid #c02e05;
    border-right: none;
    border-left: none;
}

.rank-math-breadcrumb p {
    color: #fff;
    margin: 0;
}

.rank-math-breadcrumb p a {
    color: #fff;
}

.rank-math-breadcrumb p a:hover {
    color: red;
}

.gini_archive_template>.card {
    border: 1px solid #c02e05;
}

.gini_archive_template * {
    color: #fff;
}

blockquote {
    background: #f8f6f1 !important;
    border: solid 1px #e7e2d5;
    padding: 20px !important;
    color: #6a6043 !important;
    font-size: 0.875em !important;
    line-height: 1.4em !important;
    border-radius: 5px;
}

blockquote p:last-child {
    margin-bottom: 0;
}

table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

table td,
table th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.widget .widget-title:before {
    content: " ";
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 30px;
    height: 3px;
    display: block;
    background: var(--primary-color);
}

.page-load-status {
    display: none;
}

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.see-more button:disabled,
.see-more button[disabled] {
    display: none;
}

.loader-ellips__dot {
    display: block;
    width: 0.8em;
    height: 0.8em;
    border-radius: 0.5em;
    background: var(--primary-color);
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

::-webkit-scrollbar {
    width: 5px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary_darker-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary_darker-color);
}


/*# sourceMappingURL=style.css.map */

.hitclub-block_navigation a {
    text-transform: uppercase;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-align: center;
    display: inline-block;
    border-radius: 5px;
}

.hitclub-block_navigation a:hover {
    color: var(--primary-color);
    background: #fff;
}

.hitclub-block_top_game {
    border-radius: 5px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0 0 25px 0 #00000033;
    position: relative;
    background: #fff;
    color: #333;
    margin-bottom: 30px;
    padding: 10px;
}

.hitclub-block_top_game-icongame {
    border-right: 1px solid #ccc;
}

@media only screen and (max-width: 800px) {
    .hitclub-block_top_game-icongame {
        border-right: none;
    }
}

.hitclub-block_top_game-icongame_image img {
    width: 168px;
}

.hitclub-block_top_game-number {
    position: absolute;
    border-radius: 5px;
    top: 0;
    color: #fff;
    font-weight: 500;
}

.hitclub-block_top_game-number:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.1);
    display: block;
    width: 30px;
    height: 12px;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 5px 5px 0 0;
    z-index: 1;
}

.hitclub-block_top_game-wraptitle {
    min-height: 105px;
}

@media only screen and (max-width: 800px) {
    .hitclub-block_top_game-wraptitle {
        border-right: none;
    }
}

.hitclub-block_top_game-wraptitle_title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
}

.hitclub-block_top_game-wraptitle_content {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    margin-bottom: 0;
}

.hitclub-block_top_game-voting-star {
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 10px;
    margin: 0 20px;
    font-size: 14px;
}

.hitclub-block_top_game-voting-star svg {
    padding: 0 4px;
    color: #ff941a;
    cursor: pointer;
}

.hitclub-block_top_game_btn {
    border-left: 1px solid #ccc;
}

@media only screen and (max-width: 800px) {
    .hitclub-block_top_game_btn {
        border-left: none;
    }
}

.hitclub-block_top_game_btn-blue {
    display: inline-block;
    margin: 5px 0;
    font-size: 14px;
    text-align: center;
    width: 86%;
    padding: 10px 20px;
    font-weight: 400;
    color: #fff;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px 0 #ffffff59;
    background-color: var(--primary-color);
}

.hitclub-block_top_game_btn-blue svg {
    transform: translateY(-2px);
}

.hitclub-block_top_game_btn-blue:hover {
    border: 1px solid var(--primary-color);
    background-color: #fff;
    color: var(--primary-color);
}

.hitclub-block_top_game_btn-green {
    display: inline-block;
    margin: 5px 0;
    font-size: 14px;
    text-align: center;
    width: 86%;
    padding: 10px 35px;
    font-weight: 400;
    background-color: var(--primary_darker-color);
    color: #fff;
    border: 1px solid var(--primary_darker-color);
    border-radius: 20px;
    box-shadow: 0 0 15px 0 #ffffff59;
}

.hitclub-block_top_game_btn-green svg {
    transform: translateY(-2px);
}

.hitclub-block_top_game_btn-green:hover {
    border: 1px solid var(--primary_darker-color);
    background-color: #fff;
    color: var(--primary_darker-color);
}

#rank-math-faq {
    margin: 40px 0;
    border: 1px solid #e0e0e0;
    border-top: 4px solid var(--primary-color);
    padding: 20px;
    position: relative;
}

#rank-math-faq .rank-math-question {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    padding: 18px 0 13px;
    margin-top: 0;
    margin-bottom: 0;
    color: #333;
    position: relative;
    cursor: pointer;
}

#rank-math-faq .rank-math-question:after {
    content: "";
    background: url(../svg/chevron-down-black.svg) no-repeat right center;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 1;
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.3s;
}

#rank-math-faq .rank-math-question.faq-active:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

#rank-math-faq .rank-math-list-item:not(first-child) .rank-math-answer {
    display: none;
}

#rank-math-faq .rank-math-list-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

#rank-math-faq .rank-math-answer {
    padding: 0 10px;
}

#rank-math-faq .rank-math-answer p,
#rank-math-faq .rank-math-answer {
    color: #666;
    background-color: #fff;
    font-size: 18px;
}

header {
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

@media only screen and (min-width: 992px) {
    #hitclub-header.header-active {
        animation: slide-down 0.7s;
        position: fixed;
        width: 100%;
        z-index: 99999999;
        -webkit-transition: all 0.7s ease-in-out;
        -moz-transition: all 0.7s ease-in-out;
        -ms-transition: all 0.7s ease-in-out;
        -o-transition: all 0.7s ease-in-out;
        transition: all 0.7s ease-in-out;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        top: 0;
    }
}

@keyframes slide-down {
    0% {
        opacity: 1;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#wpadminbar {
    z-index: 9999999999;
}

.cdc-ads-left {
    position: fixed;
    left: 0;
    top: 150px;
}

.cdc-ads-right {
    position: fixed;
    right: 0;
    top: 150px;
}

.cdc-ads-bottom {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.cdc-ads {
    z-index: 9;
}

@media only screen and (max-width: 800px) {
    .cdc-ads-bottom {
        width: 100%;
    }
}

.hitclub-header-description-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.cdc-ads-left img,
.cdc-ads-right img {
    max-width: calc(50vw - 650px);
}

@media only screen and (max-width: 1400px) {
    .cdc-ads-left img,
    .cdc-ads-right img {
        max-width: calc(50vw - 570px);
    }
}

@media only screen and (max-width: 1200px) {
    .cdc-ads-left img,
    .cdc-ads-right img {
        max-width: calc(50vw - 480px);
    }
}

.cdc-ads-bottom img {
    width: auto;
}

#ftwp-container.ftwp-fixed-to-post {
    z-index: 99999999 !important;
}

.mobile-button.sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-style2 .header__bars svg {
    color: var(--black-color);
}

.mobile-button .btn-custom {
    border-radius: 0;
    border: 0;
    display: block;
    font-size: 14px;
    font-weight: 400;
    background: var(--primary_darker-color);
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #fff;
}

.mobile-button .btn-custom:nth-child(1) {
    background: var(--secondary-color);
}

.mobile-button .btn-custom:hover {
    color: var(--primary_darker-color);
    background: #fff;
}

.mobile-button .btn-custom:nth-child(1):hover {
    color: var(--secondary-color);
    background: #fff;
}

.latest-posts .media {
    display: flex;
    align-items: center;
}

.latest-posts .media .pull-left {
    width: 64px;
    height: 64px;
    margin-right: 1rem;
}

.latest-posts .media .pull-left img {
    height: 100%;
    object-fit: cover;
}

.latest-posts .media .media-body {
    flex: 1;
}

body {
    background: #000;
    color: #fff;
}

.latest-posts .media .media-body .entry-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.latest-posts .media .media-body .entry-title a:hover {
    color: var(--primary-color);
}

.latest-posts .media .media-body .entry-meta {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.latest-posts .media .media-body .entry-meta span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

footer a {
    color: #fff;
}

.footer__top .footer-item .footer-title {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer__top .footer-item .list-item {
    margin-bottom: 10px;
}

.footer__top .footer-item .list-item .title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer__top .footer-item .list-social {
    margin-top: 2rem;
}

.footer__top .footer-item .list-social .title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer__top .footer-item .list-social ul {
    display: flex;
    align-items: center;
    gap: 0 2rem;
}

.widget_recent_entries .post-date {
    display: block;
}

.flickity-page-dots {
    bottom: 10px !important;
}

.banner-nhacai-ads {
    position: relative;
}

.banner-nhacai-ads img {
    margin-bottom: 5px;
}

.banner-nhacai-ads_bottom {
    position: fixed;
    bottom: 10px;
    left: 50%;
    z-index: 999999999;
    transform: translateX(-50%);
    max-width: 100%;
}

.banner-nhacai-ads_header {
    position: fixed;
    top: 0px;
    left: 50%;
    z-index: 999999999;
    transform: translateX(-50%);
    max-width: 100%;
}

.banner-ads_close {
    position: absolute;
    z-index: 9999;
    top: -10px;
    left: 0;
    background: red;
    width: 25px;
    height: 25px;
    text-align: center;
    color: #fff;
    line-height: 25px;
    cursor: pointer;
}

.hitclub-main .carousel>.carousel-cell:nth-child(n+2) a {
    display: none;
}

.hitclub_list li,
.hitclub_list ul {
    position: relative;
    list-style: none;
}

.hitclub_list li:before {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' style='fill: %232ecc71;'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32V224H48c-17.7 0-32 14.3-32 32s14.3 32 32 32H192V432c0 17.7 14.3 32 32 32s32-14.3 32-32V288H400c17.7 0 32-14.3 32-32s-14.3-32-32-32H256V80z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    width: 15px;
    height: 15px;
    top: 5px;
    left: -22px;
    position: absolute;
}

.hitclub_list_tru li:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ff2453' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M432 256c0 17.7-14.3 32-32 32L48 288c-17.7 0-32-14.3-32-32s14.3-32 32-32l352 0c17.7 0 32 14.3 32 32z'/%3E%3C/svg%3E");
}

.hitclub_list_nhan li:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg fill='%23ff2453' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
}

.hitclub_list_tich li:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg fill='%232ecc71' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
}

@media (max-width: 768px) {
    .banner-nhacai-ads_bottom,
    .banner-nhacai-ads_header {
        min-width: 100%;
    }
}

span.title_comment {
    font-size: 20px;
    color: #fff;
    line-height: 1.3em;
    font-weight: 700;
    margin: 0 0 15px;
    display: inline-block;
}

.comment-author.vcard {
    width: 25px;
}

#formcmmaxweb {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

#formcmmaxweb .nameuser {
    text-align: left;
}

#formcmmaxweb .avatarmw img {
    float: left;
    margin: 5px 10px 0 0;
    border: 1px solid #ccc;
    padding: 5px;
}

.comments-title-maxweb {
    margin: 30px 0;
    font-weight: normal;
}

.commentlist {
    margin-top: 10px;
}

.comment-author.vcard {
    float: left;
    clear: both;
    z-index: 2;
    position: relative;
    text-align: center;
}

.commentlist li {
    overflow: hidden;
    clear: both;
    margin-bottom: 10px;
}

.commentlist .children {
    margin-top: 10px;
}

.commentBody em {
    color: red;
}

.commentBody {
    position: relative;
    margin-left: 35px;
    overflow: hidden;
}

.comment-meta.commentmetadata {
    position: relative;
    padding: 0;
    margin: 0 0 5px;
}

.noidungcomment {
    font-size: 16px;
    line-height: 24px;
}

.cancel-comment-reply a {
    font-size: 14px;
    text-decoration: none;
    color: #a9883f;
}

.nocomments {
    border-color: #d98d8d;
    background-color: #ffcece;
    background-position: left -792px;
    color: #665252;
    padding: 10px;
}

.comment-meta.commentmetadata .ngaythang {
    position: absolute;
    top: 0;
    right: 0;
    color: #337ab7;
    opacity: 0.3;
    font-size: 12px;
}

.commentBody:hover .comment-meta.commentmetadata .ngaythang {
    opacity: 1;
}

.commentBody .reply {
    float: right;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}

.comment-meta.commentmetadata .fn {
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: capitalize;
    font-size: 17px;
    line-height: 22px;
    margin-top: 2px;
}

ol.commentlist_mw,
ol.commentlist_mw ul.children {
    list-style: none;
}

ol.commentlist_mw li {
    margin-bottom: 10px;
}

ol.commentlist_mw>ul.children {
    margin: 10px 0 15px 35px;
    background: #f1f1f1;
    padding: 10px;
    position: relative;
}

ol.commentlist_mw>ul.children:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 14px;
    width: 0;
    height: 0;
    border-bottom: 10px solid #f1f1f1;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

div.error {
    color: red;
    font-size: 12px;
    text-align: left;
    line-height: 16px;
    margin: 3px 0 0;
}

.tools_comment a {
    color: #4a90e2;
    font-size: 14px;
    position: relative;
    padding: 0 15px 0 0;
    margin: 0 7px 0 0;
    line-height: 14px;
}

.tools_comment a:after {
    content: "";
    width: 4px;
    height: 4px;
    top: 50%;
    margin-top: -2px;
    background: #999;
    position: absolute;
    right: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.tools_comment a:last-child:after {
    display: none;
}

.tools_comment a:last-child {
    padding: 0;
    margin: 0;
}

.noidungcomment p {
    margin: 0 0 5px;
}

#formcmmaxweb input[type=submit],
#formcmmaxweb input[type=button],
#formcmmaxweb input[type=reset],
#formcmmaxweb article.post-password-required input[type=submit],
#formcmmaxweb li.bypostauthor cite span {
    padding: 6px 10px;
    padding: 0.428571429rem 0.714285714rem;
    font-size: 11px;
    font-size: 0.785714286rem;
    line-height: 1.428571429;
    font-weight: normal;
    color: #7c7c7c;
    background-color: #e6e6e6;
    background-repeat: repeat-x;
    background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
    background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}

#formcmmaxweb button,
#formcmmaxweb input,
#formcmmaxweb textarea {
    border: 1px solid #ccc;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    font-family: inherit;
    padding: 6px;
    padding: 0.428571429rem;
}

#formcmmaxweb button,
#formcmmaxweb input[type=submit],
#formcmmaxweb input[type=button],
#formcmmaxweb input[type=reset] {
    cursor: pointer;
}

.reply a.comment-reply-link {
    color: #337ab7;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
}

.reply a.comment-reply-link:hover {
    color: #c7a611;
}

#formcmmaxweb p,
#formcmmaxweb input,
#formcmmaxweb textarea {
    width: 100%;
    background: transparent;
    outline: none;
    font-size: 14px;
}

#formcmmaxweb input,
#formcmmaxweb textarea {
    border: 1px solid #d7d7d7;
    color: #2e2e2e;
    display: block;
}

#formcmmaxweb input:focus,
#formcmmaxweb textarea:focus {
    border-color: #337ab7;
}

#formcmmaxweb p {
    margin-bottom: 10px;
    text-align: center;
}

#formcmmaxweb #commentform p {
    overflow: hidden;
}

#formcmmaxweb .name-email p {
    width: 50%;
    float: left;
}

#formcmmaxweb .name-email p:first-child {
    padding-right: 5px;
}

#formcmmaxweb .name-email p:last-child {
    padding-left: 5px;
}

#formcmmaxweb input#submit {
    width: auto;
    font-weight: 400;
    color: #fff;
    background: #337ab7;
    padding: 6px 20px;
    border: none;
    float: left;
    font-size: 16px;
    outline: none;
}

#formcmmaxweb input#submit:hover {
    background: #c7a611;
}

#formcmmaxweb ::-webkit-input-placeholder {
    color: #999999;
}

#formcmmaxweb ::-moz-placeholder {
    /* Firefox 18- */
    color: #999999;
}

#formcmmaxweb ::-moz-placeholder {
    /* Firefox 19+ */
    color: #999999;
}

#formcmmaxweb ::-ms-input-placeholder {
    color: #999999;
}

.test {
    color: #fff;
}

.incomplete {
    opacity: 0.5;
}

.g-recaptcha {
    transform: scale(0.8) translateX(-12.5%);
}

.wrapper-recaptcha .error {
    text-align: left;
    margin: 5px 0 0 0;
}


/* hitclub */

.logo {
    margin: 0 auto;
    max-width: 190px;
    width: 100%;
}

@media (max-width: 767px) {
    .logo {
        max-width: 38%;
    }
}

.slogan {
    max-width: 540px;
    margin: 0 auto;
}

.the_content img {
    margin: 0 auto;
    max-width: 100%;
}

.btn-download {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    display: inline-block;
    padding: 0 15px;
}

.home__reg {
    max-width: 850px;
    margin: 0 auto;
    background: url("../images/bg-content.png") top center no-repeat;
    background-size: 100% 95%;
    position: relative;
}

@media (max-width: 767px) {
    .home__reg {
        background: 0 0;
    }
}

#form-reg .form__content {
    max-width: 448px;
    width: 100%;
    margin: auto;
    background: url("../images/bg-form.png") 50% 1rem no-repeat;
    background-size: 100% 78%;
}

#form-reg .form__content-wrapper {
    width: 88%;
    margin: 0 auto;
}

#form-reg .form__content-item {
    margin-bottom: 10px;
}

#form-reg .form__content-title {
    flex: 0 0 auto;
    text-align: center;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
    padding: 0;
    height: 50px;
    line-height: 50px;
    font-weight: 700;
    width: 100%;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

#form-reg .form__content-item a {
    position: relative;
    height: 42px;
    line-height: 42px;
    border: none;
    margin: 0 auto;
    padding-left: 50px;
    font-size: 15px;
    color: #ffcc7e !important;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    background: url("../images/bg-input.png") top left/100% 100% no-repeat !important;
}

#form-reg .form__content-item a::before {
    margin-top: 3px;
    display: inline-block;
}

#form-reg .form__content-item a span {
    color: #9fa3a7;
    padding-left: 8px;
}

.btn-reg {
    max-width: 90%;
    width: 100%;
    margin: 10px auto;
    animation: btnAnimation 0.6s linear infinite;
}

@keyframes btnAnimation {
    0% {
        transform: scale(1.04);
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }
    50% {
        transform: scale(1);
        -webkit-filter: brightness(1);
        filter: brightness(1);
    }
    100% {
        transform: scale(1.04);
        -webkit-filter: brightness(1.6);
        filter: brightness(1.6);
    }
}

.btn-web {
    text-align: center;
}

.btn-hover:hover {
    -webkit-filter: drop-shadow(2px 2px 8px #f6ce75) brightness(1.3) !important;
    filter: drop-shadow(2px 2px 8px #f6ce75) brightness(1.3) !important;
}

.btn-web a {
    display: block;
}

.btn-web small {
    color: #b56c33;
    font-size: 13px;
}

.img-link-app {
    height: auto;
    width: 100%;
    margin: 15px auto;
    display: block;
}

@media (max-width: 767px) {
    .img-link-app {
        max-width: 75%;
        margin-bottom: 0;
    }
}

.d-block-android {
    display: block;
}

.btn1111 small {
    display: block;
    width: 100%;
    font-weight: 400;
    font-style: italic;
    margin-top: 0;
    color: #c9982f;
}

@media only screen and (min-width: 768px) {
    .img-link-app {
        max-width: 400px;
    }
}

#jackpot {
    position: relative;
    display: inline-block;
    margin: 0 1.5rem;
}

#jackpot img {
    width: 100%;
    margin: 0 auto;
}

.text-jackpot {
    position: absolute;
    font-size: 20px;
    text-transform: uppercase;
    color: #f5cb23;
    margin: 0;
    padding: 0;
    line-height: 1;
    letter-spacing: 0.1rem;
    width: 100%;
    text-align: center;
    top: 24%;
    left: 10px;
    right: 10px;
    bottom: 0;
    display: flex;
    justify-content: center;
    font-family: Helvetica;
    text-shadow: 3px 3px 0 #411416, 3px -3px 0 #411416, -3px 3px 0 #411416, -3px -3px 0 #411416, 3px 0 0 #411416, 0 3px 0 #411416, -3px 0 0 #411416, 0 -3px 0 #411416;
}

body.home {
    background-color: #000 !important;
}

.slider__home {
    top: 8%;
    max-width: 300px;
    width: 100%;
    height: 540px;
    max-height: 90%;
    position: fixed;
    left: 2%;
}

.slider__home img {
    width: 100%;
}

.home .sticky-header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #242424;
    z-index: 999;
}

.home .sticky-header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.home .sticky-header ul li {
    padding: 8px 10px;
}

.home .sticky-header ul li a {
    color: #ffffff;
    white-space: nowrap;
}

.home__content {
    padding-bottom: 70px;
}

.home .page-title {
    font-size: 25px;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .home .page-title {
        font-size: 20px;
    }
}

.sosial_footer img {
    width: 25px;
    height: 25px;
}

.menu-footer {
    list-style: none;
    margin-top: 20px;
    margin-bottom: 20px;
}

.menu-footer li a {
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

@media (max-width: 767px) {
    .home .sticky-header ul {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    .home .sticky-header ul li {
        scroll-snap-align: start;
    }
}

@media (max-width: 1199px) {
    .navbar-header {
        float: none;
    }
    .navbar-left,
    .navbar-right {
        float: none !important;
    }
    .navbar-default .navbar-toggle {
        display: block;
        border-color: transparent;
    }
    .navbar-default .navbar-toggle:focus,
    .navbar-default .navbar-toggle:hover {
        background-color: transparent;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-right: 0;
    }
    .navbar-fixed-top {
        top: 0;
        border-width: 0 0 1px;
    }
    .navbar-nav {
        float: none !important;
        margin-top: 7.5px;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-nav>li>a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
    .collapse.in {
        display: block !important;
    }
    .navbar-form {
        margin-left: -15px;
        margin-right: -15px;
    }
    .navbar-form .form-control {
        width: 100%;
    }
    .navbar-collapse {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0;
        margin-right: 0;
    }
}

header .menu .navbar {
    border-radius: 0;
    margin: 0;
    border: none;
}

header .menu .navbar .navbar-header {
    border: none;
}

header .menu .navbar .navbar-header .navbar-brand {
    padding-top: 2px;
    padding-bottom: 2px;
    display: flex;
    align-items: center;
}

header .menu .navbar .navbar-header .navbar-brand img {
    max-height: 46px;
    width: auto;
}

header .menu .navbar .navbar-collapse {
    background-color: #000;
}

header .menu .navbar .navbar-collapse .navbar-nav>li.current-menu-item>a {
    background-color: #c02e05;
    color: #fff;
}

header .menu .navbar .navbar-collapse .navbar-nav>li>a {
    color: #fff;
    text-transform: uppercase;
}

header .menu .navbar .navbar-collapse .navbar-form {
    border: none;
}

header .menu .navbar .navbar-collapse .navbar-form .control-group {
    position: relative;
    z-index: 1;
}

header .menu .navbar .navbar-collapse .navbar-form .control-group .form-control {
    padding-right: 36px;
}

header .menu .navbar .navbar-collapse .navbar-form .control-group .btn {
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 7px 10px;
    background-color: transparent;
}

.header {
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .header {
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
}

@media only screen and (min-width: 992px) {
    .header {
        background-color: #000;
    }
}

.header .navbar .navbar-collapse {
    flex: 1;
}

.header .navbar-default .navbar-toggle .icon-bar {
    background-color: #888;
}

.header .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
    margin: 5px 0;
}

.header .navbar-nav a {
    padding: 15px;
}

@media (max-width: 991px) {
    .header .navbar-nav a {
        display: block;
    }
}

@media only screen and (min-width: 992px) {
    .header .navbar-nav a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .header .navbar-header {
        display: flex;
        flex-direction: row-reverse;
        width: 100%;
        justify-content: space-between;
    }
    .header .navbar-header .navbar-toggle {
        background: none;
    }
}

@media (max-width: 991px) {
    .header form {
        margin: 15px 0;
    }
}

.header form .form-control {
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555 !important;
    background-color: #fff !important;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

.header form .btn_search span::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
}

header#ftwp-header {
    padding: 10px !important;
}
body.home{
	background-attachment: fixed;
}
body.home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url("../images/line-header-left.png") top left no-repeat, url("../images/line-header-right.png") top right no-repeat;
    background-size: 41.3333333333% 100%;
	
}

@media (max-width: 767px) {
    body.home::after {
        height: 70px;
        background: url("../images/line-header-left-mb.png") top left no-repeat, url("../images/line-header-right-mb.png") top right no-repeat;
        background-size: 31% 100%;
    }
}

@media (max-width: 991px) {
    body.home {
        background: url("../images/bg-mobile.jpeg") top center no-repeat fixed !important;
        background-size: cover;
        background-color: #190600;
    }
}

.adv img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.notification {
    position: fixed;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
    background: url("../images/jackpot.png") top center no-repeat;
    background-size: 100% auto;
    width: 350px;
    padding: 11rem 0 3.5rem 0;
    overflow: hidden;
}

.notification_box {
    position: relative;
    display: block;
    height: 400px;
    width: 60%;
    margin: 0 auto;
    overflow: hidden;
}

.notification-inner {
    overflow: initial;
    width: 100%;
    border-radius: 0;
    position: relative;
    align-items: center;
    display: flex;
    border-bottom: 1px solid #7e721e;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.notification-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-right: 10px;
    border-radius: 100%;
    overflow: hidden;
    padding: 3px;
    background: #e3ac3b;
    background: linear-gradient(to bottom, #e3ac3b 0, #d9a439 11%, #cd962a 24%, #e4ae3e 44%, #f8d271 68%, #fcde9d 88%, #fcedbb 100%);
}

.notification-icon>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification .notification-body-header {
    overflow: hidden;
    font-weight: 700;
}

.notification .notification-body-content {
    overflow: hidden;
    font-weight: 700;
    color: #f0ed02;
    line-height: 1;
}

#huongdan h3 {
    text-align: center;
    text-transform: uppercase;
    line-height: 2.5;
    background: #690b1a;
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    width: 100%;
}

#huongdan .huongdan_step,
#huongdan p {
    text-transform: uppercase;
    color: #ffdc53;
    height: 36px;
    font-weight: 700;
    line-height: 36px;
    font-size: 18px;
    padding-left: 15px;
    margin-bottom: 0.5rem;
}

#huongdan ul {
    font-size: 14px;
    padding-left: 35px;
    list-style: disc;
}


/*# sourceMappingURL=style.css.map */
@media (max-width: 1500px) {
    .slider__home {
        max-width: 200px;
    }
	
}
@media (max-width: 1200px) {
    .slider__home {
        max-width: 150px;
    }
	
}

@media (max-width: 1100px) {
    .slider__home {
        max-width: 150px;
    }
}

@media (min-width: 991px) {
    .the_content_home {
        max-width: 60%;
        margin: auto;
    }
}