@charset "UTF-8";
:root {
    --header-color: #003cae;
    --input-color: #0e0e0e;
    --body-color: #1c1c1c;
    --body-color-light: #232323;
    --footer-color: #1a1a1a;
    --primary-color: #e4c36e;
    --secondary-color: #e4c36e;
    --third-color: #22ba4e;
    --text-color: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: "Sukhumvit Set";
    src:
        url("../fonts/SukhumvitSet-Text.woff2") format("woff2"),
        url("../fonts/SukhumvitSet-Text.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sukhumvit Set";
    src:
        url("../fonts/SukhumvitSet-Medium.woff2") format("woff2"),
        url("../fonts/SukhumvitSet-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sukhumvit Set";
    src:
        url("../fonts/SukhumvitSet-Light.woff2") format("woff2"),
        url("../fonts/SukhumvitSet-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sukhumvit Set";
    src:
        url("../fonts/SukhumvitSet-Bold.woff2") format("woff2"),
        url("../fonts/SukhumvitSet-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sukhumvit Set";
    src:
        url("../fonts/SukhumvitSet-Thin.woff2") format("woff2"),
        url("../fonts/SukhumvitSet-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Sukhumvit Set";
    src:
        url("../fonts/SukhumvitSet-SemiBold.woff2") format("woff2"),
        url("../fonts/SukhumvitSet-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    font-family: "Sukhumvit Set", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

input,
button.select,
textarea,
label {
    font-family: "Sukhumvit Set", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

html,
body {
    height: 100%;
    background: #0a0d1c url("../images/bg.jpg") top center no-repeat;
    background-size: cover;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

a {
    text-decoration: none;
    color: #ffffff;
}

.text-white {
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.form-group label {
    font-size: 12px;
    color: #ffffff;
}

.form-group input {
    background: var(--input-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    padding: 0 10px;
    height: 30px;
}

.form-group input:focus {
    outline: none;
}

.flex {
    display: flex;
}

.show-mobile {
    display: none;
}

.form-button-group {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-top: 17px;
    padding-right: 20px;
}

#line-button,
.btn-light,
.btn-yellow,
.btn-outline {
    display: block;
    border: none;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
    background: #246bfd;
    border-radius: 5px;
    height: 28px;
    padding: 0 15px;
    line-height: 29px;
    font-weight: bold;
    margin: 0 5px;
    -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;
    color: #ffffff;
}

#line-button.lg,
.btn-light.lg,
.btn-yellow.lg,
.btn-outline.lg {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0 30px;
}

#line-button:hover,
.btn-light:hover,
.btn-yellow:hover,
.btn-outline:hover {
    filter: contrast(1.5);
}

.btn-outline {
    background: #1a1a1a;
    border: 1px solid #ea0938;
    box-shadow: 0 0 11px rgba(234, 9, 56, 0.3);
    color: var(--text-color);
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    max-width: 280px;
    margin: 0 auto;
}

.btn-yellow {
    color: #fff;
    background: linear-gradient(88.42deg, #dcb655 -0.28%, #cea928 60.77%);
    border-radius: 5px;
}

header {
    height: 70px;
    background: rgba(0, 0, 0, 0.25);
}

header #header {
    display: flex;
    justify-content: space-between;
}

header #logo {
    display: block;
    margin-left: 10px;
    width: 130px;
    align-self: center;
}

header #logo img {
    width: 100%;
    height: auto;
    margin-top: 5px;
}

header #login-form {
    width: calc(100% - 250px);
}

header #login-form form {
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin-top: 5px;
    max-width: 212px;
    margin-left: auto;
}

header #login-form form .form-group {
    padding: 0 5px;
    width: 150px;
}

nav {
    height: 45px;
    background: #003cae;
}

nav ul.main-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul.main-nav li {
    list-style: none;
    width: 100%;
    display: block;
    position: relative;
}

nav ul.main-nav li a {
    width: 100%;
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    height: 45px;
    line-height: 47px;
    border-bottom: 2px solid rgba(0, 0, 0, 0);
    -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;
}

nav ul.main-nav li a:hover,
nav ul.main-nav li a.current {
    border-bottom: 2px solid var(--secondary-color);
}

nav ul.main-nav li:last-child a {
    border-right: 0;
}

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

nav ul.sub-menu {
    display: none;
    position: absolute;
    z-index: 2;
    background: var(--header-color);
    border-left: 1px solid var(--primary-color);
    border-right: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    margin-left: 0;
    padding: 10px;
    width: 200%;
    max-width: 200px;
}

nav ul.sub-menu li {
    list-style: none;
}

#hero {
    position: relative;
}

/* Slider */
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick", serif;
    font-size: 20px;
    line-height: 1;
    opacity: 0.75;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "←";
}

[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: "→";
}

[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: "";
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    position: relative;
}

/*.slick-slide div {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  padding: 10px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 2;
  font-size: 16px;
}*/
[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

#progress-slider {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: 11px;
    background: #000000;
    height: 2px;
}
#progress-slider div {
    width: 0;
    height: 2px;
    -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;
    background: linear-gradient(90deg, #0085ff 0%, #003f9e 100%);
}
#progress-slider div.active {
    animation: fullwidth 5s linear;
}

#slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 0 0 0;
}
#slider .slide-item .slide-info {
    background: rgb(0, 0, 0);
    padding: 10px;
    font-weight: bold;
    font-size: 26px;
    line-height: 1.3;
    display: block;
}

.slick-dots {
    position: absolute;
    bottom: 65px;
    right: 10px;
    list-style: none;
    display: flex;
}
.slick-dots li button {
    text-indent: -100px;
    overflow: hidden;
    cursor: pointer;
    border: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}
.slick-dots li:last-child button {
    margin-right: 0;
}
.slick-dots li.slick-active button {
    background: var(--primary-color);
}

#slider-nav {
    width: 380px;
    position: absolute;
    bottom: 50px;
    right: 50px;
}
#slider-nav .slide-nav-item {
    margin: 2px;
    width: 70px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: transparent;
    padding: 3px;
}
#slider-nav .slide-nav-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 3px;
    background: rgba(0, 0, 0, 0.5);
    width: 84px;
    height: 54px;
    border-radius: 6px;
    opacity: 1;
    -webkit-transition: all 0.3ms ease-in-out;
    -moz-transition: all 0.3ms ease-in-out;
    -ms-transition: all 0.3ms ease-in-out;
    -o-transition: all 0.3ms ease-in-out;
    transition: all 0.3ms ease-in-out;
}
#slider-nav .slide-nav-item img {
    width: 90px;
    height: 54px;
    border-radius: 6px;
    display: block;
}
#slider-nav .slide-nav-item.slick-current {
    background: #f3ca41;
}
#slider-nav .slide-nav-item.slick-current::after {
    opacity: 0;
}
#slider-nav .slick-arrow {
    width: 40px;
    height: 40px;
    overflow: hidden;
    text-indent: -999px;
    cursor: pointer;
    background: url("../images/left.svg") center center no-repeat;
    z-index: 9;
    margin-top: 4px;
    margin-left: 5px;
}
#slider-nav .slick-arrow.slick-next {
    background: url("../images/right.svg") center center no-repeat;
    margin-right: 5px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mt-3 {
    margin-top: 30px;
}

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

