/***********************************************
## import google fonts
***********************************************/
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400;500;600;700;800&amp;display=swap');
/***********************************************
## import bootstrap icon
***********************************************/
@import url("https://taskplay.co/Gimi/cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
/***********************************************
## global css
***********************************************/
html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}
body {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #a9a9ca;
    position: relative;
    background: #000;
}
body::after {
    content: "";
    width: 100%;
    min-height: 100vh;
    height: 100%;
    background: url('../images/backgrounds/gaincash_bg.jpg') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
a {
    display: inline-block;
    text-decoration: none;
}
/* custom styles for global use */
.border_1px {
    border: 1px solid var(--border-color);
}
.border_2px {
    border: 2px solid var(--border-color);
}
.rounded_5px {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.rounded_10px {
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.rounded_15px {
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.rounded_20px {
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.blur_5px {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.blur_10px {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.blur_15px {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}
.fs_10px {
    font-size: 10px;
}
.fs_12px {
    font-size: 12px;
}
.fs_13px {
    font-size: 13px;
}
.fs_14px {
    font-size: 14px;
}
.currency_icon {
    height: 16px;
}
.chat_currency_icon {
    height: 13px;
}
.chat_username {
    color: #17ff00; font-weight: 500;
}
.gateway_img {
    height: 30px;
}
/***********************************************
## preloader styles
***********************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background: #202948;
}
.spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.spinner .bounce {
    margin-top: 15px;
}
.spinner .bounce > div {
    width: 18px;
    height: 18px;
    background-color: var(--green);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bounce_delay 1.4s infinite ease-in-out both;
    animation: bounce_delay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
    -webkit-animation-delay: -0.32s !important;
    animation-delay: -0.32s !important;
}
.spinner .bounce2 {
    -webkit-animation-delay: -0.16s !important;
    animation-delay: -0.16s !important;
}
/***********************************************
## toast styles
***********************************************/
#toast-container {
    z-index: 99999999 !important;
}
#toast-container>div {
    display: flex;
    align-items: center;
    padding: 0 8px 0 35px !important;
    width: 100% !important;
    height: 42px !important;
    opacity: 1 !important;
    box-shadow: none !important;
    -webkit-border-radius: 3rem !important;
    border-radius: 3rem !important;
}
#toast-container>div:hover {
    box-shadow: none !important;
}
#toast-container .toast-message {
    font-size: 16px !important;
    padding: 0 11px 0 15px;
}
#toast-container .toast-success {
    background-color: #59c64b !important;
}
#toast-container>.toast-success {
    background-image: url("../images/icons/success.png") !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: left;
}
#toast-container>.toast-error {
    background-image: url("../images/icons/error.png") !important;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: left;
}
.toast-progress {
    background-color: none !important;
    background: -webkit-linear-gradient(90deg,#67e8f9,#1e40af) !important;
    background: linear-gradient(90deg,#67e8f9,#1e40af) !important;
    opacity: 1 !important;
}
/***********************************************
## users notifications styles
***********************************************/
.notifications_wrapper {
    display: none;
}
.notifications_wrapper.show {
    display: block !important;
}
.user_notifications .notify_animation {
    position: absolute;
    top: 17px;
    right: 2px;
}
.user_notifications .notify_animation .heartbit {
    position: absolute;
    top: -20px;
    right: -4px;
    height: 25px;
    width: 25px;
    z-index: 10;
    border: 5px solid #e46a6a;
    border-radius: 70px;
    -moz-animation: heartbit 1s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: heartbit 1s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: heartbit 1s ease-out;
    animation: heartbit 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.user_notifications .notify_animation .point {
    background-color: #f22727e1;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    position: absolute;
    right: 6px;
    top: -10px;
}
.notifications {
    background-color: black;
    padding: 13px;
    left: -16.5rem;
    top: 4rem;
    min-width: 250px;
    z-index: 999;
    max-height: 450px;
    overflow-y: scroll;
}
.single_notify .notify_header {
    line-height: 0.8;
}
.single_notify .image {
    width: 39%;
}
/***********************************************
## table styles
***********************************************/
.log_table {
    overflow-x: scroll;
}
table {
    border-collapse: separate;
}
tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    -webkit-border-radius: 15px 15px 0 0;
    border-radius: 15px 15px 0 0;
}
th, td {
    min-width: 180px;
}
table th {
    color: var(--green);
    padding: 10px 0;
}
table td {
    color: var(--white);
    border: none;
}
tbody {
    flex-direction: column;
}
tbody tr {
    border-bottom: 1px solid var(--border-color);
    padding: 5px 0;
}
tbody tr:last-child {
    border-bottom: 0px;
}
.log_table .offer_name {
    white-space: nowrap;
    width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.log_table .offer_image {
    height: 45px;
}
/***********************************************
## badge styles
***********************************************/
.bg_success,
.badge_success {
    background-color: #17ff0080;
}
.badge_warning {
    background-color: #beb118;
}
.badge_warning_1 {
    background-color: #ce5d06;
}
.badge_danger {
    background-color: #cf061d;
}
/***********************************************
## customize bootstrap css
***********************************************/
.badge {
    font-weight: 500;
}
.popover {
    background: var(--webkit-dropdown-bg) !important;
    background: var(--dropdown-bg) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid #fff;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.popover-body {
    font-size: 14px;
    padding: 10px;
    color: #fff;
}
.form-label, label {
    padding: 5px 0 5px 6px;
    font-weight: 600;
    color: #fff;
}
.input-group>.form-control,
.input-group>.form-select {
    position: relative;
    flex: 1 1 auto;
    height: 40px;
    min-width: 0;
    color: var(--white);
    padding: 0 1rem !important;
    width: calc(100% - 2rem) !important;
    margin-top: 0.75rem !important;
    -webkit-border-radius: 3rem !important;
    border-radius: 3rem !important;
}
.form-control {
    background-color: var(--theme-bg);
    color: var(--white);
    padding: 10px 16px;
    border: 1px solid transparent;
    -webkit-border-radius: 3rem;
    border-radius: 3rem;
}
.form-control:disabled, .form-control[readonly] {
    background-color: var(--theme-bg);
}
.form-control:focus {
    background: transparent !important;
    box-shadow: none;
    color: #fff;
}
button {
    background-color: transparent;
    outline: none;
    border: none;
}
.page-item:first-child .page-link,
.page-link {
    border: 1px solid var(--border-color);
    background: var(--dropdown-bg);
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 8px;
    color: #fff;
}
.page-item.disabled .page-link {
    background: var(--theme-bg);
}
.page-item.active .page-link {
    background: var(--green);
    border-color: var(--green);;
}
.page-link:hover {
    color: #fff;
}
/***********************************************
## user profile image styles
***********************************************/
.user-images .user-image  {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}
.user-images .user-image img.active {
    background-color: #fff;
    padding: 3px;
}
.profile-avater .user-images .user-image button {
    outline: none;
    border: none;
}
.profile-avater .user-images .user-image button img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}
/***********************************************
## user statistics styles
***********************************************/
.statistics-data .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    background-color: rgb(22 100 79);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.statistics-data .icon i {
    color: rgb(1 214 118);
    font-size: 23px;
}
.statistics-data img {
    height: 15px;
}
.country .flag .fi {
    width: 40px;
    height: 40px;
}
/***********************************************
## navbar styles
***********************************************/
#desktop-nav {
    z-index: 99999;
}
.navbar-expand-lg {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: var(--header-bg);
    padding: 8px 0px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    position: sticky;
    top: 0px;
    left: 0px;
    width: 100%;
    min-height: 70px;
}
/* navbar brand */
.brand_content {
    display: flex;
    line-height: 0;
}
/* navbar widget styles */
.widget-wrapper {
    border: 1px solid var(--border-color);
    background-color: var(--theme-bg);
    padding: 5px 25px;
    margin: 0 10px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.widget-wrapper .icon {
    font-size: 22px;
    color: var(--light-green);
}
.widget-wrapper .head {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.widget-wrapper .title {
    font-size: 10px;
    font-weight: 600;
}
/* navbar guest-auth-links */
.reg_log_buttons {
    display: flex;
    width: 200px;
    gap: 3px;
    --b: 2px;
    --h: 2.7em;
    -webkit-border-radius: 3rem;
    border-radius: 3rem;
}
.reg_log_buttons button {
    --_c: var(--light-green);
    flex: calc(1.10 + var(--_s, 0));
    min-width: 0;
    font-size: 15px;
    font-weight: bold;
    height: var(--h);
    cursor: pointer;
    color: var(--_c);
    border: var(--b) solid var(--_c);
    background: conic-gradient(at calc(100% - 1.3*var(--b)) 0,var(--_c) 209deg, #0000 211deg) border-box;
    clip-path: polygon(0 0,100% 0,calc(100% - 0.577*var(--h)) 100%,0 100%);
    padding: 0 calc(0.280*var(--h)) 0 0;
    margin: 0 calc(-0.280*var(--h)) 0 0;
    box-sizing: border-box;
    -webkit-transition: flex .4s;
    transition: flex .4s;
}
.reg_log_buttons button:first-child {
    border-top-left-radius: 3rem;
    border-bottom-left-radius: 3rem;
}
.reg_log_buttons button:last-child {
    border-top-right-radius: 3rem;
    border-bottom-right-radius: 3rem;
}
.reg_log_buttons button + button {
    --_c: #eb1b75;
    flex: calc(0.80 + var(--_s, 0));
    background: conic-gradient(from -90deg at calc(1.3*var(--b)) 100%,var(--_c) 119deg, #0000 121deg) border-box;
    clip-path: polygon(calc(0.577*var(--h)) 0,100% 0,100% 100%,0 100%);
    margin: 0 0 0 calc(-0.250*var(--h));
    padding: 0 0 0 calc(0.350*var(--h));
}
.reg_log_buttons button:focus-visible {
    outline-offset: calc(-2*var(--b));
    outline: calc(var(--b)/2) solid #000;
    background: none;
    clip-path: none;
    margin: 0;
    padding: 0;
}
.reg_log_buttons button:focus-visible + button {
    background: none;
    clip-path: none;
    margin: 0;
    padding: 0;
}
.reg_log_buttons button:has(+ button:focus-visible) {
    background: none;
    clip-path: none;
    margin: 0;
    padding: 0;
}
.reg_log_buttons button:hover, button:active:not(:focus-visible) {
    --_s: .50;
}
.reg_log_buttons button:hover {
    box-shadow: inset 0 0 0 100vmax var(--_c);
    color: #fff;
}
/* navbar profile info */
.balance a span {
    background-color: var(--theme-bg);
    padding: 10px;
}
.balance a span:first-child {
    margin-right: 1.5px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.balance a span img {
    width: 50px;
}
.balance:hover span i {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
}
.balance a span:last-child {
    color: #fff;
    font-weight: 700;
    -webkit-border-top-right-radius: 15px;
    border-top-right-radius: 15px;
    -webkit-border-bottom-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
/* header profile info */
#navbarNav .user_profile a:after {
    display: none !important;
}
#navbarNav .user_profile .user_data {
    height: 45px;
}
#navbarNav .user_data .info {
    padding: 0 0 0 15px;
}
#navbarNav .user_data .info .username {
    font-size: 18px;
}
/* navbar dropdown profile info*/
#navbarNav .profile_info {
    background-color: currentColor;
    padding: 10px;
    left: -120px;
    top: 4rem;
    min-width: 300px;
    z-index: 999;
}
#navbarNav .profile_info .profile_avatar {
    padding: 7px;
    margin-bottom: 18px;
}
#navbarNav .profile_info li a {
    color: #fff;
    padding: 3px 0 5px 3px;
}
#navbarNav .profile_info li a:hover {
    background: transparent;
    color: var(--light-green) !important;
}
#navbarNav .profile_info li:hover a i {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: 1s ease;
    transition: 1s ease;
}
#navbarNav ul li a .user-image img,
#navbarNav .profile_avatar img {
    max-width: 50px;
    width: 50px;
    height: 50px;
    max-height: 50px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
}
#navbarNav .user_profile .user_data img
#navbarNav .profile_avatar img {
    width: 58px;
    height: 58px;
}
#navbarNav .profile_info .username,
#navbarNav .profile_info .total-balance {
    white-space: nowrap;
    width: 188px;
    overflow: hidden;
    text-overflow: ellipsis;
}
#navbarNav li.user_notifications a .icon,
#navbarNav li.support a .icon,
#navbarNav li.chat .icon {
    width: 45px;
    height: 45px;
    padding: 10px;
}
#navbarNav li.user_notifications a i,
#navbarNav li.support a i,
#navbarNav li.chat a i {
    font-size: 23px;
    color: #fff;
}
#navbarNav .live_chat {
    height: 45px;
}
#navbarNav .live_chat.close_chat {
    display: none;
}
/* mobile nav styles */
#mobile-nav li.nav-item {
    padding: 10px 10px 5px 10px;
    min-width: 70px;
    width: 100%;
}
#mobile-nav .nav-item .head-icon i {
    font-size: 19px;
}
#mobile-nav .nav-item.active-nav-link,
#mobile-nav .nav-item:hover {
    background: -webkit-linear-gradient(180deg,rgba(1, 214, 118, 0.045) 0,rgba(1, 214, 118, 0.325) 100%);
    background: linear-gradient(180deg,rgba(1, 214, 118, 0.045) 0,rgba(1, 214, 118, 0.325) 100%);
}
#mobile-nav .nav-item.active-nav-link .head-icon i,
#mobile-nav .nav-item:hover .head-icon i {
    color: var(--light-green);
}
#mobile-nav .nav-item .head-title {
    font-size: 12px;
}
#mobile-nav .nav-item.active-nav-link .head-title,
#mobile-nav .nav-item:hover .head-title {
    color: #fff;
}
#mobile-nav li.nav-item.earn  {
    position: relative;
    margin: 0 7px;
    background: var(--black);
}
#mobile-nav li.nav-item.earn .nav-link {
    background: -webkit-linear-gradient(180deg,#01d676 0,#3b807b 100%);
    background: linear-gradient(180deg,#01d676 0,#3b807b 100%);
    width: 60px;
    height: 60px;
    position: absolute;
    right: 50%;
    left: 50%;
    bottom: 8px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    box-shadow: 0 1px 14px rgba(1,214,118,0.29);
}
a.nav-link.middle_navbar-link:hover:not([role="tab"]),
#mobile-nav li.nav-item.earn .nav-link:hover {
    background: -webkit-linear-gradient(180deg,#01d676 0,#3b807b 100%) !important;
    background: linear-gradient(180deg,#01d676 0,#3b807b 100%) !important;
    color: #fff !important;
}
a.nav-link.middle_navbar-link:hover:not([role="tab"]) .head-icon i,
#mobile-nav li.nav-item.earn .nav-link .head-icon i {
    color: #fff;
}

/***********************************************
## app dashboard styles
***********************************************/
.gaincash_app {
    position: relative;
}
.app_content {
    width: 100%;
}
.dashboard {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}
/***********************************************
## welcome page content styles
***********************************************/
.welcome .hero-bg {
    width: 100%;
    height: 100%;
    background: url("../images/backgrounds/hero-bg.jpg") no-repeat top center;
    background-size: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -5;
    opacity: 0.09;
}

.call-to-action #typer {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
}
.call-to-action a.call-btn {
    font-size: 20px;
    font-weight: 600;
    padding: 10px 45px;
}
/***********************************************
## left sidebar styles
***********************************************/
.sidebar_nav {
    backdrop-filter: blur(10px);
    background-color: var(--theme-bg);
    border: 1px solid var(--border-color);
    padding-top: 50px;
    width: 12rem;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
.left_sidebar {
    width: 100%;
}
.left_sidebar .inner_sidebar {
    width: 100%;
    height: 100vh;
}
.left_sidebar .inner_sidebar li:hover i {
    color: var(--light-green) !important;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: transform 1s ease;
    transition: transform 1s ease;
}
.left_sidebar .inner_sidebar li:hover a {
    color: var(--light-green) !important;;
}
.left_sidebar .inner_sidebar ul li a {
    display: block;
    padding: 8px;
    color: #fff;
    font-weight: 500;
    text-decoration: none
}
.left_sidebar .inner_sidebar ul li a span {
    display: inline-block;
    margin-left: 2px;
    display: inline-block;
    margin-left: 14px;
    font-size: 18px;
}
.left_sidebar .inner_sidebar {
    padding: 10px
}
.left_sidebar .inner_sidebar ul {
    list-style: none;
    padding: 15px 0;
    width: 100%;
}
.left_sidebar .inner_sidebar ul li {
    margin-bottom: 15px
}
.left_sidebar .inner_sidebar ul li.active {
    background: -webkit-linear-gradient(261deg,rgba(1, 214, 118, 0.045) 0,rgba(1, 214, 118, 0.325) 100%);
    background: linear-gradient(261deg,rgba(1, 214, 118, 0.045) 0,rgba(1, 214, 118, 0.325) 100%);
    border-radius: 8px;
}
.left_sidebar .inner_sidebar ul li.active a,
.left_sidebar .inner_sidebar ul li.active i {
    color: var(--light-green) !important;
}
/***********************************************
## main content styles
***********************************************/
.main_content {
    margin-left: 12rem;
    margin-right: 18.5rem;
    height: 100%;
}
.chat_close .main_content {
    margin-right: 0 !important;
}

/***********************************************
## chat content styles
***********************************************/
.chat_content {
    width: 18.5rem;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    padding: 50px 0 0 0;
}
.chat_open #toggleBtn i.open,
.chat_close #toggleBtn i.close,
.chat_close .chat_content,
.chat_close #navbarNav .live_chat {
    display: none !important;
}
.desktop_chat .chat {
    overflow-y: scroll;
    scrollbar-width: none;
    padding-bottom: 8.5rem;
}
.chat::-webkit-scrollbar {
    display: none;
}
.message .user_img img {
    max-height: 28px;
    height: 28px;
    max-width: 28px;
    width: 28px;
}
.message {
    -webkit-border-radius: 10px 10px 10px 0;
    border-radius: 10px 10px 10px 0;
}
.user .username {
    color: #00fa43 !important;
    font-size: 16px;
}
.message .time {
    font-size: 10px;
}
.user .username i,
.message .message_data {
    font-size: 14px;
}
.message .user {
    line-height: 0.8;
}
.message .user .user_type {
    font-size: 10px;
    color: #fff;
    padding: 1px 8px 0px 8px;
    border: 1px solid #ddd;
}
/* chat footer styles */
.chat_footer {
    background: rgb(70 71 71);
    padding: 10px;
}
.chat_footer form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
}
.chat_footer input, .chat_footer .input {
    width: 100%;
}
.chat_footer input, .chat_footer input::placeholder {
    color: #fff;
}
.chat_footer input, .chat_footer .submit {
    background-color: var(--theme-bg);
    width: 43px;
    height: 43px;
    color: #fff;
    -webkit-border-radius: 3rem;
    border-radius: 3rem;
}
.chat_footer .unauth {
    position: relative;
    padding: 0;
}
 
