@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i');
body {
    color: #fff;
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    background: linear-gradient(to bottom, #13173a 0%, #3c405d 100%);
}

.wow {
    visibility: hidden;
}

.overflowHidden {
    overflow: hidden;
}

.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    animation-timing-function: ease;
}

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

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.regular {
    font-weight: lighter;
}

.left {
    float: left;
    display: inline;
}

.right {
    float: right;
    display: inline;
}

.relative {
    position: relative;
}

.clear {
    clear: both;
}

a {
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease-in-out 0s;
}

a:focus {
    outline: 0;
}

strong {
    font-weight: 700;
}

p {
    margin: 1px 0 15px;
    line-height: 25px;
}

input,
textarea,
select {
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    border: none;
    border: 1px solid #c9c9c9;
    padding: 5px;
    margin: 0;
    color: #666;
}

img {
    margin-bottom: -3px;
}

input[type=checkbox],
input[type=radio] {
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}

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

section {
    position: relative;
}

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

.rows {
    padding: 20px 0;
}

.overflowhidden {
    overflow: hidden;
}


/* structure
----------------------------------------------------------------------------------------------*/

.wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0px 20px;
}

.mid-wrapper {
    width: 960px;
    margin: 0 auto;
}

.inner_wrap {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0px 20px;
}

.afterclear:after {
    clear: both;
    content: '';
    display: block;
}

.show {
    display: block;
}

.hide {
    display: none!important;
}

.withPad {
    padding: 30px 0;
}


/* style button
----------------------------------------------------------------------------------------------*/

.btn-white {
    display: inline-block;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #fff;
    padding: 5px 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.btn-white:hover {
    background: #ff0041;
}

.btn-red {
    background: #ff0041;
    display: inline-block;
    font-size: 15px;
    border-radius: 20px;
    border: 1px solid #ff0041;
    padding: 8px 20px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

.btn-red:hover {
    background: #fff;
    color: #ff0041;
}

.btn-big {
    font-size: 20px;
    padding: 10px 40px;
}

.btn-block {
    display: block;
    width: 100%;
}


/* style header
----------------------------------------------------------------------------------------------*/

#mainheader {
    position: fixed;
    left: 0;
    top: 0;
    background: #171a3d;
    width: 100%;
    display: block;
    z-index: 999;
}

.inner-header {
    display: flex;
    flex: 1;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.logo {
    max-width: 120px;
    margin-right: 100px;
}

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

.main-menu ul {
    background: #ff0041;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-menu li {
    color: #fff;
    display: block;
    float: left;
    padding: 5px 1.5rem;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
    border-radius: 5px;
    transition: all 0.3s ease-in-out 0s;
    margin-right: 0px;
}

.main-menu li a {
    color: #fff;
}

.main-menu li:hover,
.main-menu li:focus-within {
    background: #ff0041;
    cursor: pointer;
    border-radius: 5px;
}

.main-menu li:focus-within a {
    outline: none;
}

.main-menu ul li ul {
    background: #ff0041;
    visibility: hidden;
    opacity: 0;
    min-width: 5rem;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 5px;
    left: 0;
    display: none;
    width: 150px;
    z-index: 4;
}

.main-menu ul li:hover>ul,
.main-menu ul li:focus-within>ul,
.main-menu ul li ul:hover,
.main-menu ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
}

.main-menu ul li ul li {
    clear: both;
    width: 100%;
}

.profile-menu {
    display: flex;
    align-items: center;
}

.profile-menu a {
    display: inline-block;
    margin-left: 15px;
    width: 30px;
    position: relative;
}

.mobile-nav-search {
    width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    top: 65px;
    padding: 5px;
    background-color: #171a3d;
    z-index: 3;
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
    display: flex;
}

.mobile-nav-search .wrapper,
.mobile-nav-search .formSearch {
    display: flex;
    width: 100%;
}

.mobile-nav-search.actived {
    display: block;
}

.mobile-nav-search {
    display: none;
}

.mobile-nav-search .input-form-text {
    border: 0!important;
    box-shadow: none;
    color: #949494;
    height: 40px;
    line-height: 14px;
    padding: 10px 65px 10px 20px;
    background-color: #fafafa;
    width: 100%;
}

.mobile-nav-search .btn-search {
    background: #ff0041;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
}

.desktop_menu,
.desktop_only {
    display: block !important;
}

.mobile_menu,
.mobile_only {
    display: none !important;
}

.inner-header-mobile {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.float_mobile_menu.expand {
    left: 0;
}

.bg-menu-fixed {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
}

.bg-menu-fixed.actived {
    display: block;
}

.float_mobile_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(to bottom, #13173a 0%, #3c405d 100%);
    backdrop-filter: blur(20px);
    text-align: right;
    padding: 10px 20px;
    transition: all 0.3s ease-in-out 0s;
    z-index: 99999;
}

.close_menu {
    display: inline-block;
    padding-top: 10px;
}

.main_mobile_menu {
    display: block;
    margin-top: 15px;
}

.main_mobile_menu h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    text-align: left;
}

.main_mobile_menu ul {
    padding: 0;
    margin: 0;
}

.main_mobile_menu ul li {
    display: block;
    text-align: left;
    padding: 10px 10px;
    border-bottom: 1px solid #000;
}

.main_mobile_menu ul li a,
#mainheader.fixNav .main_mobile_menu ul li a {
    font-size: 18px;
    color: #fff;
}

