@charset "UTF-8";

/* Main */
:root {
    --color-red: #ec2d3f;
    --color-medium-red: #cc2c32;
    --color-dark-red: #c31829;
    --color-green: #28a745;
    --color-dark-green: #207d36;
    --color-black: #212529;
    --color-gray: #6c757d;

    --main-text-color: #212529;
    --main-color: #403d2c;
    --main-hover-color: #2a3031;

    --second-color: #28a745;
    --second-hover-color: #207d36;
}

html {
    scroll-behavior: smooth;
}

p {
    margin-bottom: 5px;
}

body {
    font-size: 14px;
    font-family: 'Roboto', var(--font-family-sans-serif);
    color: var(--main-text-color);
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

img[loading="lazy"] {
    max-width: 100%;
    height: auto;
}

a,
input,
textarea {
    outline: none;
    padding: 0px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

a {
    color: #bb4a03;
}

a:hover {
    color: var(--main-color);
    text-decoration: none;
}

.w-clear:after {
    display: block;
    content: "";
    clear: both;
}
.hidden {
    display: none;
}
.clear {
    clear: both;
}
.none {
    display: none;
}
.hidden-seoh {
    visibility: hidden;
    height: 0px;
    margin: 0px;
    overflow: hidden;
}
.wrap-main,
.wrap-content {
    max-width: 1220px;
    margin: 20px auto;
    padding: 0px 10px;
}

.bg-main {
    background-color: #eef0f7;
    padding: 5px 0;
}

.wrap-main {
    max-width: 1320px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-left,
.main-right {
    width: 240px;
    padding: 0 15px;
    position: relative;
}

.main-center {
    padding: 0 15px 10px;
    background-color: #fff;
    width: calc(100% - 480px);
}

.qc-item {
    display: block;
    position: relative;
    margin-bottom: 10px;
}

.qc-aside {
    padding-bottom: 190.4762%;
}

.qc-aside img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.qc-item img {
    display: block;
    width: 100%;
}

.qc-item img:hover {
    filter: brightness(120%);
}

.game-item {
    margin-bottom: 10px;
}

.game-item a:hover {
    color: #ff3e3e;
    text-decoration: underline;
}

.game-item__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    flex-wrap: wrap;
}

.game-item__left {
    width: 100px;
    text-align: center;
    padding: 0 3px;
}

.game-item__stt {
    font-size: 18px;
}

.game-item__seemore {
    color: #2979a2;
    font-weight: 600;
}

.game-item__alpha.-mb {
    display: none;
}

.game-item__center {
    width: calc(100% - 100px - 210px);
    padding: 0 5px;
    align-self: stretch;
}

.game-item__img {
    display: block;
    margin-bottom: 5px;
}

.game-item__name {
    color: #2979a2;
    font-weight: 600;
    font-size: 15px;
}

.game-item__right {
    width: 210px;
    padding: 0 3px;
    font-size: 12px;
}

.game-item__info {
    padding: 10px 5% 10px 14%;
}

.game-item__info p {
    margin-bottom: 5px;
}

.game-item__info a {
    color: #2979a2;
    font-weight: 600;
}

.game-item__time {
    text-align: right;
    padding-right: 20px;
}

.game-item__des {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
}

.game-item__attr {
    width: 49%;
}

.game-item__attr-label {
    display: inline-block;
    width: 90px;
}


.date-open-now {
    color: #f12323;
    font-weight: 600
}

.date-open-tomorrow {
    color: #8f2424;
    font-weight: 600
}

.date-open-yesterday {
    color: #2f2d2d;
    font-weight: 600
}

.date-alpha-now {
    color: #287e41;
    font-weight: 600
}

.date-alpha-tomorrow {
    color: #275534;
    font-weight: 600
}

.date-alpha-yesterday {
    color: #2f2d2d;
    font-weight: 600
}

.bg-vip-info {
    background: linear-gradient(to bottom,#fffff7,#fcfccc,#ffc);
}

.wrap-home {
    max-width: 100%;
    padding: 0px;
    margin: auto;
}
.wrap-content {
    margin: auto;
}

.hover-bright {
    display: block;
}



.hover-bright img:hover {
    filter: brightness(120%);
}

.hover-img {
    display: block;
    overflow: hidden;
}

.hover-img img {
    width: 100%;
    transition: ease 0.3s;
    display: block;
}

.hover-img:hover img {
    transform: scale(1.1);
    /* animation: pulse 1s; */
}

.hover-glass {
    overflow: hidden;
    display: block;
    position: relative;
}

.hover-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.hover-glass:hover:before {
	-webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


.hover-glass img {
    width: 100%;
    transition: ease 0.3s;
    display: block;
}


.index-box {
    margin-bottom: 20px;
}

.bg-vip {
    background: linear-gradient(
        45deg
        ,#ffffad,#ffffe0,#ffffad);
}

.bg-normal {
    background: linear-gradient(to top,#fff,#eef7fa,rgba(233,242,248,.87));
}

.index-title {
    font-size: 14px;
    color: #333;
    border-bottom: 2px solid #2979a2;
}

.huongdangame-item {
    width: 100%;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    flex-wrap: wrap;
    position: relative;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #d9d9d9;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(10%,#f6f5f5),to(#eef0f7));
    background-image: linear-gradient(180deg,#f5f4f4 10%,#eef0f7);
}

.huongdangame-item:hover {
    box-shadow: 0 0 7px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0 0 7px rgba(0,0,0,.2);
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 20%);
}

.huongdangame-item a {
    color: #000;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.huongdangame-item__img {
    width: 30%;
}

.huongdangame-item__info {
    width: 67%;
}

.huongdangame-item__info h3 {
    font-size: 16px;
    color: #2979a2;
    font-weight: 600;
    margin-bottom: 5px;
}

.huongdangame-item__info p {
    margin-bottom: 5px;
}

.huongdangame-item__gamekind {
    font-size: 13px;
    font-weight: 700;
    color: #4b0676;
    width: 50%;
    float: left;
    text-align: left;
    font-style: italic;
}

.huongdangame-item__date {
    width: 50%;
    float: right;
    text-align: right;
    padding: 0 20px;
    font-style: italic;
    font-size: 13px;
}

/* General */
.title-main {
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}
.title-main span {
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 800;
    font-size: 23px;
}

.title-main__btn {
    position: absolute;
    right: 5px;
    top: 5px;
}

.time-main {
    margin-bottom: 0.75rem;
    color: #999999;
}
.time-main i {
    vertical-align: top;
    margin: 3px 7px 0px 0px;
}
.time-main span {
    vertical-align: top;
    display: inline-block;
}
.social {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.social li {
    display: inline-block;
    vertical-align: top;
}
.social li:last-child {
    margin-right: 0px;
}
.control-carousel {
    position: absolute;
    top: calc(50% - 30px / 2);
    margin-bottom: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #eee;
    z-index: 2;
    background-color: #fff;
    color: #ccc;
    cursor: pointer;
}
.control-carousel:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}
.prev-carousel {
    left: 0px;
}
.next-carousel {
    right: 0px;
}

/* Header */
.header {
    background-color: #fff;
    background-color: var(--main-color);
}

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

.header-top {
    color: #fff;
    background-color: var(--main-color);
}
.header-top .wrap-content {
    padding: 6px 10px;
}
.info-header {
    margin-bottom: 0px;
}
.info-header i {
    vertical-align: top;
    margin: 3px 5px 0px 0px;
    font-size: 16px;
}
.social-header li {
    width: 30px;
    margin-right: 3px;
}
.header-bottom .wrap-content {
    padding: 20px 10px;
}
.hotline-header {
    display: inline-block;
    padding-left: 25px;
    background-image: url(../images/hotline.png);
    background-repeat: no-repeat;
    background-position: 0px 1px;
}
.hotline-header p {
    font-weight: bold;
    margin-bottom: -2px;
    text-transform: capitalize;
}
.hotline-header span {
    font-weight: bold;
    color: var(--main-color);
    font-size: 20px;
    display: block;
}
.user-header a {
    color: #fff;
    padding-right: 9px;
    margin-right: 7px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    text-decoration: none;
}
.user-header a:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 8px;
    background-color: #fff;
    top: calc(50% - 7px / 2);
    right: 0px;
    opacity: 0.7;
}
.user-header a:last-child {
    padding-right: 0px;
    margin-right: 0px;
}
.user-header a:last-child:after {
    display: none;
}

/* Menu */
#hamburger.mmenu-tarbar {
    display: none;
}
.menu {
    background-color: var(--main-color);
}

.menu-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
}

.menu ul {
    width: 100%;
    padding: 0px;
    margin: auto;
    list-style: none;
}
.menu ul li {
    position: relative;
    z-index: 99;
}
.menu ul li.line {
    width: 1px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.5);
}
.menu ul li a {
    display: block;
    position: relative;
    z-index: 1;
    text-align: center;
    text-decoration: none !important;
}
.menu ul li a h2 {
    font-size: 15px;
    color: #fff;
    margin: 0px;
    padding: 15px 10px;
    display: flex;
    align-items: center;
}

.menu ul li a h2 span {
    display: block;
    padding: 0 5px;
}
.menu ul li a.active,
.menu ul li:hover > a {
    background: var(--main-hover-color);
}
.menu ul li ul {
    position: absolute;
    min-width: 200px;
    background: var(--main-color);
    box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
    -webkit-transform: perspective(600px) rotateX(-90deg);
    transform: perspective(600px) rotateX(-90deg);
    -webkit-transform-origin: 0 0 0;
    transform-origin: 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
.menu ul li:hover > ul {
    -webkit-transform: perspective(600px) rotateX(0);
    transform: perspective(600px) rotateX(0);
    -webkit-transform-origin: 0 0 0;
    opacity: 1;
    visibility: visible;
    transition: all 0.7s;
}
.menu ul li ul li a {
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu ul li ul li:last-child > a {
    border-bottom: 0px;
}
.menu ul li ul li a h2 {
    font-size: 14px;
    padding: 12px 15px;
}
.menu ul li ul li ul {
    top: 0px;
    left: 100%;
}

/* Search */
.search {
    width: 230px;
    background: #fff;
}
.search p {
    float: left;
    width: 35px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
    text-align: center;
    margin: 0px;
    color: var(--color-gray);
    font-size: 16px;
}
.search input {
    width: calc(100% - 35px);
    height: 35px;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 10px;
    font-size: 12px;
}
.search input::-webkit-input-placeholder {
    color: #ccc;
}
.search input:-moz-placeholder {
    color: #ccc;
}
.search input::-moz-placeholder {
    color: #ccc;
}
.search input:-ms-input-placeholder {
    color: #ccc;
}

/* Menu RP */
.menu-res {
    display: none;
    z-index: 10;
    /* background: var(--main-color); */
    background-color: #fff;
    color: var(--main-color);
    position: relative;
    line-height: normal;
}
.menu-bar-res {
    height: 55px;
    padding: 0px 10px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#menu {
    display: none;
}
#hamburger {
    display: block;
    width: 45px;
    height: 23px;
    position: relative;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
    background: #fff;
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    position: absolute;
    left: 0px;
}
#hamburger:before {
    top: 0px;
}
#hamburger span {
    top: 10px;
}
#hamburger:after {
    top: 20px;
}
#hamburger:before,
#hamburger:after,
#hamburger span {
    -webkit-transition: none 0.5s ease 0.5s;
    transition: none 0.5s ease 0.5s;
    -webkit-transition-property: transform, top, bottom, left, opacity;
    transition-property: transform, top, bottom, left, opacity;
}
.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
    top: 10px;
}
.mm-wrapper_opening #hamburger span {
    left: -50px;
    opacity: 0;
}
.mm-wrapper_opening #hamburger:before {
    transform: rotate(45deg);
}
.mm-wrapper_opening #hamburger:after {
    transform: rotate(-45deg);
}
.mm-menu_opened {
    display: block !important;
}

