@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    font-family: "Nunito", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

a {
    transition: 0.5s;
    outline-style: none;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif !important;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}
.login_body
{
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 100%;
    min-height: 100vh;
    position: relative;
    background: url(../images/login_bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 15px;
}
.login_body .form_section
{
    display: block;
    float: left;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
}
.login_body .form_section .heading
{
    display: block;
    float: left;
    width: 100%;
    text-align: center;
}
.login_body .form_section .heading h2
{
    font-size: 25px;
}
.login_body .form_section .heading p
{
    font-size: 16px;
    margin-top: 8px;
}
.login_body .form_section .from
{
    display: block;
    float: left;
    width: 100%;    
}
.login_but_section
{
    text-align: center;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 15px;
}
.btn_style1
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 48px;
    background: #4880FF;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}
.btn_style1:hover
{
    background: #2c5dd0;
    color: #fff;   
}
.login_forget_section
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 5px;
    text-align: right;    
}
.login_forget_section a
{
    color: #2c5dd0;  
}
.verification_area
{
    display: flex;
    width: 100%;
}
.verification_area input
{
    text-align: center;
    margin: 0 10px;
}
.verification_resend_area
{
    display: block;
    width: 100%;
    text-align: center;
    margin: 30px 0;
}
.verification_resend_area a
{
    font-weight: bold;
}

.left_pannel {
    display: block;
    float: left;
    width: 260px;
    min-height: 100vh;
    transition: all .3s;
    transition-timing-function: ease-out;
    position: fixed;
    background: #fff;
}

.right_pannel {
    display: block;
    float: right;
    width: calc(100% - 260px);
    background: #F3F2F7;
    min-height: 100vh;
    position: relative;
    transition: all .3s;
    transition-timing-function: ease-out;
}
.right_top_header {
    display: flex;
    float: left;
    width: 100%;
    height: 54px;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    padding: 0 15px;
    z-index: 3;
}
.right_pannel .body {
    display: block;
    float: left;
    width: 100%;
    padding: 20px 20px 20px 20px;
    position: relative;
}
.left_pannel .inside {
    display: block;
    float: left;
    width: 100%;
    position: absolute;
    z-index: 2;
    height: 100%;
    overflow-y: auto;
    left: 0;
    top: 0;
}
.left_pannel .logo {
    display: block;
    float: left;
    width: 100%;
    padding: 20px;
    text-align: center;
}
.left_pannel .logo img {
    width: 100%;
}

.left_pannel .menu_area {
    display: block;
    float: left;
    width: 100%;
    padding: 10px 0 20px 0;
}
.left_pannel .nav-link {
    padding: 13px 15px;
    display: inline-block;
    width: calc(100% - 30px);
    color: #464255;
    margin: 2px 15px;
    cursor: pointer;
    font-weight: 700;
    position: relative;
}
.left_pannel .nav-link svg
{
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -5px;
}
.left_pannel .active {
    color: #4880FF;
    border-radius: 8px;
    background: rgba(72, 128, 255, 0.18);
    position: relative;
}
.left_pannel .active path  {
    fill: #4880FF;
}
.left_pannel .active::after
{
    position: absolute;
    content: "";
    left: -15px;
    top: 0;
    width: 6px;
    height: 100%;
    background: #4880FF;
    border-radius: 5px;
}
.left_pannel .nav-link:hover {
    color: #4880FF;
    border-radius: 8px;
    background: rgba(72, 128, 255, 0.18);
}
.left_pannel .nav-link:hover path  {
    fill: #4880FF;
}

.left_pannel .nav-link:hover ::after
{
    position: absolute;
    content: "";
    left: -15px;
    top: 0;
    width: 6px;
    height: 100%;
    background: #4880FF;
    border-radius: 5px;
}
.left_pannel .dropdown-menu.show {
    display: block;
    position: relative !important;
    transform: none !important;
}
.left_pannel .dropdown-menu.show {
    margin: 0 15px !important;
}
.dropdown-item
{
    cursor: pointer;
    
}

.left_pannel .inside::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #ebebeb;
    background-color: #ebebeb;
}

.left_pannel .inside::-webkit-scrollbar {
    width: 5px;
    background-color: #4880FF;
}

.left_pannel .inside::-webkit-scrollbar-thumb {
    background-color: #4880FF;
}


.right_top_header .left_header {
    display: flex;
    align-items: center;
}
.right_top_header .left_header  img
{
    width: 25px;
    cursor: pointer;
}
.right_top_header .header_right {
    display: flex;
    width: auto;
    align-items: center;
}
.profile_img2 {
    display: inline-block;
    vertical-align: middle;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    overflow: hidden;
    background: #00B6B0;
    text-align: center;
    line-height: 34px;
    color: #fff;
    margin-right: 5px;
    flex: 34px 0 0;
}