.text-center img {
    margin: 0 auto;
}

.text-left {
    text-align: left;
}

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

.no-pb {
    padding-bottom: 0;
    margin-bottom: 0;
}

.pb-30 {
    padding-bottom: 30px;
}

article {
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 300;
    text-align: left;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6 {
    font-weight: 600;
    color: var(--primary-color) !important;
    margin-bottom: 5px;
    margin-top: 10px;
}

article h1 strong,
article h2 strong,
article h3 strong,
article h4 strong,
article h5 strong,
article h6 strong {
    font-weight: 600;
    color: var(--primary-color) !important;
}

article p,
article p span,
article p strong {
    font-family: Tahoma, sans-serif;
    color: #ffffff !important;
    font-weight: normal;
}

article a {
    font-family: Tahoma, sans-serif;
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: underline;
}

article a strong,
article a span {
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: underline;
}

article img {
    max-width: 100%;
}

.cat-title-home {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: 10px;
}
.cat-title-home strong {
    display: block;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    width: 180px;
}
.cat-title-home span {
    width: calc(100% - 270px);
    display: block;
    background: url("../images/border.svg") left center repeat-x;
    margin-right: 10px;
}
.cat-title-home a {
    display: block;
    color: #ffffff;
    font-size: 14px;
    background: #003cae;
    border-radius: 6px;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    width: 80px;
    text-align: center;
}

.view-all-mobile {
    display: none;
    color: #ffffff;
    font-size: 14px;
    background: #003cae;
    border-radius: 6px;
    padding: 0 10px;
    height: 26px;
    line-height: 26px;
    text-align: center;
}

/******news****/
.news-box {
    position: relative;
}
.news-box:hover .thumb a img {
    transform: scale(1.05);
}
.news-box .thumb {
    overflow: hidden;
    position: relative;
}
.news-box .thumb a {
    display: block;
}
.news-box .thumb a img {
    width: 100%;
    height: auto;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.news-box .thumb .category {
    color: #ffffff;
    font-size: 12px;
    height: 26px;
    padding: 0 10px;
    line-height: 28px;
    position: absolute;
    top: 10px;
    left: 0;
    background: #003cae;
}
.news-box .thumb .video-time {
    color: #ffffff;
    font-size: 10px;
    height: 20px;
    line-height: 22px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 0 5px;
    background: #000000;
    display: flex;
}
.news-box .thumb .video-time img {
    width: 10px;
    height: auto;
    margin-right: 5px;
}
.news-box .content {
    background: #ffffff;
    padding: 10px;
}
.news-box .detail {
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-box .detail a {
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
    color: #000000;
}
.news-box .detail small {
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-weight: normal;
}
.news-box .info {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
}
.news-box .info div {
    font-size: 12px;
}
.news-box .info time {
    font-size: 12px;
}

#last-news {
    position: relative;
    z-index: 2;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}
#last-news #overlay-news {
    width: calc(50% - 10px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 20px;
}
#last-news #overlay-news #big-head {
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    position: relative;
}
#last-news #overlay-news #big-head::after {
    content: "";
    display: block;
    box-shadow: 0 0 8px #3f8aff;
    height: 4px;
    background: #0066ff;
    position: absolute;
    right: 40px;
    width: 30%;
    bottom: 20px;
}
#last-news #overlay-news p {
    margin-top: 20px;
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 14px;
}
#last-news #overlay-news .news-box .detail a {
    line-height: 1.4;
    font-size: 20px;
    color: #ffffff;
}
#last-news #overlay-news .news-box .content {
    text-shadow: 0 0 5px #000000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background: rgb(0, 0, 0);
    background: linear-gradient(
        0deg,
        rgb(0, 0, 0) 0%,
        rgba(10, 24, 38, 0) 100%
    );
}
#last-news #latest-news {
    width: calc(50% - 10px);
    margin-left: 0;
}
#last-news #latest-news #header-last strong {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}
#last-news #latest-news #news-list {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#last-news #latest-news #news-list .news-box {
    width: calc(50% - 5px);
    margin-bottom: 10px;
}
#last-news #latest-news #news-list .news-box .detail {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#logo-fantasy {
    margin-top: 100px;
    position: relative;
}
#logo-fantasy img {
    position: relative;
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    z-index: 2;
}
#logo-fantasy #curve {
    position: absolute;
    z-index: 1;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