.main_menu_mobile .dropdown {
    display: none;
}

.main_mobile_menu ul li {
    display: block;
    text-align: left;
    padding: 10px 10px;
}

.profile-menu .raja-koin-info-head,
.profile-menu .view_point {
    display: flex;
    align-items: center;
    width: auto;
    margin-right: 15px;
}

.profile-menu .view_point {
    border-radius: 20px;
    padding: 5px 10px;
    border: 2px solid #e62c23;
}

.profile-menu .raja-koin-info-head img,
.profile-menu .view_point .icon_kupon {
    max-width: 25px;
    margin-right: 5px;
}

.profile-menu .view_point .jml_point {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.profile-menu .raja-koin-info-head .caption_raja_koin {
    display: flex;
    flex-direction: column;
}

.profile-menu .raja-koin-info-head .caption_raja_koin span {
    font-size: 12px;
    color: #ff0041;
    line-height: 14px;
}

.profile-menu .raja-koin-info-head .caption_raja_koin span.jml_raja_point {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

#notif_toast {
    position: fixed;
    top: -20vh;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 999;
    transition: all 0.3s ease-in-out 0s;
}

#notif_toast.actived {
    top: 80px;
}

.innerNotif {
    display: inline-block;
    border: 2px solid #ff0041;
    padding: 10px 20px;
    background: #364958;
    border-radius: 20px;
}

.innerNotif p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}


/* style kontent
----------------------------------------------------------------------------------------------*/

#middle-content {
    padding-top: 70px;
}

.home-banner-carousel .owl-dots {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 10px;
}

.home-banner-carousel .owl-dots .owl-dot span,
.custom-dots .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.home-banner-carousel .owl-dots .owl-dot.active span,
.home-banner-carousel .owl-dots .owl-dot:hover span,
.custom-dots .owl-dots .owl-dot.active span,
.custom-dots .owl-dots .owl-dot:hover span {
    width: 25px;
    background: #ff0041;
}

.home-banner-carousel .owl-controls .owl-nav .owl-prev,
.home-banner-carousel .owl-controls .owl-nav .owl-next,
.home-banner-carousel .owl-controls .owl-dot {
    max-width: 35px;
    padding: 0;
    background: none !important;
}

.home-banner-carousel .owl-controls .owl-nav .owl-prev,
.home-banner-carousel .owl-controls .owl-nav .owl-next {
    position: absolute;
    top: 40%;
}

.home-banner-carousel .owl-controls .owl-nav .owl-prev {
    left: 10px;
}

.home-banner-carousel .owl-controls .owl-nav .owl-next {
    right: 10px;
}

.section-title {
    text-align: left;
    display: block;
    width: 100%;
}

.section-title h3 {
    font-size: 22px;
    margin: 0 0 15px 0;
}

.row-list {
    margin-left: -15px;
    margin-right: -15px;
}

.row-list::after,
.row-list::before {
    content: '';
    display: table;
}

.row-list::after {
    content: '';
    clear: both;
}

.loader_gif {
    width: 100%;
    text-align: center;
}

.tabs_section {
    display: block;
    width: 100%;
    min-height: 400px;
}

#kupon-info .cols2 {
    margin-bottom: 5px;
}