/* Search RP */
.search-res {
    position: relative;
}
.search-res .icon-search {
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-align: center;
    line-height: 42px;
    color: var(--main-text-color);
    font-size: 17px;
    margin: 0px;
}
.search-res .icon-search.active {
    color: var(--main-text-color);
    background: #fff;
    border-radius: 100%;
}
.search-res .search-grid {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 0px;
    height: 40px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--main-color);
    z-index: 2;
    opacity: 0;
    border-radius: 25px;
    line-height: normal;
}
.search-res .search-grid p {
    float: left;
    width: 35px;
    height: 38px;
    cursor: pointer;
    outline: none;
    border: none;
    margin: 0px;
    font-size: 17px;
    display: block;
    color: var(--main-color);
    line-height: 40px;
    text-align: center;
}
.search-res .search-grid input {
    width: calc(100% - 35px);
    float: right;
    line-height: 38px;
    outline: none;
    border: none;
    color: var(--main-color);
}
.search-res .search-grid input::-webkit-input-placeholder {
    color: #ccc;
}
.search-res .search-grid input:-moz-placeholder {
    color: #ccc;
}
.search-res .search-grid input::-moz-placeholder {
    color: #ccc;
}
.search-res .search-grid input:-ms-input-placeholder {
    color: #ccc;
}

/* Slideshow */
.slideshow {
    position: relative;
}
.slideshow a {
    display: block;
    cursor: pointer;
}
.slideshow a img {
    width: 100%;
}
.slideshow:hover .control-slideshow {
    opacity: 0.3;
}
.slideshow .control-slideshow:hover {
    opacity: 0.8;
}
.control-slideshow {
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: calc(50% - 50px / 2);
    width: 35px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    cursor: pointer;
    margin: 0px;
    background-color: #000000;
    border-radius: 3px;
}
.control-slideshow i {
    color: #ffffff;
}
.prev-slideshow {
    left: 20px;
    padding-right: 3px;
}
.next-slideshow {
    right: 20px;
    padding-left: 3px;
}

/* Partner */
.wrap-partner {
    padding: 0px 10px;
}
.wrap-partner .wrap-content {
    max-width: 1200px;
    padding: 0px;
    position: relative;
}
.owl-partner {
    padding: 0px 40px;
}
.partner {
    display: block;
    border: 1px solid #eee;
}
.partner img {
    width: 100%;
}

/* Breadcrumb */
.breadCrumbs {
    background-color: #eee;
}
.breadCrumbs .wrap-content {
    padding: 0.75rem 10px;
    max-width: 1200px;
}
.breadCrumbs .wrap-content .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}
.breadCrumbs .wrap-content .breadcrumb-item a {
    color: var(--color-black);
}
.breadCrumbs .wrap-content .breadcrumb-item.active a {
    color: var(--color-gray);
}

