/*** MISC ***/
.errors_list{
	margin: 10px 0 0 0;
    list-style: none;
    text-align: center;
    font-size: 14px;
    background: #ec5557;
    color: #FFFF;
    border-radius: 5px;
}
table th{
	text-align: left;
}
/*** LOGIN PAGE ***/
.login_page .container{
	max-width: 1320px;
}
#page_wrapper{
	padding-top: 0;
}
.login_page{
	background:var(--gray300);
}
#login_header{
	padding:50px 10px;
}
.login_page_image{
	content: '';
	position: fixed;
	top:0;
	right:0;
	width:50vw;
	height: 100%;
	background-image:var(--bgImage);
	background-size: cover;
	background-position: center;
}
.login_content_header h2{
	font-family: var(--primaryFont);
	font-size: 42px;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: -1px;
	margin: 0 0 10px 0;
}
.login_page_desc p{
	font-size: 20px;
    line-height: 130%;
    text-align: center;
    color: var(--green500);
    font-weight: 500;
    opacity: 0.7;
}
.form_field .text_field{
	float:left;
	width:100%;
	height: 50px;
	padding:0 14px;
	border-radius: 8px;
	border: 1px solid var(--gray400);
	background: #FFF;
}
.form_field textarea{
	float:left;
	width:100%;
	height: 120px;
	padding:10px;
	border-radius: 8px;
	border: 1px solid var(--gray400);
	background: #FFF;
}
.code_field{
	font-size:23px;
}
.form_field .text_field::placeholder{
	color: var(--gray800);
	opacity: 0.5;
}
.form_field_label{
	font-size: 16px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 5px;
}
.field_help{
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	color: #6D8494;
	margin-bottom: 10px;
}
.form_footer{
	font-size: 14px;
	font-weight: 500;
}
.forgot_password{
	cursor: pointer;
}
.forgot_password:hover{
	text-decoration: underline;
}
.checkbox_label{
	display: inline-flex;
	align-items: center;
	gap:5px;
	cursor: pointer;
}
.login_page_tagline{
	padding: 25px 50px;
    display: inline-block;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 210%;
    color: #FFF;
}
.after_button_link{
	font-size: 14px;
	font-weight: 500;
	margin-top:15px;
}
.checkbox_list_item label{
	cursor: pointer;
}
.checkbox_label{
	font-size: 14px;
	font-weight: 500;
}
.checkbox_list{
	position: relative;
	list-style: none;
	height: 180px;
	overflow: auto;
	margin:0;
	padding:0;
	border-radius: 8px;
	border: 1px solid #C8D7E1;
	padding:10px;
}
.checkbox_list::before{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	opacity: 0;
	visibility: hidden;
	z-index: 2;
}
.checkbox_list:after{
	content:'';
	position: absolute;
	top:calc(50% - 10px);
	left:calc(50% - 10px);
	width:20px;
	height:20px;
	border-width: 3px;
	border-style: solid;
	border-color: var(--gray450) var(--gray450) var(--gray450) transparent;
	border-radius: 50%;
	z-index:3;
	animation: loadingRotate 1s infinite ease;
	-webkit-animation: loadingRotate 1s infinite ease;
	-moz-animation: loadingRotate 1s infinite ease;
	-o-animation: loadingRotate 1s infinite ease;
	visibility: hidden;
	opacity: 0;
}
.checkbox_list.loading:before,
.checkbox_list.loading:after{
	opacity: 1;
	visibility: visible;
}
@keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}
@-webkit-keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}
@-moz-keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}
@-o-keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}

/*** DATE PICKER ***/
.ui-datepicker{
	display: none;
	position: absolute;
    top: 443.8px;
    left: 260.8px;
    z-index: 1;
    background: #FFF;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
}
.ui-datepicker-calendar{
	font-size:12px;
}
.ui-datepicker-calendar td, th{
	padding:5px;
	text-align:center;
}
.ui-datepicker-calendar td{
	transition:all 0.3s;
}
.ui-datepicker-calendar td:hover{
	background:#f7f7f7;
}
.ui-datepicker-current-day{
	border:1px solid #333;
}
.ui-datepicker-header{
	display:inline-block;
	position:relative;
	width:100%;
	text-align:center;
	font-size:12px;
	margin-bottom:5px;
	padding-bottom:5px;
	border-bottom:1px solid #e6e6e6;
}
.ui-datepicker-prev{
	position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
	color:transparent;
}
.ui-datepicker-prev::after{
	content: '\f104';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    font-family: fontawesome;
    color: #333;
    font-size: 18px;
}
.ui-datepicker-next{
	position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
	color:transparent;
}
.ui-datepicker-next::after{
	content: '\f105';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    font-family: fontawesome;
    color: #333;
    font-size: 18px;
}
.ui-datepicker-title{
	text-transform:uppercase;
	font-weight:bold;
}
.ui-timepicker-viewport {
    font-size: 12px;
}
#uploaded_documents_list{
	margin:0;
	padding:0;
	border:1px solid #C8D7E1;
	border-radius: 8px;
}
#uploaded_documents_list:empty{
	display: none;
}
#uploaded_documents_list li{
	padding:10px 15px;
	font-size: 12px;
}
.documents_uploader_wrapper .fileuploader-items{
	display: none;
}
#uploaded_documents_list li{
	gap: 5px;
	font-weight: 500;
}
#uploaded_documents_list i{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #ec5557;
	font-size: 18px;
}