.chat_footer .not_login {
    background-color: var(--header-bg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-border-radius: 3rem;
    border-radius: 3rem;
}
.chat_footer .not_login .message {
    font-size: 12px;
    color: #fff !important;
}
.chat_footer .not_login i {
    color: var(--light-green);
}
/***********************************************
## footer styles
***********************************************/
.footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--theme-bg);
    position: relative;
}
.footer::after {
    content: "";
    background-image: url('../images/backgrounds/footer_bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}
.footer .widget .title {
    font-size: 22px;
}
.copyright-area p {
    font-size: 10px;
}
.footer-link svg {
    width: 15px;
    height: 15px;
}
.footer-link svg path {
    fill: var(--white);
}
.footer_coins-box {
    background: var(--black);
    text-align: center;
    padding: 15px;
    margin: 25px;
    border-radius: 5px;
}
footer.footer.pb-5 {
    margin-top: 0px;
    padding-top: 25px;
    text-align: center;
    padding-bottom: 0px !important;
}

.links-group {
    display: flex;
    flex-flow: column;
}

a.footer-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
}
@media (max-width: 530px) {
    .footer .widget .title {
        font-size: 18px;
    }
    a.footer-link {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .footer-link svg {
        width: 12px;
        height: 12px;
    }
    .footer .widget .title {
        font-size: 12px;
    }
    a.footer-link {
        font-size: 9px;
    }
    .text-center.info p {
      font-size: 8px;
    }
}
.copy_info p {
    font-size: 13px;
    color: var(--gray);
}


/******************************************************
## live last offer styles
******************************************************/
.content_header {
    background: #000;
    position: sticky;
    top: 70px;
    min-height: 70px;
    z-index: 9999;
}
#last_offers {
    background-color: var(--black);
    overflow: hidden;
}
#last_offers>div>div {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6px 4px;
}
.offer-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-flow: row;
    margin-right: 10px;
    min-height: 50px;
    min-width: 200px;
    background: -webkit-linear-gradient(138.39deg,hsla(0,0%,100%,.2) -7.57%,hsla(0,0%,100%,0) 107.25%);
    background: linear-gradient(138.39deg,hsla(0,0%,100%,.2) -7.57%,hsla(0,0%,100%,0) 107.25%);
    border: 1px solid var(--border-color);
    padding: 6px;
    border-radius: 13px;
}
.offer-wrapper div {
    display: flex;
    flex-flow: column;
    justify-content: center;
}
.offer_stat-footer {
    margin: 0 13px 0 10px;
}
.offer_stat-footer {
    font-size: 14px;
}
.offer_stat-footer h6 {
    white-space: nowrap; 
    width: 80px; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.offer_stat-footer p {
    margin: 0;
    font-size: 11px;
    white-space: nowrap; 
    width: 70px; 
    overflow: hidden;
    text-overflow: ellipsis;
}
.offer_stat-header img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}
div#last_offers .offer-amount {
    width: min-content;
    background: #21e41526;
    color: var(--light-green);
    font-size: 13px;
    font-weight: 500;
    padding: 10px;
    border-radius: 15px;
}
div#last_offers .offer-amount p{
    color: var(--light-green) !important;
}
.top-offer-wrapper {
    position: relative;
}
.top-offer-wrapper .offer-wrapper-inner {
    position: absolute !important;
    margin: 0 !important;
    top: 29px !important;
    left: 50px !important;
    right: 0 !important;
    width: 100% !important;
    height: 55px;
    display: none;
    justify-content: center;
    padding: 4px 10px;
    z-index: 9999999999 !important;
    background: #0b0a16 !important;
}
#last_offers .top-offer-wrapper .offer-wrapper-inner span.title {
    color: #fff !important;
    font-size: 12px !important
}
#last_offers .top-offer-wrapper .offer-wrapper-inner span.value {
    color: var(--light-green) !important;
    font-size: 12px !important;
    font-weight: 500;
}
#last_offers .top-offer-wrapper:hover>.offer-wrapper-inner {
    display: block !important;
    border-radius: 15px
}
body .navbar-nav > li.nav-item:hover a{
    color: #fff !important;
}
body .navbar-nav a.nav-link.middle_navbar-link {
    border: none;
    color: #d1d1d1;
    font-weight: 400;
    font-size: 16px;
}
body .navbar-nav  .total-balance{
    color: var(--light-green) !important;
    font-weight: 500 !important;
}