/* Intro */
.wrap-intro {
    margin-bottom: 50px;
}
.left-intro {
    width: 67%;
}
.right-intro {
    width: 30%;
}
.title-intro {
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 1.5rem;
}
.title-intro span {
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    font-size: 20px;
}
.title-intro span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: 0px;
    left: 0px;
    background-color: var(--main-color);
}
.newshome-best {
    width: 43%;
    display: block;
    float: left;
    margin-right: 1.5%;
}
.pic-newshome-best img {
    width: 100%;
}
.name-newshome {
    color: var(--color-black);
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0.25rem;
}
.name-newshome.text-split {
    -webkit-line-clamp: 2;
}
.time-newshome {
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}
.desc-newshome {
    color: var(--color-black);
    margin-bottom: 0px;
}
.view-newshome {
    display: inline-block;
    border: 1px solid var(--color-black);
    padding: 8px 15px;
    color: var(--color-black);
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 1rem;
}
.view-newshome:hover {
    background-color: var(--color-black);
    color: #fff;
}
.newshome-scroll {
    width: calc(100% - 44.5%);
    height: 450px;
    overflow: hidden;
}
.newshome-scroll ul li {
    margin-bottom: 15px !important;
}
.newshome-normal {
    display: block;
}
.pic-newshome-normal {
    float: left;
    width: 34%;
    margin-right: 3%;
    margin-bottom: 0px;
}
.pic-newshome-normal img {
    width: 100%;
}
.info-newshome-normal {
    float: left;
    width: calc(100% - 37%);
}
.video-main {
    position: relative;
    height: 400px;
}
.video-main iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
.listvideos {
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border: 1px solid #ccc;
    color: var(--color-black);
    margin-top: 10px;
    cursor: pointer;
}