.profile_img2 img {
    float: left;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.notification_section {
    display: flex;
    width: 36px;
    height: 36px;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(72, 128, 255, 0.18);
}

.notification_section img {
    height: 15px;
}

.notification_section span {
    position: absolute;
    top: -4px;
    right: -5px;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #4880FF;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 1px solid #4880FF;
}

.top_header_profile {
    display: flex;
    vertical-align: top;
    width: auto;
    position: relative;
    align-items: center;
    cursor: pointer;
}

.top_header_profile p {
    font-size: 12px;
    font-weight: 500;
}

.top_header_profile .drop {
    display: none;
    float: left;
    width: 170px;
    position: absolute;
    right: 0;
    top: 34px;
    background: #fff;
    padding: 10px;
    border-radius: 6px;

}

.top_header_profile:hover .drop {
    display: block;
}

.top_header_profile .drop ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.top_header_profile .drop ul i {
    margin-right: 5px;
}

.top_header_profile .drop ul li a {
    color: #000;
    padding: 5px;
    display: inline-block;
    vertical-align: top;
}

.top_header_profile .drop ul li a:hover {
    color: #4880FF;
}
.left_pannel.active {
    margin-left: -260px;
}
.right_pannel.active2 {
    width: 100%;
}
.page_main_heading
{
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.page_main_heading h2
{
    font-size: 24px;
    margin: 10px 0;
}
.page_main_heading .right
{
    display: flex;
    flex-wrap: wrap;
}
.page_sub_heading
{
    display: flex;
    float: left;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.page_sub_heading h2
{
    font-size: 19px;
}
.date_picker
{
    display: inline-block;
    vertical-align: top;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
}
.ui.input input
{
    border: none;
}
i.icon {
    font-family: "Font Awesome 6 Free";
}
i.icon.chevron.left:before {
    content: url(../images/chevron-left-solid.svg) !important;
    display: inline-block;
    width: 12px;
    height: 12px;
}
i.icon.chevron.right:before {
    content: url(../images/chevron-right-solid.svg) !important;
    display: inline-block;
    width: 12px;
    height: 12px;
}

.ui.input {
    cursor: pointer;
}
.ui[class*="left icon"].input>i.icon {
    border-radius: 15px;
    background: rgba(72, 128, 255, 0.18);
}
i.icon.calendar:before {
    color: #4880FF;
}
.ui[class*="left icon"].input>input {
    padding-left: 48px !important;
}
.ui.calendar .ui.table tr td.today {
    font-weight: 700;
    color: #4880FF !important;
    background: rgba(72, 128, 255, 0.18);
}
.ui.table td.active, .ui.table tr.active {
    color: #4880FF !important;
}

.dashboard_boxes
{
    display: block;
    float: left;
    width: 100%;
}
.dashboard_count_box1
{
    display: flex;
    align-items: center;
    float: left;
    width: 100%;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
    padding: 15px;
    margin-top: 20px;
}
.dashboard_count_box1 .text_area
{
    display: block;
    float: left;
    width: 100%;
} 
.dashboard_count_box1 .text_area p
{
    color: #202224;
}
.dashboard_count_box1 .text_area h2
{
    color: #000;
    font-size: 22px;
    font-weight: 600;
}
.dashboard_count_icon
{
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex: 0 0 50px;
}
.icon_bg1
{
    background: #FEF2D6;
}
.icon_bg2
{
    background: #E4E4FF;
}
.icon_bg3
{
    background: #FFDED2;
}
.icon_bg4
{
    background: #D9F7E7;
}
.icon_bg5
{
    background: #E4F5FF;
}
.icon_bg6
{
    background: #E9D9ED;
}

.table_section
{
    display: block;
    float: left;
    width: 100%;
    margin-top: 40px;
}
.table_section .heading
{
    display: block;
    float: left;
    width: 100%;
}
.table_section .heading h2
{
    font-size: 20px;
}
.table_main_area
{
    display: block;
    float: left;
    width: 100%;
    margin-top: 20px;
    background: #fff;
    border: 0.3px #B9B9B9;
    border-radius: 12px;
    font-size: 14px;
    overflow: hidden;
    overflow-x: auto;
}

.table_main_area th {
    background: #f8f8f8;
}
.table_main_area .table>:not(:first-child) {
    border-top: none;
}
.table_main_area table
{
    float: left;
    width: 100%;
    margin: 0;
    border-radius: 12px;
    min-width: 800px;
}
.table_main_area th
{
    color: #000;
    background: #FCFDFD;
    text-align: center;
}
.table_main_area td {
    text-align: center;
    vertical-align: middle;
}
.panna
{
    background: #D9F7E7;
    color: #4AD991;
    padding: 2px 10px;
    border-radius: 4px;
}
.jodi
{
    background: #DEE8FF;
    color: #4880FF;
    padding: 2px 10px;
    border-radius: 4px;
}
.card
{
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.card-header
{
    font-size: 15px;
    background: #FCFDFD;
    border-bottom: 1px solid #D5D5D5;
    padding: 12px 15px;
}
.form-control ,.form-select
{
    height: 42px;
    padding: 10px .75rem;
}

.form-control:focus ,.form-select:focus {
    border-color: none;
    outline: 0;
    box-shadow: none;
}
.btn-primary
{
    background: #4880FF;
    padding: 9px 20px;
}
.off_on .form-check-input:checked {
    background-color: #4AD991;
    border-color: #4AD991;
}
.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: none;
}
.flex_div
{
    display: flex;
    align-items: center;
}
.flex_div p
{
    margin-right: 15px;
}
.modal-footer
{
    border: none;
    justify-content: center;
    padding: 15px 0 30px 0;
}
.modal-header {
    border: none;
}
.logout_modal_body_section
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}
.logout_modal_body_section .heading
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
}
.logout_modal_body_section .heading h2
{
    font-size: 18px;
}
.modal-body
{
    padding: 0 0 0 0;
}
.logout_modal_body_section .body_area
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 10px;
}
.logout_modal_body_section .body_area p
{
    font-size: 18px;
}
.modal_grey_but
{
    display: inline-block;
    vertical-align: top;
    padding: 6px 20px;
    min-width: 100px;
    background: #5D5D5D;
    color: #fff;
}
.modal_grey_but:hover
{
    background: #5D5D5D;
    color: #fff;
}
.modal_blue_but
{
    display: inline-block;
    vertical-align: top;
    padding: 6px 20px;
    min-width: 100px;
    background: #4880FF;
    color: #fff;
}
.modal_blue_but:hover
{
    background: #4880FF;
    color: #fff;
}
.btn-close
{
    background: url(../images/modal_cross.svg) center no-repeat;
    border-radius: 100%;
    opacity: 1;
}
.modal-content
{
    border-radius: 20px;
}
.modal-title span
{
    color: #4880FF;
}