/*** DASHBOARD ***/
.page-template-dashboard_page-template,
.single-company,
.single-appointment,
.single-invoice{
	background: var(--gray350);
}
.button{
	--btnColor: var(--gray800);
    --btnTextColor: #FFF;
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    min-width: 120px;
    gap: 10px;
    transition: all 0.5s;
    justify-content: center;
}
.button::before{
	display: none;
}
.mini_button{
	height: 25px;
	line-height: 25px;
	padding: 0 14px;
	font-size: 12px;
}
.button.ghost_button:hover{
	background: none
}
.orange_button{
	--btnColor: var(--accentColor);
	--btnTextColor: var(--gray800);
}
.red_button{
	--btnColor: #F17474;
	--btnTextColor: #FFF;
}
.green_button{
	--btnColor: #05FF00;
	--btnTextColor: var(--gray800);
}
.yellow_button{
	--btnColor: #E4E821;
	--btnTextColor: var(--gray800);
}
.button_icon{
	color: var(--accentColor);
	height: 25px;
}
.orange_button .button_icon{
	color: var(--gray800);
}

.no_bold{
	font-weight: normal !important;
}
.gray_icon{
	color:#7C8DA7
}

/*** SIDEBAR ***/
#dashboard_sidebar{
	float: left;
    width: 280px;
    height: 100vh;
    background: var(--gray800);
    color: var(--gray300);
}
#dashboard_logo{
	padding:40px 30px;
}
#dashboard_menu_wrapper{
	padding: 0 20px;
}
.menu_title{
	color: var(--gray450);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 20px;
}
.dashboard_menu > *{
	position: relative;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px;
	border-radius: 8px;
	color: var(--gray350);
	font-size: 16px;
}
.dashboard_menu > .current-menu-item{
	background: var(--gray450);
	box-shadow: 0px 14px 80px 0px rgba(127, 127, 127, 0.30);
}
.menu_item_icon{
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--accentColor);
}
.dashboard_menu > .current-menu-item .menu_item_icon{
	color: #FFF;
}
.menu_item_icon svg{
	width: 90%;
}
#dashboard_sidebar_footer{
	padding: 20px;
}
#dashboard_sidebar_account_wrapper{
	padding:0 10px;
	margin-bottom: 30px;
}
#dashboard_sidebar_account{
	gap: 10px;
}
#dashboard_sidebar_account_image{
	width: 30px;
}
#dashboard_sidebar_account_image img{
	float:left;
	width: 100%;
	border-radius: 50%;
}
.user_display_name{
	font-size: 16px;
	font-weight: 500;
	color: #DFE8EE;
}
.user_role{
	font-size: 14px;
	font-weight: 400;
	line-height: 190%;
	color: #6D818E;
}

/*** DASHBOARD CONTENT ***/
#dashboard_page_content{
	padding: 40px 80px;
	max-height: 100vh;
	overflow: auto;
}
.dashboard_header_title h1{
	margin-bottom: 0;
	font-size: 28px;
	font-weight: 500;
	line-height: 50px;
}
#dashboard_header_actions{
	gap: 10px;
}

/** SUMMARY BOXES **/
.dashboard_summary_section{
	padding: 20px 0;
}
.summary_grid{
	display: inline-grid;
	grid-template-columns: repeat(5, 1fr);
	justify-items: stretch;
	justify-content: space-between;
	grid-gap: 35px;
}
.summary_item{
	padding:30px 30px 10px;
	background: #F2FAFF;
}
.summary_item .title{
	font-size: 30px;
	color: var(--gray800);
	font-weight: 500;
	margin-bottom: 25px;
	line-height: 100%;
}
.summary_item .subtitle{
	color:#7C8DA7;
	line-height: 130%;
}

