.field_card_btn{
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	border: 1px solid #d4d6e1;
	background-color: #fff;
	text-align: left;
	padding: 10px;
	transition: all .15s ease;
	margin-bottom: 20px;
}
.field_card_btn .field_card_icon{
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #405189;
	fill: #fff;
	color: #fff;
}
.field_card_btn.secondary .field_card_icon{
	background-color: rgb(53, 119, 241);
}
.field_card_btn.success .field_card_icon{
	background-color: rgb(10, 179, 156);
}
.field_card_btn.info .field_card_icon{
	background-color: rgb(41, 156, 219);
}
.field_card_btn.warning .field_card_icon{
	background-color: rgb(247, 184, 75);
}
.field_card_btn.danger .field_card_icon{
	background-color: rgb(240, 101, 72);
}
.field_card_btn .field_card_icon svg{
	width: 24px;
	height: 24px;
}
.field_card_btn h5{
	color: #000;
}
.field_card_btn h6{
	color: #000;
}
.field_card_btn i{
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #e1e1e1;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	transition: all .15s ease;
}
.field_card_btn:hover{
	background-color: #fdfdfe;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}
.field_card_btn:hover i{
	background-color: #878a99;
}
.field_card_btn i.danger{
	background-color: rgb(240, 101, 72);
}
.btn-check:checked + .field_card_btn{
	border-color: #405189;
	box-shadow: 0 0 6px rgba(64, 81, 137, .25);
}
.btn-check:checked + .field_card_btn i{
	background-color: #405189;
}
.login_btn{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 15px;
    color: #2d333a;
    border: 1px solid #c2c8d0;
    border-radius: 8px;
    background-color: #fff;
    width: 100%;
    font-weight: 500;
    font-size: 110%;
    text-decoration: none;
    transition: all .15s ease;
}
.login_btn img{
    width: 25px;
    flex-shrink: 0;
}
.login_btn:hover{
	color: #2d333a;
	background-color: rgba(0, 0, 0, 0.1);
}
.questionnaire_list_txt h5{
	color: #000;
}
.fields_container_scroller{
	max-height: 280px;
	overflow-x: hidden;
	overflow-y: auto;
}
.uploaded_files_box{
	background-color: #fff;
	border: 2px dashed #c8c8c8;
	border-radius: 10px;
	padding: 20px;
	width: 100%;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.uploaded_files_box .img_box{
	position: relative;
	overflow: hidden;
	width: 100px;
	height: 100px;
	border: 1px solid #405189;
	background-color: #405189;
}
.uploaded_files_box .img_box a{
	display: block;
	width: 100%;
	height: 100%;
}
.uploaded_files_box .img_box .img_remove_btn{
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f06548;
	color: #fff;
	padding: 2px 5px;
	z-index: 2;
	cursor: pointer;
}
.uploaded_files_box .img_box img{
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.uploaded_files_box .img_box.icon{
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.uploaded_files_box .img_box.icon img{
	width: auto;
	height: auto;
	object-fit: unset;
}
.no_record_found_img{
	text-align: center;
}
.no_record_found_img img{
	max-width: 100%;
	max-height: 100%;
	width: 250px;
}
.note-editor .dropdown-toggle .note-icon-caret{
	display: none;
}
.note-editor .note-color .dropdown-toggle{
	width: auto !important;
	padding-left: 0 !important;
	padding-right: 5px !important;
}
.note-editor .note-toolbar .note-color-all .note-dropdown-menu{
	min-width: 348px !important;
}
.note-editor.note-frame .note-editing-area{
	background-color: #fff;
}

.mobile_mockup{
	background-color: #fff;
	background-image: url('../images/mobile_mockup.png');
	width: 355px;
	height: 750px;
	max-width: 100%;
	overflow: hidden;
}
.mobile_mockup_header{
	text-align: center;
	margin: 40px 7px 0 4px;
	padding: 10px 12px 10px 10px;
	font-weight: 500;
}
.mobile_mockup_body{
	padding: 10px 12px 10px 10px;
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 650px;
    min-height: 650px;
    overflow-x: hidden;
    overflow-y: auto;
    flex-wrap: wrap;
}
.mobile_mockup_body h4{
	color: #000;
}
.mobile_mockup_body p{
	color: #000;
}
.mobile_mockup_body .form-control[readonly]{
	background-color: #fff;
}

.custom_upload_wrapper{
	border: 2px dashed #405189;
	background-color: #fff;
	border-radius: 8px;
	padding: 20px;
	min-height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}
.custom_upload_wrapper i{
	color: #405189;
	font-size: 50px;
}
.custom_upload_wrapper p{
	width: 100%;
	color: #000;
}

html[data-layout-mode="dark"] .questionnaire_list_txt h5{
	color: #fff;
}
html[data-layout-mode="dark"] .field_card_btn{
	background-color: #212529;
	border-color: #32383e;
}
html[data-layout-mode="dark"] .field_card_btn h5{
	color: #fff;
}
html[data-layout-mode="dark"] .field_card_btn h6{
	color: #fff;
}
html[data-layout-mode="dark"] .field_card_btn i{
	background-color: #fff;
	color: #000;
}
html[data-layout-mode="dark"] .field_card_btn i.danger{
	background-color: rgb(240, 101, 72);
	color: #fff;
}
html[data-layout-mode="dark"] .btn-check:checked + .field_card_btn i{
	color: #fff;
}
html[data-layout-mode="dark"] .uploaded_files_box{
	background-color: #262a2f;
}
.custom_single_image_wrapper{
	display: inline-block;
	float: left;
	margin-right: 10px;
	width: auto;
}
.custom_single_image_wrapper .delete_link div {
    padding: 3.4px 10px;
    background-color: red;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    vertical-align: bottom;
    margin-right: -5px;
}
.custom_single_image_wrapper .delete_link span{
	color: #fff;
}
.single_approver_wrapper .flex-grow-1{
	cursor: all-scroll;
}
.innerloadermore{
	display: none;
}
.custom_gallery_wrapper .gallery-box .gallery-container{
	height: 160px;
}
.custom_gallery_wrapper .gallery-box .gallery-container .gallery-img{
	max-height: 100%;
}
/*#gallerySelectorDatatable tbody tr{
	    background-color: transparent;
    display: inline-block;
    float: left;
    width: 18%;
    height: 125px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}
#gallerySelectorDatatable tbody tr td{
	border-bottom: 0;
}*/