.panna_list_table_area
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #D5D5D5 !important;
}
.panna_list_table_area td, th
{
    text-align: center;
    background: #fff;
}
.panna_list_table_area th
{
    background: #f8f8f8;
}
.panna_list_table_area .table>:not(:first-child) {
    border-top: none
}
.panna_list_table_area table
{
    margin: 0;
}


.fixed_header{
    table-layout: fixed;
    border-collapse: collapse;
}

.fixed_header tbody{
  display:block;
  width: 100%;
  overflow: auto;
  max-height: 300px;
}

.fixed_header thead tr {
   display: block;
}

.fixed_header th, .fixed_header td {
  padding: 5px;
  width: 500px;
}

.fixed_header tbody::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px #ebebeb;
    background-color: #ebebeb;
}

.fixed_header tbody::-webkit-scrollbar {
    width: 5px;
    background-color: #4880FF;
}

.fixed_header tbody::-webkit-scrollbar-thumb {
    background-color: #4880FF;
}
.panna_list_table_price_section
{
    display: flex;
    float: left;
    width: 100%;
    flex-wrap: wrap;
}
.panna_list_table_price_section span
{
    background: #EDEDED;
    color: #000;
    font-size: 17px;
    margin: 20px 12px 0 0;
    font-weight: bold;
    padding: 12px 15px;
}
.search_section
{
    display: flex;
    float: left;
    width: 100%;
    margin-top: 10px;
    justify-content: flex-end;
}
.has-search
{
    width: 100%;
    max-width: 300px;
}

.has-search .form-control {
    padding-left: 40px;
    border-radius: 50px;
    width: 100%;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 50px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}