body .desktop-links li.nav-item:hover,
body .desktop-links li.nav-item.active-nav-link{
    background: var(--light-green) !important;
}

body .desktop-links li.nav-item:hover a,
body .desktop-links li.nav-item.active-nav-link a{
    color: #000 !important;
}

a.nav-link.main-nav-link{
     display:flex;
    justify-content: center;
    flex-direction: column;
}

@media(max-width:460px){
    a.nav-link.main-nav-link{
        padding: 1px 5px !important;
    }
}

a.nav-link.middle_navbar-link .head-icon{
    display: block;
    font-size: 16px;
}
a.nav-link.middle_navbar-link .head-title{
    display: block;
    font-size: 1rem;
    position: relative;
}


a.main-nav-link.active-nav-link .head-title::after{
     content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    border: 1px solid yellow;
    width: 100%;
}


a.nav-link.middle_navbar-link:hover:not([role="tab"]) {
    /*color: #bb8900 !important;*/
    background: transparent !important;
}

.navbar-toggler:focus {
    background: transparent;
    box-shadow: none;
}
span.navbar-toggler-icon.fas {
    color: var(--white);
    background: var(--light-green);
    border-radius: 14px;
    padding-top: 15px;
    width: 3.5em;
    height: 2.5em;
}
a.nav-link {
    font-size: 1.2rem;
    color: var(--white);
    background: transparent;
    border-radius: 3rem;
    padding: 0 5px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    -webkit-transition: background 0.2s ease-in;
    -moz-transition: background 0.2s ease-in;
    -ms-transition: background 0.2s ease-in;
    -o-transition: background 0.2s ease-in;
    transition: background 0.2s ease-in;
}

