/* ---------------------------------------------------
    FONT
----------------------------------------------------- */

/* ---------------------------------------------------
    GENERAL STYLE
----------------------------------------------------- */

html {
    font-size: 10px;
}

body {
    font-family: 'Prompt', sans-serif;
    background: #fafafa;
    background-size: cover;
    background-repeat: repeat;
    font-size: 1.6rem;
    color: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}


a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

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

.navbar a {
    color: #ffffff;
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

.antiCls {
    visibility: hidden;
}

/* ---------------------------------------------------
    HEADER STYLE
----------------------------------------------------- */

.navbar-brand img {
    max-width: 120px;
}

.nav-dt {
    background: rgb(12, 17, 47);
    background: -moz-linear-gradient(0deg, rgba(12, 17, 47, 1) 0%, rgba(0, 5, 28, 1) 50%);
    background: -webkit-linear-gradient(0deg, rgba(12, 17, 47, 1) 0%, rgba(0, 5, 28, 1) 50%);
    background: linear-gradient(0deg, rgba(12, 17, 47, 1) 0%, rgba(0, 5, 28, 1) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c112f", endColorstr="#00051c", GradientType=1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 9999;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
    padding: 5px 0;
}

.wrap-count {
    width: 280px;
    position: relative;
}

.wrap-count:not(.mobile) {
    margin-left: 25px;
}

.wrap-count .counter {
    position: absolute;
    text-align: center;
    width: 140px;
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -15px;
    line-height: 52px;
    letter-spacing: 1px;
    font-weight: 700;
}

.wrap-count .counter h4 {
    display: inline;
    font-size: 1em;
    font-weight: 700;
    /*color: #cdf739; background: -webkit-linear-gradient(90deg, #338b59 0%, #cdf739 100%);-webkit-background-clip: text;-webkit-text-fill-color: transparent;*/
    color: #fff;
    text-shadow: 1px 2px 5px #333333;
}

.wrap-count .counter span {
    display: none;
    color: #FFF;
    font-weight: 600;
    margin-left: 5px;
    text-shadow: 1px 2px 5px #1c7d2f;
    font-size: 0.8em;
}

.wrap-count img {
    display: block;
    max-width: 100%;
    height: auto;
}

.wrap-count-bf-tb {
    display: none;
}

@media (min-width:768px) and (max-width:1023px) {
    .wrap-count {
        display: none;
    }
}

@media (min-width:768px) and (max-width:1100px) {
    .wrap-count .counter {
        width: 130px;
        line-height: 48px;
    }

    .wrap-count .counter h4 {
        font-size: 1.2em;
    }

    .wrap-count-bf-tb {
        display: block;
    }

    .wrap-count-dt {
        display: none;
    }

    .wrap-count .counter h4 {
        font-size: 0.9em;
    }
}

@media (min-width:768px) and (max-width:1050px) {
    .wrap-count .counter span {
        display: none;
    }

    .wrap-count .counter {
        line-height: 48px;
        margin-left: -20px;
    }
}

@media (max-width:991px) {
    .wrap-count-bf-tb {
        display: none;
    }
}

@media (max-width:768px) {
    .wrap-count.mobile {
        width: 200px;
        margin-top: 6px;
    }

    .wrap-count.mobile {
        float: left;
        margin-right: auto;
        margin-left: 18px;
    }

    .wrap-count.mobile .counter {
        font-style: 0.8em;
        width: 130px;
        line-height: 46px;
        margin-left: -35px;
    }

    .wrap-count .counter span {
        font-size: 0.8em;
        display: none;
    }
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    width: 100%;
    position: relative;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #0c102f;
    color: #fff;
    transition: all 0.3s;
    padding-top: 107px;
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #6d7fcc;
}

#sidebar ul.components {
    padding: 40px 20px;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px;
    display: block;
}


#sidebar ul li.active > a,
a[aria-expanded="true"] {
    color: #fff;
    background: #6d7fcc;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.menu-item {
    border-radius: 4px;
    margin-bottom: 15px;
    background: rgb(0, 31, 63);
    background: -moz-linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
    background: linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001f3f", endColorstr="#004273", GradientType=1);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.4);
}

.menu-item:hover {
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.8);
}

.menu-item a {
    padding: 20px !important;
    display: block;
}

.menu-item img {
    max-width: 32px;
    margin-right: 0;
}

.line-item {
    background: #00C200;
}

.line-item img {
    margin-right: 0;
}

ul ul a {
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #7386D5;
}

a.article,
a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

.heading-section {
    margin-bottom: 30px;
}

.heading-section img {
    display: block;
    text-align: center;
    margin: 0 auto 30px;
}

.heading-section h2 {
    color: #EBE602;
    font-size: 3.2rem;
}

.st-sec {
    padding: 40px 0;
}

.otherpage-section {
    padding-top: 0;
}

.content-divider {
    width: 100%;
    display: block;
    height: 30px;
}

.game-section .content-divider {
    height: 20px;
}

.nav-item {
    background: none;
    padding: 0;
    margin-left: 8px;
    min-width: 120px;
    text-align: center;
}

.nav-item:hover {
    cursor: pointer;
    opacity: 0.8;
}

.nav-item img {
    display: block;
    text-align: center;
}

.navbar-expand-md .navbar-nav .nav-link {
    padding: 0;
}

.nav-mobile {
    display: none;
}

#loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 9999;
}

#loader.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#loader.show {
    -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#loader .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: calc(100% - 250px);
    padding: 148px 0 0;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../images/bg-dt.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#content.active {
    width: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #EBE602;
}

.promotion-item img {
    margin-bottom: 0;
}

.promotion-item p {
    display: none;
}