/* Video */
.video {
    float: left;
    width: 23.5%;
    margin: 0 2% 2% 0;
    text-align: center;
    cursor: pointer;
}
.video:nth-child(4n + 1) {
    clear: both;
}
.video:nth-child(4n) {
    margin-right: 0px;
}
.pic-video {
    position: relative;
}
.pic-video:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 35px;
    top: calc(50% - 50px / 2);
    left: calc(50% - 35px / 2);
    z-index: 1;
    background-repeat: no-repeat;
    background-image: url(../images/play.png);
}
.pic-video img {
    width: 100%;
}
.name-video {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

/* Album */
.album {
    float: left;
    width: 23.5%;
    margin: 0 2% 2% 0;
    text-align: center;
    cursor: pointer;
}
.album:nth-child(4n + 1) {
    clear: both;
}
.album:nth-child(4n) {
    margin-right: 0px;
}
.pic-album {
    position: relative;
}
.pic-album img {
    width: 100%;
}
.name-album {
    font-size: 16px;
    color: var(--color-black);
    margin-bottom: 0px;
}

.postgame-box {
    padding: 10px 0;
    background: linear-gradient(
        180deg
        ,#fff 10%,#eef0f7);
    background-repeat: repeat-x;
    margin-bottom: 10px;
}

.postgame-content {
    max-width: 900px;
    margin: auto;
    padding: 0 10px;
}

.postgame-bottom {
    position: relative;
}

.postgame-bottom p {
    margin-bottom: 5px;
}

.postgame-bottom__content {
    max-width: 900px;
    margin: auto;
    padding: 20px 10px;
}

.postgame-bottom__form {
    padding: 10px;
    border: 1px solid #d8dfea;
}

.postgame-bottom__form .form-group {
    margin-bottom: 0.6rem;
}

.btn-postgame {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    padding: .85rem 1rem;
}

.btn-reviewpostgame {
    color: #fff;
    background-color: #000;
    border-color: #000;
    padding: .85rem 1rem;
}

/* Sản Phẩm Detail */
.grid-pro-detail {
    margin-bottom: 50px;
}
.left-pro-detail {
    position: relative;
    float: left;
    width: 40%;
    text-align: center;
    margin-right: 2%;
    background: white;
}
.left-pro-detail .MagicZoom {
    border: 1px solid #eee;
    padding: 7px;
    border-radius: 5px;
}
.right-pro-detail {
    width: calc(100% - 42%);
    float: left;
}
.gallery-thumb-pro {
    position: relative;
    margin-top: 10px;
}
.owl-thumb-pro {
    padding: 0px 40px;
}
.thumb-pro-detail {
    display: block !important;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
}
.thumb-pro-detail.mz-thumb.mz-thumb-selected {
    border-color: #cecfd2;
}
.thumb-pro-detail img {
    box-shadow: none !important;
    filter: brightness(100%) !important;
    border-bottom: 0px !important;
    padding-bottom: 0px !important;
}
.title-pro-detail {
    text-transform: capitalize;
    font-size: 20px;
    display: block;
    font-weight: 700;
}
.social-plugin-pro-detail {
    margin-bottom: 1rem;
    margin-top: 0px !important;
}
.desc-pro-detail {
    margin-bottom: 1rem;
}
.attr-pro-detail {
    list-style: none;
    padding: 0px;
}
.attr-pro-detail li {
    margin-bottom: 0.5rem;
}
.attr-label-pro-detail {
    margin: 0px 5px 0px 0px;
}
.attr-label-pro-detail.d-block {
    display: block;
    margin: 0px 0px 5px 0px;
}
.attr-content-pro-detail {
    display: inline-block;
    margin-bottom: 0px;
}
.price-new-pro-detail {
    font-weight: 700;
    font-size: 20px;
    color: var(--main-color);
}
.price-old-pro-detail {
    font-weight: 500;
    color: var(--color-gray);
    text-decoration: line-through;
    padding-left: 10px;
}
.color-pro-detail {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 35px;
    height: 30px;
    margin: 0px 0px 3px 0px;
    border: 1px solid transparent;
}
.size-pro-detail {
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    display: inline-block;
    position: relative;
}
.size-pro-detail.active,
.color-pro-detail.active {
    border-color: #e5101d;
    color: #e5101d;
}
.color-pro-detail.active:before,
.size-pro-detail.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    margin: auto;
    z-index: 1;
    background-image: url(../images/check-cart.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}
.color-pro-detail input[type="radio"],
.size-pro-detail input[type="radio"] {
    outline: none;
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    border: 0px;
    top: 0px;
    left: 0px;
}
.quantity-pro-detail {
    width: 100%;
    max-width: 110px;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.quantity-pro-detail span {
    line-height: 25px;
    padding: 0px;
    width: 30px;
    height: 30px;
    color: #5f5f5f;
    cursor: pointer;
    font-size: 22px;
    border: 1px solid #cccccc;
}
.quantity-pro-detail span.quantity-plus-pro-detail {
    border-left: 0px;
}
.quantity-pro-detail span.quantity-minus-pro-detail {
    border-right: 0px;
}
.quantity-pro-detail input {
    height: 30px;
    border: 1px solid #cccccc;
    width: calc(100% - 60px);
    text-align: center;
    font-size: 14px;
    padding: 5px;
}
.cart-pro-detail {
    margin-bottom: 1rem;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}
.cart-pro-detail a {
    width: auto;
    text-align: center;
    color: #fff;
    padding: 8px 15px;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}
.cart-pro-detail a.addnow {
    margin-right: 10px;
    background: #fd6e1d;
    background: -webkit-gradient(
        linear,
        0% 0%,
        0% 100%,
        from(#fd6e1d),
        to(#f59000)
    );
    background: -webkit-linear-gradient(top, #f59000, #fd6e1d);
    background: -moz-linear-gradient(top, #f59000, #fd6e1d);
    background: -ms-linear-gradient(top, #f59000, #fd6e1d);
    background: -o-linear-gradient(top, #f59000, #fd6e1d);
}
.cart-pro-detail a.buynow {
    background-color: var(--second-color);
}
.cart-pro-detail a.buynow:hover {
    background-color: var(--second-hover-color);
}
.cart-pro-detail a i {
    vertical-align: top;
    margin-top: 3px;
    margin-right: 8px;
}
.tags-pro-detail {
    margin: 1rem 0px 2rem 0px;
}
.tags-pro-detail a {
    float: left;
    font-size: 12px;
    color: #fff;
    padding: 5px 10px 7px 10px;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: var(--main-color);
    border-radius: 3px;
}
.tags-pro-detail a:hover {
    background-color: var(--main-hover-color);
}
.tags-pro-detail a i {
    font-size: 10px;
    float: left;
    margin: 5px 5px 0px 0px;
}
.tabs-pro-detail .ul-tabs-pro-detail {
    padding: 0px;
    list-style: none;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e7e7e7;
}
.tabs-pro-detail .ul-tabs-pro-detail li {
    cursor: pointer;
    float: left;
    margin-right: 5px;
    margin-bottom: 5px;
    background: #eee;
    padding: 5px 10px;
}
.tabs-pro-detail .ul-tabs-pro-detail li.active {
    background: #333;
    color: #fafafa;
}
.tabs-pro-detail .ul-tabs-pro-detail li:last-child {
    margin-right: 0px;
}
.tabs-pro-detail .content-tabs-pro-detail {
    display: none;
}
.tabs-pro-detail .content-tabs-pro-detail.active {
    display: block;
}

/* Toc */
.box-readmore {
    padding: 8px 15px;
    border: 1px solid #dedede;
    margin-bottom: 2rem;
    border-radius: 5px;
    background-color: #eeeeee;
}
.box-readmore li ul > li {
    margin: 0;
    margin-bottom: 8px;
}
.box-readmore li ul > li:before {
    content: counters(item, ".") " ";
}
.box-readmore ul {
    list-style-type: none;
    counter-reset: item;
    margin-bottom: 0px;
    padding-left: 0px !important;
    margin-top: 8px;
}
.box-readmore ul li {
    display: table;
    counter-increment: item;
    margin-bottom: 5px;
}
.box-readmore ul li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 5px;
}
.box-readmore ul li a {
    color: #333333;
    cursor: pointer;
    font-weight: 600;
}
.box-readmore ul li a:hover {
    color: #767676;
}

/* Bài viết */
.news {
    width: 49%;
    float: left;
    margin-bottom: 25px;
    display: block;
}
.news:nth-child(2n) {
    float: right;
}
.news:nth-child(2n + 1) {
    clear: both;
}
.pic-news {
    float: left;
    margin-right: 4%;
    width: 36%;
}
.pic-news img {
    width: 100%;
}
.info-news {
    float: left;
    width: 60%;
}
.name-news {
    color: #333;
    font-size: 16px;
    display: block;
    line-height: normal;
    margin-bottom: 5px;
}
.name-news:hover {
    color: var(--main-color);
}
.time-news {
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}
.desc-news {
    color: #333333;
    margin-top: 5px;
    line-height: 22px;
}
.share {
    padding: 17px 10px 10px 10px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
}
.share b {
    display: block;
    margin-bottom: 5px;
}
.othernews b {
    margin-bottom: 10px;
}
.list-news-other {
    padding-left: 17px;
    list-style: square;
}
.list-news-other li {
    margin-bottom: 2px;
}
.list-news-other li a {
    text-transform: none;
    color: #333333;
}
.list-news-other li a:hover {
    color: var(--main-color);
}

/* Contact */
.top-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 30px;
}
.top-contact .article-contact {
    width: 48%;
}
.form-contact {
    width: 47%;
}
.input-contact {
    position: relative;
    margin-bottom: 15px;
}
.input-contact input,
.input-contact textarea {
    width: 100%;
    padding: 0px;
    outline: none;
    font-size: 14px;
}
.input-contact input {
    text-indent: 10px;
}
.input-contact textarea {
    resize: none;
    height: 150px;
    padding: 10px;
}
.input-contact .custom-file-label::after {
    content: attr(title);
}
.bottom-contact {
    position: relative;
    height: 500px;
}
.bottom-contact iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100% !important;
    height: 100% !important;
}

/* Footer */
.footer-article {
    background-color: #101316;
    color: #94a1af;
}
.footer-article .wrap-content {
    padding: 35px 10px;
}
.footer-news:nth-child(1) {
    width: 30%;
}
.footer-news:nth-child(2) {
    width: 20%;
}
.footer-news:nth-child(3) {
    width: 18%;
}
.footer-news:nth-child(4) {
    width: 15%;
}
.title-footer {
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 0.75rem;
}
.footer-ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.footer-ul li {
    margin-bottom: 10px;
}
.footer-ul li:last-child {
    margin-bottom: 0px;
}
.footer-ul li a {
    color: inherit;
}

.footer-ul li a:hover {
    color: var(--main-color);
}

.slogan-newsletter {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
}
.newsletter-input {
    position: relative;
}
.newsletter-input input {
    padding: 0px;
    font-size: 14px;
    text-indent: 10px;
    border-radius: 0px;
}
.newsletter-button {
    margin-top: 5px;
}
.newsletter-button input[type="submit"] {
    border: 0px;
    background-color: var(--main-color);
    color: #fff;
    display: inline-block;
    padding: 5px 16px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}
.footer-tags {
    background: #eee;
}
.footer-tags .wrap-content {
    padding: 30px 10px;
}
.label-tags {
    font-weight: 600;
    font-size: 15px;
}
.list-tags {
    list-style: none;
    padding: 0px;
    margin: 0px;
}
.list-tags li {
    float: left;
    margin: 0px 5px 5px 0px;
}
.list-tags li a {
    color: #fff;
    background-color: var(--main-color);
    padding: 6px 15px 8px 15px;
    border-radius: 3px;
    display: block;
}
.list-tags li a:hover {
    background-color: var(--main-hover-color);
}
.footer-powered {
    color: #fff;
    background-color: var(--main-color);
    background-color: #101316;
    color: #94a1af;
    border-top: 1px solid;
    text-align: center;
}
.footer-powered .wrap-content {
    padding: 15px 10px;
}
.copyright {
    margin-bottom: 0px;
}
.statistic {
    margin-bottom: 0px;
}

.statistic a {
    color: inherit;
    display: inline-block;
    margin-left: 20px;
}

.statistic span {
    padding-right: 10px;
}
.statistic span:last-child {
    padding-right: 0px;
}
#footer-map {
    position: relative;
    height: 500px;
}
#footer-map iframe {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0px !important;
    left: 0px !important;
}

/* Like Share */
.social-plugin {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}
.social-plugin .at-share-btn {
    margin-bottom: 0px !important;
}
.social-plugin .zalo-share-button {
    margin-left: 3px;
}

/* Phân Trang */
.pagination-home .pagination .page-item .page-link {
    color: #555555;
    font-size: 0.875rem;
}
.pagination-home .pagination .page-item.active .page-link {
    color: #ffffff;
    background-color: #555555;
    border-color: #555555;
}

/* Phân Trang Ajax */
.pagination-ajax {
    text-align: center;
}
.pagination-ajax a {
    display: inline-block;
    vertical-align: top;
    margin: 0px 2px 3px 2px;
    color: #333;
    background: #eee;
    border: 1px solid rgba(161, 161, 161, 0.4);
    font-size: 12px;
    cursor: pointer;
    padding: 3px 10px 5px 10px;
    border-radius: 2px;
}
.pagination-ajax a.current,
.pagination-ajax a:hover {
    background: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
}


/* Popup custom */
.modal-custom .modal-footer {
    padding: 0.5rem;
}
.modal-custom .modal-footer .btn {
    font-size: 14px;
}

.tingame-dt__des {
    max-width: 550px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
}

.tingame-dt__des p {
    margin-bottom: 5px;
}

.tingame-dt__info {
    width: calc(100% - 140px);
}

.tingame-othernews__title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: #633;
    margin-bottom: 0;
    margin-bottom: 10px;
    background: linear-gradient(to right,#f8ffae,#78ead4);
    padding: 10px;
    text-align: center;
}

.huongdan-menu__container {
    background-color: #1b1b1b;
    margin: 10px 0;
}

.huongdan-menu__container ul {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

.huongdan-menu__container ul.main-menu {
    display: flex;
    flex-wrap: wrap;
}

ul.main-menu li {
    position: relative;
    display: block;
    color: #e6e6e6;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 13%);
    border-right: 1px solid rgba(255,255,255,.0976562);
    border-left: 1px solid rgba(0,0,0,.347656);
}

ul.main-menu li a {
    position: relative;
    display: block;
    color: #e6e6e6;
    text-shadow: 1px 1px 0 rgb(0 0 0 / 13%);
    border-right: 1px solid rgba(255,255,255,.0976562);
    border-left: 1px solid rgba(0,0,0,.347656);
    padding: .5em 1.5em;
}

.huongdan-menu__container a:hover {
    background-color: #fff;
    color: #000;
}

ul.main-menu li ul {
    border-width: 0;
    margin: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    z-index: 3000;
    display: none;
    background-color: #444;
}

ul.main-menu li:hover > ul {
    display: block;
}

.timgame-tool {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    flex-wrap: wrap;
    position: relative;
    font-size: 13px;
    line-height: 18px;
    margin-top: 10px;
    padding: 5px 10px;
    background: #43c6ac;
    background: -webkit-linear-gradient(to right,#f8ffae,#78ead4);
    background: linear-gradient(to right,#f8ffae,#78ead4);
}

.timgame-tool .filter-btn {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-style: normal;
    white-space: normal;
    letter-spacing: 0;
    cursor: pointer;
    text-transform: none;
    font-weight: 600;
    min-height: 2rem;
    border-radius: 6px;
    margin-left: 10px;
}

.timgame-tool .filter-btn-alpha-test {
    min-width: 140px;
    color: #fff;
    background-color: #287e41;
    border-color: #287e41;
}

.timgame-tool .filter-btn-open-beta {
    top: 0;
    right: 0;
    min-width: 140px;
    color: #fff;
    background-color: #f12323;
    border-color: #f12323;
}

.hidden-md-up {
    display: none;
}

.ohb-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(10%,#fff),to(#eef0f7));
    background-image: linear-gradient(
180deg
,#fff 10%,#eef0f7);
    background-repeat: repeat-x;
    padding: 10px 0 15px;
    margin-bottom: 5px;
}

.ohb-title {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 18px;
    text-align: center;
}

.open-beta-today {
    color: #f12323;
    font-weight: 600;
}

.ohb-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.ohb-content-picture {
    width: 75px;
    min-width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0;
    margin-right: 25px;
}

.ohb-content-text {
    text-align: left;
    line-height: 1.6;
    max-width: 546px;
}

.menu-mb #menu_huongdan {
    display: none;
}

.menu-mb-ct {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    color: #fff;
}

/* Popup */
#popup .modal-body {
    padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
    display: none !important;
    width: 0px !important;
    height: 0px !important;
    visibility: hidden !important;
    overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
    display: none;
}

/* Scroll Top */
.scrollToTop {
    width: 41px;
    height: 41px;
    text-align: center;
    font-weight: bold;
    color: #444;
    text-decoration: none;
    position: fixed;
    bottom: 65px;
    right: 25px;
    display: none;
    z-index: 10;
    cursor: pointer;
}

/* Text Hide */
.text-split {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
}

/* Transition All */
.transition {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}

/* Scale IMG */
.scale-img {
    overflow: hidden;
    display: block;
}
.scale-img img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}
.scale-img:hover > img {
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
    -webkit-animation-name: blink;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: blink;
    -moz-animation-duration: 1s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: blink;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Button Frame */
.btn-frame {
    display: block;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 10px;
    z-index: 10;
    cursor: pointer;
}
.btn-frame i {
    display: flex;
    display: -ms-flex;
    justify-content: center;
    align-items: center;
    -ms-flex-align: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1182fc;
    position: relative;
    z-index: 1;
}
.btn-frame i img {
    vertical-align: middle;
    width: 70%;
}
.btn-frame .animated.infinite {
    animation-iteration-count: infinite;
}
.btn-frame .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(7, 41, 103, 0.8);
    opacity: 0.1;
    border-color: #1182fc;
    opacity: 0.5;
}
.btn-frame .zoomIn {
    animation-name: zoomIn;
}
.btn-frame .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}
.btn-frame .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    right: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgba(7, 41, 103, 0.35);
    opacity: 0.4;
}
.btn-frame .pulse {
    animation-name: pulse;
}

/* Zalo */
.btn-zalo {
    bottom: 315px;
    bottom: 10px;
    right: 50px;
}

/* Phone */
.btn-phone {
    bottom: 230px;
    display: none;
}

/* Messenger */
.js-facebook-messenger-container.closed,
.js-facebook-messenger-tooltip.closed {
    display: none !important;
}
.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
}
.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999;
}
.js-facebook-messenger-tooltip {
    display: none;
    position: fixed;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
    z-index: 1e30;
}
.js-facebook-messenger-close-tooltip {
    width: 10px;
    height: 10px;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}
.js-facebook-messenger-box.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
.js-facebook-messenger-box.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999;
}
.js-facebook-messenger-box {
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: 5px;
    right: 114px;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #1182fc;
    border-radius: 100%;
    overflow: hidden;
    z-index: 99;
    -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}
