:root {
  --primary-color: #1D9E55; /*45004c*/
  --secondry-color: #e0e1e5;
  --third-color: #0069d9;
  --primary-light-color: #e0e1e5; 
  --secondry-light-color: #fff2ee;
  --btn-primary-color: #400f00;
  --btn-focus-color: #1D9E55;
}

body{
	font-family: Poppins,Helvetica,sans-serif;
	    background-color: #f9faff;
}
.cardboxes_inner{

}

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 1.3rem + 2px);
    padding: .65rem 1rem;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #d5d7d8;
    border-radius: .42rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
        border: 1px solid #bdbdbd;
}
.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--third-color);
}
.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0;
}
.checkbox>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.checkbox>span {
    height: 17px;
    width: 17px;
}

.checkbox>span {
    background-color: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 4px;
    margin-right: 7px;
}
.checkbox>span {
   background-color: #efefef;
    border: 1px solid #ababab;
}
.checkbox>input:checked~span {
    background-color: #238400;
    border: 1px solid #238400;
}
.checkbox>input:checked~span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: none;
}
.checkbox>input:checked~span:after {
    border-color: #fff;
}

.checkbox>input:checked~span:after {
    display: block;
}
.checkbox>span:after {
    width: 5px;
    height: 9px;
}
.checkbox>span:after {
    content: "";
    border-color: transparent;
    border-style: solid;
    border-width: 0 2px 2px 0!important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -2px;
}
.btn_submit{
	font-weight: 400;
    background-color: var(--btn-primary-color);
    font-size: 14px;
    border-color: var(--btn-primary-color);
    padding: 7px 20px;
}
.form-group{
	margin-bottom: 15px;
}

