* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.title {
    color: #000000;
}

.image-rotate-horizontal {
    -moz-animation: spin-horizontal 3s infinite linear;
    -o-animation: spin-horizontal 3s infinite linear;
    -webkit-animation: spin-horizontal 3s infinite linear;
    animation: spin-horizontal 3s infinite linear;
}

@-moz-keyframes spin-horizontal {
    0% {
        -moz-transform: rotateY(0deg);
    }
    100% {
        -moz-transform: rotateY(360deg);
    }
}

@keyframes spin-horizontal {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@-ms-keyframes spin-horizontal {
    0% {
        -ms-transform: rotateY(0deg);
    }
    100% {
        -ms-transform: rotateY(360deg);
    }
}

@-o-keyframes spin-horizontal {
    0% {
        -o-transform: rotateY(0deg);
    }
    100% {
        -o-transform: rotateY(360deg);
    }
}

@-webkit-keyframes spin-horizontal {
    0% {
        -webkit-transform: rotateY(0deg);
    }
    100% {
        -webkit-transform: rotateY(360deg);
    }
}

.loader {
    /* border: 6px solid #f3f3f3; */
    /* Light grey */
    /* border-top: 6px solid #d49939; */
    /* Blue */
    /* border-radius: 50%; */
    /* width: 60px; */
    /* height: 60px; */
    /* background-image: url("../img/grab_order_loader.gif"); */
    /* animation: spin 1s linear infinite; */
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lightgreen {
    color: #000000;
}

.green2 {
    color: #51BBED;
}

body {
    height: 100%;
    position: relative;
}

.primary-button {
    background-color: #d49939;
    border-color: #d49939;
}

.gap-between-div {
    margin-top: 12px;
}

.splash-container {
    justify-content: center;
    display: flex;
}

.splash-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top-header {
    position: relative;
    padding: 20px;
    z-index: 99;
    height: 60px;
    width: 100%;
    transition: 0.5s;
    background-image: linear-gradient(to bottom, #f5f5f5, #ffffff);
}

.top-logo {
    color: #ffffff;
    font-size: 25px;
}

.top_marquee {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    background: #ffffff !important;
    padding: 10px 20px;
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
}

.top_marquee i {
    color: #51BBED;
    z-index: 10;
    font-size: 18px;
    margin-right: 10px;
    margin-left: 20px;
}

.file-upload {
    display: none;
}

.p-image {
    border-radius: 50%;
    border: 1px solid white;
    background-color: #000000;
    padding: 2px;
    position: absolute;
    top: 111px;
    left: 58px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 20px;
    height: 20px;
    padding: 0px 3px;
}

.p-image:hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.upload-button {
    font-size: 10px;
}

.upload-button:hover {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #999;
}

.ims-main-page {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    /* background-image: url("../img/main_bg.png");
    background-repeat: no-repeat;
    background-size: cover; */
    min-height: calc(100vh);
    background-color: #ffffff;
    /* height: calc(var(--vh, 1vh) * 100); */
}

.ims-main-wrapper {
    width: 375px;
    position: relative;
    /* background-image: url("../img/wallpaper.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: calc(100vh); */
}

.ims-wheel-wrapper1 {
    padding-left: 14px;
    padding-right: 7px;
    width: 50%;
    min-height: 150px;
}

.ims-wheel-wrapper2 {
    padding-right: 14px;
    padding-left: 7px;
    width: 50%;
}

.ims-wheel-content1 {
    margin-bottom: 4px;
    font-size: 12px;
    padding: 15px;
    min-height: 75px;
}

.ims-wheel-content2 {
    text-align: center;
    min-height: 76px;
    font-size: 12px;
    padding-top: 8px;
}

.room-btn {
    padding: 20px;
    border: none;
    background: linear-gradient( to right, #c7cccf 0%, #ced2d5 25%, #e5e5e5 50%, #dcdcdc 75%, #c3c7ca 100%);
    color: #ffffff;
    font-weight: 600;
    border-radius: 5px;
    font-size: 20px;
}

.profile-container {
    /* background: linear-gradient(to right, #FF8B00 0%, #FF5D00 100%); */
    position: relative;
    /* padding: 0px 10px 0px 10px; */
    width: 100%;
}

.setting-icon {
    position: absolute;
    right: 0px;
}

.fa .fa-chevron-left {
    font-size: 20px !important;
}

.back-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 20px !important;
}

.avatar-image {
    background-color: #ffffff;
    /* padding: 5px; */
    width: 110px;
    height: 60px;
    /* border: 2px solid #ffc107; */
}

.profile-image {
    text-align: center;
    width: 25%;
}

.profile-info {
    width: 75%;
}

.profile-avatar {
    margin: 10px 0 0 0;
    display: flex;
    width: 100%;
}

.avatar-image img {
    width: 100%;
    height: 100%;
}

.profile-username {
    margin-top: 8px;
    font-size: 14px;
    margin-bottom: 5px !important;
}

.profile-phone {
    font-size: 14px;
}

.ims-datetime-container {
    display: flex;
    padding: 15px;
}

.date-data {
    color: black;
    width: 40%;
}

.time-data {
    color: #ffffff;
    margin: auto;
    padding-top: 8px;
    font-size: 25px;
}

.award-container,
.pools-container {
    margin-top: 4px;
}

.award-wrapper {
    height: 70px;
    /* border-radius: 15px; */
    display: flex;
    /* border: 1px solid #f5f5f5; */
}

.rank-wrapper {
    min-height: 76px;
    /* border-radius: 15px; */
    display: flex;
    /* border: 1px solid #f5f5f5; */
}

.award-data1 {
    color: #ffffff;
}

.rank-data1 {
    color: #ffc107;
}

.rank-data2 {
    color: #ffffff;
}

.award-data2 {
    font-size: 14px;
    margin-top: 8px;
    color: #94887f;
}

.award-first {
    width: 50%;
    text-align: center;
    padding-left: 14px;
    padding-right: 7px;
}

.award-second {
    width: 50%;
    text-align: center;
    padding-right: 14px;
    padding-left: 7px;
}

.award-first-inner,
.award-second-inner {
    padding: 10px 0px;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
}

.network-first-inner,
.network-second-inner {
    padding: 20px 0px;
    height: 100%;
    background-color: rgb(0, 0, 0, 0.65);
}

.pools-wrapper {
    flex-wrap: wrap;
    display: flex;
    background-color: #ffffff;
    padding: 10px;
    height: 75px;
}

.pools-image {
    min-height: 30px;
    width: 30%;
    text-align: center;
}

.pools-amount {
    font-size: 1em;
    min-height: 30px;
    width: 70%;
}

.pools-data {
    margin-top: 15px;
}

.pools-total-label {
    font-weight: 100 !important;
}


/* .award-third {
    width: 33.33%;
    text-align: center;
    margin-top: 15px;
} */

.star-achieve-label,
.pool-income-label {
    font-size: 14px;
    color: #ffc107;
}

.ims-wheel-container {
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.wheel-image {
    position: absolute;
    top: 32%;
    z-index: 0;
    left: 28%;
}

.ims-wheel-image {
    position: relative;
    width: 100%;
    background-color: rgb(0, 0, 0, 0.65);
    /* box-shadow: 1px 1px #eaeaea; */
    border-radius: 0.625rem;
    /* border: 1px solid #f5f5f5; */
    min-height: 164px;
    /* min-height: 165px; */
    text-align: center;
}

.wheel-room-label {
    color: black;
}

.ims-wheel-content1,
.ims-wheel-content2 {
    width: 100%;
    background-color: rgb(0, 0, 0, 0.65);
    /* box-shadow: 1px 1px #eaeaea; */
    border-radius: 0.625rem;
    /* border: 1px solid #f5f5f5; */
}

.ims-item-container {
    margin: 0px 7px;
}

.ims-item-wrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 10px;
}

.ims-item-outer {
    width: 25%;
    padding: 7px 7px;
}

.ims-item {
    height: 90px;
    padding: 8px 0px 0px 0px;
    background-color: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
}


/* .ims-item1 {
    margin-left: 4px;
    margin-right: 2px;
}

.ims-item2 {
    margin: 0px 2px;
}

.ims-item3 {
    margin: 0px 2px;
}

.ims-item4 {
    margin-left: 2px;
    margin-right: 4px;
}

.ims-item5 {
    margin-left: 4px;
    margin-right: 2px;
}

.ims-item6 {
    margin: 0px 2px;
}

.ims-item7 {
    margin: 0px 2px;
}

.ims-item8 {
    margin-left: 2px;
    margin-right: 4px;
} */

.ims-item-label {
    margin-top: 5px;
    font-size: 14px;
    color: white;
}

.pool-income-value {
    font-size: 14px;
    color: #ffffff;
}

.setting-container {
    padding: 10px 14px;
}

.setting-detail-wrapper {
    color: #ffffff;
}

.setting-label {
    font-size: 20px;
}

.setting-label-in,
.setting-label-down {
    font-size: 14px;
    background-color: rgb(0, 0, 0, 0.65);
    padding: 13px;
    display: flex;
    border-radius: 0.625rem;
}

.setting-label-language {
    font-size: 16px;
    background-color: rgb(0, 0, 0, 0.65);
    padding: 13px;
    display: flex;
    border-radius: 0.625rem;
}

.setting-top-label {
    color: #000000;
    font-size: 18px;
    padding: 20px 30px 0px 30px;
}

.label-form-control {
    color: #ffffff;
    font-size: 16px;
}

.wallet-container {
    background: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
    padding: 10px;
}

.wallet-wrapper {
    display: flex;
    /* padding: 10px; */
}

.dtw-form {
    padding: 8px;
}

.qr-container {
    border: 3px solid white;
    display: flex;
}

.report-container {
    background-image: url("../../img/report_background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 112px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding: 0px 1rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 16px;
}

.network-top-label {
    font-size: 14px;
    color: #ffffff;
    font-weight: 900;
}

.invitation-container {
    color: #ffffff;
    text-align: center;
}

.invitation-label {
    font-size: 14px;
}

.wallet-label {
    font-size: 16px;
    color: #ffffff;
    width: 40%;
    text-align: left;
}

.wallet-amount-label {
    font-weight: 900;
    font-size: 30px;
    color: #ffffff;
    width: 60%;
    text-align: right;
}

.wallet-represent-label {
    margin-top: -30px;
    font-size: 16px;
    position: absolute;
    right: 40px;
    font-weight: 900;
    color: #ffffff;
    text-align: right;
    background: #ffffff;
    color: #000000;
    padding: 9.5px;
    border-radius: 2px;
    margin-top: -43px;
}


/* .room-container {
    display: flex;
    padding: 10px;
}

.room-wrapper-first {
    width: 20%;
    height: 80px;
    border: 2px solid #ffffff;
} */

.room-item {
    margin-top: 2px;
    padding-top: 1px;
    padding-bottom: 20px;
    position: relative;
}

.room-item-wrapper {
    padding: 2px 10px;
    display: flex;
    text-align: center;
}

.room-item-box {
    padding: 2px;
    position: relative;
    width: 20%;
}

.room-label-display {
    color: #ffc107;
}

.room-item-box-center-outside {
    width: 60%;
    padding: 2px;
    position: relative;
    margin-top: -4px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.room-item-box-center-inner {
    min-height: 80px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.room-item-inside {
    min-height: 65px;
    border: 1px solid #ffffff;
    border-radius: 0.625rem;
    width: 100%;
    position: relative;
}

.room-item-inside-first {
    min-height: 65px;
    border: 1px solid #ffffff;
    border-radius: 0.625rem;
    width: 100%;
    margin-top: -4px;
    position: relative;
}

.room-item-inside-second {
    min-height: 65px;
    border: 1px solid #ffffff;
    border-radius: 0.625rem;
    width: 100%;
    margin-top: 4px;
    position: relative;
}

.support-center-label {
    padding: 30px;
    font-size: 18px;
    color: #ffffff;
}

.support-center-mail {
    font-size: 18px;
    color: #ffffff;
    padding: 0px 30px;
    text-decoration: underline;
}

.right-icon {
    position: absolute;
    right: 12%;
    margin-top: 3px;
}

.sub-account-right-icon {
    position: absolute;
    right: 12%;
    margin-top: -5px;
}

.logout-btn {
    width: 100%;
    border: 3px solid #ffffff;
    padding: 10px;
    background: transparent;
    color: #ffffff;
    margin-top: 20px;
    border-radius: 0.625rem;
}

.live-chat-btn {
    border-radius: 0.625rem;
    width: 100%;
    border: 3px solid #ffffff;
    padding: 10px;
    background: transparent;
    color: #ffffff;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 900;
}


/*
.country-box {
    position: absolute;
    /* border-left: 1px solid white;
    border-top: 1px solid white; 
    width: 30px;
    height: 20px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}

.country-box-first {
    position: absolute;
    /* border-left: 1px solid white;
    border-top: 1px solid white; 
    width: 30px;
    height: 20px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}

.country-box-second {
    position: absolute;
    /* border-left: 1px solid white;
    border-top: 1px solid white; 
    width: 30px;
    height: 20px;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
}
*/

.room-container-box {
    width: 65px;
    padding: 5px;
    overflow: hidden;
    border-radius: 50%;
    height: 65px;
    background-color: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
}

.room-container-box img {
    width: 75px;
    height: 75px;
}

.deposit-button-container {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 4% 0%;
}

.deposit-button-wrapper {
    width: 33.33%;
    padding: 0px 2%;
}

.deposit-button {
    width: 100%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 0;
    background-color: #000000;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
}

.wallet-outer-wrapper {
    padding: 2px 0px;
    /* background-color: rgb(0, 0, 0, 0.65); */
    margin-top: 10px;
    border-radius: 0.625rem;
}

.wallet-second-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: -20px;
    background-color: rgb(0, 0, 0, 0.65);
}

.wallet-inner-wrapper {
    width: 33.33%;
    padding: 0px 2%;
}

.sub-account-row1-first-wrapper {
    width: 25%;
    padding: 0px 4%;
}

.sub-account-row1-second-wrapper {
    width: 75%;
    padding: 0px 2%;
}

.main-account-row1-first-wrapper {
    width: 35%;
    padding: 0px 2%;
}

.main-account-row1-second-wrapper {
    width: 65%;
    padding: 0px 2%;
}

.sub-account-row2-first-wrapper {
    width: 20%;
    padding: 0px 4%;
}

.sub-account-row2-second-wrapper {
    width: 35%;
    padding: 0px 2%;
}

.sub-account-row2-third-wrapper {
    width: 35%;
    padding: 0px 2%;
}

.sub-account-row2-fourth-wrapper {
    width: 10%;
    padding: 0px 2%;
}

.report-row-first-wrapper {
    width: 30%;
    padding: 0px 4%;
}

.report-row-second-wrapper {
    width: 30%;
    padding: 0px 2%;
}

.report-row-third-wrapper {
    width: 40%;
    padding: 0px 2%;
}

.ticket-row-first-wrapper {
    width: 90%;
    padding: 0px 4%;
}

.ticket-row2-first-wrapper {
    width: 75%;
    padding: 0px 4%;
}

.ticket-row2-second-wrapper {
    width: 25%;
    padding: 0px 4%;
    text-align: center;
}

.report-label {
    color: #ffc107;
    font-weight: 900;
    font-size: 10px;
}

.setting-wallet-address-container {
    display: flex;
    width: 100%;
}

.setting-wallet-address-wrapper1 {
    width: 70%;
}

.setting-wallet-address-wrapper2 {
    width: 30%;
}

.room-user-info-data {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 1px 5px;
}

.room-current-time,
.room-countdown,
.room-balance {
    width: 33.333333%;
    padding: 10px 5px;
}

.room-current-time-box,
.room-countdown-box,
.room-balance-box {
    min-height: 50px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    background-color: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
    padding: 10px;
}

.video-bg {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 2147483647;
}

.video-wrapper {
    height: 100vh;
    width: 100vw;
    top: 0px;
    left: 0px;
    padding: 0px;
    position: fixed;
}

.signup_label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.gameplay-label {
    padding-top: 6px;
}

.gameplay-label span {
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
}

.img-center {
    text-align: center;
}

.inside-logo {
    /* margin-bottom: 10px; */
    height: 60px;
}

.my-team-container {
    width: 100%;
}

.team-outer-box,
.my_teamdt_outer_box {
    padding: 5px 0px;
}

.team-inner-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, 0.65);
    padding: 11px;
    font-size: 14px;
    font-weight: 900;
    border-radius: 0.625rem;
}

.team-box-title,
.team-box-total {
    width: 40%;
}

.team-box-total {
    text-align: center;
}

.team-box-icon {
    width: 20%;
    text-align: right;
    font-size: 20px;
}

.my_teamdt_inner_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, 0.65);
    padding: 5px;
    font-size: 12px;
    border-radius: 0.625rem;
}

.my_teamdt_header_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.team-dt-times,
.team-dt-name {
    width: 50%;
    word-break: break-all;
}

.team-dt-name {
    text-align: left;
    padding: 5px;
}

.team-dt-times {
    text-align: right;
    padding: 5px;
}

.team-dt-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.team-dt-avatar-box {
    width: 33.333333%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.team-dt-info {
    display: flex;
    flex-wrap: wrap;
    padding: 5px;
    width: 100%;
}

.team-dt-inner {
    width: 33.333333%;
    word-break: break-all;
    text-align: left;
}

.dt-label {
    padding: 5px 2px;
    font-size: 10px;
    font-weight: 900;
    color: #ffc107;
}

.dt-info-name {
    padding: 5px 2px;
    text-align: left;
}

.dt-info {
    padding: 5px 2px;
    text-align: left;
}

.icon-input {
    display: flex;
}

.icon-wrapper {
    text-align: center;
    width: 12%;
    background-color: #aaa;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 2px 0px 0px 2px;
}

.icon-wrapper i {
    font-size: 20px;
    color: #ffffff;
}

.input-wrapper {
    width: 88%;
}

.rank-contain {
    color: #ffffff;
    padding: 5px 5px;
}

.rank-inner-contain {
    background-color: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
}

.show-accordian {
    display: block;
}

.hide-accordian {
    display: none;
}

.rank-header {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.rank-header-box {
    width: 40%;
    font-weight: 900;
    font-size: 12px;
}

.rank-header-display-box {
    width: 40%;
    font-weight: 900;
    font-size: 12px;
}

.rank-header-data-box {
    width: 40%;
    font-weight: 900;
    font-size: 12px;
}

.rank-header-arrow {
    width: 20%;
    font-weight: 900;
    font-size: 16px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
}

.rank_box {
    padding: 10px 0px;
}

.rank_inner_box {
    padding: 5px 20px;
}

.big_star {
    width: 20px;
    margin: 3px;
}

.small_star {
    width: 20px;
    margin: 3px;
    display: inline;
}

.my_team_summary {
    padding: 5px 0px;
    width: 100%;
}

.my_team_summary_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
    width: 100%;
    border-radius: 0.625rem;
}

.my_team_summary_total_group,
.my_team_summary_direct_sponsor {
    background-color: rgb(0, 0, 0, 0.65);
    padding: 8px;
    border-radius: 0.625rem;
    width: 100%;
}

.css-font-weight {
    font-weight: 900;
}

.prize-bold {
    border: 5px solid #ff0000 !important;
    background: rgb(255, 0, 0, 0.45);
}

.last-prize-bold {
    border: 3px solid #ff0000;
    background: rgb(255, 0, 0, 0.45);
}

.orange-btn {
    background-color: #d49939;
    border-color: #d49939;
}

.winner-list {
    color: #ffffff;
}

.winner-list-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.winner-list-box {
    padding: 0px 20px;
    text-align: center;
    font-size: 16px;
}

.winner-inner-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5px 0px;
}

.winner-image-box {
    width: 20%;
}

.winner-name-box {
    width: 80%;
    text-align: left;
}

.balon1,
.balon2 {
    margin-top: 5px !important;
    margin-bottom: 25px !important;
}

.balon1 a {
    background: #d49939;
    color: #fff !important;
    border-radius: 20px 20px 3px 20px;
    display: block;
    max-width: 75%;
    padding: 7px 13px 7px 13px;
}

.balon1:before {
    content: attr(data-is);
    position: absolute;
    right: 15px;
    bottom: -1.8em;
    display: block;
    font-size: 0.75rem;
    color: #fff;
}

.balon2 a {
    background: #f1f1f1;
    color: #000 !important;
    border-radius: 20px 20px 20px 3px;
    display: block;
    max-width: 75%;
    padding: 7px 13px 7px 13px;
}

.balon2:before {
    content: attr(data-is);
    position: absolute;
    left: 13px;
    bottom: -1.8em;
    display: block;
    font-size: 0.75rem;
    color: #fff;
}

.card-position {
    right: 0px;
}

.card-container {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 6px 10px 0 rgba(0, 0, 0, 0.01);
    overflow: hidden;
    background: transparent;
}

.card-wrapper {
    background: transparent;
}

.message-box {
    margin-top: 15px;
}

.support-ticket-line-break {
    background-color: #eaeaea;
    height: 1px;
    border: none;
}

.chat-outer-box {
    width: 100%;
    color: #ffffff;
    padding: 14px;
}

.chat-inner-box {
    width: 100%;
    background-color: rgb(0, 0, 0, 0.65);
    padding: 10px;
    border-radius: 0.625rem;
}

.chat-inner-box h2 {
    text-align: center;
}

.chat-contain {
    height: 350px;
    min-height: 350px;
    overflow: auto;
    width: 100%;
    padding: 5px;
}

.chat-contain::-webkit-scrollbar {
    width: 1px;
}

.chat-contain::-webkit-scrollbar-thumb {
    background: rgba(96, 125, 139, 0.99);
}

.chat_text_box {
    width: 100%;
    margin: 10px 0px;
    padding: 10px;
}

.left-chat {
    width: 60%;
}

.left-chat-inner-box {
    background-color: #ffffff;
    color: #000000;
    text-align: left;
    width: 100%;
    border-radius: 10px 10px 10px 0px;
    padding: 10px;
    margin: 5px 0px;
    font-size: 14px;
}

.chat-time-right {
    text-align: right;
    font-size: 10px;
    width: 100%;
}

.chat-time-left {
    text-align: left;
    font-size: 10px;
    width: 100%;
}

.right-chat-box {
    display: flex;
    flex-wrap: wrap;
}

.right-chat-empty {
    width: 40%;
}

.right-chat {
    width: 60%;
}

.right-chat-inner-box {
    background-color: #d49939;
    color: #ffffff;
    text-align: left;
    width: 100%;
    border-radius: 10px 10px 0px 10px;
    padding: 10px;
    margin: 5px 0px;
    font-size: 14px;
}

.admin-chat-info {
    color: #ffffff;
    padding: 10px 0px;
    text-align: center;
}

.chat-normal-btn {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-weight: 900;
    padding: 10px 0px;
    font-size: 14px;
    background-color: green;
}

.bonus-filter-container {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0px;
}

.bonus-filter-box {
    width: 50%;
    text-align: center;
}

.bonus-filter-inner-box-left {
    padding-right: 5px;
}

.bonus-filter-inner-box-right {
    padding-left: 5px;
}

.bonus-sel {
    -webkit-appearance: none;
    background-color: rgb(0, 0, 0, 0.65);
    border-radius: 0.625rem;
    width: 100%;
    color: #ffffff;
    padding: 10px;
    font-weight: 900;
    font-size: 14px;
}

.bonus-wrapper-sel {
    position: relative;
    display: inline-block;
    width: 100%;
}

.bonus-pointer {
    color: #ffffff;
    right: 14px;
    top: 10px;
    position: absolute;
    pointer-events: none;
    font-weight: 900;
    font-size: 16px;
    text-align: center;
}

.loader-box {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: fixed;
    background-color: rgb(0, 0, 0, 0.65);
}

.loader-hidden {
    display: none !important;
}

.big-container-payment {
    padding: 10px 20px;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.payment_label {
    font-size: 12px;
    color: grey;
}

.payment_content {
    font-size: 14px;
    width: 90%;
    color: #000000;
}

.payment_sub_content {
    color: #000000;
    font-size: 14px;
}

.payment-divide-container {
    display: flex;
    width: 100%;
}

.payment-label-left {
    width: 48%;
    text-align: right;
}

.payment-label-center {
    width: 4%;
    text-align: center;
}

.payment-label-right {
    width: 48%;
    text-align: left;
}

.payment-modal-box {
    background-color: #ffffff;
    border-radius: 0.625rem;
}

.payment-modal-header {
    background-color: #f2f4f5;
    padding: 15px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    border-top-left-radius: 0.625rem;
    border-top-right-radius: 0.625rem;
}

.payment-modal-content {
    padding: 15px;
    text-align: center;
    word-break: break-all;
}

.payment-modal-footer {
    background-color: #f2f4f5;
    padding: 15px;
    text-align: center;
    border-bottom-left-radius: 0.625rem;
    border-bottom-right-radius: 0.625rem;
}

.sub-title {
    padding-bottom: 15px;
}

.winner-popup-box {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.winner-popup-innerbox {
    padding-top: 67px;
    padding-left: 75px;
    padding-right: 75px;
    width: 100%;
    text-align: center;
    height: 215px;
    position: relative;
}

.pop-up-close {
    position: absolute;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    right: 20px;
    top: 0px;
}

.winner-avatar {
    width: 120px;
    border-radius: 50%;
    position: absolute;
    left: 125px;
    top: 60px;
}

.winner-ribbon {
    width: 290px;
    position: absolute;
    bottom: 0px;
    left: 40px;
}

.winner-hide {
    display: none;
}

.black-screen {
    position: fixed;
    background-color: rgb(0, 0, 0, 0.65);
    height: 100vh;
    width: 100vw;
    top: 0px;
    left: 0px;
    padding: 0px;
    z-index: 1;
}

.footer-copyright {
    /* position: fixed; */
    bottom: 0;
    width: 100%;
}

.prefooter {
    text-align: center;
    padding: 20px 0px;
    font-size: 11px;
    color: #ababab;
    letter-spacing: 1.2px;
}

.ims-main-cover {
    background: url("../img/slider_v2.jpg") top/cover no-repeat;
    height: 290px;
    margin-top: -20px;
}

.modal {
    text-align: center;
    background: #f8f8f8;
    padding: 0 !important;
}

.modal-open .modal {
    z-index: 999999;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #ffffff;
    border-radius: 10px;
    border: unset;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 20%);
}

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
    border-radius: 0px;
    min-width: 80%;
    max-width: 80%;
}

.modal-header {
    font-size: 20px;
    border-bottom: none;
}

.modal .close {
    color: #5a5349;
    opacity: 1;
    position: absolute;
    right: 15px;
    font-weight: bold;
    font-size: 25px;
    text-shadow: unset;
}

.modal-title {
    font-size: 18px;
    text-align: left;
    font-weight: bold;
}

.contact-modal .qrbox {
    background: url(../img/BG-04.png);
    margin-top: 10px;
    background-position-x: center;
    background-size: 185px 100%;
    height: 185px;
    margin-bottom: 30px;
    background-repeat: no-repeat;
}

.contact-modal img {
    padding: 1px;
    border-radius: 10px;
    margin: 30px 0px;
    width: 120px;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
}

.contact-modal .text {
    margin: auto;
    max-width: 252px;
    padding: 0px 15px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #505050;
}

.f13 {
    font-size: 13px;
}

.f20 {
    font-size: 20px;
}

.or {
    text-align: center;
    font-size: 20px;
    background-image: linear-gradient(#505050, #505050), linear-gradient(#505050, #505050);
    background-size: 45% 0.5px;
    background-position: center left, center right;
    background-repeat: no-repeat;
}

.or-label {
    color: #505050;
    font-size: 12px;
    border-radius: 50%;
    padding: 5px;
    font-weight: 900;
}

.white {
    color: #ffffff;
}

.modal-footer {
    border: none;
    text-align: center;
}

.btn-primary {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 15px 66px;
    width: 100%;
    margin-bottom: 20px;
    color: #fff !important;
    border-radius: 8px;
    border: none;
    background-color: #51BBED;
}

.information {
    margin-left: 20px;
    margin-right: 20px;
}

.information img.banner-2 {
    margin: -20px 0px 20px -20px;
    width: calc(100% + 40px);
}

.sub-container {
    padding-left: 20px;
    padding-right: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.mr-10 {
    margin-right: 10px;
}

.grey {
    color: #ababab;
}

.black2 {
    color: #3e3e3e;
}

.information .middle {
    margin-bottom: 30px;
}

.middle {
    background-color: rgb(0, 0, 0, 0.45);
}

.box {
    padding: 16px;
    border: solid 1px #f0f0f0;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 5%);
    border-radius: 8px;
    background-color: transparent;
    margin: unset;
}

.box.small {
    margin: 15px 0px;
    padding: 12px 20px;
}

.yellow {
    color: #d49939;
}

.yellow2 {
    color: #cca759;
}

.lightbrown {
    color: #94887f;
}

.green {
    color: #a8d25a;
}

.brown {
    color: #5a5349;
}

.main_icon {
    background-size: 100% 100%;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 13px;
    padding: 10px 0px;
    color: #94887f;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 3px 5px 0 rgb(0 0 0 / 5%);
    background-color: none;
}

.main_icon a {
    color: #000000;
    width: 25%;
}

.main_icon img {
    height: 40px;
    margin: 8px 0px;
}

.first_nav {
    background-size: 100% 100%;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 13px;
    color: #94887f;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.flex_around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.first_nav a i {
    background-image: linear-gradient(to bottom, #2d261e, #14110d);
    color: #ecc96b;
    margin: auto;
    border-radius: 13px;
    font-size: 25px;
    margin-bottom: 10px;
    line-height: 3;
    width: 85%;
}

.top_marquee {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
    /* border: solid 1px #344966; */
    background: #2c2720;
    padding: 10px 20px;
    margin-top: -20px;
    margin-left: -20px;
    margin-right: -20px;
    position: relative;
}

.flex_normal {
    display: flex !important;
    align-items: center !important;
    margin-left: 14px;
}

.flex_between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 15px;
}

.grab-order-wrapper {
    text-align: center;
}

.grab .countdown_container {
    display: none;
    z-index: 9999;
    position: absolute;
    left: 0;
    right: 0;
    top: 30vh;
    font-size: 20px;
}

.grab img.countdown_gif {
    width: 50%;
    height: 50%;
    background: transparent !important;
    box-shadow: none !important;
    margin: auto !important;
    display: block;
}

.countdown_label {
    font-size: 15px;
    text-align: center;
    color: #ffffff;
    margin-top: 350px;
}

.countdown_value {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #ffffff;
    margin-top: 5px;
}

.black_overlay {
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 999;
    top: 0;
    left: 0;
}

#congrats_modal .modal-dialog {
    margin: auto;
    background: url(../img/congrat_popup.png) no-repeat;
    background-size: contain;
    background-position-y: center;
    background-position-x: center;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#success_modal .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.modal .modal-message {
    font-size: 18px;
    padding-bottom: 10px;
}

.padding-widget {
    padding-left: 14px;
    padding-right: 14px;
}

.wallet-hr {
    border-top: solid 1px #f0f0f0;
    margin: 10px 0px;
}

.invitation .logo {
    width: 200px;
    margin: unset;
}

#copy_qr {
    background: transparent;
    border: transparent;
}

.invitation .qrbox {
    background-size: 175px 100%;
    height: 170px;
}

.invitation .qrbox {
    background: url(../img/BG-04.png);
    background-position-x: center;
    background-size: 185px 100%;
    height: 185px;
    margin-bottom: 30px;
    background-repeat: no-repeat;
}

.qrcode img {
    margin: auto;
    padding-top: 30px;
}

/* .invitation .qrcode img {
    background-color: #fff;
    border-radius: 8px;
    padding: 2px;
    margin: 30px 0px;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 5%);
} */

.withdraw-history-label {
    float: right;
    margin-top: 20px;
    margin-right: 14px;
    font-size: 15px;
    color: #ffffff;
}

.profit_box {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.empty_slot {
    margin-top: 50%;
    color: #a4a4a4;
}

.empty_slot img {
    opacity: 0.5;
    width: 50px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 414px) {
    .ims-main-wrapper {
        width: 600px;
    }
}

@media only screen and (max-width: 375px) {
    .ims-main-wrapper {
        width: 600px;
    }
}

@media only screen and (max-width: 600px) {
    .ims-main-wrapper {
        width: 600px;
    }
}

@media only screen and (min-width: 600px) {
    .nav {
        width: 375px !important;
    }

    .center-boost-btn {
        width: 375px !important;
    }
}

/* main page */
.brick-hero--cover,
.brick-hero-dynamic--cover {
    background: #003058;
    padding: 8rem 0 4rem;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brick-hero,
.brick-hero-dynamic {
    position: relative;
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(-20deg, #03436b 34.9%, #002f57 35%);
    z-index: 100;
}

.lozad[data-loaded=true] {
    opacity: 1;
}

.brick-hero--cover__img,
.brick-hero-dynamic--cover__img {
    background-position: 100%;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.brick-hero-dynamic .container,
.brick-hero .container {
    z-index: 1000;
    position: relative;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.brick-hero-dynamic h1,
.brick-hero h1 {
    color: #00a7e1;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.brick-hero-dynamic p,
.brick-hero p {
    font-size: 1.625rem;
    color: #fff;
}

.submenu-heading {
    font-size: 21px !important;
    font-weight: 700;
    color: #799ab7;
    line-height: 27px;
    padding: 15px;
    margin: 0 0 10px;
    height: 37px;
}

.col-lg-12 {
    text-align: center;
    align-items: center;
}

.font-weight-bold {
    padding: 0;
    font-style: normal;
    line-height: 32px;
    margin: 0 0 10px;
    color: #003058;
    display: inline-block;
    font-size: 18px;
}

.font-weight-bold-p {
    color: #002f57;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .21px;
    padding: 0;
    font-style: normal;
    line-height: 22px;
}

.guide-header {
    padding-top: 20px;
    background-color: #002f57;
    background-position: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}

.font-size-15 {
    font-size: 15px;
}

.stats-cols .flex-stats.row {
    margin-top: 2rem;
}

.stats-cols .flex-stats.row .col {
    min-width: 130px;
}

.stats-cols img {
    width: 80%;
    display: block;
    max-width: 100px;
    min-height: 128px;
    margin: auto auto 0.5rem;
    transition: .4s;
}

.stats-cols .flex-stats.row p {
    color: #666;
    text-align: center;
}

.center-boost-btn {
    z-index: 1;
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.noHover{
    pointer-events: none;
}