@font-face {
    font-family: 'proza_libresemibold';
    src: url('../font/prozalibre-semibold-webfont.eot');
    src: url('../fonts/prozalibre-semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/prozalibre-semibold-webfont.woff2') format('woff2'),
         url('../fonts/prozalibre-semibold-webfont.woff') format('woff'),
         url('../fonts/prozalibre-semibold-webfont.ttf') format('truetype'),
         url('../fonts/prozalibre-semibold-webfont.svg#proza_libresemibold') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'proza_librebold';
    src: url('../fonts/prozalibre-bold-webfont.eot');
    src: url('../fonts/prozalibre-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/prozalibre-bold-webfont.woff2') format('woff2'),
         url('../fonts/prozalibre-bold-webfont.woff') format('woff'),
         url('../fonts/prozalibre-bold-webfont.ttf') format('truetype'),
         url('../fonts/prozalibre-bold-webfont.svg#proza_librebold') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'intermedium';
    src: url('../fonts/inter-medium-webfont.eot');
    src: url('../fonts/inter-medium-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/inter-medium-webfont.woff2') format('woff2'),
         url('../fonts/inter-medium-webfont.woff') format('woff'),
         url('../fonts/inter-medium-webfont.ttf') format('truetype'),
         url('../fonts/inter-medium-webfont.svg#intermedium') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'interregular';
    src: url('../fonts/inter-regular-webfont.eot');
    src: url('../fonts/inter-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/inter-regular-webfont.woff2') format('woff2'),
         url('../fonts/inter-regular-webfont.woff') format('woff'),
         url('../fonts/inter-regular-webfont.ttf') format('truetype'),
         url('../fonts/inter-regular-webfont.svg#interregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

:root {
  --ff-primary-color: #2F913B;
  --ff-primary-color-dark: #024A13;
  --ff-contrast-color: #fff ;
  --ff-input-bg-color: #F6F7F9 ;
  --ff-text-color: #000;
}
img{
    max-width:100%;
    height:auto;
}

body,
.layout_table {
    margin:0;
    padding:0;
    font-size:12px;
    font-family: 'interregular';
    background: #f1f1f1;
}
*{
    box-sizing:border-box;
}

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

a{
    text-decoration:none;
    color: var(--ff-contrast-color);
}

textarea:focus, 
input:focus, 
button:focus, 
select:focus{
    outline:none;
}
input::-webkit-input-placeholder{
    color:#a7a7a7 !important;
    font-size:12px;
    vertical-align:middle;
    font-family: 'interregular';
}
textarea::-webkit-input-placeholder{
     color: #6B6F80;
     font-family: 'interregular';
     font-size: 16px;
     line-height: 24px;
}

.field-error {
    float: left;
    color: #F00;
    width: 100%;
}


p {
    color: var(--ff-text-color);
    font-size: 14px;
    line-height: 26px;
    margin: 0 0 10px 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'proza_librebold';
}
.container {
    width: 96%;
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
    display: table;
}
.btn {
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    color: var(--ff-contrast-color);
    background: var(--ff-primary-color-dark);
    border: solid 1px var(--ff-primary-color);
    float: left;
    margin-bottom: 10px;
}
.btn:hover{
    color: var(--ff-primary-color);
    background: var(--ff-contrast-color);
}

.resend-otp {
    float: right;
    background: none;
    border: none;
    color: var(--ff-primary-color-dark);
}

.resend-otp:disabled {
  color: #666666;           /* Faded text color */
  cursor: not-allowed;      /* Show "not allowed" cursor on hover */
  opacity: 0.6;             /* Make it look faded */
}

.main{
    float: left;
    width: 100%;
}

.layout_table{
    display: table;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.layout_table .layout_table_cell{
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}
.box{
    width: 95%;
    max-width: 400px;
    background: white;
    display: table;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 1px 1px 2px #ccc;
    border-radius: 6px;
    position: relative;
}
.box .logo_wrap{
    width: 80px;
    height: 80px;
    position: absolute;
    margin-top: -40px;
    top: 0;
    left: 50%;
    margin-left: -40px;
    background: var(--ff-contrast-color);
    border-radius: 50%;
}

.input_field {
    float: left;
    width: 100%;
    margin-top: 5px;
    position: relative;
}
.input_field .btn{
    width: 100%;
    padding: 10px;
}
label.form_label {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
    color: var(--ff-text-color);
    float: left;
    width: 100%;
    font-weight: bold;
    margin-bottom: 5px;
}
.input_box {
    padding: 12px 16px;
    border: 0;
    width: 218px;
    height: 48px;
    background: var(--ff-input-bg-color);
    border-radius: 4px;
    float: left;
    width: 100%;
}
.visibility_btn {
    position: absolute;
    right: 12px;
    top: 45px;
    font-size: 14px;
    cursor: pointer;
}
.sign_up_wrap {
    float: left;
    width: 100%;
    margin-top: 32px;
    text-align: center;
    color: #616161;
    font-size: 16px;
}
.sign_up_wrap a,
.box a{
    color: var(--ff-primary-color);
}
.hidden_field{
    display: none;
}
.header {
    float: left;
    width: 100%;
    background: var(--ff-primary-color);
    padding: 10px 0;
    box-shadow: 1px 2px 3px #00000073;
    position: fixed;
    z-index: 99;
}
.header .menu_trigger {
    float: left;
    color: var(--ff-contrast-color);
    padding: 10px;
    font-size: 20px;
}
.header .menu_trigger:hover{
    background: var(--ff-contrast-color);
    color: var(--ff-primary-color);
    border-radius: 8px;
}
.header .logo_wrap {
    float: left;
    max-width: 35px;
    margin: 0 0 0 10px;
}
.header .logo_wrap a{
    float: left;
}
.header .balance {
    float: right;
    display: flex;
    padding: 5px 5px;
    background: #ffffff;
    border-radius: 8px;
    font-size: 12px;
    width: 120px;
}
.balance .balance_icon {
    width: 30px;
    text-align: center;
    vertical-align: middle;
    font-size: 22px;
    display: table;
     color: var(--ff-primary-color);
}
.balance .balance_icon span{
    display: table-cell;
    vertical-align: middle;
}
.balance .balance_right {
    width: calc( 100% - 30px);
    text-align: center;
}
.balance .balance_right a{
    float: left;
    width: 100%;
    color: var(--ff-primary-color);
}
.balance .balance_right a.main_balance {
    font-size: 16px;
    line-height: 16px;
}
.balance .balance_right a.wallet_balance {
    font-size: 10px;
}
.menu-wrap {
    position: fixed;
    background: var(--ff-primary-color);
    left: -100%;
    top: 0;
    z-index: 999999;
    width: 96%;
    max-width: 400px;
    height: 100%;
    padding: 60px 20px 20px;
    box-shadow: 1px 2px 3px #00000073;
    overflow: auto;
    transition: all 0.5s ease;
}
.menu-wrap.open{
    left: 0;
}
.menu-wrap .close_menu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 999;
}

.menu-wrap .profile_name{
   display: flex;
    justify-content: center;
    gap: 10px;
    background: var(--ff-primary-color-dark);
    /* border-radius: 8px; */
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.menu-wrap .profile_name .user_img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.menu-wrap .profile_name .user_name {
    color: var(--ff-contrast-color);
    font-size: 16px;
}

.menu-wrap .profile_name .user_name .user_mob_no {
    width: 100%;
    float: left;
    font-size: 10px;
}

.menu-wrap ul{
    margin-top: 30px;
    float: left;
    list-style: none;
}
.menu-wrap ul li{
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.menu-wrap ul li a{
    background-color: #024a1321;
    padding: 10px;
    border-radius: 5px;
    float: left;
    width: 100%;
    transition: all 0.5s ease;
}
.menu-wrap ul li.current-menu-item a,
.menu-wrap ul li:hover a{
    background-color: var(--ff-primary-color-dark);
}

.menu-wrap ul li:last-child a {
    margin-top: 50px;
    background: #bd1414;
    text-align: center;
    font-size: 16px;
    padding: 10px;
}

.main_wrap {
    float: left;
    width: 100%;
    padding: 60px 0 80px 0;
}
.section {
    float: left;
    width: 100%;
    padding: 50px 0;
}
.section.dashboard {
    padding: 0;
}
.hero {
    float: left;
    width: 100%;
}
.marquee_wrap {
    float: left;
    width: 100%;
    background: var(--ff-primary-color-dark);
}
.marquee_wrap p{
     color: var(--ff-contrast-color);
     padding: 5px 0;
     margin: 0;
}
.action_buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 30px;
}
.action_buttons a{
    padding: 8px 10px;
    background: #024a1387;
    border-radius: 5px;
}

.action_buttons a:hover{
    background: var(--ff-primary-color-dark);
}

.games{
    float: left;
    width: 100%;
}
.games ul{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1%;
}
.games ul li{
    width: 49%;
    margin: 0 0 15px 0;
    background: #024a1387;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    box-shadow: 1px 3px 5px #000000c2;
}
.games ul li .game_col{

} 

.games ul li .game_img{
    width: 15%;
}
.games ul li .game_img img{
    border-radius: 5px;
}
.games ul li .game_title{
    width: 75%;
    display: table;
    padding: 5px;
}
.games ul li .game_title .game_title_cell{
    display: table-cell;
    vertical-align:middle;

}
.games ul li .game_title .game_title_cell p{
    margin: 0 0 0px 0;
     color:var(--ff-contrast-color);
}
.games ul li .play_btn{
    width: 10%;
    text-align: center;
    display: table;
}
.games ul li .play_btn i{
    padding: 5px;
    background: var(--ff-primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    line-height: 20px;
    text-align: center;
    box-shadow: 0px 1px 5px #000;
}
.games ul li .play_btn:hover i{
    background: var(--ff-primary-color-dark);
}

.games ul li .play_btn.off i{
    background: red;
}
.games ul li .play_btn.off:hover i{
    background: red;
}
.games ul li .play_btn a,
.games ul li .play_btn span{
    display: table-cell;
    vertical-align: middle;
}

.back_wrap{
    background: #024a13;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    box-shadow: 1px 1px 2px #0000006e;
    float: left;
    width: 100%;
    color: #FFF;
    margin-bottom: 20px;
}
.back_wrap .back_icon{
    width: 50px;
}
.back_wrap h2 {
    margin: 0;
    width: calc(100% - 50px);
    text-align: right;
    font-size: 16px;
    font-weight: 400;
}
.app_page{
    display: none;
}
.game_types {
    display: flex;
    gap: 1%;
    flex-wrap: wrap;
}
.game_types  .game_type{
    width: 24%;
}

.closed_time {
    display: table;
    clear: both;
    margin: 0 auto;
    margin-bottom: 20px;
    background: #024a13;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 1px 1px 2px #0000006e;
    color: #FFF;
}
.closed_time .close_txt{
    display: table-cell;
    padding: 3px;
}
.closed_time .timer{
    display: table-cell;
    padding: 3px 0 3px 16px;
    position: relative;
}
.closed_time .timer:before {
    width: 12px;
    height: 12px;
    content: "\f017";
    position: absolute;
    left: 4px;
    top: 5px;
    font-family: "Font Awesome 5 Free";
    left: 0;
}

.sub-heading {
    width: 100%;
    float: left;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    text-align: center;
}

.digit-table{
    width:100%;
    float:left;
    margin-top:20px;
    margin-bottom:30px;
}
.digit-table table {
    width: 100%;
    float: left;
    background:#fff;
    border-radius: 3px;
    overflow: hidden;
    border-spacing: 0;
    color:#000;
}
.digit-table table th {
    padding: 10px;
    text-align: center;
    background: var(--ff-primary-color-dark);
    color: #fff;
    font-weight: 400;
    font-size: 14px;
}
.digit-table table td {
    padding: 10px;
    text-align: center;
    color: #000;
    border-bottom: 6px solid #f6f6f6;
}
.digit-table a.bet_delete {
    width: 20px;
    height: 20px;
    display: inline-block;
    color: red;
}
.hide{
    display: none;
}
.bet_summery {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    bottom: -100%;
    transition: all 0.5s ease;
    backdrop-filter: saturate(180%) blur(10px);
    border-top: 6px solid #ffffff;
    color: #000;
    left: 0;
}
.bet_summery.open{
    bottom: 0;
}
.bs_title {
    background: var(--ff-primary-color-dark);
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}
.bs_content {
    float: left;
    width: 100%;
    padding: 15px;
    font-size: 12px;
   
}
.bs_table{
    float: left;
    width: 100%;
}
.bs_table table {
    width: 100%;
    text-align: center;
}
.bs_table table thead th {
    padding: 5px;
    font-weight: 700;
    color: #fff;
    border-bottom: 0;
    background: var(--ff-primary-color-dark);
}
.bs_table table tbody td{
    border: solid 1px var(--ff-primary-color-dark);
    padding: 5px;
}
.bs_details {
    float: left;
    width: 100%;
    margin-top: 15px;
}
.bs_details table{
    width: 100%;
}
.bs_details table th{
    width: 70%;
    text-align: left;
    padding: 5px 0;
    font-weight: normal;
}
.bs_details table td{
    width: 30%;
    padding: 5px 0;
    text-align: right;
}
.bs_details .note {
    color: #2a85bb;
    font-size: 10px;
}
.bs_buttons{
    float: left;
    width: 100%;
    margin-top: 20px;
}
.bs_buttons .bs_submit, .bs_buttons .bs_cancel {
    border: none;
    padding: 10px 20px;
    color: #fff;
    box-shadow: 0 1px 4px 0 #53535399;
    background: #3a93e3;
    width: 49%;
    float: left;
    border-radius: 20px;
}
 .bs_buttons .bs_cancel {
    float: right;
    background: #ff0031;
    color: #FFF;
}
.bank_details_wrap{
    float: left;
    width: 100%;
    margin-top: 20px;
}
.bank_details_wrap h4{
    float: left;
    color: #FFF;
}
.ac_details{
    display: flex;
    float: left;
    width: 100%;
}
.ac_details .ac_content{
    width: 25%;
    padding: 10px;
    text-align: center;
}
.qr_wrap {
    display: flex;
    gap: 5px;
}
.qr_wrap .qr_code {
    width: 50%;
    padding: 0;
}
.ac_content_inner{
    display: flex;
    flex-wrap: wrap;
}
.download-qr {
    background: var(--ff-primary-color-dark);
    padding: 10px;
    float: left;
    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
}

.ac_content_inner .ac_number{
    width: 100%;
    border-radius: 5px;
    background: var(--ff-primary-color-dark);
    color: #FFF;
    margin-bottom: 5px;
    font-size: 12px;
    display: flex;
    overflow: hidden;
}
.ac_content_inner .ac_number span{
    width: 80%;
    padding: 10px;
}
.ac_content_inner .ac_number a {
    width: 20%;
    padding: 10px;
    text-align: center;
    border-left: solid 1px #ccc;
    font-size: 16px;
    background: #ffffff;
    color: var(--ff-primary-color);
}
.account-section {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}
.change_img_wrap {
    display: table;
    margin: 0 auto;
    position: relative;
}
.change_img_wrap img{
    float: left;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}
.change_img_wrap input[type="file"]{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
}
.change_img_wrap  .upload_trigger{
    position: absolute;
    bottom: 0;
    right: 0;
}
.account-section .sub-heading{
    border:none;
}
.account-section .sub-heading a{
    background: var(--ff-primary-color-dark);
    float: left;
    width: 100%;
    padding: 10px;
    color: #fdf9f9;
    border-radius: 5px;
    position: relative;
}
.account-section .sub-heading a:after{
    content: " ";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -3px;
}
.account-section .update-form{
    display: none;
}
.account-section.open .sub-heading a:after{
    border-top: none;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 6px solid #fff;
}
.table_wrap {
    float: left;
    width: 100%;
}
.table_wrap ul{
    float: left;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
   
}

.table_wrap ul li{
    display: flex;
    width: 100%;
    background: #FFF;
    margin-bottom: 10px;
    border-radius: 3px;
    border: solid 1px #CCC;
    box-shadow: 1px 2px 2px #CCC;
}
.table_wrap ul.tab_header li{
   background: var(--ff-primary-color-dark);
   color: #FFF; 
}

.table_wrap ul li span{
    flex: 1;
    padding: 10px 5px;
    text-align: left;
}

.table_wrap ul li span h3{
    margin: 0 0 3px 0;
}
.table_wrap ul li span a{
    color: #000;
}
.table_wrap ul li span h3 span {
    display: inline-block;
    height: 10px;
    background: #2f913b;
    /* float: left; */
    width: 10px;
    border-radius: 50%;
    padding: 0;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -3px;
}
.table_wrap ul li span h3 span.deactive {
    background: #F00;
}
.expiry {
    float: left;
    padding: 4px 4px !important;
    background: #2f913b;
    color: #FFF;
    border-radius: 12px;
    font-size: 7px;
    margin-top: 5px;
}
.table_wrap ul li span h3 span.expiring,
.expiry.expiring{
    background: orange;
}
.table_wrap ul li span h3 span.expired,
.expiry.expired{
    background: #F00;
}
.info.status {
    background: green;
    float: left;
    border-radius: 7px;
    color: #FFF;
    padding: 2px 10px;
    margin-top: 5px;
    line-height: 10px;
    font-size: 10px;
}
.info.status.deactive{
    background: #F00;
}

.table_wrap ul li span.options .action{
    width: 100%;
    margin-bottom: 5px;
    float: left;
    background: var(--ff-primary-color);
    padding: 5px 10px;
    text-align: center;
    color: #FFF;
    border-radius: 3px;

}

.pagination {
    display: flex;
    float: left;
    text-align: center;
}
.pagination span, 
.pagination a {
    flex: 1;
    padding: 5px 5px;
    width: 30px;
    height: 30px;
    line-height: 20px;
    background: #ffffff3d;
    margin-right: 5px;
    border-radius: 3px;
}

.pagination a:hover,
.pagination .selected{
    background: var( --ff-primary-color-dark );
    color: #FFF;
}

.pagination a .fas{
    line-height: 20px;
}

.tabs {
    float: left;
    width: 100%;
    margin-bottom: 0px;
    display: flex;
    gap: 0px;
    align-items: center;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}
.tabs a {
    background: var(--ff-contrast-color);
    color: var(--ff-primary-color-dark);
    padding: 5px 10px;
    border-radius: 0px;
    flex: 1;
    text-align: center;
}
.tabs a:hover,
.tabs a.active{
    background: var(--ff-primary-color-dark);
    color: #FFF;
}
.no_record{
    width: 100%;
    color: #000000;
    background: #f9d1d1;
    float: left;
    padding: 15px 10px;
    text-align: center;
    margin-top: 5px;
}
.table_wrap ul li span.status{
    display:inline-block;
    padding:1px 3px;
    font-size:10px;
    border-radius:3px;
    border:1px solid transparent;
}

/* Pending - pastel orange */
.status.pending{
    background:#FFF1E6;
    color:#C96A00;
    border-color:#FFD8B5;
}

/* Success - pastel green */
.status.approved,
.status.success,
.status.win{
    background:#E9F7EF;
    color:#1E7E34;
    border-color:#B7E4C7;
}

/* Rejected - pastel red */
.status.rejected,
.status.loss{
    background:#FDECEC;
    color:#B02A37;
    border-color:#F5C2C7;
}

.table_wrap.result_wrap ul li{
    flex-wrap: wrap;
}
.result_wrap .result_date {
    float: left;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    background: var(--ff-primary-color-dark);
}
.result_wrap .result{
    width: 100%;
    display: flex;
}
.result_wrap .result {
    width: 100%;
    display: flex;
}
.result_wrap .result span {
    padding: 0;
}
.result_wrap .result span span{
    padding: 5px 0;
    float: left;
    width: 100%;
}

.table_wrap.trans_wrap ul li span.trans_left{
    width: 60%;
    flex: auto;
}

.table_wrap.trans_wrap ul li span span{
    float: left;
    width: 100%;
    text-align: left;
    padding: 0;
    margin-bottom: 5px;
}

.table_wrap.trans_wrap ul li span span.trans_type {
    font-size: 14px;
    font-weight: bold;
}
.table_wrap.trans_wrap ul li span span.trans_desc {
    font-size: 10px;
}
.table_wrap.trans_wrap ul li span span.trans_date{
    font-size: 8px;
}
.table_wrap.trans_wrap ul li span span.debit,
.table_wrap.trans_wrap ul li span span.credit{
    font-size: 12px;
    text-align: center;
    border-radius: 3px;
    float: right;
    width: auto;
    padding: 0px 6px;
}

.table_wrap.trans_wrap ul li span span.debit{
    background:#FDECEC;
    color:#B02A37;
    border-color:#F5C2C7;
}
.table_wrap.trans_wrap ul li span span.credit{
    background:#E9F7EF;
    color:#1E7E34;
    border-color:#B7E4C7;
}

.table_wrap.trans_wrap ul li span span.trans_balance{
    font-size: 10px;
    text-align: right;
}



.popup_wrap {
    background: rgba(0, 0, 0, 0.37);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    overflow: auto;
    z-index: 99999;
    display: none;
    
}
.popup_row{
     display: table;
     width: 100%;
     margin: 0;
     height: 100%;
}
.popup_col{
    display: table-cell;
    vertical-align: middle;
}
.pop {
    width: 96%;
    max-width: 450px;
    position: relative;
    padding: 10px;
    background: #fff;
    margin: 0 auto;
    display: table;
    border-radius: 10px;
}
.pop .popup_content {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom:0;
}
.pop .popup_content h4 {
    font-size: 24px;
    margin: 0 0 19px;
    line-height: 31px;
}
.pop .popup_content p {
    font-size: 16px;
    line-height: 23px;
    margin: 5px 0 8px;
}
.close_button {
    font-size: 12px;
    margin: 0px;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    border: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: var(--ff-primary-color-dark);
    color: #FFF;
    border-radius: 50%;
}
.close_button  i{
    line-height: inherit;
}
.popup_content h5{
    margin: 0 0 10px 0;
    border-bottom: solid 1px #ccc;
    padding: 10px;
    color: var(--ff-primary-color-dark);
    font-size: 16px;
    float: left;
    width: 100%;
}
.table_wrap ul li span.text_center{
    text-align: center;
}
.footer {
    float: left;
    width: 100%;
    background: var(--ff-primary-color);
    padding: 10px 0;
    box-shadow: 1px -2px 3px #00000073;
    position: fixed;
    z-index: 99;
    bottom: 0;
}
.footer ul{
    font-size: 14px;
    list-style: none;
    float: left;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
}
.footer ul li {
    width: 25%;
    text-align: center;
}
.footer ul li.color_menu {
    position: absolute;
    background: var(--ff-primary-color);
    text-align: center;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    padding: 10px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    top: -10px;
    font-size: 16px;
    margin-top: -20px;
    box-shadow: 0px -2px 1px #00000063;
}

.footer a{
    color: var(--ff-contrast-color);
}