.user_img
{
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}
.update {
    background: #CCF0EB;
    color: #00B69B;
    padding: 2px 10px;
    border-radius: 4px;
}
.time
{
    color: #4880FF;
}
.status_section
{
    display: inline-block;
    background: #FAFBFD;
    border-radius: 5px;
    border: 1px solid #D5D5D5;
}
.status_section img
{
    width: 30px;
    height: 30px;
    object-fit: contain;
    object-position: center;
    padding: 6px 5px;
    border-right: 1px solid #97979761;
}
.version
{
    width: 60px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 22px;
    font-weight: bold;
    background: #DEE8FF;
    color: #4880FF;
    font-size: 10px;
    border-radius: 8px;
    border-left: 5px solid #fff;
    border-top: 5px solid #fff;
    border-bottom: 5px solid #fff;
    border-right: 5px solid #fff;
}
.status_section img:last-child
{
    border: none;
}
.table_min_width800
{
    min-width: 800px !important;
}
.user_update_user_box
{
    display: flex;
    float: left;
    vertical-align: top;
    padding: 10px;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
    margin-top: 10px;
    align-items: center;
}
.user_update_user_box .img_area
{
    display: inline-block;
    vertical-align: middle;
    width: 44px;
    height: 44px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 12px;
}
.user_update_user_box .img_area img
{
    float: left;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.user_update_user_box .text_area
{
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.user_update_user_box .text_area strong
{
    color: #4880FF;
}
.referred_text h2
{
    font-size: 15px;
    color: #606060;
    font-weight: 300;
}
.referred_text p
{
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.green-but
{
    background: #4AD991;
    padding: 10px 20px;
    color: #fff;
}
.green-but:hover
{
    background: #2dad6d;
    color: #fff;    
}

.yellow-but
{
    background: #FEC53D;
    padding: 10px 20px;
    color: #fff;
}
.yellow-but:hover
{
    background: #b88b22;
    color: #fff;    
}

.red-but
{
    background: #FF6024;
    padding: 10px 20px;
    color: #fff;
}
.red-but:hover
{
    background: #c54516;
    color: #fff;    
}
.game_bazi
{
    display: inline-block;
    vertical-align: top;
    background: #DEE8FF;
    color: #4880FF;
    border-radius: 5px;
    padding: 2px 6px;
}
.game_time
{
    color: #00B69B;
    font-weight: bold;
}


.logout_modal_body_section
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}
.create_game_modal_body
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: center;
}
.create_game_modal_body p
{
    font-size: 18px;
}
.create_game_modal_body h2
{
    font-size: 22px;
    color: #4880FF;
}
.ledger_tab_section
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 30px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #4880FF;
}
.nav-link {
    color: #000;
}

.ledger_price_section
{
    display: flex;
    float: left;
    width: 100%;
    flex-wrap: wrap;
}
.ledger_price_section span
{
    background: #fff;
    color: #000;
    font-size: 17px;
    margin: 20px 12px 0 0;
    font-weight: bold;
    padding: 12px 15px;
}
.credit
{
    color: #FF6024;
    font-weight: bold;
}
.debit
{
    color: #00B69B;
    font-weight: bold;
}  

.date_search_section
{
    display: flex;
    float: left;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.date_search_section .left
{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}
.date_search_section .left label
{
    font-size: 12px;
    margin-bottom: 5px;
}
.date_search_section .right
{
    display: flex;
    align-items: center;
}
.but_red
{
    background: #FF6024;
    border: 1px solid #FF6024;
    white-space: nowrap;
}
.pending
{
    display: inline-block;
    vertical-align: top;
    padding: 2px 10px;
    border-radius: 3px;
    background: #FFEDDD;
    color: #FFA756;
}
.approved
{
    display: inline-block;
    vertical-align: top;
    padding: 2px 10px;
    border-radius: 3px;
    background: #CCF0EB;
    color: #00B69B;
}
.rejected {
    display: inline-block;
    vertical-align: top;
    padding: 2px 10px;
    border-radius: 3px;
    background: rgba(255, 0, 0, 0.2); /* Blur red */
    color: #8B0000; /* Deep red */
}
.balance_request_approved
{
    color: #4AD991;
    font-weight: bold;
    font-size: 14px;
}
.balance_request_pending
{
    color: #FEC53D;
    font-weight: bold;
    font-size: 14px;
}

.balance_request_reject
{
    color: #FF6024;
    font-weight: bold;
    font-size: 14px;
}
.reject_reason
{
    height: 100px;
}
.view_img
{
    width: 100%;
    max-width: 250px;
}
.search_form
{
    display: flex;
    align-items: center;
}
.search_form .form-group
{
    margin-right: 5px;
}
.clear_search
{
    white-space: nowrap;
    font-weight: bold;
    color: #4880FF;
}
.table_date
{
    white-space: nowrap;
}
.showing
{
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin-top: 10px;
}
.pagination
{
    margin-top: 10px;
}
.left_pannel .inside .menu {
    display: none;
    position: sticky;
    top: 0;
    padding: 15px;
    font-size: 20px;
    background: #fff;
    text-align: right;
    z-index: 2;
    box-shadow: 6px 6px 54px 0px rgba(0, 0, 0, 0.05);
}