a.nav-link:not([class*="middle_navbar-link"]) {
    box-shadow: 1px 1px 3px 1px var(--light-green);
    background: var( --blue);
}
a.nav-link:hover:not([role="tab"]) {
    background-color: var(--light-green);
    color: var(--white) !important;
    box-shadow: none;
    transition: 0.9s all ease-in-out;
}

a.me-3.nav-link.nav-support {
    border: none;
    background: transparent;
    box-shadow: none;
}


/* start header */
header.header {
    /* min-height: 650px; */
    display: flex;
    justify-content: start;
    align-items: flex-start;
    /*background-image: url('../img/home_header.png');*/
    /*background-position: center center;*/
    background-position: center 0;
    
}

.header.header h4 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2.5rem;
}

header.header .coins {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    height: 100%;
}

header.header .coins .coin {
      border-radius: 10px;
    font-weight: 600;
    min-width: 139px;
    background: #20243b;
    margin-bottom: 7px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 17px;
    color: var(--light-green);
    font-size: 1.2rem;
}

header.header .coins .coin img {
    height: 30px;
    width: 30px;
}


.bg-images {
    height: 260px;
}

@media screen and (max-width:551px) {
    .navbar-expand-lg {
        flex-wrap: wrap;
    }

    .bg-images {
        height: 25px;
    }

    .push-order {
        order: 1!important;
    }
}