#logo-fantasy #curve img {
    width: 100%;
}

#news-fantasy {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}
#news-fantasy main {
    width: calc(100% - 340px);
}
#news-fantasy main #news-big {
    background: #000026;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: start;
}
#news-fantasy main #news-big .news-box {
    width: calc(50% - 5px);
}
#news-fantasy main #news-big .news-box .detail {
    padding-top: 10px;
    line-height: 1.6;
}
#news-fantasy main #news-big .news-box .detail a {
    color: #ffffff;
    font-size: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#news-fantasy main #news-big .news-box .detail small {
    font-size: 14px;
    color: #ffffff;
    margin-top: 10px;
}
#news-fantasy main #news-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}
#news-fantasy main #news-list .news-box {
    width: calc(33.333% - 5px);
    margin-bottom: 10px;
}
#news-fantasy main #news-list .news-box .content .detail a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#news-fantasy main #news-line {
    margin-top: 5px;
    margin-bottom: 20px;
}
#news-fantasy main #news-line .news-box {
    display: flex;
    border-top: 1px solid #ffffff;
    background: #1f4087;
    height: 50px;
    line-height: 52px;
    align-items: center;
    padding-right: 10px;
    -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;
}
#news-fantasy main #news-line .news-box:nth-child(2n) {
    background: #3573cf;
}
#news-fantasy main #news-line .news-box:last-child {
    border-bottom: 1px solid #ffffff;
}
#news-fantasy main #news-line .news-box:hover {
    filter: contrast(3);
}
#news-fantasy main #news-line .news-box .icon {
    margin-right: 10px;
    margin-left: 10px;
}
#news-fantasy main #news-line .news-box .icon img {
    display: block;
}
#news-fantasy main #news-line .news-box a {
    display: block;
    font-size: 16px;
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#news-fantasy aside {
    width: 320px;
}

#fixtures {
    background: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 15px 0;
}

#content-fixtures {
    text-align: center;
    margin-top: 20px;
}
#content-fixtures img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

#filter-fixtures {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
#filter-fixtures h3 {
    font-weight: bold;
    font-size: 24px;
    padding-left: 10px;
    margin: 0;
    line-height: 1;
}
#filter-fixtures select {
    display: block;
    background: #ffffff;
    width: 100%;
    max-width: 280px;
    border: 1px solid #eeeeee;
    margin-right: 10px;
    height: 40px;
    line-height: 40px;
    color: #000000;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
}
#filter-fixtures select strong {
    font-weight: bold;
}
#filter-fixtures select:focus {
    outline: none;
}

#top-week {
    padding: 0;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
}

#best-week {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 10px;
    margin-top: 10px;
}
#best-week .head {
    color: #000000;
    background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 84.37%),
        linear-gradient(90deg, #02efff 15.99%, #627bff 96.61%);
    position: relative;
    text-align: center;
    padding-top: 10px;
}
#best-week .head strong {
    font-size: 20px;
    position: relative;
    z-index: 2;
    font-weight: bold;
}
#best-week .head div {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    height: 60px;
    line-height: 42px;
    position: relative;
    z-index: 2;
    width: 200px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
}
#best-week .head:after {
    z-index: 1;
    top: 0;
    right: 0;
    position: absolute;
    content: "";
    display: block;
    width: 184px;
    height: 122px;
    background: url("../images/head-week.png") top right no-repeat;
}
#best-week div {
    padding: 10px;
}

#best-month {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
}
#best-month strong {
    height: 50px;
    line-height: 52px;
    color: #000000;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    display: block;
    background: linear-gradient(360deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%),
        linear-gradient(90deg, #e37fde 1.97%, #7e87f1 100%);
}
#best-month div {
    padding: 10px;
}