.spin_load{
    margin-right: 8px;
    display: none;
}
.spniner.active .spin_load{
 	display: inline-block;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
	color: #fff;
    background-color: var(--btn-focus-color);
    border-color: var(--btn-focus-color);
}
.login_img{
	    max-width: 150px;
    margin: 0 auto;
    display: block;
}
.login_header{
	margin-top: 25px;
    margin-bottom: 20px;
}
.secation_form_wrap{
	padding: 0px 20px;
}
.forget_txt{
	font-size: 14px;
	margin-bottom: 0px;
}
.signup_txt{
	    padding-top: 12px;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #ddd;
}
.pagelink{
	color: var(--third-color);
}
.btn-primary.focus, .btn-primary:focus{
	box-shadow: 0 0 0 0.2rem rgb(245 83 34 / 16%);
}
.btn-primary:hover{
	    color: #fff;
    background-color: var(--btn-focus-color);
    border-color: var(--btn-focus-color);
}
a:hover{
	color: var(--primary-color);
}
.head_title{
	text-align: center;
    font-size: 22px;
    font-weight: 600;
}
.baseline_title{

}
.baseline_title:after{
	content: '';
    margin: 0 auto;
    width: 50px;
    height: 2px;
    background: var(--third-color);
    display: block;
    margin-top: 11px;
}
.head_subtitle{
	text-align: center;
}
.parsley-errors-list{
	margin-bottom: 0px;
}
input.parsley-error, select.parsley-error, textarea.parsley-error{
	border: 1px solid #a20018;
}
.page_loading {
     display: none; 
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
    top: 0;
    left: 0;
    text-align: center;
}
.page_loading_inner{
	    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.page_loading_inner i{
	font-size: 50px;
    color: var(--primary-color);
}
.page_loading.active{
	display: block; 
}
.page_header{
	    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}
.page_header_inner{
	    padding: 14px 16px;
    display: flex;
    align-self: center;
    align-items: center; 
}
.icon_pg_end{
	color: #ffffff;
	flex: 1;
	text-align: right;
}
.icon_pg{
	margin-right: 20px;
	color: #ffffff;

}
.webicon{
    margin-right: 10px;
}
a.icon_pg:hover{
	color: #ffffff;
}
.page_header_title{
	color: #ffffff;
    margin: 0;
    font-size: 18px;
    text-transform: capitalize;
}

.dash_details_wrap{
	
    background-color: #fff;
    box-shadow: 0px 2px 6px #ddd;
    margin-top: 16px;
    border-radius: 7px;
    overflow: hidden;
}
.dash_details_wrap_end{
	display: flex;
    padding: 16px;
}
.dash_details_top{
	    flex: 1;
	        align-self: center;
}
.dash_details_top p{
	    margin-bottom: 8px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.dash_details_top p:last-child{
	margin-bottom: 0px;
}
.dash_details_top p i{
	margin-right: 12px;
    color: var(--primary-color);
    font-size: 18px;
}
.dash_details_end{
	align-self: center;
}
.member_cont{
	margin: 0;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #fdbdaa;
    text-align: center;
    font-weight: 600;
    color: #000;
    box-shadow: 1px 1px 3px #ddd;
    border-radius: 9px;
    font-size: 15px;
}
.member_cont i{
	    margin-right: 11px;
}
.dash_details_wrap_top{
	    background-color: var(--primary-light-color);
    padding: 10px;
    margin: 0;
}
.login_user{ 
	margin: 0;
    font-size: 16px;
}
.section_title{
	background-color: var(--primary-light-color);
    margin-top: 20px;
    display: flex;
    overflow: hidden;
    border-radius: 4px;
}
.section_title h2{
	    font-size: 15px;
    padding: 9px 11px;
    margin: 0;
}
.section_title h2:after{
	content: '';
}
.section_title:before {
    content: '';
    width: 5px;
    /* display: block; */
    background: var(--primary-color);
}

.section_list_wrap{
	margin-top: 20px;	
}
.sec_list_inner{
	display: flex;
    background-color: #fff;
    /*box-shadow: 1px 2px 5px #ddd;*/
    box-shadow: 1px 1px 7px #ddd;
    overflow: hidden;
    border-radius: 5px;
    padding: 15px 13px;
    margin-bottom: 15px;
}
.sec_list_link{
	display: flex;
	width: 100%;
}
.sec_list_inner .sec_header{
	flex: 1;
	    align-self: center;
}
.sec_header .list_name{
	margin-bottom: 0px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
}
.sec_header .list_date{
	    margin: 0;
    font-size: 12px;
    color: #847f7f;
    margin-top: 4px;
}
.sec_header .list_date i{
	    margin-right: 6px;
}
.sec_list_inner .sec_body{
	    align-self: center;
}
.sec_body .list_count{
	margin-bottom: 0px;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 23px;
    border: 1px solid #f9481336;
    text-align: center;
    padding: 3px 13px;
    font-size: 15px;
}
.sec_body .list_count i{
	margin-right: 10px;
}
.simple_btn{
	background: transparent;
    color: #fff;
    padding: 0px 10px;
    line-height: unset;
    height: auto;
    border: none;
}
a.sec_list_link:hover{
	text-decoration: none;
}
.simple_btn:focus{
	outline: none;
}
.topbar_menu{
	    position: absolute;
    background-color: #fff;
    right: 9px;
    box-shadow: 0px 3px 5px #ddd;
    border: 1px solid #e6e6e6;
    display: none;
    z-index: 99;
}
.topbar_menu ul{
	    margin: 0;
    padding: 0;
    list-style: none;
}
.topbar_menu ul li{
	border-bottom: 1px solid #ddd;
}
.topbar_menu ul li:last-child{
	border-bottom: none;
}
.topbar_menu li a{
	color: #000;
    font-size: 13px;
    font-weight: 500;
    display: block;
    width: 100%;
    padding: 10px 15px;
}
.topbar_menu li i{
	margin-right: 10px; 
}
.topbar_menu li a:hover{
	text-decoration: none; 
}
.ref_code_txt{
	    border: 2px dashed #ddd;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}
.referral_boxes{
	margin-top: 60px;
}
.ref_note{
	color: #868282;
	text-align: center;
	font-size: 14px;
}
.copy_btn{
	border: none;
    background-color: transparent;
    font-size: 18px;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}
.copy_btn:hover{

}
.copy_btn:focus{
	outline: none;
}

#snackbar {
    visibility: hidden;
    min-width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 10px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 40px;
    font-size: 13px;
    transform: translateX(-50%);
} 
#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 40px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 40px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 40px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 40px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.refcode_cp{
	text-align: center;
    border: none;
   background-color: transparent;
    display: block;
    margin: 0 auto;
}
.refcode_cp:focus{
	outline: none;
} 

::selection {
  color: #ffffff;
  background: var(--primary-color);
}



.modal_block{
    display: block;
}
.modal_title{
    font-size: 16px;
    color: #000;
    font-weight: 600;
    margin-bottom: 0px;
}
.modal_title_tag{
    font-size: 13px; 
}
.modal_btn{
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 10px;
    font-size: 14px;
}
.modal-content{
    border: none;
}
button:focus{
    outline: 2px auto var(--third-color);
}
.location_list{
        padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.location_md{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    padding: 0px 5px;
}
.loc_data{
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    display: block;
}
.loc_data.active{
    color: #fff;
    background-color: var(--primary-color);
}

.input_txt_wrap{
    position: relative;
        margin-top: 11px;
}
.input_serach{
        display: block;
    width: 100%;
    border: 1px solid #000;
    border-radius: 3px;
    padding: 10px 10px 10px 40px;
}
.serch_icon{
    position: absolute;
    z-index: 23;
    transform: translate(0, -50%);
    top: 50%;
    font-size: 19px;
    padding-left: 10px;
    color: #7e7c7c;
}
.input_serach:focus{
    outline: 2px auto var(--primary-color);
}
.partydata{
    border: 1px solid #cbcbcb;
        padding: 10px 10px 4px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}
.party_name{
    font-size: 21px;
    color: var(--primary-color);
    font-weight: 600;
}
.partydata p{
    margin-bottom: 5px;
    font-size: 15px;
}
.partydoc{
    font-weight: 500;
    color: var(--primary-color);
    padding-right: 10px;
}
.partyres{

}
.party_list_wrap{
    margin-top: 120px;
}
.page_body{
    margin-top: 65px;
}
.serachbox_party{
    position: fixed;
    top: 50px;
    width: 100%;
    left: 0;
    padding: 0px 15px 10px 15px;
    background: #fff;
}
.complain_tab_wrap{
        padding: 0px 10px;
        margin-top: 9px;
}
.complain_tab{
        padding: 0px;
    list-style: none;
    display: flex;
    border: 1px solid #fff;
    border-radius: 4px;
        margin-bottom: 10px;
}
.complain_tab .tabinner{
        color: #fff;
    flex: 1;
    text-align: center;
    font-size: 13px;
    padding: 3px;
}
.complain_tab .tabinner:not(:last-child){
    border-right: 1px solid #fff;
}
.tabinner.active{
    background-color: #fff;
    color: #000;
}
.complain_body{
        margin-top: 110px;
}
.complain_box{
   display: flex;
    box-shadow: 1px 3px 7px #c7c7c7;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px 10px 10px 0px;
    position: relative;
    margin-bottom: 13px;
}
.complin_icon{
    align-self: center;
    padding-left: 12px;
}
.complin_detais{
    flex: 1;
        padding: 0px 12px;
}
.complin_time{
    align-self: center;
    text-align: center;
}
.comiocn{
        background-color: #ddd;
    border-radius: 50%;
    width: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
}
.comiocn i{
    color: #fff;
}
.complain_box:before{
        content: '';
    width: 5px;
    display: block;
    background: var(--primary-color);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.cmp_name{
        margin-bottom: 2px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
}
.cmp_status{
    margin: 0px;
    font-size: 13px;
}

.cmp_time{
        margin: 0px;
    color: #000;
    font-size: 14px;
}
.cmp_accept{
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    font-size: 13px;
    border-radius: 14px;
    padding: 3px 12px;
    margin-top: 4px;
}
.complaindata_list{
    display: none;
}
.complaindata_list.active{
    display: block;
}
.daterang_data{
    margin-bottom: 15px;
    position: relative;
}
.cmp_dateedit{
        position: absolute;
    top: 50%;
    right: 13px;
    transform: translate(0, -50%);
}
.complinlink {
    color: #000;
}
.complinlink:hover {
    text-decoration: unset;
}
.party_title{
        text-align: center;
    font-size: 18px;
    color: #000;
    font-weight: 600;
        margin-bottom: 14px;
}
.party_subtlt{
        font-weight: 400;
    margin-left: 6px;
}
.compl_details{
    display: flex;
}
.compl_datetime{
    flex: 1;  
}
.compl_day{
    flex: 1;
    text-align: right;
}
.compl_txt{
    margin-bottom: 4px;
    font-size: 14px;
}
.mc_name{
        font-size: 15px;
    text-align: center;
    margin-top: 15px;
}

.mc_num{
    font-size: 15px;
    border: 1px solid #000;
    width: fit-content;
    margin: 0 auto;
    padding: 5px 15px;
    border-radius: 5px;
}
.mc_nametxt{
    margin-left: 4px;
    color: #525252;
}
.comp_line{
        text-align: center;
    margin: 13px 0px;
    position: relative;
}
.comp_line:before{
    content: '';
    width: 100%;
    height: 1px;
    background: #ddd;
    display: block;
    position: absolute;
    top: 50%;
}
.comp_line span{
    background: #fff;
    z-index: 1;
    position: relative;
    padding: 0px 12px;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}
.comp_attd_txt{

}
.comp_attd_txt{
    text-align: right;
    margin-bottom: 0px;
    font-size: 13px;
}
.acceptdate_txt{
        border: 1px solid #ddd;
    border-left: none;
    border-right: none;
        margin-top: 15px;
            margin-bottom: 15px;
}
.accept_p{
    font-size: 13px;
    margin: 0;
    padding: 7px 0px;
}
.comp_indata{
    font-size: 13px;
    margin-bottom: 5px;
}
.comp_indata span{
    margin-left: 6px;
}

.accept_btn_dt{
        width: 100%;
    background: #000;
    color: #fff;
    border-radius: 20px;
    padding: 7px;
    font-size: 14px;
    border: 1px solid #000;
    margin-top: 15px;
}
.modaldata_ft{
    display: flex;
}
.modaldata_ft button{
    flex: 1;
}
.noaccept_btn{
    border-right: 1px solid #fff;
}
.accept_seach{
    position: relative;
}
.accept_seach .input_serach{
       padding: 6px 6px 6px 40px;
    border-radius: 20px;
}
.eng_list_wrap{

}
.eng_list{
        list-style: none;
    padding: 0px;
    margin-top: 13px;
    margin-bottom: 0px;
    max-height: 118px;
    overflow: scroll;
}
.eng_list li{
        background-color: #ddd;
    border-radius: 3px;
    margin-bottom: 7px;
}
.eng_check{
    width: 100%;
    padding: 5px 10px;
}
.eng_check p{
        flex: 1;
    margin-bottom: 0px;
    color: #000;
    font-weight: 400;
    font-size: 14px;
}

.eng_check.checkbox>span{
    border: 1px solid #000000;
}

.location_md.active span{
    border: 3px solid #000;
}