.slot-item {
    position: relative;
    width: 50%;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.slot-item:hover .image {
    opacity: 0.3;
}

.slot-item:hover .middle {
    opacity: 1;
}

.text {
    background: rgb(245, 188, 0);
    background: -moz-linear-gradient(180deg, rgba(245, 188, 0, 1) 0%, rgba(253, 221, 1, 1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(245, 188, 0, 1) 0%, rgba(253, 221, 1, 1) 100%);
    background: linear-gradient(180deg, rgba(245, 188, 0, 1) 0%, rgba(253, 221, 1, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f5bc00", endColorstr="#fddd01", GradientType=1);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    padding: 15px 30px;
    width: 100%;
    display: block;
    font-weight: 700;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);
}

/* ---------------------------------------------------
    FOOTER
----------------------------------------------------- */

footer {
    background: #00051c;
    padding: 80px 0 0;
}

.footer-logo {
    max-width: 240px;
}

.copyright p {
    border-top: 1px solid #D8D8D8;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-top: 50px;
    margin-bottom: 0;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width:1247px) {
    .text {
        padding: 15px 20px;
    }
}

@media (max-width:1087px) {
    .text {
        padding: 15px 10px;
    }
}

@media (max-width: 991px) {

    .heading-section h2 {
        font-size: 2.8rem;
    }

    .nav-dt ul {
        margin-top: 0 !important;
    }

    .st-sec {
        padding: 20px 0;
    }

    .heading-section img {
        margin-bottom: 15px;
    }

    .st-sec .content-divider {
        display: none;
    }

    .promotion-item {
        margin-bottom: 30px;
    }

    .slot-item {
        margin-bottom: 30px;
    }

    .footer-section {
        border-top: 1px solid #333;
    }
}

@media (max-width: 768px) {
    .nav-dt {
        display: none;
    }

    #sidebar {
        width: 25%;
        position: fixed;
        padding-top: 88px;
    }

    #sidebar ul.components {
        padding: 20px;
        overflow-y: scroll;
        height: 480px;
    }

    #sidebar.active {
        margin-left: 0;
    }

    #content {
        width: 75%;
        padding: 108px 0 0 0;
    }

    #content.active {
        width: calc(100% - 250px);
    }

    #sidebarCollapse span {
        display: none;
    }

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

    .menu-item img {
        margin: 0 auto 10px;
        display: block;
    }

    .nav-mobile {
        display: block;
        z-index: 9999;
        position: fixed;
        width: 100%;
    }

    .menu-item strong {
        word-break: break-word;
        font-size: 1.4rem;
    }

    .line-item a {
        padding: 10px !important;
    }

    .heading-section img {
        max-width: 56px;
    }

    .menu-item span {
        display: none;
    }

    #sidebar ul.components {
        padding: 20px 10px;
    }

    .fix-footer-container {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 9999;
        width: 100%;
        min-height: 50px;
        text-align: center;
        /*
		background: rgb(0, 31, 63);
		background: -moz-linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
		background: -webkit-linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
		background: linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001f3f", endColorstr="#004273", GradientType=1);*/
    }

    .fix-container {
        display: inline-block;
        vertical-align: bottom;
        width: 40%;
        font-size: 0;
        z-index: 99;
    }

    .fix-center-panel {
        width: 15%;
        position: relative;
        bottom: 30px;
    }

    .fix-left-panel {
        background: #000000;
        border-radius: 0 32px 0 0;
    }

    .fix-left-panel a {
        width: 50%;
        display: inline-block;
    }

    .fix-right-panel {
        background: #000000;
        border-radius: 32px 0 0 0;
    }

    .fix-right-panel a {
        width: 50%;
        display: inline-block;
    }

    .-fake-center-bg-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 1;
        width: 100%;
        height: 50px;
        transition: -webkit-filter .2s;
        transition: filter .2s;
        transition: filter .2s, -webkit-filter .2s;
        overflow: hidden;
    }

    .-fake-center-bg-wrapper svg {
        position: absolute;
        left: 50%;
        bottom: 0;
        /*height: 108px;*/
        width: 490px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    /*	.fix-footer-container ul {
		padding-left: 0;
	}
	.fix-footer-container li {
		display: inline-block;
		color: #f4ebeb;
		font-size: 1.2rem;
		line-height: 28px;
		padding: 10px 30px 6px 30px;
		border-right: 2px solid #000;
	}
	.fix-footer-container a:hover {
		background: rgb(0, 31, 63);
		background: -moz-linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
		background: -webkit-linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
		background: linear-gradient(0deg, rgba(0, 31, 63, 1) 0%, rgba(0, 66, 115, 1) 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001f3f", endColorstr="#004273", GradientType=1);
		text-decoration: none;
	}
	.fix-footer-container a:last-child {
		border-right: none;
	}
	.fix-footer-container a img {
		margin-right: 10px;
		display: inline-block;
	}
	.fix-footer-container a p {
		display: inline-block;
		margin-bottom: 0;
	}*/
    .menu-item {
        margin-bottom: 0px;
    }
}

@media (max-width:576px) {
    html {
        font-size: 8px;
    }

    .heading-section h2 {
        font-size: 2.4rem;
    }

    .menu-item a {
        padding: 10px !important;
    }

    .promotion-item img {
        width: 100%;
    }

    .fix-footer-container a {
        padding: 5px 20px 5px 20px;
    }

    .fix-footer-container a img {
        display: block;
        margin: 0 auto 5px;
    }

    .slot-item {
        margin-bottom: 15px;
    }

    .text {
        padding: 15px 10px;
    }

    .text .fa {
        display: none;
    }

    .slot-item img {
        width: 100%;
    }
}