.cols2 {
    width: 50%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.cols4 {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.cols3 {
    width: 33.33%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.cols5 {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.cols-w-60 {
    width: 60%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.cols-w-40 {
    width: 40%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
    margin-bottom: 30px;
}

.cols-main-news {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
}

.cols-second-news {
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px;
    position: relative;
    float: left;
}

.side-menu {
    margin: 0;
    padding: 0;
}

.side-menu li {
    display: block;
    margin-bottom: 15px;
}

.side-menu li a {
    font-size: 18px;
    color: #fff;
}

.side-menu li a:before {
    content: "\00B7";
    margin-right: 10px;
}

.side-menu li a.active:before {
    content: "\003C";
    margin-right: 10px;
}

.side-menu li a.active {
    font-size: 20px;
    font-weight: 700;
    color: #ff0041;
}

.side-menu li a:hover {
    color: #ff0041;
}

.item-game {
    display: block;
    width: 100%;
    position: relative;
}

.img-thumb-game {
    display: block;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
}

.hover-scale:hover .object-fit-cover {
    transform: scale(1.1);
}

.object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out 0s;
}

.caption-game {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.caption-game h3 {
    font-size: 18px;
    margin: 0 0 0px 0;
    color: #ff0041;
}

.caption-game span {
    color: #fff;
    font-size: 15px;
}

.item-game:hover .hover-opacity {
    top: 0;
}

.hover-opacity {
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(255, 0, 65, 0.8);
    display: flex;
    flex: 1;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out 0s;
}

.hover-opacity h3 {
    font-size: 15px;
    margin: 0;
    color: #fff;
}

.caption-abs {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 10px 15px;
    background: linear-gradient(2.86deg, rgba(0, 0, 0, 0.5) 30.79%, rgba(0, 0, 0, 0) 97.76%);
    backdrop-filter: blur(4px);
}

.caption-abs h3 {
    font-size: 15px;
    margin: 0;
    color: #fff;
}

.hover-news {
    padding: 15px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.hover-news h3 {
    font-size: 17px;
}

.hover-news p {
    font-size: 14px;
    color: #fff;
}

#custom-pagination {
    text-align: center;
}

#custom-pagination ul {
    display: inline-block;
}

#custom-pagination.light-theme a,
#custom-pagination.light-theme span {
    display: flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #ff0041;
    box-sizing: border-box;
    border-radius: 5px;
    color: #ff0041;
    background: transparent;
}

#custom-pagination.light-theme .current {
    background: #ff0041;
    color: #FFF;
    box-shadow: none;
    cursor: default;
}

.pagination {
    text-align: center;
}

.pagination ul {
    padding: 0;
}

.pagination ul li {
    display: inline-block;
    margin: 0 3px;
}

.pagination ul li a {
    display: flex;
    width: 37px;
    height: 37px;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #ff0041;
    box-sizing: border-box;
    border-radius: 5px;
    color: #ff0041;
}

.pagination ul li:hover a,
.pagination ul li.actived a {
    background: #ff0041;
    color: #fff;
}

.profile-detail-info {
    display: flex;
    flex: 1;
    justify-content: space-between;
    margin-top: -65px;
    align-items: flex-end;
}

.profile-detail-img {
    display: flex;
    align-items: flex-end;
}

.thumb-profile {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.caption-profile h3 {
    font-size: 18px;
    margin: 0;
}

.caption-profile span.gender-loc {
    font-size: 15px;
}

.caption-profile p.number-hp {
    font-size: 15px;
    margin: 0;
    color: #ff0041;
}

.koin-profile-info {
    display: flex;
    align-items: center;
}

.raja-koin-info-head {
    display: flex;
    align-items: center;
    width: auto;
    margin-right: 15px;
}

.raja-koin-info-head img {
    max-width: 35px;
    margin-right: 5px;
}

.raja-koin-info-head .caption_raja_koin {
    display: flex;
    flex-direction: column;
}

.raja-koin-info-head .caption_raja_koin span {
    font-size: 16px;
    color: #ff0041;
    line-height: 20px;
    font-weight: 500;
}

.raja-koin-info-head .caption_raja_koin span.jml_raja_point {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.koin-section-info {
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    background: #ff0041;
    padding: 10px;
    height: 35px;
}

.koin-section-info img {
    max-width: 35px;
}

.koin-section-info span.number-koin {
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    margin-left: 15px;
}

.caption-detail-profile {
    display: block;
    margin-top: 20px;
}

.caption-detail-profile p {
    margin: 0;
}

.flex-end-button {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.red-button-lead.leaderboard {
    background: url(../img/icon-leaderboard.png) #ff0041 15px center no-repeat;
    background-size: 40px;
    padding-left: 40px;
}

.red-button-lead.winner {
    background: url(../img/icon-winner.png) #ff0041 15px center no-repeat;
    background-size: 40px;
    padding-left: 45px;
}

.red-button-lead {
    display: inline-block;
    color: #fff;
    width: 100%;
    max-width: 250px;
    text-align: center;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 15px;
    background: #ff0041;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    border: none !important;
    box-shadow: 0px 5px 16px 0px rgb(0 0 0 / 23%);
    -webkit-box-shadow: 0px 5px 16px 0px rgb(0 0 0 / 23%);
    -moz-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.23);
    overflow: hidden;
    line-height: 20px;
    margin: 0 10px;
}

.red-button-lead:hover {
    color: #fff;
    box-shadow: 4px 10px 26px 5px rgb(0 0 0 / 23%);
    -webkit-box-shadow: 4px 10px 26px 5px rgb(0 0 0 / 23%);
    -moz-box-shadow: 4px 10px 26px 5px rgb(0 0 0 / 23%);
}

.lSSlideOuter .lSPager.lSGallery li,
.lSSlideOuter .lSPager.lSGallery li {
    opacity: 0.6;
}

.lSSlideOuter .lSPager.lSGallery li.active,
.lSSlideOuter .lSPager.lSGallery li:hover {
    opacity: 1;
}

.loader_gif .loadingnya {
    display: inline-block;
    max-width: 100px;
}

ul.breadcrumb {
    padding: 0px 0px 10px 0;
    list-style: none;
}

ul.breadcrumb li {
    display: inline;
    font-size: 14px;
    color: #fff;
}

ul.breadcrumb li+li:before {
    padding: 8px 3px;
    color: #9097d3;
    opacity: 0.3;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: #9097d3;
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #9097d3;
    opacity: 0.8;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff0041;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.custom-control-input {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.custom-control-label {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.group-from {
    display: block;
    margin-bottom: 15px;
}

.group-from .label-form {
    font-size: 17px;
    display: block;
    margin-bottom: 5px;
}

.input-form {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 17px;
    color: #000;
}

.search-input {
    background: url(../img/icon-search-input.png) #fff 98% center no-repeat;
    background-size: 20px;
    color: #000;
}

.categories {
    display: flex;
    justify-content: flex-start;
}

.categories #side-menu {
    width: 30%;
}

.categories .row-categories {
    display: flex;
}

.sub-category {
    color: #9097d3;
}

.row-categories img {
    padding: 20px 0 8px 20px;
}

.row-categories .title,
.row-categories .date {
    padding: 0px 0px 3px 20px;
}

.row-categories .title {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2em;
}

.row-categories .date {
    color: #ff0041;
}

.menu-name {
    color: white;
}

.categories #side-menu ul li {
    color: white;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.categories #side-menu ul li.active {
    font-size: 1.5em!important;
    color: #ff0041!important;
    list-style-image: url(../img/img-list-arrow.png)!important;
    font-weight: bold!important;
}

.content-news-update {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}

.content-news-update .item {
    padding: 10px 10px;
    position: relative;
    text-align: left;
    color: white;
    height: 255px;
}

.content-news-update .item img {
    border-radius: 10px;
}

.content-news-update .news-no-pic {
    padding: 10px 10px;
    background: #ff0041;
}

.content-news-update .item .title-box {
    width: 100%;
    height: 100px;
    background: linear-gradient(0deg, black 0%, transparent 100%);
    position: relative;
    bottom: 100px;
    padding: 25px;
    font-size: 20px;
    border-radius: 10px;
}

div#button-row {
    text-align: center;
}

#button-row li {
    list-style-type: none;
}

.post-button button {
    text-align: center;
    height: 100px;
    color: black;
    border: 4px solid black;
    background-color: #f3f3f3;
    border-radius: 10px;
    padding: 2px 10px;
}

.menuActive {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05) inset, 0 0 15px #0d6adc;
}

.content-form {
    width: 960px;
    height: auto;
    margin: 0 auto;
}

.content-form h3 {
    text-align: center;
    color: white;
}

.form-edit {
    width: 600px;
    margin: 0 auto;
    padding: 0 50px;
    color: white;
}

.form-edit form input.input-text,
.form-edit form select {
    border-radius: 20px;
    width: 100%;
    padding: 10px 20px;
    margin: 10px 0;
}

select {
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}


/* For IE10 */

select::-ms-expand {
    display: none;
}

.label-radio {
    margin-left: 5px;
}

.form-edit form input.input-radio {
    margin-top: 7px;
}

.button-submit,
.button-main {
    border-radius: 20px;
    width: auto;
    padding: 7px 45px;
    color: white;
    background: #ff0041;
    border: none;
    font-weight: bold;
}

.tab-chat ul {
    display: flex;
    list-style: none;
    padding: 0;
}

.tab-chat ul li {
    color: white;
    margin-right: 40px;
    padding: 5px 10px 5px 0px;
    position: relative;
    transition: all 0.3s ease-in-out 0s;
}

.tab-chat ul li a {
    color: white;
    font-size: 17px;
    display: block;
}

.tab-chat ul li:hover,
.active-li-chat {
    border-bottom: 2px solid #ff0041;
}

.chat,
.temanmu {
    display: flex;
    flex-wrap: wrap;
}

.user-chat {
    width: 30%;
    overflow: scroll;
}

.user-chat-online {
    display: flex;
}

.box-scroll {
    width: 1.5%;
}

.box-chat {
    margin-left: 20px;
    width: 67.5%;
    background-color: #0d6adc;
    background: #565972a6;
    position: relative;
    overflow: scroll;
}

.chat-profile-top a,
.images-detail-profile {
    display: flex;
    align-items: center;
    background: #565972a6;
}

.images-detail-profile {
    background: transparent;
}

.chat-profile-top .chat-username,
.images-detail-profile .chat-username {
    border-bottom: none;
    padding: 5px 0;
}

.chat-profile-top .chat-username .user-akun {
    font-size: 14px;
}

.online-info {
    font-size: 13px;
    color: #A1A1A2 !important;
}

.chat-profile-top .chat-userfoto {
    max-width: 60px;
}

.box-chat ul {
    list-style: none;
    padding: 0;
    position: relative;
}

.box-inner-chat {
    overflow: scroll;
}

.images-detail-profile .chat-username .user-akun {
    font-size: 26px;
}

.images-detail-profile .chat-userfoto {
    width: 150px;
    margin-right: 20px;
}

.profile-info {
    display: block;
    margin-top: 0px;
    font-size: 13px;
    line-height: 1.5em;
    padding: 15px 20px;
}

.profile-info h3,
.box-group-chat h3 {
    font-size: 17px;
    margin: 0 0 5px 0;
    font-weight: 700;
    color: #ff0041;
}

profile-info .bio {
    color: #fff;
}

.box-group-chat {
    display: block;
    padding: 20px;
    margin: 20px 0;
    background: #171a3d;
}

.row-group-chat {
    display: block;
    margin-bottom: 15px;
    border-bottom: 1px solid #333755;
    padding-bottom: 5px;
}

.row-group-chat:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.images-detail-profile .chat-userfoto img {
    width: 100%;
}

.box-chat ul li {
    position: relative;
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: left;
}

.box-chat ul li.right-text {
    text-align: right;
}

.box-chat ul li.center-text {
    text-align: center;
}

.row-group-chat .chat-userfoto {
    width: 100px;
}

.row-group-chat .user-akun {
    font-size: 16px;
}

.row-group-chat .chat-username-online {
    border-bottom: none;
}

.chat-user-box,
.chat-user-box a {
    display: flex;
    align-items: center;
    width: 100%;
}

.chat-userfoto {
    width: 30%;
}

.chat-userfoto img {
    border-radius: 50%;
    padding: 10px;
}

.chat-username,
.chat-username-online {
    width: 70%;
    height: auto;
    padding: 20px 10px;
    border-bottom: 1px solid white;
}

.chat-username p,
.chat-username-online p {
    margin: 0;
    color: white;
}

.user-chat ul {
    padding: 0;
    margin: 0;
}

.user-akun {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 5px!important;
}

.chat-username p span.pesan {
    width: auto;
    height: auto;
    background: #ff0041;
    padding: 2px 7px 3px;
    border-radius: 17px;
    margin-left: 5px;
    font-weight: bold;
}

.chat-grup-active {
    background: #565972a6;
    border-bottom: none!important;
}

.chat-grup-active .chat-username {
    border-bottom: none!important;
}

.chat-container-left {
    display: inline-block;
    width: auto;
    background: white;
    padding: 15px 23px;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    max-width: 70%;
    word-wrap: break-word;
}

.chat-container-left .text-chat-container {
    color: #555555;
}

.chat-container-right {
    display: inline-block;
    background: #ff0041;
    color: white;
    padding: 15px 23px;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    margin-left: auto;
    position: relative;
    max-width: 70%;
    word-wrap: break-word;
}

.user-chat-container,
.user-chat-container-w {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0;
    color: #ff0041;
}

.user-chat-container-w {
    color: #2694ab;
}

.time {
    color: white;
}

.box-chat-fixed {
    width: 100%;
    background: #171a3d;
    padding: 15px;
}

.input-box-chat {
    margin: 0;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
    position: relative;
}

.input-box-chat .input-form {
    border: none;
    padding: 0;
    padding-right: 90px;
}

.button-send-chat {
    background: none;
    border: none;
    width: 40px;
    position: absolute;
    right: 10px;
    top: 7px;
}

.notif-user-join,
.date-chat-today {
    background: #6a6f9b;
    position: relative;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    color: #000000;
}

.dot-notif {
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    color: red;
    font-size: 1.5em;
}

.gallery-games {
    display: flex;
    justify-content: flex-start;
}

.main-gallery-games {
    width: 65%;
}

.detail-gallery-games {
    width: 35%;
    padding-left: 20px;
    color: white;
}

.detail-gallery-games .title {
    font-size: 1.5em;
    margin: 10px 0 5px;
}

.detail-gallery-games .date {
    font-size: 1em;
    color: #ff0041;
    margin: 0px 0 10px;
}

.detail-gallery-games p {
    font-size: 1.2em;
}

.gallery-image-kecil {
    display: flex;
    justify-content: space-around;
    height: auto;
}

.gallery-image-kecil .box {
    padding: 10px 10px 10px 0px;
}

.gallery-image-kecil .left {
    padding: 10px 5px 10px 0!important;
}

.gallery-image-kecil .right {
    padding: 10px 0px 10px 0px!important;
}

.gallery-image-utama {
    overflow: hidden;
}

.button-main {
    width: 165px;
    padding: 7px 30px;
    margin: 40px auto;
}

.title-about-game {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.about-game {
    color: white;
    margin: 20px 0;
}

.about-game p {
    margin: 20px 0;
    font-size: 1.2em;
}

.form-search {
    width: 100%;
    margin: 0 auto;
    color: white;
    margin: 40px 0 20px;
}

.form-search form input {
    width: 100%;
    padding: 10px 20px;
    border-radius: 20px;
}

.form-search form {
    margin: 20px 0;
}

.form-search p {
    font-size: 1.2em;
}

.result p {
    color: white;
    margin: 5px 0;
}

.result-title {
    color: #ff0041;
    font-weight: 700;
    font-size: 1.2em;
}

.item-result {
    margin: 5px 0;
}

.item-result .selengkapnya {
    text-align: end;
}

.item-result .selengkapnya a {
    color: #ff0041;
}

.headline-profile-page {
    margin: 40px 0;
}

.profile-name {
    display: flex;
    justify-content: flex-start;
    margin-top: -150px;
}

.profile-name .name {
    width: 80%;
    display: flex;
    margin-top: 120px;
}

.img-profile {
    width: 20%;
    padding: 30px;
}

.akun-name {
    width: 80%;
    color: white;
    font-size: 1.2em;
}

.deposit {
    background: aquamarine;
    margin: 5px 0 30px;
    border-radius: 50px;
    width: 30%;
}

.akun-name .nama {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
}

.akun-name .no-hp {
    color: #ff0041;
}

.deposit {
    display: flex;
    background: #ff0041;
    margin: 5px 0 30px;
    border-radius: 50px;
    width: 30%;
}

.deposit .coin img {
    width: 80%;
    padding: 10px;
    height: auto;
    margin: 7px 10px 3px;
}

.deposit .number {
    width: 70%;
    color: white;
    font-size: 40px;
    padding: 13px;
    font-weight: bold;
}

.profile-desc {
    color: white;
}

.kupon {
    display: flex;
    justify-content: flex-start;
}

.kupon ul {
    margin: 0;
    padding: 0;
}

.button-edit-profile {
    text-align: center;
    padding: 5px 20px;
    border: 1px solid white;
    float: right;
    color: white;
    border-radius: 50px;
    font-size: 1.5em;
    font-weight: bold;
}

.text-tukar {
    margin-top: 60px;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
}

.title-chat-box {
    display: flex;
    position: relative;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    color: #ff0041;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 10%), 0 1px 3px 0 rgb(0 0 0 / 8%);
}

.title-chat-box .left {
    left: 14px;
    top: 0;
    font-size: 26px;
    color: #000;
}

.title-chat-box .left {
    height: 40px;
    display: flex;
    align-items: center;
    position: absolute;
}

.centerPage h3 {
    margin: 0;
    font-size: 18px;
    color: #ff0041;
}


/*------------- footer -----------------*/

footer {
    text-align: center;
    width: 100%;
    padding: 20px;
    margin-top: 50px;
    background: #4a4d90;
}

footer p {
    font-size: 18px;
    color: #fff;
    margin: 0;
}


/* ------------------------- popup style -----------------------*/

.fancybox-inner {
    overflow: inherit !important;
}

.fancybox-skin {
    background: transparent;
}

.section-popup-body {
    width: 500px;
    border-radius: 20px;
    background: #fff;
    padding: 0;
    border-bottom: 5px solid #ff0041;
}

.section-popup-choose {
    width: 500px;
    border-radius: 20px;
    background: #fff;
    padding: 10px;
}

.list-avatar {
    width: 100%;
    max-height: 400px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

.avatar-item {
    cursor: pointer;
    width: 95px;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease-in-out 0s;
}

.avatar-item.active,
.avatar-item:hover {
    border: 1px solid #e62c23;
}

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

.modal-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.icon-poin-popup {
    width: 80px;
    position: relative;
    left: 0;
    top: -30px;
    object-fit: contain;
}

.logo-telkomsel {
    width: 100px;
    object-fit: contain;
}

.modal-body {
    padding: 0 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 15px;
}

.modal-body p {
    margin: 0;
    color: #000;
}

.big_teks {
    border-bottom: dashed 2px #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.big_teks h3 {
    font-size: 26px;
    color: #282828;
    margin: 0;
}

.big_teks h1 {
    font-size: 42px;
    color: #da251d;
    margin: 0;
}

.button_confirm {
    display: block;
    padding-top: 5px;
    text-align: center;
}

.button_confirm a {
    display: inline-block;
    color: #fff;
    text-align: center;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 17px;
    background: #ff0041;
    font-weight: 500;
    margin: 15px 5px;
    width: 100px;
    box-shadow: 0px 5px 16px 0px rgb(0 0 0 / 23%);
    -webkit-box-shadow: 0px 5px 16px 0px rgb(0 0 0 / 23%);
    -moz-box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.23);
}

.button_confirm a.no-btn {
    background: #ededed;
    color: #04121d;
}

.red-text {
    color: #ff0041 !important;
}

html>body div.tableContainer {
    overflow: hidden;
}

div.tableContainer {
    clear: both;
    overflow: auto;
}

div.tableContainer table {
    width: 100%;
}

table {
    border-collapse: collapse;
}

html>body tbody.scrollContent {
    width: 100%;
}

thead.fixedHeader {
    background: #4f5052;
    margin-bottom: 15px;
}

thead.fixedHeader tr {
    position: relative;
}

thead.fixedHeader th:first-child {
    border-radius: 20px 0 0 20px;
}

thead.fixedHeader th:last-child {
    border-radius: 0px 20px 20px 0px;
    text-align: right;
}

thead.fixedHeader th {
    font-weight: normal;
    padding: 10px 20px;
    text-align: left;
    font-weight: bold;
    color: #fff;
    border: none;
}

html>body tbody.scrollContent td {
    text-align: left;
    border-bottom: 1px solid #d2d2d2;
    font-weight: 500;
    position: relative;
}

tbody.scrollContent td,
tbody.scrollContent tr.normalRow td {
    background: #FFF;
    border-bottom: none;
    border-left: none;
    padding: 10px;
    color: #4F5050;
}

html>body tbody.scrollContent td+td {
    text-align: right;
    padding: 1px 15px 1px 1px;
}

.info_left {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: -5px;
}

.extrasmall {
    font-size: 8px;
}

html>body tbody.scrollContent td.arrownya:after {
    content: '';
    background: url(../img/arrow_table.png) no-repeat;
    background-size: 8px;
    position: absolute;
    right: 0px;
    top: 20px;
    width: 15px;
    height: 25px;
}

.icon_kupon {
    max-width: 25px;
    display: inline-block;
    vertical-align: middle;
}

.sticky-widget {
    position: sticky;
    top: 100px;
}

#tnc-accodion {
    margin-bottom: 20px;
}

#tnc-accodion .items {
    margin-bottom: 30px;
    text-align: left;
    background: #f3f9ff;
    border-radius: 30px;
    padding: 10px;
    border: 1px solid #E1E1E1;
    color: #000;
}

#tnc-accodion h4.page {
    font-size: 18px;
    text-align: left;
    margin: 0;
    position: relative;
}