.js-facebook-messenger-box.rotate svg#fb-msng-icon {
    transform: rotate(0deg);
}
.js-facebook-messenger-box svg#fb-msng-icon {
    width: 32px;
    height: 33px;
    position: absolute;
    top: 9px;
    left: 9px;
    opacity: 1;
    overflow: hidden;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}
.js-facebook-messenger-box.rotate svg#close-icon {
    transform: rotate(-45deg);
}
.js-facebook-messenger-box svg#close-icon {
    opacity: 0;
    width: 19px;
    height: 20px;
    position: absolute;
    top: 19px;
    left: 19px;
    -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -moz-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    -o-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
    transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
}
.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
    z-index: 1000;
}
.js-facebook-messenger-container {
    position: fixed;
    opacity: 0;
    transform: translateY(50px);
    bottom: 110px;
    right: 90px;
    border-radius: 10px;
    pointer-events: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
    -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -moz-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    -o-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
    transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
}
.js-facebook-messenger-top-header {
    width: 220px;
}
.js-facebook-messenger-top-header {
    color: #fff;
    background: #1182fc;
}
.js-facebook-messenger-top-header {
    display: block;
    position: relative;
    width: 220px;
    background: #1182fc;
    color: #fff;
    text-align: center;
    line-height: 1;
    padding: 10px;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
    z-index: 999;
}
.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
    z-index: 1000;
}
.js-facebook-messenger-top-header {
    color: #fff;
    background: #1182fc;
}
.js-facebook-messenger-top-header {
    width: 220px;
}
.js-facebook-messenger-tooltip {
    color: #404040;
    background: #fff;
}
.js-facebook-messenger-container.open {
    transform: translateY(0px);
    opacity: 1;
    pointer-events: all;
}
.js-facebook-messenger-tooltip {
    bottom: 97px;
    right: 97px;
}
.js-facebook-messenger-box.open svg#fb-msng-icon {
    opacity: 0;
}
.js-facebook-messenger-box.rotate.open svg#close-icon {
    transform: rotate(0deg);
}
.js-facebook-messenger-box.open svg#close-icon {
    opacity: 1;
}

/* Cart fix */
.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 390px;
    z-index: 10;
    background: #4b4f56;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff !important;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-fixed i {
    font-size: 20px;
}
.cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #fff;
    width: 25px;
    height: 25px;
    background: var(--main-color);
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
}