#faq .content {
    background: var(--black);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 4px var(--light-green);
}

#faq .content .question {
    color: var(--light-green) !important;
    font-size: 2rem;
    font-weight: 700;
}

/* preview image */
header.header .img-wrapper img {
    width: 100%;
    height: 400px;
}

/* benefits section  */
section#benefits h2 {
    font-weight: 600;
}

.benf_box {
    text-align: center;
    background: var(--black);
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    min-height: 160px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 1px 1px 4px 0 var(--light-green);
    display: flex;
    justify-content: space-between;
    flex-flow: column;
    align-items: center;
    color: var(--light-green);
}

.benf_box p{
 color: #fff;    
}

.benf_box svg {
    height: 30px;
    width: 44px;
    margin: 0 0 15px 0;
}

.benf_box svg path {
    fill: var( --light-green);
}






/********************************************************
# form styles 
********************************************************/
.panel, .card, .card-box {
    box-shadow: -1px 1px 0px var(--light-green);
    background-color: var(--theme-bg);
    padding: 20px;
    font-size: 1rem;
    font-weight: 400;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
.chat_open .panel {
    margin: 0 !important;
}
.panel-header {
    border-bottom: 1px solid var(--light-green);
}
.card-header {
    padding: .5rem 1rem;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--light-green);
}
.btn.btn-primary:focus,
.btn.btn-primary:hover {
    box-shadow: 0 3px 3px 0 var(--black), 0 1px 7px 0 var(--blue), 0 3px 1px -1px var(--blue);
}
.panel a {
    color: var(--light-green);
    text-decoration: none;
}