/*** INVOICES TABLE ***/
.invoices_table_section,
.payments_table_section{
	padding: 40px 0;
}
.dashboard_section_title{
	font-size: 22px;
	font-weight: 500;
	line-height: 100%;
}
.table_header{
	gap: 20px;
}
.table_header .dashboard_section_title{
	width: auto;
	margin: 0;
}
.table_header a{
	font-size: 14px;
	font-weight: 500;
	text-decoration-line: underline;
}
/** DASHBOARD TABLES **/
.dashboard_table{
	float:left;
	width:100%;
	text-align: left;
	border-collapse: collapse;
}
.dashboard_table thead th{
	font-size: 14px;
	background: #6D818E;
	color: var(--gray350);
	font-weight: normal;
	padding:15px;
	text-align: left;
}
.dashboard_table thead tr th:first-child{
	border-top-left-radius: 4px;
}
.dashboard_table thead tr th:last-child {
	border-top-right-radius: 4px;
}
.dashboard_table tbody td{
	position: relative;
	padding: 24px 15px;
	background: #F2FAFF;
	border-bottom: 1px solid #DAE5ED;
	color:#7C8DA7;
}
.dashboard_table tbody td a{
	color: var(--gray800);
	font-weight: 500;
	gap: 5px;
}
.folder_icon{
	position: relative;
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url(../images/folder-open.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.tag{
	display: inline-block;
	padding: 5px;
	min-width: 80px;
	border-radius: 8px;
	background: #7C8DA7;
	text-align: center;
	color:var(--gray800);
	font-size: 13px;
	font-weight: 500;
	line-height: 100%;
}
.tag.green,
.tag.status_active,
.tag.status_eligible{
	background: #4dfd4d;
}
.tag.yellow,
.tag.status_inactive,
.tag.status_not-eligible{
	background: #e8ed64
}
.tag.red{
	background: #ec5557
}

/*** DASHBOARD WIDGET ***/
.dashboard_widget {
	padding:30px 40px;
	border-radius: 8px;
	background: #FFF;
}
.dashboard_widget.blue_widget{
	background: #f2faff;
}
.fullheight_widget{
	min-height: calc(100vh - 180px);
}
.widget_header{
	margin-bottom: 25px;
	padding-bottom: 15px;
	border-bottom: 1px solid #DAE5ED;
}
.widget_header.noborder{
	padding-bottom: 0;
	border:none;
	margin-bottom: 0;
}
.widget_title{
	font-size: 20px;
	font-weight: 400;
	line-height: 135%;
	margin: 0;
	color:#6D8494;
}
.widget_header .section_title {
    font-size: 28px;
	margin-bottom: 30px;
}
.widget_header_help{
	font-size: 14px;
}
.widget_header_action{
	color: #2A343B;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
	cursor: pointer;
}
.underline{
	text-decoration: underline;
	margin-left: 10px;
	color: #2A343B;
}

/*** DATA TABLE **/
.table_data{
	width: 100%;
	text-align: left;
	border-spacing: 7px;
}
.table_data th,
.table_data td{
	padding:15px 10px;
	width: 50%;
}
.table_data th{
	font-weight: normal;
	color: #7C8DA7;
	font-size: 16px;
}
.table_data td{
	background: #FFF;
	text-align: center;
	font-size: 12px;
}
.table_data td p{
	font-size:12px;
	font-weight: 500;
	line-height: 150%;
	text-align: left;
}

/*** FORMS ***/
.field_label{
	color: #6D8494;
	font-size: 14px;
	font-weight: 400;
	line-height: 190%;
	margin-bottom: 5px;
}
.form_field{
	margin-bottom: 20px;
}
.field_fixed_value{
	font-weight: bold;
}
.form_field input[type=text],
.form_field input[type=email],
.form_field input[type=password],
.form_field input[type=number],
.form_field select{
	float:left;
	width: 100%;
	height: 48px;
	border-radius: 8px;
	border: 1px solid #C8D7E1;
	padding:0 10px;
}
.form_field input[type=password]{
	letter-spacing: 2px;
}
.form_field input::placeholder{
	color: #6D8494;
}
.datepicker_input_filter{
	width: 200px;
}
.datepicker_input{
	background-image: url(../images/datepicker.svg);
	background-size: 24px;
	background-position: calc(100% - 10px) center;
	background-repeat: no-repeat;
	cursor: pointer;
}
.form_field select{
	padding:0 30px 0 10px;
	background-image: url(../images/angle_down.svg);
	background-position: calc(100% - 10px) center;
	background-size: 10px;
	background-repeat: no-repeat;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.form_field select.readonly{
	background:#f7f7f7;
	pointer-events: none;
}
.archive_filter select{
	max-width: 150px;
}
.form_field p{
	color: #6D8494;
	font-size: 14px;
	font-weight: 400;
	line-height: normal;
}
.form_message {
	padding: 10px 20px;
    background: var(--gray400);
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 20px;
	text-align: center;
	color:#FFF;
}
.form_message.success{
	background: #89d9b8;
}
.form_message.error{
	background: #fd2340;
}
.success_list{
	list-style: none;
	padding:0;
	margin: 20px 0 0 0;
	gap:10px;
	text-align: center;
	color: #FFF;
}
.success_list li{
	padding:10px;
	border-radius: 5px;
	background: #89d9b8;
}
.success_list a{
	text-decoration: underline;
}

/*** ARCHIVE PAGE ***/
.company_logo{
	width:30px;
	border-radius: 50%;
}
.archive_search{
	width: 33.33%;
    max-width: 360px;
}
.form_field input.search_input{
	padding:0 10px 0 40px;
	background-image: url(../images/search_icon.svg);
	background-position: 10px center;
	background-size: 20px;
	background-repeat: no-repeat;
}
.actions_menu_wrapper{
	display: inline-block;
	position: relative;
}
.actions_icon{
	display: inline-block;
	width: 24px;
	height: 24px;
	cursor: pointer;
	background-image: url(../images/actions_icons.svg);
	background-position:center;
	background-size: contain;
	background-repeat: no-repeat;
}
.actions_bubble{
	position: absolute;
	bottom:0;
	right:0;
	width: 145px;
	background: var(--gray800);
	color: #FFF;
	z-index: 9;
	transform: translateY(calc(100% + 20px));
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.active + .actions_bubble{
	transform: translateY(100% );
	opacity: 1;
	visibility: visible;
}
.dashboard_table tbody td .actions_bubble > *{
	color: #FFF;
	line-height: 25px;
	padding: 0 10px;
	font-size: 12px;
	text-align: left;
	cursor: pointer;
	transition: all 0.3s;
}
.dashboard_table tbody td .actions_bubble > *:not(:last-child){
	border-bottom: 1px solid #DAE5ED;;
}
.dashboard_table tbody td .actions_bubble > *:hover{
	opacity: 0.6;
}

/*** LIGHTBOXES ***/
.lightbox{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 99;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}
.lightbox.lightbox_active{
	visibility: visible;
	opacity: 1;
}
.lightbox_overlay{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(42, 52, 59, 0.70);
}
.lightbox_content{
	position: absolute;
	top:50%;
	left:50%;
	width: calc(100% - 40px);
	max-width: 620px;
	max-height: calc(100vh - 50px);
	background: #F2FAFF;
	border-radius: 8px;
	padding: 30px 40px;
    overflow: auto;
	transform: translate(-50%, -50%);
}
.lightbox.white_lightbox .lightbox_content{
	background: #FFF;
}
.lightbox_header p{
	font-size: 12px;
	font-weight: 400;
	color:#7C8DA7;
}
.lightbox_header.widget_title{
	border-bottom: 1px solid #DAE5ED;
}
.lightbox_title{
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.lightbox_header.widget_title .lightbox_title{
	margin-bottom: 20px;
}
.form_footer .button{
	padding: 12px 30px;
}

/*** CREATE USERS **/
#commission_info.requestor_type_standard{
	display: none;
}

/*** APPOINTMENTS ***/
.appointments_archive_table .button_icon{
	color: #7C8DA7;
}
.mark_complete_button{
	padding-right: 60px;
}
.notes,
.downloads{
	vertical-align: top;
}
.notes th,
.downloads th{
	width: 15%;
}
.notes td{
	padding: 20px;
}
.files_list li{
	font-size: 12px;
	font-weight: 500;
}
.remove_file{
	cursor: pointer;
	color: red;
}
.download_file{
	font-size: 14px;
	width: 15px;
	height: 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--gray500);
	margin-right: 5px;
}
.shot_td{
	width: 80px;
}
.table_item_name{
	gap:5px;
}
.table_data_subtitle{
	font-size: 13px;
    margin-top: 3px;
}
#other_location{
	display:none;
}

/*** ACCOUNT PAGE ***/
.account_data_item span{
	font-weight: 500;
}
.password{
	letter-spacing: 2px;
}
.account_page_header_main {
	gap:15px
}
.account_page_header_image{
	width: 60px;
}
.account_page_header_image img{
	border-radius: 50%;
}
.account_page_header_data .user_name {
	color: #2A343B;
	font-size: 22px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.account_page_header_data .user_role{
	color: #2A343B;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.account_actions{
	gap: 15px;
}
.account_actions a{
	color: #2A343B;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-decoration-line: underline;
}
#update_account_wrapper{
	display: none;
}
.profile_image_uploade_actions{
	gap:5px;
}
.profile_image_uploade_actions.with_image .upload_image_button{
	display: none;
}
.delete_image_button{
	display: none;
}
.profile_image_uploade_actions.with_image .delete_image_button{
	display: inline-block;
}
.upload_image_src_wrapper{
	display: inline-block;
	width: 60px;
	height: 60px;
	border:3px dashed var(--gray350);
	border-radius: 50%;
}
.upload_image_src_wrapper img{
	border-radius: 50%;
}
.upload_image_field{
	gap: 20px;
}

.fileuploader.fileuploader-theme-hidden_button{
	display: none;
}

/*** INVOICE ***/
.invoice_table{
	float:left;
	width: 100%;
	border-collapse: collapse;
}
.invoice_table table{
	width: 100%;
	border-collapse: collapse;
}
.invoice_logo{
	text-align: right;
}
.invoice_table table td{
	vertical-align: top;
}
.invoice_table p{
	line-height: 130%;
    font-weight: 500;
    font-size: 14px;
}
.invoice_header{
	margin-bottom: 30px;
}
.invoice_table .invoice_main_details{
	width: 60%;
    float: right;
	border-spacing: 5px;
    border-collapse: separate;
	font-weight: 500;
}
.invoice_table .invoice_main_details > tbody > tr > td{
	background: #2A343B;
	color: #FFF;
	padding:10px;
}
.invoice_table hr{
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #DAE5ED;
	margin:20px 0;
}
.invoice_details_table thead th{
	text-align: left;
	background: #2A343B;
	color: #FFF;
	font-size: 12px;
	font-weight: normal;
	padding:10px;
}
.invoice_details_table td{
	font-size: 14px;
	font-weight: 500;
	padding:15px 10px;
	border-bottom:1px solid #DAE5ED;
}
.invoice_table .invoice_details_table_footer{
	width: 370px;
	float: right;
	margin-top: 40px;
}
.invoice_table .invoice_details_table_footer td,
.invoice_table .invoice_details_table_footer th{
	padding: 5px 30px;
	font-size: 14px;
}
.invoice_table .invoice_details_table_footer th{
	text-align: left;
}
.invoice_table .invoice_details_table_footer tfoot th,
.invoice_table .invoice_details_table_footer tfoot td{
	background: #2A343B;
	color: #FFF;
	padding: 10px 30px;
}
.invoice_footer p{
	font-weight: bold;
}

/*** ONBOARDING ***/
.onboarding_widget{
	min-height: calc(100vh - 220px);
	margin-bottom: 39px;
}
.page-template-onboarding_page-template{
	background: #2A343B;
}
#onboarding_header{
	padding:30px 0;
	color: #DFE8EE;
}
#onboarding_logo{
	margin-bottom: 20px;
}
#onboarding_intro p{
	font-size: 14px;
	line-height: 115%;
}
#onboarding_sidebar{
	width:315px;
}
#onboarding_page_content{
	width: calc(100% - 345px);
}
.onboarding_header_content_wrapper{
	width: calc(100% - 345px);
	margin-left: 315px;
}
#onboarding_sidebar{
	padding: 0 25px;
	margin-top: -36px;
}
#onboarding_menu_wrapper{
	width: 275px;
}
#onboarding_menu{
	max-width: 225px;
}
.slider_prev{
	transition: none;
}
.slider_prev.swiper-button-disabled{
	opacity: 0;
	visibility: hidden;
}
.profile_header{
	gap: 15px;
	margin-bottom: 30px;
}
.profile_header .avatar img{
	float:left;
	width: 60px;
	border-radius: 50%;
}
.profile_data .user_name{
	font-size: 22px;
	font-weight: 500;
	line-height: 100%;
}
.profile_data .user_role{
	font-size: 14px;
}
#send_onboarding{
	display: none;
}
.ready_to_submit #send_onboarding{
	display: inline-flex;
}
.ready_to_submit .slider_next{
	display: none;
}