#sidebar-news {
    margin-top: 30px;
}
#sidebar-news .news-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
#sidebar-news .news-box .thumb {
    width: 120px;
}
#sidebar-news .news-box .content {
    width: calc(100% - 120px);
}
#sidebar-news .news-box .detail {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#sidebar-news .news-box.big {
    margin-bottom: 10px;
    display: block;
}
#sidebar-news .news-box.big .thumb,
#sidebar-news .news-box.big .content {
    width: auto;
}

#sidebar-dynamic {
    margin-top: 20px;
}

#sidebar {
    padding: 0;
}
#sidebar li {
    list-style: none;
    margin-bottom: 10px;
}
#sidebar li img {
    width: 100%;
    height: auto;
    border-radius: 9px;
}

#news-highlight {
    background: #1c1f2c;
    padding: 20px 0;
    margin-top: 20px;
}
#news-highlight .cat-title-home strong {
    width: 100px;
}
#news-highlight .cat-title-home span {
    width: calc(100% - 200px) !important;
}
#news-highlight #news-list {
    display: flex;
    justify-content: space-between;
}
#news-highlight #news-list .news-box {
    width: calc(55% - 10px);
}
#news-highlight #news-list .news-box .detail {
    min-height: 26px;
}
#news-highlight #news-small {
    width: calc(45% - 5px);
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
}
#news-highlight #news-small .news-box {
    width: calc(50% - 5px);
    margin-bottom: 10px;
}
#news-highlight #news-small .news-box .detail {
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#news-analytic {
    background: #1c1f2c;
    padding: 20px 0;
}
#news-analytic .container {
    display: flex;
    justify-content: space-between;
}
#news-analytic main {
    width: calc(100% - 340px);
}
#news-analytic main .cat-title-home strong {
    width: 120px;
}
#news-analytic main .cat-title-home span {
    width: calc(100% - 220px) !important;
}
#news-analytic main #list-news {
    display: flex;
    justify-content: space-between;
}
#news-analytic main #list-news .news-box {
    width: calc(25% - 5px);
}
#news-analytic main #list-news .news-box .detail {
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
#news-analytic aside {
    width: 320px;
}

#sidebar-table {
    margin-top: 10px;
}
#sidebar-table #head {
    display: flex;
    justify-content: space-between;
}
#sidebar-table #head strong {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}
#sidebar-table #sidebar-table-content {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #3b4356;
}

#category-lists {
    min-height: 60vh;
}
#category-lists .list-blog {
    display: flex;
    flex-wrap: wrap;
}
#category-lists .list-blog .news-box {
    width: calc(25% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
}
#category-lists .list-blog .news-box:nth-child(4n) {
    margin-right: 0;
}
#category-lists .list-blog .news-box .detail {
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#rec-news {
    background: #131725;
    padding-top: 20px;
}
#rec-news .list-blog {
    display: flex;
    flex-wrap: wrap;
}
#rec-news .list-blog .news-box {
    width: calc(25% - 10px);
    margin-right: 10px;
    margin-bottom: 10px;
}
#rec-news .list-blog .news-box:nth-child(4n) {
    margin-right: 0;
}
#rec-news .list-blog .news-box .detail {
    min-height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#tags {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    padding-bottom: 20px;
}

#tags h4 {
    color: #ffffff;
    font-size: 14px;
    padding-left: 7px;
}

#tags div {
    display: flex;
    flex-wrap: wrap;
}

#tags a {
    color: #ffffff;
    display: block;
    margin: 5px;
    padding: 0 10px;
    height: 30px;
    background: rgb(0, 0, 0);
    border-radius: 30px;
    font-size: 14px;
    line-height: 30px;
}

#tags a:hover {
    background: rgb(2, 12, 40);
}

#home-banner,
#single-banner,
#single-banner-head {
    position: relative;
    z-index: 2;
}
#home-banner img,
#single-banner img,
#single-banner-head img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.cat-title {
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    font-size: 28px;
}

.cat-title::after {
    content: none;
}

#table-player {
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}
#table-player .view-all-mobile.view-pc {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
}
#table-player h3 {
    font-weight: bold;
    font-size: 24px;
    padding-left: 10px;
    margin-bottom: 10px;
}

#player-table_filter {
    display: none !important;
}

table.dataTable.no-footer {
    border-bottom: 0;
}

table.dataTable thead th,
table.dataTable thead td {
    padding: 10px;
    border-bottom: none;
    background: #fafafa;
}
table.dataTable thead th:before,
table.dataTable thead td:before {
    display: none !important;
}
table.dataTable thead th:after,
table.dataTable thead td:after {
    content: "" !important;
    display: block;
    width: 1px;
    height: 24px;
    background: #eeeeee;
    float: left;
    margin-right: 5px;
    opacity: 1 !important;
    position: unset !important;
}
table.dataTable thead th:first-child:after,
table.dataTable thead td:first-child:after {
    display: none;
}

table.dataTable tbody th td,
table.dataTable tbody tr td {
    border-bottom: 1px solid #eeeeee;
}
table.dataTable tbody th td:after,
table.dataTable tbody tr td:after {
    content: "";
    display: block;
    width: 1px;
    height: 24px;
    background: #eeeeee;
    float: left;
    margin-right: 5px;
}
table.dataTable tbody th td:first-child:after,
table.dataTable tbody tr td:first-child:after {
    display: none;
}
table.dataTable tbody th:last-child td,
table.dataTable tbody tr:last-child td {
    border-bottom: none;
}