#tnc-accodion h4.page:after {
    content: " ";
    background: url(../img/arrow_accordion.png) no-repeat;
    width: 25px;
    height: 25px;
    background-size: 25px;
    position: absolute;
    right: 0px;
    top: 5px;
    transition: all 0.3s ease-in-out 0s;
}

#tnc-accodion h4.page.active:after {
    content: " ";
    background: url(../img/arrow_accordion.png) no-repeat;
    width: 25px;
    height: 25px;
    background-size: 25px;
    position: absolute;
    right: 0px;
    top: -10px;
    transform: rotate(180deg);
}

#tnc-accodion .content {
    display: none;
    border-top: 1px solid #d8e4f7;
    padding: 15px 0;
}

#tnc-accodion .content p {
    font-size: 18px;
    color: #005baa;
    display: inline-block;
    margin: 0;
}

#tnc-accodion .content ul li,
#tnc-accodion .content ol li {
    padding-bottom: 10px;
}

.table_game {
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    -webkit-box-shadow: 3px 5px 25px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 3px 5px 25px 0 rgba(0, 0, 0, .1);
    box-shadow: 3px 5px 25px 0 rgb(0 0 0 / 10%);
    background: #fff;
}

.table_game table {
    width: 100%;
}

.table_game table tr th {
    font-weight: bold;
    color: #2a1139;
    font-size: 15px;
}