/* Fixbar */
.fixbar {
    bottom: 0;
    display: block;
    background: #f0eff4;
    border-top: 1px solid #ddd;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    margin: 0;
    z-index: 500;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 50px;
}
.fixbar ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.fixbar ul li {
    display: inline-block;
    margin: 0 auto 10px;
    text-align: center;
    width: 25%;
    float: left;
}
.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
    width: 20px;
    height: 20px;
    display: block;
    margin: 8px auto 0;
}
.fixbar .icon-cart-mobile {
    background: url(../images/cart-mobile.png) no-repeat;
}
.cart-total-header-mobile {
    font-size: 10px;
    position: absolute;
    background: red;
    color: #fff !important;
    border-radius: 50%;
    height: 15px;
    width: 15px;
    line-height: 15px;
    top: 5px;
    margin-left: 5px;
}
.fixbar ul li a {
    font-size: 11px;
    text-decoration: none;
    color: #333;
}
.fixbar ul li a i {
    font-size: 20px;
}

/* Plugbar */
.plugbar {
    position: fixed;
    bottom: 0;
    left: 0;
    border-top: 1px solid #eae6e6;
    width: 100%;
    right: 0;
    max-width: 767px;
    margin: 0 auto;
    background: #fff;
    padding: 9px 10px 10px 7px;
    z-index: 10;
}
.plugbar ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.plugbar ul li {
    width: 20%;
    float: left;
}
.plugbar ul li a {
    display: block;
    color: #696969;
    font-size: 12px;
    text-align: center;
    position: relative;
}
.plugbar ul li a i {
    font-size: 20px;
    color: #696969;
}
.plugbar ul li a span {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -40px;
    left: calc(50% - 50px / 2);
    font-size: 14px;
    display: block;
    border: 1px solid rgba(234, 230, 230, 0.5);
    border-radius: 100%;
}

/* Combo Phone */
.support-online {
    position: fixed;
    z-index: 999;
    left: 10px;
    bottom: 0px;
}
.support-online a {
    position: relative;
    margin: 20px 10px;
    text-align: left;
    width: 40px;
    height: 40px;
}
.support-online i {
    width: 40px;
    height: 40px;
    background: #43a1f3;
    color: #fff;
    border-radius: 100%;
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    position: relative;
    z-index: 999;
}
.support-online a span {
    border-radius: 2px;
    text-align: center;
    background: rgb(103, 182, 52);
    padding: 9px;
    display: none;
    width: 180px;
    margin-left: 10px;
    position: absolute;
    color: #ffffff;
    z-index: 999;
    top: 0px;
    left: 40px;
    transition: all 0.2s ease-in-out 0s;
    -moz-animation: headerAnimation 0.7s 1;
    -webkit-animation: headerAnimation 0.7s 1;
    -o-animation: headerAnimation 0.7s 1;
    animation: headerAnimation 0.7s 1;
}
.support-online a:hover span {
    display: block;
}
.support-online a {
    display: block;
}
.support-online a span:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(103, 182, 52) transparent transparent;
    position: absolute;
    left: -10px;
    top: 10px;
}
.support-online .kenit-alo-circle-fill {
    width: 60px;
    height: 60px;
    top: -10px;
    position: absolute;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgba(0, 175, 242, 0.5);
    opacity: 0.75;
    right: -10px;
}
.support-online .kenit-alo-circle {
    width: 50px;
    height: 50px;
    top: -5px;
    right: -5px;
    position: absolute;
    background-color: transparent;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid rgba(30, 30, 30, 0.4);
    opacity: 0.1;
    border-color: #0089b9;
    opacity: 0.5;
}
.support-online .support-online .btn-support {
    cursor: pointer;
}
.support-online .mes i {
    background: orange;
}
.support-online .sms i {
    background: red;
}
.support-online .call-now i {
    background: green;
}