#table-filter {
    display: flex;
    margin-bottom: 10px;
    padding: 0 10px;
}
#table-filter fieldset {
    width: calc(50% - 5px);
    border: 1px solid #eeeeee;
    border-radius: 10px;
}
#table-filter fieldset:last-child {
    margin-left: 10px;
}
#table-filter fieldset legend {
    color: #000000;
    font-size: 10px;
}
#table-filter select {
    display: block;
    border: none;
    background: #ffffff;
    width: 100%;
}
#table-filter select:focus {
    outline: none;
}

footer {
    background: #000000;
    color: #ffffff;
    padding: 20px 0;
}
footer .container {
    display: flex;
    justify-content: center;
}
footer .footer-section {
    width: calc(33.333% - 10px);
    margin: 10px;
}
footer .footer-section strong {
    display: block;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
}

#footer-category {
    display: flex;
    text-align: left;
    justify-content: space-between;
    flex-wrap: wrap;
}
#footer-category a {
    width: 50%;
    margin-bottom: 3px;
}
#footer-category a:hover {
    color: var(--primary-color);
}

#footer-tags {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

#footer-tags a {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin: 2px;
}
#footer-tags a:hover {
    color: var(--primary-color);
}

#footer-social {
    display: flex;
}
#footer-social a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 10px 10px 0;
}
#footer-social a.facebook {
    background: #3b4356 url("../images/facebook.svg") center center no-repeat;
}
#footer-social a.facebook:hover {
    background: #222938 url("../images/facebook.svg") center center no-repeat;
}
#footer-social a.twitter {
    background: #3b4356 url("../images/twitter.svg") center center no-repeat;
}
#footer-social a.twitter:hover {
    background: #222938 url("../images/twitter.svg") center center no-repeat;
}
#footer-social a.youtube {
    background: #3b4356 url("../images/youtube.svg") center center no-repeat;
}
#footer-social a.youtube:hover {
    background: #222938 url("../images/youtube.svg") center center no-repeat;
}
#footer-social a.instagram {
    background: #3b4356 url("../images/instagram.svg") center center no-repeat;
}
#footer-social a.instagram:hover {
    background: #222938 url("../images/instagram.svg") center center no-repeat;
}
#footer-social a.line {
    background: #3b4356 url("../images/line-logo.svg") center center no-repeat;
    background-size: 24px;
}
#footer-social a.line:hover {
    background: #222938 url("../images/line-logo.svg") center center no-repeat;
    background-size: 24px;
}

#list-404 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#list-404 .news-box {
    margin-bottom: 10px;
    width: calc(25% - 5px);
}
#list-404 .news-box .detail {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

#footer-credit {
    text-align: center;
    background: #003cae;
    font-size: 14px;
    padding: 10px 0;
    color: #ffffff;
}
#footer-credit .container {
    display: flex;
    justify-content: space-between;
}

#hamburger,
#bottom-nav {
    display: none;
}

#overLayMobile {
    display: none;
}

#share {
    display: flex;
    float: right;
    font-weight: 300;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    color: #ffffff;
    margin-top: -40px;
}

#share a {
    margin: 3px;
}

#single-share {
    display: flex;
    float: none;
    font-weight: 500;
    margin-top: 0;
    padding-bottom: 2em;
    color: #ffffff;
    width: 120px;
}

#single-share a {
    margin: 3px;
}

#single-title {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
#single-title h1 {
    color: #ffffff;
    margin: 0;
    font-weight: bold;
    font-size: 26px;
    width: calc(100% - 200px);
}

#content {
    min-height: 60vh;
}
#content form {
    color: #ffffff;
    display: block;
    max-width: 600px;
    margin: 0 auto;
}
#content form label {
    display: block;
    margin-top: 10px;
}
#content form span {
    color: red !important;
    font-size: 12px;
}
#content form input,
#content form textarea {
    width: 100%;
    color: #000000;
    padding: 5px 10px;
    display: block;
    border: 1px solid #cccccc;
    border-radius: 6px;
    background: #eeeeee;
    font-size: 16px;
}
#content form input[type="submit"] {
    border: none;
    margin-top: 20px;
    width: 150px;
    background: #003cae;
    color: #ffffff;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
}

#comment {
    background: #ffffff;
    margin-bottom: 20px;
}

.wpcf7 .screen-reader-response {
    display: block;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    position: relative;
}

.clear {
    clear: both;
}

.table {
    padding-top: 20px;
    margin-bottom: 20px;
}

.table h3 {
    background: #b00c13;
    color: #ffffff;
    padding: 5px 0;
    border-radius: 10px 10px 0 0;
}

.table table {
    border: 0;
    width: 100%;
    border-spacing: 0;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.table table th {
    background: #000000;
    font-size: 12px;
    padding: 5px 0;
    border: 0;
}

.table table tr td {
    padding: 5px 0;
    border-bottom: 1px solid #000;
}

.table table tr td small {
    color: #969696;
}

.table table tr td:first-child {
    padding-left: 5px;
}

.table table tr td img {
    height: 50px;
    width: auto;
    display: inline-block;
}

.table table tr:last-child td {
    border-bottom: 0;
}

#player {
    margin: 20px auto;
    max-width: 960px;
    width: 100%;
    padding-top: 37.7%;
    position: relative;
    max-height: 540px;
}