.form-group {
    margin: 5px 0;
}

button.btn.btn-primary {
    background: #4BB227;
}


label.custom-form-label {
    font-size: 11px;
    margin: 0;
}
.input-group>.form-control,
.input-group>.form-select {
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
}
.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.btn-link {
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
}
.panel-footer a {
    color: var(--white) !important;
}
section#chat {
    position: fixed;
    right: 5px;
    top: 62px;
    height: 100%;
    z-index: 99;
    background: var(--black);
    padding: 9px;
    width: 0px;
    transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
}

section#chat.show {
    width: 265px;
    padding: 0px;
}

button#toggle-chat {
    position: absolute;
    left: -38px;
    top: 3%;
    font-size: 17px;
    padding: 10px 1px;
    border: none;
    background: var(--light-green);
    color: var(--white);
    border-radius: 4px;
}

.chat-content {
    display: flex;
    margin: 10px 0px;
    padding: 3px 0px;
    color: var(--white);
    font-size: 19px;
    border-radius: 10px;
    border: 1px solid var(--light-green);
    align-items: center;
    background: var(--black);
    justify-content: flex-start;
}

.chat-user-image img {
    width: 30px;
    border-radius: 25px;
}
.chat-wrapper {
    height: 80vh;
    overflow: auto;
}