/* Phone Switch */
.widget-mobile {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    z-index: 9999999;
}
#my-phone-circle {
    position: relative;
    width: 50px !important;
    height: 50px !important;
}
.wcircle-open .wcircle-icon i:before {
    content: "\f00d";
}
.wcircle-icon {
    background: #1282fc;
    border-radius: 50%;
    display: flex !important;
    display: -ms-flex !important;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative !important;
}
.wcircle-icon:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    background: rgba(18, 130, 252, 0.5);
    border: 1px solid #fff;
    border-radius: 50%;
    left: -5px;
    top: -5px;
    -webkit-animation: pulse 1s infinite ease-in-out;
    -moz-animation: pulse 1s infinite ease-in-out;
    -ms-animation: pulse 1s infinite ease-in-out;
    -o-animation: pulse 1s infinite ease-in-out;
    animation: pulse 1s infinite ease-in-out;
}
.wcircle-icon:after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    background: rgba(18, 130, 252, 0.5);
    border-radius: 50%;
    left: -15px;
    top: -15px;
    -webkit-animation: zoomIn 2s infinite ease-in-out;
    -moz-animation: zoomIn 2s infinite ease-in-out;
    -ms-animation: zoomIn 2s infinite ease-in-out;
    -o-animation: zoomIn 2s infinite ease-in-out;
    animation: zoomIn 2s infinite ease-in-out;
}
.wcircle-menu {
    position: absolute !important;
    left: 0;
    top: 0;
    display: none;
}
.wcircle-menu-item {
    width: 50px;
    height: 50px;
    background: #1282fc;
    border-radius: 50%;
    display: flex;
    display: -ms-flex;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.wcircle-menu-item img {
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 50%;
}
.wcircle-menu-item i,
.wcircle-icon i {
    font-size: 25px;
    color: #fff;
    position: relative;
    z-index: 9999;
}
.shake-anim {
    -webkit-animation: shake-anim 1s infinite ease-in-out;
    -moz-animation: shake-anim 1s infinite ease-in-out;
    -ms-animation: shake-anim 1s infinite ease-in-out;
    -o-animation: shake-anim 1s infinite ease-in-out;
    animation: shake-anim 1s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
@-moz-keyframes shake-anim {
    0% {
        transform: rotate(0) scale(1) skew(1deg);
    }
    10%,
    30% {
        -moz-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%,
    40% {
        -moz-transform: rotate(25deg) scale(1) skew(1deg);
    }
    100%,
    50% {
        -moz-transform: rotate(0) scale(1) skew(1deg);
    }
}
@-webkit-keyframes shake-anim {
    0%,
    100%,
    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
    10%,
    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%,
    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }
}
@-o-keyframes shake-anim {
    0%,
    100%,
    50% {
        -o-transform: rotate(0) scale(1) skew(1deg);
    }
    10%,
    30% {
        -o-transform: rotate(-25deg) scale(1) skew(1deg);
    }
    20%,
    40% {
        -o-transform: rotate(25deg) scale(1) skew(1deg);
    }
}


.toolbar {background: #d30000;width: 100%;padding: 1vw;bottom: 0px;position: fixed;z-index: 500;height: auto;left: 0px;display: none;}
.toolbar ul { list-style: none; display: flex; align-items: center; justify-content: space-between; padding: 0px; margin: 0px; }
.toolbar ul li { text-align: center; width: 25%; }
.toolbar ul li a { display: inline-block; width: 100%; color: #fff; }
.toolbar ul li a span { font-weight: 400; color: #fff; font-size: 14px; display: block; }
.toolbar ul li a img { height: 15px; width: auto; }
.element-animation { animation: animationFrames linear 1s; animation-iteration-count: infinite; transform-origin: 50% 0%; animation-fill-mode: forwards; /*when the spec is finished*/ -webkit-animation: animationFrames linear 1s; -webkit-animation-iteration-count: infinite; -webkit-transform-origin: 50% 0%; -webkit-animation-fill-mode: forwards; /*Chrome 16+, Safari 4+*/ -moz-animation: animationFrames linear 1s; -moz-animation-iteration-count: infinite; -moz-transform-origin: 50% 0%; -moz-animation-fill-mode: forwards; /*FF 5+*/ -o-animation: animationFrames linear 1s; -o-animation-iteration-count: infinite; -o-transform-origin: 50% 0%; -o-animation-fill-mode: forwards; /*Not implemented yet*/ -ms-animation: animationFrames linear 1s; -ms-animation-iteration-count: infinite; -ms-transform-origin: 50% 0%; -ms-animation-fill-mode: forwards; /*IE 10+*/ }
@keyframes animationFrames {
0% { transform: rotate(0deg); }
20% { transform: rotate(15deg); }
40% { transform: rotate(-10deg); }
60% { transform: rotate(5deg); }
80% { transform: rotate(-5deg); }
100% { transform: rotate(0deg); }
}
@-moz-keyframes animationFrames {
0% { -moz-transform: rotate(0deg); }
20% { -moz-transform: rotate(15deg); }
40% { -moz-transform: rotate(-10deg); }
60% { -moz-transform: rotate(5deg); }
80% { -moz-transform: rotate(-5deg); }
100% { -moz-transform: rotate(0deg); }
}
@-webkit-keyframes animationFrames {
0% { -webkit-transform: rotate(0deg); }
}


.arcontactus-widget .arcontactus-message-button.pulsation {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.arcontactus-widget.md .arcontactus-message-button,.arcontactus-widget.md.arcontactus-message {
    width: 60px;
    height: 60px
}

.arcontactus-widget {
    opacity: 0;
    transition: .2s opacity
}

.arcontactus-widget * {
    box-sizing: border-box
}

.arcontactus-widget.left.arcontactus-message {
    left: 20px;
    right: auto
}

.arcontactus-widget.left .arcontactus-message-button {
    right: auto;
    left: 0
}

.arcontactus-widget.left .arcontactus-prompt {
    left: 80px;
    right: auto;
    transform-origin: 0 50%
}

.arcontactus-widget.left .arcontactus-prompt:before {
    border-right: 8px solid #FFF;
    border-top: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid transparent;
    right: auto;
    left: -15px
}

.arcontactus-widget.left .messangers-block {
    right: auto;
    left: 0;
    -webkit-transform-origin: 10% 105%;
    -ms-transform-origin: 10% 105%;
    transform-origin: 10% 105%
}

.arcontactus-widget.left .callback-countdown-block {
    left: 0;
    right: auto
}

.arcontactus-widget.left .callback-countdown-block::before,.arcontactus-widget.left .messangers-block::before {
    left: 25px;
    right: auto
}

.arcontactus-widget.md .callback-countdown-block,.arcontactus-widget.md .messangers-block {
    bottom: 70px
}

.arcontactus-widget.md .arcontactus-prompt {
    bottom: 5px
}

.arcontactus-widget.md.left .callback-countdown-block:before,.arcontactus-widget.md.left .messangers-block:before {
    left: 21px
}

.arcontactus-widget.md.left .arcontactus-prompt {
    left: 70px
}

.arcontactus-widget.md.right .callback-countdown-block:before,.arcontactus-widget.md.right .messangers-block:before {
    right: 21px
}

.arcontactus-widget.md.right .arcontactus-prompt {
    right: 70px
}

.arcontactus-widget.md .arcontactus-message-button .pulsation {
    width: 74px;
    height: 74px
}

.arcontactus-widget.md .arcontactus-message-button .callback-state,.arcontactus-widget.md .arcontactus-message-button .icons {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px
}

.arcontactus-widget.sm .arcontactus-message-button,.arcontactus-widget.sm.arcontactus-message {
    width: 50px;
    height: 50px
}

.arcontactus-widget.sm .callback-countdown-block,.arcontactus-widget.sm .messangers-block {
    bottom: 60px
}

.arcontactus-widget.sm .arcontactus-prompt {
    bottom: 0
}

.arcontactus-widget.sm.left .callback-countdown-block:before,.arcontactus-widget.sm.left .messangers-block:before {
    left: 16px
}

.arcontactus-widget.sm.left .arcontactus-prompt {
    left: 60px
}

.arcontactus-widget.sm.right .callback-countdown-block:before,.arcontactus-widget.sm.right .messangers-block:before {
    right: 16px
}

.arcontactus-widget.sm.right .arcontactus-prompt {
    right: 60px
}

.arcontactus-widget.sm .arcontactus-message-button .pulsation {
    width: 64px;
    height: 64px
}

.arcontactus-widget.sm .arcontactus-message-button .icons {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px
}

.arcontactus-widget.sm .arcontactus-message-button .static {
    margin-top: -16px
}

.arcontactus-widget.sm .arcontactus-message-button .callback-state {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px
}

.arcontactus-widget.active {
    opacity: 1
}

.arcontactus-widget .icons.hide,.arcontactus-widget .static.hide {
    opacity: 0;
    transform: scale(0)
}

.arcontactus-widget.arcontactus-message {
    z-index: 10000;
    right: 20px;
    bottom: 20px;
    position: fixed!important;
    height: 70px;
    width: 70px
}

.arcontactus-widget .arcontactus-message-button {
    width: 70px;
    position: absolute;
    height: 70px;
    right: 0;
    background-color: #09abc0!important;
    border-radius: 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.arcontactus-widget .arcontactus-message-button p {
    font-family: Ubuntu,Arial,sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    line-height: 11px;
    margin: 0
}

.arcontactus-widget .arcontactus-message-button .pulsation {
    width: 84px;
    height: 84px;
    background-color: red;
    border-radius: 50px;
    position: absolute;
    left: -7px;
    top: -7px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite
}

.arcontactus-widget .arcontactus-message-button .icons {
    background-color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50px;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px
}

.arcontactus-widget .arcontactus-message-button .static {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -19px;
    margin-left: -26px;
    width: 52px;
    height: 52px;
    text-align: center
}

.arcontactus-widget .arcontactus-message-button .static img {
    display: inline
}

.arcontactus-widget .arcontactus-message-button .static svg {
    width: 24px;
    height: 24px;
    color: #FFF
}

.arcontactus-widget .arcontactus-message-button.no-text .static {
    margin-top: -12px
}

.arcontactus-widget .pulsation:nth-of-type(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.arcontactus-widget .pulsation.stop {
    -webkit-animation: none;
    animation: none
}

.arcontactus-widget .icons-line {
    top: 25%;
    left: 28%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    -webkit-transition: cubic-bezier(.13,1.49,.14,-.4);
    -o-transition: cubic-bezier(.13,1.49,.14,-.4);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    height: 24px;
    transition: .2s all
}

.arcontactus-widget .icons,.arcontactus-widget .static {
    transition: .2s all
}

.arcontactus-widget .icons-line.stop {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}

.arcontactus-widget .icons-line span {
    display: inline-block;
    width: 24px;
    height: 24px;
    color: red
}

.arcontactus-widget .icons-line span i,.arcontactus-widget .icons-line span svg {
    width: 24px;
    height: 24px
}

.arcontactus-widget .icons-line span i {
    display: block;
    font-size: 24px;
    line-height: 24px
}

.arcontactus-widget .icons-line img,.arcontactus-widget .icons-line span {
    margin-right: 40px
}

.arcontactus-widget .icons.hide .icons-line {
    transform: scale(0)
}

.arcontactus-widget .icons .icon:first-of-type {
    margin-left: 0
}

.arcontactus-widget .arcontactus-close {
    color: #FFF
}

.arcontactus-widget .arcontactus-close svg {
    -webkit-transform: rotate(180deg) scale(0);
    -ms-transform: rotate(180deg) scale(0);
    transform: rotate(180deg) scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
    display: block
}

.arcontactus-widget .arcontactus-close.show-messageners-block svg {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1)
}

.arcontactus-widget .arcontactus-prompt,.arcontactus-widget .messangers-block {
    background: center no-repeat #FFF;
    box-shadow: 0 0 10px rgba(0,0,0,.6);
    width: 235px;
    position: absolute;
    bottom: 80px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 14px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000
}

.arcontactus-widget .arcontactus-prompt:before,.arcontactus-widget .messangers-block:before {
    position: absolute;
    bottom: -7px;
    right: 25px;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: "."
}

.arcontactus-widget .arcontactus-prompt.show-messageners-block,.arcontactus-widget .messangers-block.show-messageners-block {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.arcontactus-widget .arcontactus-prompt {
    color: #787878;
    font-family: Arial,sans-serif;
    font-size: 16px;
    line-height: 18px;
    width: auto;
    bottom: 10px;
    right: 80px;
    white-space: nowrap;
    padding: 18px 20px 14px
}

.arcontactus-widget .arcontactus-prompt:before {
    border-right: 8px solid transparent;
    border-top: 8px solid transparent;
    border-left: 8px solid #FFF;
    border-bottom: 8px solid transparent;
    bottom: 16px;
    right: -15px
}

.arcontactus-widget .arcontactus-prompt.active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.arcontactus-widget .arcontactus-prompt .arcontactus-prompt-close {
    position: absolute;
    right: 6px;
    top: 6px;
    cursor: pointer;
    z-index: 100;
    height: 14px;
    width: 14px;
    padding: 2px
}

.arcontactus-widget .arcontactus-prompt .arcontactus-prompt-close svg {
    height: 10px;
    width: 10px;
    display: block
}

.arcontactus-widget .arcontactus-prompt .arcontactus-prompt-typing {
    border-radius: 10px;
    display: inline-block;
    left: 3px;
    padding: 0;
    position: relative;
    top: 4px;
    width: 50px
}

.arcontactus-widget .arcontactus-prompt .arcontactus-prompt-typing>div {
    position: relative;
    float: left;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 2px;
    -webkit-animation: arcontactus-updown 2s infinite;
    animation: arcontactus-updown 2s infinite
}

.arcontactus-widget .arcontactus-prompt .arcontactus-prompt-typing>div:nth-child(2) {
    animation-delay: .1s
}

.arcontactus-widget .arcontactus-prompt .arcontactus-prompt-typing>div:nth-child(3) {
    animation-delay: .2s
}

.arcontactus-widget .messangers-block.sm .messanger {
    padding-left: 50px;
    min-height: 44px
}

.arcontactus-widget .messangers-block.sm .messanger span {
    height: 32px;
    width: 32px;
    margin-top: -16px
}

.arcontactus-widget .messangers-block.sm .messanger span svg {
    height: 20px;
    width: 20px;
    margin-top: -10px;
    margin-left: -10px
}

.arcontactus-widget .messanger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding: 8px 20px 8px 60px;
    position: relative;
    min-height: 54px;
    text-decoration: none
}

.arcontactus-widget .messanger:hover {
    background-color: #EEE
}

.arcontactus-widget .messanger:before {
    background-repeat: no-repeat;
    background-position: center
}

.arcontactus-widget .messanger.facebook span {
    background: #0084ff
}

.arcontactus-widget .messanger.viber span {
    background: #7c529d
}

.arcontactus-widget .messanger.telegram span {
    background: #2ca5e0
}

.arcontactus-widget .messanger.skype span {
    background: #31c4ed
}

.arcontactus-widget .messanger.email span {
    background: #ff8400
}

.arcontactus-widget .messanger.contact span {
    background: #7eb105
}

.arcontactus-widget .messanger.call-back span {
    background: #54cd81
}

.arcontactus-widget .messanger span {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -20px;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    color: #FFF;
    text-align: center;
    vertical-align: middle
}

.arcontactus-widget .messanger span img {
    border-radius: 50% 50%;
}

.arcontactus-widget .messanger span i,.arcontactus-widget .messanger span svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    text-align: center;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px
}

.arcontactus-widget .messanger span i {
    font-size: 24px;
    line-height: 24px
}

.arcontactus-widget .messanger p {
    margin: 0;
    font-family: Arial,sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,.87)
}

@-webkit-keyframes arcontactus-pulse {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

/* Responsive */
@media (max-width: 1001px) {
    .menu {
        display: none;
    }
    .menu-res,
    #hamburger.mmenu-tarbar {
        display: block;
    }

    .header {
        position: sticky;
        top: 0;
        z-index: 99;
    }

    .header-flex {
        justify-content: space-between;
    }
}
@media (max-width: 850px) {
    .news {
        width: 100%;
        float: none !important;
    }
}
@media (max-width: 769px) {
    .top-contact {
        flex-wrap: wrap;
    }
    .left-pro-detail,
    .right-pro-detail,
    .top-contact .form-contact,
    .top-contact .article-contact {
        width: 100%;
        margin: 0px;
    }
    .left-pro-detail,
    .top-contact .article-contact {
        margin-bottom: 30px;
    }

    .main-left, .main-right {
        display: none;
    }

    .huongdan-menu__container ul.main-menu {
        display: none;
    }

    .menu-mb {
        display: block;
    }

    .main-center {
        width: 100%;
        padding: 10px 5px;
    }

    .game-item__left {
        display: none;
    }

    .game-item__center,
    .game-item__right {
        width: 100%;
    }

    .game-item.-vip .game-item__right {
        width: 95px;
    }

    .game-item.-vip .game-item__center {
        width: calc(100% - 100px);
    }

    .game-item__alpha {
        display: none;
    }

    .game-item__alpha.-mb {
        display: block;
    }

    .huongdangame-item__img {
        display: none;
    }

    .huongdangame-item__info {
        width: 100%;
    }

    .index-title {
        padding: 5px 1px;
    }

    .footer-news:nth-child(1),
    .footer-news:nth-child(2),
    .footer-news:nth-child(3),
    .footer-news:nth-child(4) {
        width: 48%;
        margin-bottom: 15px;
    }

    .header-flex {
        padding: 5px 20px;
    }
}
@media (max-width: 440px) {
    .pic-news,
    .info-news {
        display: block;
        width: 100%;
        float: none;
        text-align: center;
        margin: 0px;
    }
    .info-news {
        margin-top: 15px;
    }
    .top-contact .form-contact .button-contact .file-contact span b {
        max-width: 105px;
    }

    .game-item__attr {
        display: flex;
        justify-content: space-between;
        width: auto;
    }

    .game-item__attr-label {
        width: auto;
        padding-right: 5px;
    }

    .huongdangame-title {
        font-size: 22px;
    }
    .footer-news:nth-child(1),
    .footer-news:nth-child(2),
    .footer-news:nth-child(3),
    .footer-news:nth-child(4) {
        width: 100%;
        margin-bottom: 15px;
    }

    .filter-btn {
        width: 49%;

    }

    .timgame-filter {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    
    .timgame-tool .filter-btn-alpha-test,
    .timgame-tool .filter-btn-open-beta {
        width: 49%;
        min-width: auto;
        margin: 2% 0;
    }

    .timgame-tool .hidden-sm-down {
        width: 100%;
        display: block;
    }
}
@media (max-width: 369px) {
    .cart-pro-detail {
        flex-wrap: wrap;
    }
    .cart-pro-detail a {
        width: 100%;
        text-align: center;
        margin: 0px !important;
        font-size: 12px;
    }
    .cart-pro-detail a:first-child {
        margin-bottom: 5px !important;
    }
    .cart-pro-detail a i {
        display: none;
    }
}