.s-m {
    display: none;
}

.extend {
    color: #ffffff;
}

.wp-pagenavi {
    clear: both;
    text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: none;
    padding: 3px 5px;
    margin: 2px;
    width: 32px;
    display: inline-block !important;
    border-radius: 50%;
    text-align: center;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    background: #003cae;
    color: #ffffff;
}

#content img {
    max-width: 100%;
    height: auto;
    margin: 5px auto;
    display: block;
}

#content .wp-caption {
    margin: 10px auto;
    text-align: center;
}

#content div {
    width: 100% !important;
}

#alert-copy {
    color: #ffffff;
    text-align: center;
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 40px;
    z-index: 99;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    border-radius: 10px;
    font-weight: bold;
}

#searchform {
    margin-top: 2px;
    display: flex;
    justify-content: space-between;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}
#searchform input {
    background: #ffffff;
    border: #003cae;
    width: calc(100% - 100px);
    border-radius: 6px;
    padding: 5px 10px;
}
#searchform input:focus {
    outline: none;
}
#searchform button {
    width: 90px;
    cursor: pointer;
    background: #003cae;
    border: #003cae;
    color: #ffffff;
    border-radius: 6px;
}

.breadcrumb {
    --bs-breadcrumb-padding-x: 0;
    --bs-breadcrumb-padding-y: 0;
    --bs-breadcrumb-margin-bottom: 0;
    --bs-breadcrumb-divider-color: #6c757d;
    --bs-breadcrumb-item-padding-x: 0.5rem;
    --bs-breadcrumb-item-active-color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
    margin-bottom: var(--bs-breadcrumb-margin-bottom);
    font-size: var(--bs-breadcrumb-font-size);
    list-style: none;
    color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: var(--bs-breadcrumb-item-padding-x);
}

article iframe {
    width: 100%;
    height: 460px;
    max-width: 720px;
    margin: 10px auto;
    display: block;
}

#login-form-mobile {
    display: none;
}

#cat-head-page {
    margin-top: 50px;
}

#dropdown-league {
    float: right;
    position: relative;
    background: #ffffff;
    border-radius: 6px;
    padding: 7px 10px 5px 10px;
    cursor: pointer;
    min-width: 150px;
}
#dropdown-league div {
    display: flex;
    position: relative;
    font-weight: bold;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
}
#dropdown-league div:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url("../images/arrow-right.svg") center center no-repeat;
    background-size: 16px;
    margin-left: 5px;
}
#dropdown-league ul {
    border-radius: 0 0 6px 6px;
    margin-left: 0;
    padding: 5px;
    position: absolute;
    top: 27px;
    left: 0;
    width: 100%;
    background: #ffffff;
}
#dropdown-league ul li {
    list-style: none;
    display: flex;
    position: relative;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 0 5px 6px;
    border-bottom: 1px solid #cccccc;
}
#dropdown-league ul li:last-child {
    border-bottom: 0;
}
#dropdown-league ul li:hover {
    color: #4f4f4f;
}
#dropdown-league img {
    height: 15px;
    width: auto;
    margin-right: 5px;
}

#sidebar-table-content {
    color: #ffffff;
    font-size: 20px;
}
#sidebar-table-content img {
    width: 25px;
    height: auto;
}
#sidebar-table-content table {
    width: 100%;
}
#sidebar-table-content table thead td {
    width: 40px;
    border-spacing: 0;
    font-weight: normal;
    text-align: left;
}
#sidebar-table-content table thead th {
    border-spacing: 0;
    font-weight: bold;
    text-align: left;
}
#sidebar-table-content table tbody td {
    border-spacing: 0;
    vertical-align: middle;
    text-align: left;
    padding: 5px 0;
}
#sidebar-table-content table tbody td:first-child {
    width: 40px;
}
#sidebar-table-content table tbody td:nth-child(3),
#sidebar-table-content table tbody td:nth-child(4),
#sidebar-table-content table tbody td:nth-child(5),
#sidebar-table-content table tbody td:nth-child(6),
#sidebar-table-content table tbody td:nth-child(7),
#sidebar-table-content table tbody td:nth-child(8),
#sidebar-table-content table tbody td:nth-child(9),
#sidebar-table-content table tbody td:nth-child(10),
#sidebar-table-content table tbody td:nth-child(11) {
    border-bottom: 1px solid #75757e;
    width: 8%;
}
#sidebar-table-content.mini {
    font-size: 12px;
}
#sidebar-table-content.mini img {
    width: 15px;
    height: auto;
}