.chat-button {
    background: var(--white);
    padding: 15px 5px;
    display: flex;
    margin: 0px;
}

.left-side-bar {
    width: 214px;
    height: 100vh;
    z-index: 1000;
    background: var(--blue);
}

.user-info-dropdown .dropdown-toggle .user-icon {
    width: 35px;
    height: 35px;
}

div.header {
    background: var(--blue);
}

span.user-name {
    color: var(--white) !important;
}

.dropdown-menu.dropdown-menu-right.dropdown-menu-icon-list.show {
    background: var(--black);
}

a.dropdown-item {
    color: var(--white);
}

.menu-icon.fas.fa-list {
    color: var(--white);
    cursor: pointer;
}

ul#accordion-menu {
    padding-left: 0px;
}

@media screen and (max-width:551px) {
    .main-container {
        margin-left: 0px !important;
    }
}
a.btn.offer-btn {
    color: var(--light-green);
    font-size: 18px;
    font-weight: 800;
    background: var(--white);
    margin-right: 7px;
}

.left-side-bar a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    margin: 5px 0;
    background: var(--black);
}

.main-container {
    margin-left: 218px;
}

.menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--light-green);
}

.menu-toggle:hover,
.menu-toggle:active,
.menu-toggle:focus {
    text-decoration: none;
    color: var(--light-green);
}

.menu-toggle i {
    font-size: 46px;
    color: var(--white);
}
a.dash-nav-link {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: 400;
    margin: 5px;
    border: none !important;
}

.nav-item-divider {
    height: 1px;
    margin: 1rem 0;
    overflow: hidden;
    background-color: var(--blue);
}
 .upper-auth-links{
 
     align-items: center;
 }