.table_game table tr td.arrownya {
    padding-right: 50px;
}

.table_game table tr td {
    color: #2a1139;
    font-size: 13px;
    padding: 5px 0;
    font-weight: 500;
    position: relative;
}

.table_game table tr td.arrownya:after {
    content: '';
    background: url(../img/arrow_table.png) no-repeat;
    background-size: 12px;
    position: absolute;
    right: 20px;
    top: 8px;
    width: 15px;
    height: 25px;
}

.cirlce-notif {
    border: 1px solid #171a3d;
    width: 25px;
    height: 25px;
    display: flex;
    padding: 3px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ff0041;
    font-size: 10px;
    position: absolute;
    right: -7px;
    top: -10px;
}

.avatar-form {
    display: flex;
    flex: 1;
    align-items: center;
}

.avatar-preview {
    max-width: 120px;
    margin-right: 20px;
}

.number-leader {
    display: flex;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #e62c23;
    color: #fff;
    position: absolute;
    left: -5px;
    top: 0;
}

.avatar-leader {
    width: 60px;
    position: relative;
    margin-left: 10px;
}

.avatar-leader img {
    border-radius: 50%;
}

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

.flex_table p {
    font-size: 15px;
    font-weight: bold;
    margin: 0;
    margin-left: 10px;
}

.numberPointRaja {
    font-size: 15px;
    font-weight: bold;
}

.title.user-1 {
    color: teal;
}

.title.user-2 {
    color: blue;
}

.title.user-3 {
    color: blueviolet;
}

.title.user-4 {
    color: brown;
}

.title.user-5 {
    color: chocolate;
}

.title.user-6 {
    color: crimson;
}

.title.user-7 {
    color: darkmagenta;
}

.title.user-8 {
    color: hotpink;
}

.title.user-9 {
    color: maroon;
}

.title.user-10 {
    color: olive;
}

.title.user-11 {
    color: orangered;
}

.title.user-12 {
    color: red;
}

.title.user-13 {
    color: royalblue;
}

.title.user-14 {
    color: #004764;
}

.title.user-0 {
    color: #702963;
}

.backbutton {
    font-size: 30px;
    margin-left: 8px;
    margin-right: 8px;
    display: none;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */

@media only screen and (max-width: 480px) {
    /* Mobile styles */
}

@media screen and (min-width:481px) and (max-width:1024px) {
    /* Tablet styles */
}

@media only screen and (min-width: 1140px) {
    /* Desktop styles */
}