#embed-iframe {
    min-height: 77vh;
    position: relative;
}
#embed-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    body {
        padding-top: 55px;
    }
    header #logo img {
        margin-top: 2px;
    }
    #login-form-mobile {
        display: block;
        margin-bottom: 20px;
    }
    #login-form-mobile a:hover {
        background: #000000;
    }
    .cat-title-home a {
        display: none;
    }
    .cat-title-home span {
        width: calc(100% - 200px);
    }
    .view-all-mobile {
        display: block;
    }
    header {
        background: #00000e;
        height: 54px;
        border-bottom: 1px solid #003cae;
        display: block;
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 94;
    }
    header #header {
        display: block;
    }
    header #login-form form {
        display: none;
    }
    nav {
        position: fixed;
        display: block;
        width: 240px;
        height: 100vh;
        z-index: 9999;
        left: -100vw;
        background: var(--input-color);
        top: 0;
        margin: 0;
        padding: 30px 0 0;
        -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;
        overflow: hidden;
    }
    nav.active {
        left: 0;
    }
    nav ul.main-nav {
        display: block;
    }
    nav ul.main-nav .item a {
        text-align: left;
        border: none;
    }
    nav ul.main-nav .item a:hover,
    nav ul.main-nav .item a.current {
        color: #cea928;
        border: none;
        background: none;
    }
    nav ul {
        display: block;
    }
    nav ul.sub-menu {
        padding-left: 10px;
        background: none;
        border: none;
    }
    nav ul a {
        font-size: 16px;
        border-right: none;
        text-align: left;
        padding-left: 20px;
    }
    nav a:hover,
    nav a.active {
        color: var(--secondary-color);
        background: none;
        border: none;
    }
    header #logo {
        padding-top: 1px;
        width: 100px;
        margin: 0 auto;
    }
    header #header {
        height: 55px;
    }
    #hero {
        padding: 0;
    }
    #slider {
        padding: 0;
    }
    #slider .slide-item .slide-info {
        background: #000000;
        position: unset;
        font-size: 16px;
        line-height: 1.2;
        width: auto;
        font-weight: normal;
    }
    .slick-dots {
        display: none !important;
    }
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .s-d {
        display: none;
    }
    .s-m {
        display: table-row;
    }
    #slider-nav {
        display: none;
    }
    .btn-pay.lg {
        padding: 0 10px;
    }
    .about {
        flex-wrap: wrap;
    }
    .about {
        display: flex;
        align-content: center;
        margin: 20px auto;
    }
    .about div {
        width: 100%;
    }
    #share {
        margin-top: 0;
        float: none;
        width: 170px;
        margin-bottom: 20px;
    }
    .more-button {
        margin-right: 0;
    }
    #single-share {
        display: flex;
        float: none;
        font-weight: 500;
        margin-top: 0;
    }
    section .head-red::before {
        display: none;
    }
    section .head-red::after {
        display: none;
    }
    #sponsor div img {
        max-width: 100%;
        display: block;
        margin: 5px auto;
    }
    .show-mobile {
        display: flex;
        align-content: center;
        align-items: center;
        text-align: center;
    }
    .show-mobile a {
        width: 50%;
    }
    #overLayMobile {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 95;
        background: rgba(0, 0, 0, 0.8);
    }
    #overLayMobile.active {
        display: block;
    }
    footer .container {
        display: block;
    }
    footer .footer-section {
        width: auto;
        margin-bottom: 30px;
    }
    footer .footer-section:last-child {
        margin-bottom: 0;
    }
    .list-blog {
        display: block;
    }
    .list-blog .item-blog {
        margin-bottom: 20px;
        width: 100%;
    }
    .list-blog .item-blog a:first-child {
        height: auto;
    }
    .list-blog .item-blog a:first-child img {
        width: 100%;
        margin: auto;
        height: auto;
        object-fit: cover;
    }
    .list-blog .item-blog a:last-child {
        padding: 10px;
    }
    .list-icon div img {
        min-width: 50px;
    }
    .list-hero {
        flex-wrap: wrap;
    }
    .list-hero div {
        width: 50%;
    }
    table.dataTable tbody th td,
    table.dataTable tbody tr td {
        font-size: 14px;
        padding: 5px;
        line-height: 1.9;
    }
    table.dataTable thead th,
    table.dataTable thead td {
        padding: 5px;
        font-size: 14px;
        line-height: 1.9;
    }
    table.dataTable thead > tr > th.sorting,
    table.dataTable thead > tr > th.sorting_asc,
    table.dataTable thead > tr > th.sorting_desc,
    table.dataTable thead > tr > th.sorting_asc_disabled,
    table.dataTable thead > tr > th.sorting_desc_disabled,
    table.dataTable thead > tr > td.sorting,
    table.dataTable thead > tr > td.sorting_asc,
    table.dataTable thead > tr > td.sorting_desc,
    table.dataTable thead > tr > td.sorting_asc_disabled,
    table.dataTable thead > tr > td.sorting_desc_disabled {
        padding: 5px;
    }
    #footer-credit .container {
        display: block;
        text-align: center;
    }
    #footer-credit .container div:first-child {
        font-size: 10px;
        margin-bottom: 10px;
    }
    #hamburger {
        display: block;
        cursor: pointer;
        position: absolute;
        left: 16px;
        top: 16px;
    }
    #hamburger img {
        display: block;
    }
    /** news */
    #last-news {
        display: block;
        margin-top: 0;
    }
    #last-news #overlay-news {
        width: auto;
        margin: 20px 0 0 0;
        padding: 0;
        border: none;
    }
    #last-news #overlay-news #big-head {
        font-size: 20px;
    }
    #last-news #overlay-news #big-head::after {
        right: 0;
        bottom: 13px;
    }
    #last-news #overlay-news p {
        margin-top: 10px;
        font-size: 16px;
    }
    #last-news #overlay-news .news-box {
        margin-top: 10px;
    }
    #last-news #overlay-news .news-box .detail a {
        font-size: 16px;
        line-height: 1.2;
    }
    #last-news #overlay-news .news-box .detail small {
        display: none;
    }
    #last-news #overlay-news .news-box .info {
        display: none;
    }
    #last-news #latest-news {
        display: block;
        width: auto;
        margin-left: 0;
        margin-top: 20px;
    }
    #last-news #latest-news #news-list {
        margin-top: 10px;
    }
    #last-news #latest-news #news-list .news-box .detail {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    #logo-fantasy {
        margin-top: 30px;
    }
    #logo-fantasy #curve {
        top: -50px;
    }
    #news-fantasy {
        display: block;
    }
    #news-fantasy main {
        width: auto;
    }
    #news-fantasy main #news-big {
        display: block;
        width: auto;
    }
    #news-fantasy main #news-big .news-box {
        display: block;
        width: auto;
    }
    #news-fantasy main #news-big .news-box:first-child {
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 20px;
    }
    #news-fantasy main #news-big .news-box .thumb {
        width: auto;
    }
    #news-fantasy main #news-big .news-box .detail {
        margin-top: 10px;
        width: auto;
    }
    #news-fantasy main #news-big .news-box .detail small {
        margin-top: 5px;
    }
    #news-fantasy main #news-list {
        display: block;
    }
    #news-fantasy main #news-list .news-box {
        width: auto;
    }
    #news-fantasy main #news-line {
        display: none;
    }
    #news-fantasy aside {
        width: auto;
    }
    #news-fantasy aside #sidebar-news {
        margin-bottom: 0;
    }
    #news-fantasy aside #sidebar-dynamic {
        margin-top: 0;
    }
    #news-highlight .cat-title-home strong {
        width: 90px !important;
    }
    #news-highlight .cat-title-home span {
        width: calc(100% - 100px) !important;
    }
    #news-highlight #news-list {
        display: block;
    }
    #news-highlight #news-list .news-box {
        width: auto;
        margin-bottom: 10px;
    }
    #news-highlight #news-list .news-box .detail {
        min-height: 35px;
    }
    #news-highlight #news-small {
        width: auto;
    }
    #news-highlight #news-small .news-box {
        width: calc(50% - 5px);
    }
    #news-highlight #news-small .news-box .detail {
        min-height: auto;
    }
    #news-highlight {
        padding: 5px 0;
    }
    #news-highlight .view-all-mobile {
        margin-bottom: 0 !important;
    }
    #news-analytic {
        padding: 5px 0;
    }
    #news-analytic .container {
        display: block;
    }
    #news-analytic main,
    #news-analytic aside {
        display: block;
        width: auto;
    }
    #news-analytic main .cat-title-home span {
        width: calc(100% - 120px) !important;
    }
    #news-analytic main .view-all-mobile {
        margin-bottom: 0 !important;
    }
    #news-analytic main #list-news {
        display: block;
        width: auto;
    }
    #news-analytic main #list-news .news-box {
        width: auto;
        margin-bottom: 10px;
    }
    #best-week {
        margin-top: 20px;
    }
    #sidebar-table {
        padding-top: 10px;
        margin-bottom: 20px;
    }
    #list-404 {
        display: block;
    }
    #list-404 .news-box {
        width: auto;
        margin-bottom: 10px;
    }
    .nav-breadcrumb {
        display: none;
    }
    #cat-head-page {
        margin-top: 20px;
    }
    #cat-head-page .text-white {
        display: none;
    }
    .cat-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    #category-lists .list-blog {
        display: block;
    }
    #category-lists .list-blog .news-box {
        width: auto;
        margin-right: 0 !important;
    }
    #rec-news .list-blog {
        display: block;
    }
    #rec-news .list-blog .news-box {
        width: auto;
        margin-right: 0 !important;
    }
    #single-title {
        display: block;
    }
    #single-title h1 {
        width: auto;
        font-size: 20px;
        margin-bottom: 10px;
    }
    #content {
        margin-top: 0;
        padding-top: 0;
    }
    #table-player h3 {
        text-align: center;
    }
    #table-player .view-all-mobile.view-pc {
        display: none;
    }
    #table-player .view-all-mobile {
        margin: 10px;
    }
    #filter-fixtures {
        display: block;
    }
    #filter-fixtures h3 {
        margin-bottom: 5px;
        text-align: center;
    }
    #filter-fixtures select {
        width: 100%;
        margin: 0 auto;
    }
    #sidebar-table-content {
        font-size: 12px;
    }
    #sidebar-table-content table tbody td:first-child {
        width: 20px;
    }
    #sidebar-table-content table tbody td:first-child img {
        width: 15px;
    }
}
@media screen and (max-width: 500px) {
    article iframe {
        height: 260px;
    }
    .hide-mobile {
        display: none;
    }
}
@keyframes fullwidth {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

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