@media (min-width: 992px) {

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        left: -79px;
    }
}

@media (min-width: 992px) {
    #navbarNav{
        width: 100%;
        display: flex;
        align-items: center;
    }
    
}
p.code.border.border-info.p-2.ref-url {
    background: var(--black);
    cursor: pointer;
}
/* /user home dashboard */
#user-home svg path {
    fill: var(--light-green);
}

#user-home svg {
    width: 28px;
}

#user-home h3.panel-text {
    color: var(--light-green) !important;
    font-size: 2rem;
    font-weight: 900;
}

#user-home .col-12.offer-header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    overflow: hidden;
}

.nav-tabs {
    padding-bottom: 15px;
    border-bottom: transparent;
}
.nav-tabs .nav-link {
    background-color: var(--theme-bg);
    border: 2px solid transparent;
    margin: 0 5px;
    padding: 3px 15px !important;
    color: #fff !important;
    box-shadow: none !important;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background-color: var(--green);
    border: 2px solid var(--green);
}
/* custom css by- Raju Ahmed */
.content-wrapper {
    display: flex;
    align-content: stretch;
    width: 100%;
}
.check-box .form-label {
    padding: 0;
}
p.forget-it {
    font-size: 13px;
}
/* custom form design */
.data-select {
    position: relative;
    display: flex;
    width: 11rem;
    height: 3em;
    border-radius: 3rem;
    overflow: hidden;
}
.data-select select {
    appearance: none;
    border: 0;
    box-shadow: none;
    margin: -7px 0 -7px 0;
    flex: 1;
    padding: 0 1em;
    color: var(--light-green);
    font-weight: 600;
    background-color: #fff;
    background-image: none;
    cursor: pointer;
}
.data-select select::-ms-expand {
    display: none;
}
.data-select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: .8rem 0.7rem;
    transition: .25s all ease;
    pointer-events: none;
}
.data-select:hover::after {
    color: #f39c12;
}
.data-select select option {
    position: absolute;
    top: 0;
    right: 15px;
}
/*********************************************************
## user dashboard styles 
*********************************************************/
.my_profile .profile-card {
    border: 1px solid var(--border-color);
    background-color: var(--theme-bg);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    border-radius: 15px;
}
.my_profile .statistics .title i {
    font-size: 19px;
}
.my_profile .statistics-data .info span {
    font-size: 14px;
    color: #ccd;
}
.profile_image img {
    max-width: 125px;
    width: 125px;
    max-height: 125px;
    height: 125px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}
/* modal styles */
.modal {
    -webkit-backdrop-filter: var(--blur-filter);
    backdrop-filter: var(--blur-filter);
    padding: 4rem 0 5rem 0;
}
.modal_header .close-btn button {
    background-color: transparent;
    border: none;
    outline: none;
}
.modal_header .close-btn button i {
    font-size: 25px;
    color: #fff;
}
.modal-content {
    border: 1px solid var(--border-color);
    background: var(--webkit-dropdown-bg);
    background: var(--dropdown-bg);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    -webkit-border-radius: 15px;
    border-radius: 15px;
}
.modal_body .profile_img,
.modal_body .profile_img img {
    width: 115px;
}
.modal_body .profile_img button {
    font-size: 10px;
}
.modal_body .info .list .item {
    padding: 7px 0;
    border-bottom: 1px solid rgba(211, 206, 206, 0.216);
}
.modal_body .info .list .item span:first-child {
    color: #fff;
}
.modal_body .info .list .item span:last-child {
    color: #ccd;
}
.modal_body .info .copyButton {
    background-color: transparent;
    outline: none;
    border: none;
}
.modal_body .info .copyButton i {
    color: var(--light-green);
}
.modal_body .btn-success {
    background-color: var(--light-green);
}


.wow {
    animation-duration: 1.8s !important;
}


.btn-orange-dark {
    background-color: var(--light-green);
    border: 1px solid var(--light-green);
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.btn-orange-dark:hover {
    background-color: transparent !important;
    color: var(--light-green);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    color: var(--white);
}
.block-title {
    font-size: 30px;
    line-height: 34px;
    letter-spacing: 0.02em;
    text-align: center;
}
.chat_open .task {
    padding: 0 !important;
}

.orange {
    color: var(--light-green);
}
.right {
    text-align: right;
}
.sidebar-menu .submenu li a,
.sidebar-menu .dropdown-toggle {
    padding: 10px 15px 10px 67px;
}