
@charset "utf-8";

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

body,
input,
select,
option,
optgroup,
textarea,
button {
	font-family: var(--font_family), sans-serif;
	color: var(--font_color);
	letter-spacing: 0.2px;
}
body {
	font-size: 96%;
	background-color: #f1f6f4;
}
input,
select,
option,
optgroup,
textarea,
button {
	font-size: 1em;
	border: 1px solid var(--form_element_border);
	outline: none;
}
input[type="checkbox"],
input[type="radio"] {
	border: none;
}
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #ababab;
	font-size: 0.95em;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
	color: #ababab;
	font-size: 0.95em;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #ababab;
	font-size: 0.95em;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #ababab;
	font-size: 0.95em;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
	color: #ababab;
	font-size: 0.95em;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	        appearance: none;
}
input[type=number] {
    -moz-appearance:textfield;
}


img {
	max-width: 100%;
	border: none;
}
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
	display: none;
}

a {
	color: var(--linkcolor);
}


.input-file {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}
.input-file + label {
    display: inline-block;
}
.input-file + label svg {
    height: 1em;
    vertical-align: middle;
    fill: #666;
    margin-top: -0.25em;
    margin-right: 0.25em;
}
.input-file + label {
	background-color: #f5f5f5;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
}
.input-file + label.highlight {
    border-color: #ff0000;
}
.input-file + label span,
.input-file + label strong {
    padding: 4px 15px;
}
.input-file + label span {
    width: 140px;
	display: inline-block;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
	font-size: 0.9em;
}
.input-file + label strong {
   	height: auto;
    color: #666666;
    background-color: #e9e9e9;
    display: inline-block;
	font-size: 0.9em;
	font-weight: 500;
}
.input-file:focus + label strong,
.input-file.has-focus + label strong,
.input-file + label:hover strong {
    background-color: #cccccc;
	color: #333333;
}


.swal-overlay--show-modal .swal-modal {
	border-radius: 4px;
}
.swal-title {
	color: #555555;
}
.swal-text {
	color: #666666;
	line-height: 20px;
}
.swal-modal.text-center .swal-text {
	text-align: center;
}
.swal-footer {
	margin-bottom: 10px;
}
.swal-button {
	border-radius: 4px;
}
.swal-button.activate {
	background-color: #46df2d;
}
.swal-button.activate:hover {
	background-color: #37c121;
}
.swal-button.activate:focus {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(40,199,43,.29);
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(40,199,43,.29);
}
.swal-button.in-activate {
	background-color: #e97e14;
}
.swal-button.in-activate:hover {
	background-color: #d9730f;
}
.swal-button.in-activate:focus {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(199,104,40,.29);
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(199,104,40,.29);
}

.error {
	color: #ff0000;
	display: none;
}
.error::before {
	margin-right: 6px;
	content: '\f06a';
	font-family: 'Font Awesome 6 Pro';
}



/* ---------------------------- */
/* -------- login form -------- */
/* ---------------------------- */

.index {
	height: 100vh;
	padding: 7% 8% 0;
	background-size: cover;
	background-repeat: no-repeat;
}
.index main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 6px;
	overflow: hidden;
}
.index .client {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-preferred-size: 53%;
	    flex-basis: 53%;

	padding: 8% 5%;
}
.index .form-section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-ms-flex-preferred-size: 47%;
	    flex-basis: 47%;
	min-height: 530px;
	padding: 8% 4%;
	color: #ffffff;

	background-color: var(--index_form_bgcolor);
}
.index .client .image-wrap img {
	width: 180px;
}
.index .client .info {
	margin-top: 10%;
}
.index .client .info .title {
	font-size: 1.3em;
	font-weight: 600;
}
.index .client .info p {
	width: 90%;
	margin-top: 1%;
	line-height: 21px;
}

.index .client .social-icons {
	margin-top: 4%;
}
.index .client .social-icons a {
	text-decoration: none;
}
.index .client .social-icons span {
	margin-right: 12px;
	font-size: 0.95em;
	font-weight: 500;
}

.index .form-section h2 {
	font-size: 1.7em;
}
.index .form-section p {
	margin: 4px 0;
}


.index .form-section .the-form {
	margin-top: 2%;
}
.index .form-section .credential {
	width: 94%;
	margin-top: 18px;
}
.index .form-section .credential label {
	display: block;
}
.index .form-section .credential.highlight label {
	color: var(--index_error_color);
}
.index .form-section .credential .field {
	padding-right: 4px;
	border-bottom: 1px solid #c3dfff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.index .form-section .credential.highlight .field {
	border-bottom: 2px solid var(--index_error_color);
}
.index .form-section .credential .field .login-text {
	width: 94%;
	height: 28px;
	border: none;
	background-color: transparent;
	caret-color: #c3dfff;
	color: #ffffff;
}
.index .form-section .credential .field .show-password {
	margin-right: 14px;
	cursor: pointer;
	display: none;
}
.index .form-section .credential .field .show-password.show {
	display: inline-block;
}
.index .form-section .credential .field .show-password::after {
	content: '\f070';
	font-family: 'Font Awesome 6 Pro';
}
.index .form-section .credential .field .show-password.reveal::after {
	content: '\f06e';
}

.index .form-section .checkbox-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 20px;
	cursor: pointer;
	position: relative;
}
.index .form-section .checkbox-wrap input {
	margin-top: 4px;
	margin-right: 8px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	color: inherit;
	cursor: pointer;
}
.index .form-section .checkbox-wrap input::before {
	display: inline-block;
	content: "";
	width: 24px;
	height: 22px;
	outline: 1px solid #c3dfff;
	border-radius: 3px;
}
.index .form-section .checkbox-wrap input:checked::after {
	position: absolute;
	left: 0;
	width: 24px;
	line-height: 23px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
}
.index .form-section .checkbox-wrap .checkbox-label {
	font-size: 0.95em;
}


.index .form-section .the-form .buttons {
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.index .form-section .the-form .buttons .submit-btn {
	position: relative;
	width: 30%;
	padding: 8px 20px;
	text-align: left;
	font-weight: 600;
	cursor: pointer;
	color: var(--index_button_color);
	background-color: var(--index_button_bgcolor);
	border-radius: 4px;
	border: none;
}
.index .form-section .the-form .buttons .submit-btn::after {
	content: "\f105";
	font-family: 'Font Awesome 6 Pro';
	position: absolute;
	top: 9px;
	right: 18px;
}
.index .form-section .the-form .buttons .submit-btn.processing::after {
	content: "\f110";
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}
.index .form-section .the-form .buttons .forgot {
	margin-left: 16px;
	font-size: 0.95em;
	color: inherit;
	text-decoration: none;
}
.index .form-section .the-form .buttons .forgot:hover {
	text-decoration: underline;
}

.index .form-section .error {
	margin-top: 10px;
	color: var(--index_error_color);
}
.index .form-section .error.show {
	display: inline-block;
}




/* ------------------------------------ */
/* -------- sidebar and header -------- */
/* ------------------------------------ */


.app-wrap {
	min-height: 100vh;
	padding-left: 22%;
	color: var(--font_color);
	background-color: #f1f6f4;
}
.app-wrap .sidebar {
	position: fixed;
	min-height: 100vh;
	width: 22%;
	top: 0;
	left: 0;
	background-color: var(--sidebar_bgcolor);
}
.app-wrap .middlebar {
	margin-bottom: 20px;
}

.sidebar .client-logo {
	padding: 12px 24px;
	background-color: rgba(0, 0, 0, 0.3);
}
.sidebar .client-logo img {
	width: 200px;
}

.sidebar .menus {
	margin-top: 6%;
	list-style: none;
}
.sidebar .menus > li {
	font-size: 15px;
	padding: 10px 24px;
	color: #ffffff;
	cursor: pointer;
}
.sidebar .menus > li:hover {
	background-color: var(--sidebar_menu_hover);
}
.sidebar .menus > li.active {
	background-color: var(--sidebar_menu_active);
}
.sidebar .menus > li.has-sub .link-wrap::after {
	position: absolute;
	right: 24px;
	font-size: 16px;
	content: "\f055";
	font-family: 'Font Awesome 6 Pro';
}
.sidebar .menus > li.has-sub.active .link-wrap::after {
	content: "\f056";
}
.sidebar .menus > li a {
	display: block;
	color: #ffffff;
	text-decoration: none;
}
.sidebar .menus .link-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.sidebar .menus > li .icon {
	width: 30px;
}
.sidebar .menus > li ul {
	list-style: none;
	padding: 6px 30px 0;
	display: none;
}
.sidebar .menus > li.has-sub.active ul {
	display: block;
}
.sidebar .menus > li ul li a {
	padding: 3px 0;
}
.sidebar .menus > li ul li a:hover {
	text-decoration: underline;
}
.sidebar .menus > li ul li.active a {
	text-decoration: underline;
}

.sidebar footer {
	width: 80%;
	margin: 0 10%;
	position: absolute;
	bottom: 40px;
	padding: 16px 10px;
	text-align: center;
	font-size: 0.9em;
	border-radius: 4px;

	color: var(--sidebar_footer_color);
	background-color: var(--sidebar_footer_bgcolor);
}
.sidebar footer p {
	margin: 1px 0;
	font-size: 0.95em;
}


.middlebar .top-controls {
	position: fixed;
	z-index: 100;
	width: 78%;
	top: 0;
	background-color: rgba(255, 0, 0, 0.2);
}

.middlebar .top-controls .top-bar {
	padding: 0 2.2%;
	height: 54px;
	color: #ffffff;
	background-color: #939393;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.middlebar .top-controls .current-section {
	font-family: var(--font_family_medium);
	font-weight: 500;
	text-shadow: 1px 1px 6px rgba(0,0,0, 0.2);
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.middlebar .top-controls .quick-links {
	background-color: #a7a7a7;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.middlebar .top-controls .logged-user {
	-ms-flex-preferred-size: 8%;
	    flex-basis: 8%;
	text-align: right;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	cursor: pointer;
}

.middlebar .top-controls .quick-links a {
	display: inline-block;
	color: #ffffff;
	text-decoration: none;
	padding: 0 16px;
	height: 54px;
	line-height: 54px;
	font-size: 1.2em;
}
.middlebar .top-controls .quick-links a.active {
	background-color: #ffffff;
	color: #a9a9a9;
}
.middlebar .top-controls .quick-links a:hover {
	background-color: #eeeeee;
	color: #666666;
}

.middlebar .top-controls .logged-user .photo {
	margin-right: 4px;
	width: 38px;
	height: 38px;
	border: 2px solid #ffffff;
	border-radius: 99em;
}
.middlebar .top-controls .logged-user img {
	border-radius: 99em;
}

.middlebar .top-controls .logged-user .drop-down {
	position: absolute;
	right: 1%;
	width: 30%;
	top: 56px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 4px;
	overflow: hidden;
	cursor: auto;
	z-index: 1000;
	display: none;
}
.middlebar .top-controls .logged-user .drop-down:after {
	content: '';
	display: block;
	position: absolute;
	right: 7%;
	width: 0;
	height: 0;
	border-style: solid;
}
.middlebar .top-controls .logged-user .drop-down:after {
	top: -22px;
	border-color: transparent transparent #eee transparent;
	border-width: 11px;
}
.middlebar .top-controls .logged-user .drop-down .row {
	padding: 2% 5%;
	border-bottom: 1px solid #cccccc;
	color: var(--font_color);
	font-size: 0.95em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.middlebar .top-controls .logged-user .drop-down .row:last-child {
	padding: 2% 5%;
	border-bottom: none;
}
.middlebar .top-controls .logged-user .drop-down .row.title {
	background-color: #eeeeee;
}
.middlebar .top-controls .logged-user .drop-down .row .photo {
	-ms-flex-preferred-size: 110px;
	    flex-basis: 110px;
	height: 110px;
	position: relative;
}
.middlebar .top-controls .logged-user .drop-down .row .links {
	margin-top: 5px;
	min-width: 0;
	-ms-flex-preferred-size: 72%;
	    flex-basis: 72%;
}
.middlebar .top-controls .logged-user .drop-down .photo img {
	width: 100%;
	height: 100%;
	border-radius: 99em;
	border: 1px solid #999999;
}
.middlebar .top-controls .logged-user .drop-down .overlay {
	position: absolute;
	width: 100%;
	height: 0;
	bottom: 0;
	text-align: center;
	overflow: hidden;
	border-radius: 99em;
}
.middlebar .top-controls .logged-user .drop-down .row .photo:hover .overlay {
	height: 100%;
	background-color: var(--sidebar_menu_active);
	cursor: pointer;
}
.middlebar .top-controls .logged-user .drop-down .overlay span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 0.9em;
	color: #ffffff;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.middlebar .top-controls .logged-user .drop-down .overlay span i {
	display: block;
	margin-bottom: 3px;
	font-weight: 500;
}
.middlebar .top-controls .logged-user .drop-down .row .links p {
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: left;
}
.middlebar .top-controls .logged-user .drop-down .row .links .name {
	font-weight: 600;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons {
	padding: 3% 5%;
	background-color: #efefef;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .change-pass {
	color: var(--link_color);
	font-size: 0.95em;
	cursor: pointer;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .change-pass span {
	position: relative;
	left: 8px;
}
.middlebar .top-controls .logged-user .drop-down .row.buttons .logout {
	-ms-flex-preferred-size: 35%;
	    flex-basis: 35%;
	padding: 2% 0;
	text-align: center;
	text-decoration: none;
	background-color: #ffffff;
	border: 1px solid #dcdcdc;
}







.middlebar .app-content {
	padding: 0 2%;
	margin-top: 70px;
}

.dashboard .bars {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 0.95em;
}
.dashboard .bars .left-section {
	-ms-flex-preferred-size: 68%;
	    flex-basis: 68%;
}
.dashboard .bars .new-donors-list {
	-ms-flex-preferred-size: 31%;
	    flex-basis: 31%;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
}

.dashboard .bars .left-section .top-widgets {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.dashboard .bars .top-widgets .widget {
	-ms-flex-preferred-size: 15.8%;
	    flex-basis: 15.8%;
	padding: 18px 0;
	text-align: center;
	color: #ffffff;
	text-decoration: none;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 5px;
}
.dashboard .bars .left-section .bottom-widgets {
	margin-top: 1em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.dashboard .bars .left-section .donors-sub-clan-chart {
	width: 63.8%;
	padding: 20px 30px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
}
.dashboard .bars .left-section .donors-blood-chart {
	width: 35%;
	padding: 20px 20px;
	text-align: center;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
}
.dashboard .bars.second {
	margin-top: 1em;
}
.dashboard .bars.second .box {
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	overflow: hidden;
}
.dashboard .bars.second .box.delinquent-donors {
	-ms-flex-preferred-size: 68%;
	    flex-basis: 68%;
}
.dashboard .bars.second .box.recent-activity {
	-ms-flex-preferred-size: 31%;
	    flex-basis: 31%;
}


.dashboard .bars .top-widgets .widget.donors {
	background-color: #2c6076;
}
.dashboard .bars .top-widgets .widget.working-condition {
	background-color: #20bf7d;
}
.dashboard .bars .top-widgets .widget.bills-generated {
	background-color: #45a0c7;
}
.dashboard .bars .top-widgets .widget.donations-received {
	background-color: #df813d;
}
.dashboard .bars .top-widgets .widget.withdrawals-made {
	background-color: #34cfbf;
}
.dashboard .bars .top-widgets .widget.on-hold-balance {
	background-color: #45a0c7;
}

.dashboard .bars .top-widgets .widget .icon {
	font-size: 24px;
	height: 32px;
}
.dashboard .bars .top-widgets .widget span {
	display: block;
	font-size: 13px;
}

.dashboard .bars .bottom-widgets header .title {
	display: block;
	font-size: 17px;
    font-weight: 600;
}
.dashboard .bars .bottom-widgets header .sub-title {
	margin: 2px 0;
	font-size: 13px;
	color: #777777;
	font-style: italic;
}
.dashboard .bars .bottom-widgets .donors-sub-clan-chart canvas {
	display: inline-block !important;
	margin-top: 10px;
	height: 240px !important;
}
.dashboard .bars .bottom-widgets .donors-blood-chart canvas {
	margin: 20px auto 0;
	width: 160px !important;
	height: 160px !important;
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends {
	margin: 20px 40px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px 8px;
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood {
	padding: 0 7px;
	font-size: 13px;
	background-color: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 3px;
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(1) {
	background-color: rgba(255, 99, 132, 0.2);
	border-color: rgba(255, 99, 132, 0.6);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(2) {
	background-color: rgba(255, 165, 0, 0.2);
	border-color: rgba(255, 165, 0, 0.6);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(3) {
	background-color: rgba(75, 192, 192, 0.2);
	border-color: rgba(75, 192, 192, 0.6);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(4) {
	background-color: rgba(255, 255, 0, 0.27);
	border-color: rgba(239, 239, 0, 1);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(5) {
	background-color: rgba(54, 162, 235, 0.2);
	border-color: rgba(54, 162, 235, 0.5);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(6) {
	background-color: rgba(153, 102, 255, 0.2);
	border-color: rgba(153, 102, 255, 0.4);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(7) {
	background-color: rgba(90, 229, 41, 0.2);
	border-color: rgba(90, 229, 41, 0.5);
}
.dashboard .bars .bottom-widgets .donors-blood-chart .chart-legends .blood:nth-child(8) {
	background-color: rgba(201, 203, 207, 0.2);
	border-color: rgba(201, 203, 207, 0.5);
}



.dashboard .bars .list-header {
	padding: 10px 20px;
	background-color: #dee3e5;
}
.dashboard .bars .delinquent-donors .list-header {
	padding: 10px 30px;
}
.dashboard .bars .list-header .title {
	font-size: 16px;
}



.dashboard .bars.second .data-list {
	height: 300px;
	overflow-y: scroll;
}
.dashboard .bars .data-list .not-found {
	display: block;
	margin-top: 20px;
	text-align: center;
	color: #aaaaaa;
	font-size: 0.95em;
}
.dashboard .bars .data-list .data-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 20px;
	font-size: 13px;
	height: 34px;
	line-height: 34px;
	border-bottom: 1px dotted #ccc;
}
.dashboard .bars .delinquent-donors .data-list .data-row {
	padding: 0 30px;
}
.dashboard .bars .data-list .data-row.header {
	height: 38px;
	line-height: 38px;
	font-family: var(--font_family_medium);
	background-color: #f7f7f7;
}
.dashboard .bars .data-list .data-row .column {
	padding-right: 16px;
	font-size: 13px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}

.dashboard .bars .new-donors-list .data-list .data-row .donor-datetime {
	width: 29%;
}
.dashboard .bars .new-donors-list .data-list .data-row .donor-profile-name {
	width: 51%;
}
.dashboard .bars .new-donors-list .data-list .data-row .donor-working {
	width: 20%;
}

.dashboard .bars .delinquent-donors .data-list .data-row .delinquent-serial {
	width: 6%;
}
.dashboard .bars .delinquent-donors .data-list .data-row .delinquent-donor-name {
	width: 26%;
}
.dashboard .bars .delinquent-donors .data-list .data-row .delinquent-sub-clan {
	width: 23%;
}
.dashboard .bars .delinquent-donors .data-list .data-row .delinquent-address {
	width: 28%;
}
.dashboard .bars .delinquent-donors .data-list .data-row .delinquent-balance {
	width: 15%;
}


.dashboard .bars.second .box.recent-activity .not-found {
	display: block;
	margin-top: 20px;
	text-align: center;
	color: #aaaaaa;
	font-size: 0.95em;
}
.dashboard .bars.second .box.recent-activity .user {
	margin: 10px 23px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.dashboard .bars.second .box.recent-activity .user .image {
	-ms-flex-preferred-size: 40px;
	    flex-basis: 40px;
	height: 40px;
}
.dashboard .bars.second .box.recent-activity .user .image img {
	width: 100%;
	border-radius: 99em;
}
.dashboard .bars.second .box.recent-activity .user .details {
	-ms-flex-preferred-size: calc(100% - 50px);
	    flex-basis: calc(100% - 50px);
	font-size: 13px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.dashboard .bars.second .box.recent-activity .user .details .name {
	font-weight: 600;
	max-width: 98px;
	height: 17px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}
.dashboard .bars.second .box.recent-activity .user .details .time {
	margin-left: 7px;
	color: #999999;
	height: 17px;
	font-size: 12px;
}
.dashboard .bars.second .box.recent-activity .user .details .activity {
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
	font-size: 13px;
}



/* ------------------------------ */
/* -------- unknown page -------- */
/* ------------------------------ */

.unknown {
	padding: 3%;
	min-height: 230px;
	font-size: 0.94em;
	background: #fff url(../images/system/oops.png) 94% 25px no-repeat;
	border: 1px dotted #cccccc;
	border-radius: 4px;
}
.unknown h3 {
	font-size: 1.3em;
	margin-bottom: 1%;
}
.unknown ul {
	margin: 0.5% 3%;
}
.unknown p,
.unknown ul li {
	line-height: 22px;
}



/* ------------------------------ */
/* ---------- load page --------- */
/* ------------------------------ */


.workplace .load-page {
	padding: 2%;
	background-color: #ffffff;
	border: 1px dotted #bbbbbb;
	border-radius: 4px;
}
.workplace .load-page .header-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 14px;
}
.workplace .load-page .header-bar .list-title {
	-ms-flex-preferred-size: 26%;
	    flex-basis: 26%;
	padding-left: 14px;
	font-size: 1em;
}
.workplace .load-page .header-bar .controls {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.workplace .load-page .header-bar .controls .filter-bar {
	-ms-flex-preferred-size: 72%;
	    flex-basis: 72%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.workplace .load-page .header-bar .controls .link-btn {
	margin-left: 12px;
	padding: 7px 18px;
	font-size: 0.9em;
	text-decoration: none;
	color: var(--loadpage_link_color);
	border: 1px solid var(--loadpage_link_color);
	border-radius: 3px;
	cursor: pointer;
}
.workplace .load-page .header-bar .controls .link-btn.primary {
	color: #ffffff;
	background-color: var(--loadpage_link_color);
}
.workplace .load-page .header-bar .controls .link-btn::before {
	content: '\2b';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 7px;
}
.workplace .load-page .header-bar .controls .link-btn.second {
	margin-right: 10px;
}


.workplace .load-page .filter-bar .search-by {
	max-width: 25%;
	margin-left: 14px;
	padding: 6px 24px 6px 14px;
	font-size: 0.9em;
	background-color: var(--loadpage_title_bgcolor);
	border-right: none;
	border-radius: 3px 0 0 3px;

	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 4px;
}
.workplace .load-page .filter-bar .text-field {
	width: 45%;
	padding: 0 10px;
	border: 1px solid var(--loadpage_element_border);
	position: relative;
	border-radius: 0 3px 3px 0;
}
.workplace .load-page .filter-bar .text-field input {
	width: 100%;
	height: 100%;
	font-size: 0.9em;
	background-color: transparent;
	border: none;
}
.workplace .load-page .filter-bar .text-field.highlight {
	border-color: #ff0000;
}
.workplace .load-page .filter-bar .text-field.highlight input::-webkit-input-placeholder {
	color: #ff0000;
}
.workplace .load-page .filter-bar .text-field.highlight input::-moz-placeholder {
	color: #ff0000;
}
.workplace .load-page .filter-bar .text-field.highlight input:-ms-input-placeholder {
	color: #ff0000;
}
.workplace .load-page .filter-bar .text-field.highlight input::-ms-input-placeholder {
	color: #ff0000;
}
.workplace .load-page .filter-bar .text-field.highlight input::placeholder {
	color: #ff0000;
}
.workplace .load-page .filter-bar .text-field .clickable {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
}
.workplace .load-page .filter-bar .text-field .clickable:hover {
	font-weight: 600;
	background-color: #eeeeee;
}
.workplace .load-page .filter-bar .filter {
	position: relative;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
	color: var(--loadpage_filter_color);
	font-family: var(--font_family_medium);
	cursor: pointer;
}
.workplace .load-page .filter-bar .filter summary {
	list-style: none;
	font-size: 0.92em;
}
.workplace .load-page .filter-bar details summary:after {
	content: "\f107";
	font-family: "Font Awesome 6 Pro";
	margin-left: 8px;
}
.workplace .load-page .filter-bar details[open] summary:after {
	content: "\f106";
}
.workplace .load-page .filter-bar .filter .list {
	left: 0;
	position: absolute;
	top: 30px;
	left: -40%;
	min-width: 200px;
	color: var(--font_color);
	background-color: #ffffff;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	z-index: 800;
}
.workplace .load-page .filter-bar .filter .list:before, 
.workplace .load-page .filter-bar .filter .list:after {
	content: '';
	display: block;
	position: absolute;
	left: 20%;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px;
}
.workplace .load-page .filter-bar .filter .list:after {
	top: -22px;
	border-color: transparent transparent #ffffff transparent;
}
.workplace .load-page .filter-bar .filter .list:before {
	top: -23px;
	border-color: transparent transparent #dddddd transparent;
}
.workplace .load-page .filter-bar .filter .list li {
	border-bottom: 1px solid #dddddd;
	font-family: var(--font_family);
	font-size: 0.9em;
	padding: 8px 16px;
	list-style: none;
	cursor: pointer;
}
.workplace .load-page .filter-bar .filter .list li:nth-last-child(1) {
	border-bottom: none;
}
.workplace .load-page .filter-bar .filter .list li.chosen, 
.workplace .load-page .filter-bar .filter .list li:hover {
	background-color: #f5f5f5;
}

.workplace .load-page .filter-bar .filter-text {
	width: 180px;
	padding: 0 10px;
	font-size: 0.95em;
	background-color: #f5f8fa;
	border: 1px solid var(--loadpage_element_border);
	border-radius: 3px;
}
.workplace .load-page .filter-bar .filter-text.highlight {
	border-color: #ff0000;
	color: #ff0000;
}


.workplace .load-page .filter-bar .suggestation-box {
	position: absolute;
	left: 0px;
	top: 36px;
	width: 100%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	-webkit-box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	        box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .load-page .filter-bar .suggestation-box.show {
	display: inline-block;
}
.workplace .load-page .filter-bar .suggestation-box .fetching {
	padding: 10px 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 13px;
}
.workplace .load-page .filter-bar .suggestation-box .fetching span {
	margin-left: 10px;
}
.workplace .load-page .filter-bar .suggestation-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .load-page .filter-bar .suggestation-box a {
	display: block;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .load-page .filter-bar .suggestation-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.5);
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option p {
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option p span {
	font-weight: 600;
}
.workplace .load-page .filter-bar .suggestation-box .suggest-option p span::after {
	content: ' ';
}

.workplace .load-page .dynamic-area {
	position: relative;
}
.workplace .load-page .dynamic-area .overlay {
	background-color: rgba(255, 255, 255, 0.9);
	z-index: 999;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 100px;
	border: 1px solid var(--loadpage_element_border);
	color: #777777;
	display: none;
}
.workplace .load-page .dynamic-area .overlay.show {
	display: block;
}
.workplace .load-page .dynamic-area .overlay .process {
	position: absolute;
	font-style: normal;
	margin-left: -24px;
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}
.workplace .load-page .dynamic-area .overlay .process::before {
	content: '\e1d4';
	font-family: "Font Awesome 6 Pro";
}



.workplace .load-page .dynamic-area .list-data {
	min-height: 260px;
	max-height: 586px;
	position: relative;
	padding-bottom: 14px;

	overflow: auto;
	border: 1px solid var(--loadpage_element_border);
	border-radius: 4px;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar {
	width: 10px;
	border: 1px solid #cccccc;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-track {
	background-color: #eeeeee;
	border-radius: 0 3px 0 3px;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-thumb {
	background-color: #bbbbbb; 
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-corner {
	background-color: #eeeeee;
	border-radius: 0 0 3px 0;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-button {
	display: none;
}


.workplace .load-page .dynamic-area .list-data .styled-table {
	table-layout: fixed;
    border-collapse: collapse;
    border-radius: 4px;
}
.workplace .load-page .dynamic-area .list-data .styled-table tr:nth-child(even) {
	background-color: var(--loadpage_bgcolor_hover);
}
.workplace .load-page .dynamic-area .list-data .styled-table th, 
.workplace .load-page .dynamic-area .list-data .styled-table td {
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: rgb(223, 227, 235);

	min-width: 90px;
	text-align: left;
	padding: 0 20px 0 16px;
}
.workplace .load-page .dynamic-area .list-data .styled-table th:first-child, 
.workplace .load-page .dynamic-area .list-data .styled-table td:first-child {
	border-left-width: 0;
}
.workplace .load-page .dynamic-area .list-data .styled-table th {
	height: 40px;
	text-transform: uppercase;
	font-size: 13px;
	border-color: var(--loadpage_border_color);
	background-color: var(--loadpage_title_bgcolor);
}
.workplace .load-page .dynamic-area .list-data .styled-table td {
	height: 34px;
	font-size: 13.5px;
}
.workplace .load-page .dynamic-area .list-data .styled-table .styled-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	min-width: 0;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div {
	max-width: 300px;

    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div .account-status.inactive {
	margin-right: 8px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: var(--showpage_paid_status_no);
    border-radius: 99em;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div .profile-status.suspended {
	margin-right: 8px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: var(--showpage_pending_bgcolor);
    border-radius: 99em;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div .profile-status.deceased {
	margin-right: 8px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: #f7ee2b;
    border-radius: 99em;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div .paid-status.no {
	margin-right: 8px;
    height: 12px;
    width: 12px;
    display: inline-block;
    background-color: var(--showpage_paid_status_no);
    border-radius: 99em;
}
.workplace .load-page .dynamic-area .list-data .styled-table .inner-sorter {
	margin-left: 40px;
	display: none;
}
.workplace .load-page .dynamic-area .list-data .styled-table .inner-sorter::before {
	content: '\f0dc';
	font-family: "Font Awesome 6 Pro";
}


.workplace .load-page .dynamic-area .list-data .styled-table .btn {
	text-decoration: none;
	cursor: pointer;
	opacity: 0.8;
	margin-right: 6px;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn:hover {
	opacity: 1;
	color: var(--loadpage_anchor_color);
	font-weight: 600;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn.delete:hover {
	color: #cc0000;
}
.workplace .load-page .dynamic-area .list-data .styled-table .btn.delete::before {
	content: '\f2ed';
	font-family: "Font Awesome 6 Pro";
	margin-right: 8px;
}


.workplace .load-page .dynamic-area .list-data .styled-table .empty-cell {
	height: 160px;
	min-width: 1434px;
	text-align: center;
	border: none;
	color: #888888;
}


.workplace .load-page .dynamic-area .list-data .column.donor-name {
	min-width: 280px;
}
.workplace .load-page .dynamic-area .list-data .column.donor-phone {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.donor-sub-column {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.donor-blood {
	min-width: 100px;
}
.workplace .load-page .dynamic-area .list-data .column.donor-address {
	min-width: 300px;
}
.workplace .load-page .dynamic-area .list-data .column.donor-amount {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.donor-working {
	min-width: 100px;
}


.workplace .load-page .dynamic-area .list-data .column.billing-month {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.billing-donor-name {
	min-width: 260px;
}
.workplace .load-page .dynamic-area .list-data .column.billing-donor-phone {
	min-width: 180px;
}
.workplace .load-page .dynamic-area .list-data .column.billing-sub-column {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.billing-amount {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.billing-donor-rest {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.billing-bill-balance {
	min-width: 260px;
}


.workplace .load-page .dynamic-area .list-data .column.receipt-voucher {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.receipt-donor-name {
	min-width: 260px;
}
.workplace .load-page .dynamic-area .list-data .column.receipt-donor-phone {
	min-width: 180px;
}
.workplace .load-page .dynamic-area .list-data .column.receipt-sub-column {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.receipt-amount {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.receipt-discount {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.receipt-pay-method {
	min-width: 260px;
}


.workplace .load-page .dynamic-area .list-data .column.withdraw-voucher {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.withdraw-account {
	min-width: 220px;
}
.workplace .load-page .dynamic-area .list-data .column.withdraw-beneficiary {
	min-width: 280px;
}
.workplace .load-page .dynamic-area .list-data .column.withdraw-phone {
	min-width: 220px;
}
.workplace .load-page .dynamic-area .list-data .column.withdraw-amount {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.withdraw-pay-method {
	min-width: 320px;
}


.workplace .load-page .dynamic-area .list-data .column.event-date {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.event-title {
	min-width: 360px;
}
.workplace .load-page .dynamic-area .list-data .column.event-level {
	min-width: 210px;
}
.workplace .load-page .dynamic-area .list-data .column.event-part {
	min-width: 320px;
}


.workplace .load-page .dynamic-area .list-data .column.user-name {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.user-full-name {
	min-width: 340px;
}
.workplace .load-page .dynamic-area .list-data .column.user-role {
	min-width: 360px;
}
.workplace .load-page .dynamic-area .list-data .column.user-last-login {
	min-width: 260px;
}
.workplace .load-page .dynamic-area .list-data .column.user-status {
	min-width: 200px;
}


.workplace .load-page .dynamic-area .bottom-bar {
	margin-top: 20px;
	padding: 13px 20px;
	border: 1px solid #cbcbcb;
	border-radius: 4px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.workplace .load-page .bottom-bar .pagination {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}


.workplace .load-page .bottom-bar .pagination .page {
	position: relative;
	margin-right: 3px;
	min-width: 30px;
	height: 30px;
	line-height: 28px;
	text-align: center;
	border: 1px solid #c5c5c5;
	border-radius: 3px;
}
.workplace .load-page .bottom-bar .pagination .page.active {
	color: #62727c;
	background-color: #bdd2e1;
	border-color: #a4c3d9;
}
.workplace .load-page .bottom-bar .pagination .page a {
	display: block;
	text-decoration: none;
	color: #999999;
	cursor: pointer;
}


.workplace .load-page .bottom-bar .per-page {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-preferred-size: 70%;
	    flex-basis: 70%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 0.92em;
}
.workplace .load-page .bottom-bar .per-page p {
	margin: 0 10px;
}
.workplace .load-page .bottom-bar .per-page select {
	width: 14%;
	padding: 4px 6px;
	border-radius: 3px;
}
.workplace .load-page .bottom-bar .per-page input {
	width: 8%;
	padding: 5px;
	border-radius: 3px;
}
.workplace .load-page .bottom-bar .per-page button {
	margin-left: 10px;
	padding: 5px 9px;
	color: #ffffff;
    background-color: var(--loadpage_link_color);
    border: 1px solid var(--loadpage_link_color);
	border-radius: 3px;
}





/* -------------------------- */
/* -------- the form -------- */
/* -------------------------- */


.workplace .the-form {
	display: none;
	font-size: 0.95em;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 88vh;
}
.workplace .the-form .form-contents {
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
}
.workplace .the-form.add-resource .form-contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.workplace .the-form .form-buttons {
	margin-top: 20px;
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;

	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;

	padding: 20px 26px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	gap: 10px;
}


.workplace .the-form .form-buttons .btn-submit, 
.workplace .the-form .form-buttons .btn-cancel {
	display: inline-block;
	text-align: center;
	width: 20%;
	padding: 7px 0;
	font-size: 0.95em;
	border: 1px solid #cccccc;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .the-form .form-buttons .btn-submit {
	color: var(--form_button_color);
	background-color: var(--form_button_bgcolor);
	border: 1px solid var(--form_button_bgcolor);
}
.workplace .the-form .form-buttons .btn-submit:disabled {
	background-color: #cfcfcf;
    border-color: #bdbdbd;
    color: #444444;
	opacity: 0.5;
	cursor: not-allowed;
}

.workplace .the-form .form-buttons .loading {
	margin-left: 6px;
	font-size: 1.1em;
	display: none;
}
.workplace .the-form .form-buttons .loading.show {
	display: inline-block;
}
.workplace .the-form .form-buttons i {
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}

.workplace .the-form .form-section {
	padding-top: 10px;
	background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 4px;
}
.workplace .the-form.collection .form-section {
	min-height: 500px;
}
.workplace .the-form .form-section.next {
	margin-top: 20px;
}
.workplace .the-form .form-section .tab-title {
    border-bottom: 1px solid #dddddd;
}
.workplace .the-form .form-section .tab-title h3 {
	margin: 0 24px;
	padding: 4px 6px;
	display: inline-block;
	color: var(--form_tab_color);
	font-size: 1em;
	font-family: var(--font_family_medium);
	font-weight: 500;
    border-bottom: 2px solid var(--form_tab_color);
}
.workplace .the-form .form-section .tab-content {
	padding: 14px 24px 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .the-form .form-section .form-divider {
	margin: 16px 24px;
	border-top: 1px dashed #cccccc;
}
.workplace .the-form .form-section .tab-content .part {
	-ms-flex-preferred-size: 49%;
	    flex-basis: 49%;
}
.workplace .the-form .form-section .tab-content .record {
	margin: 8px 0;
}

.workplace .the-form .form-contents .record.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .the-form .form-section .tab-content .record .label {
	-ms-flex-preferred-size: 30%;
	    flex-basis: 30%;
	line-height: 26px;
	font-size: 0.92em;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .the-form .form-section .tab-content .record .value {
	position: relative;
	-ms-flex-preferred-size: 70%;
	    flex-basis: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .the-form .form-section .tab-content .record .label .required {
	color: #777777;
	margin-left: 3px;
}

.workplace .the-form .form-section .hint {
	display: inline-block;
	position: relative;
	font-size: 16px;
	cursor: pointer;
	margin-left: 4px;
	text-decoration: none;
}
.workplace .the-form .form-section .hint::before {
	content: "\f05a";
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
	color: #8fbca3;
}

.workplace .the-form .input-text,
.workplace .the-form .drop-box,
.workplace .the-form .text-area {
	height: 29px;
	padding-left: 8px;
	color: #666666;
	font-size: 0.92em;
	background-color: var(--form_element_bgcolor);
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}

.workplace .the-form .input-text[type="month"] {
	-webkit-padding-end: 8px !important;
}
.workplace .the-form .drop-box {
	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 2px;
}
.workplace .the-form .text-area {
	height: auto;
	padding: 8px 8px;
	line-height: 18px;
	resize: none;
	resize: vertical;
}

.workplace .the-form .input-text.next,
.workplace .the-form .drop-box.next,
.workplace .the-form .text-area.next {
	margin-left: 2%;
}

.workplace .the-form .input-text.highlight,
.workplace .the-form .drop-box.highlight,
.workplace .the-form .text-area.highlight {
	border-color: #ff0000;
}

.workplace .the-form .input-text:focus,
.workplace .the-form .drop-box:focus,
.workplace .the-form .text-area:focus {
	border-color: #dcdcdc;
}

.workplace .the-form .input-color {
	margin-left: 8px;
	inline-size: 40px;
    block-size: 24px;
	padding: 1px 2px;
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	outline: none;
}

.workplace .the-form .input-text:not([readonly]):focus,
.workplace .the-form .drop-box:not([readonly]):focus,
.workplace .the-form .text-area:not([readonly]):focus {
	background-color: var(--form_element_focus_bgcolor);
	-webkit-box-shadow: 0 0 0 2px var(--form_element_focus_border);
	        box-shadow: 0 0 0 2px var(--form_element_focus_border);
}

.workplace .the-form .checkbox-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	margin-left: 10px;
}
.workplace .the-form .checkbox-wrap input {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.workplace .the-form .checkbox-wrap input::before {
	position: absolute;
	top: 5px;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
	cursor: pointer;
}
.workplace .the-form .checkbox-wrap input:checked::after {
	position: absolute;
	top: 5px;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	font-size: 14px;
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.workplace .the-form .checkbox-wrap span {
	margin-left: 26px;
	height: 20px;
	font-size: 14px;
}

.workplace .the-form .checkboxes-wrapper {
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	overflow: hidden;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .the-form .checkboxes-wrapper label {
	cursor: pointer;
}
.workplace .the-form .checkboxes-wrapper input:checked ~ .text {
	background-color: var(--form_checkbox_bgcolor);
}
.workplace .the-form .checkboxes-wrapper label input {
	display: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.workplace .the-form .checkboxes-wrapper label .text {
	display: inline-block;
	padding: 4px 20px;
	font-size: 0.92em;
}
.workplace .the-form .search-btn {
	margin-left: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 10px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;

	color: var(--form_search_btn_color);
	background-color: var(--form_search_btn_bgcolor);
	border: 1px solid var(--form_search_btn_border);
	border-radius: 3px;
	cursor: pointer;
}
.workplace .the-form .search-btn::before {
	content: '\1f50d';
	font-family: "Font Awesome 6 Pro";
}

.workplace .the-form .error.show {
	display: block;
	width: 100%;
	margin: 6px 0 0;
	font-size: 14px;
}

.workplace .the-form .username {
	width: 92%;
}
.workplace .the-form .user-password {
	width: 92%;
}
.workplace .the-form .user-full-name {
	width: 88%;
}
.workplace .the-form .user-role {
	width: 88%;
}

.workplace .the-form .tab-title label {
	width: 170px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	bottom: 6px;
}
.workplace .the-form .tab-title label input {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.workplace .the-form .tab-title label input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
	cursor: pointer;
}
.workplace .the-form .tab-title label input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.workplace .the-form .tab-title label span {
	margin-left: 30px;
	height: 20px;
}

.workplace .the-form .user-grants {
	width: 100%;
	margin: 10px 0;
}
.workplace .the-form .user-grants .grant-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 20px;
	border-bottom: 1px dashed #dddddd;
    font-size: 0.95em;
}
.workplace .the-form .user-grants .grant-row:nth-child(odd) {
	background-color: #f8f8f8;
}
.workplace .the-form .user-grants .grant-row:nth-last-child(1) {
	border-bottom: none;
}
.workplace .the-form .user-grants .grant-row .grant-label {
	-ms-flex-preferred-size: 23%;
	    flex-basis: 23%;
	padding: 14px 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.workplace .the-form .user-grants .grant-row .grant-values {
	-ms-flex-preferred-size: 77%;
	    flex-basis: 77%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .the-form .user-grants .grant-row label {
	width: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	margin: 14px 0;
	margin-right: 30px;
}
.workplace .the-form .user-grants .grant-row label input {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.workplace .the-form .user-grants .grant-row label input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
}
.workplace .the-form .user-grants .grant-row label input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.workplace .the-form .user-grants .grant-row label span {
	margin-left: 30px;
	height: 20px;
}

.workplace .the-form.donor .donor-name {
	width: 92%;
}
.workplace .the-form.donor .donor-phone {
	width: 92%;
}
.workplace .the-form.donor .sub-clan {
	width: 70%;
}
.workplace .the-form.donor .birth-year {
	width: 70%;
}
.workplace .the-form.donor .donor-sex {
	width: 50%;
}
.workplace .the-form.donor .blood-group {
	width: 50%;
}
.workplace .the-form.donor .residence-country {
	width: 45%;
}
.workplace .the-form.donor .residence-state {
	width: 45%;
}
.workplace .the-form.donor .education-level {
	width: 92%;
}
.workplace .the-form.donor .recurring-amount {
	width: 45%;
}


.workplace .the-form.generate-bill .register-date {
	width: 50%;
}
.workplace .the-form.generate-bill .billing-month {
	width: 50%;
}
.workplace .the-form.generate-bill .sub-clan {
	width: 76%;
}
.workplace .the-form.generate-bill .search-by {
	width: 22%;
}
.workplace .the-form.generate-bill .search-donor {
	width: 52%;
	margin-left: 8px;
}
.workplace .the-form.generate-bill .big-text-field {
    font-size: 2em;
    line-height: 22px;
    color: #666666;
}

.workplace .the-form.generate-bill .generate-bills {
	display: block;
	width: 100%;
	margin-bottom: 20px;
	font-size: 0.92em;
	border: 1px solid #dddddd;
	border-radius: 3px;
	position: relative;
}
.workplace .the-form.generate-bill .generate-bills.highlight {
	border-color: #ff0000;
}

.workplace .the-form.generate-bill .generate-bills .retrieving {
	background-color: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 72px;
	text-align: center;
	display: none;
}
.workplace .the-form.generate-bill .generate-bills .retrieving.show {
	display: block;
}
.workplace .the-form.generate-bill .generate-bills .retrieving .icon {
	font-size: 17px;
	margin-right: 8px;
}

.workplace .the-form.generate-bill .generate-bills .title {
	padding: 0 18px 0 20px;
	background-color: var(--form_generate_bgcolor);
	border-bottom: 1px solid var(--form_generate_border);
	display: none;
}
.workplace .the-form.generate-bill .generate-bills .title.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .the-form.generate-bill .generate-bills .generate-bill-list {
    max-height: 360px;
    overflow-y: scroll;
    counter-reset: section;
}
.workplace .the-form.generate-bill .generate-bills .generate-bill-list .list {
    padding-left: 20px;
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.workplace .the-form.generate-bill .generate-bills .generate-bill-list .list:nth-last-child(1) {
    border-bottom: none;
}
.workplace .the-form.generate-bill .generate-bills .cave {
	padding: 8px 12px 8px 0;
	word-break: break-word;
}
.workplace .the-form.generate-bill .generate-bills .generate-bill-list .cave.highlight {
	outline: 1px solid #ff0000;
}

.workplace .the-form.generate-bill .generate-bills .cave.serial {
	-ms-flex-preferred-size: 6%;
	    flex-basis: 6%;
}
.workplace .the-form.generate-bill .generate-bills .generate-bill-list .list .serial::before {
	counter-increment: section;
	content: counter(section)".";
}

.workplace .the-form.generate-bill .generate-bills .cave.tick-box {
	-ms-flex-preferred-size: 6%;
	    flex-basis: 6%;
}
.workplace .the-form.generate-bill .generate-bills .cave.donor-name {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
	padding-right: 30px;
}
.workplace .the-form.generate-bill .generate-bills .donor-phone {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .the-form.generate-bill .generate-bills .cave-sub-clan {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .the-form.generate-bill .generate-bills .amount {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .the-form.generate-bill .generate-bills .rest {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .the-form.generate-bill .generate-bills .balance {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}

.workplace .the-form.generate-bill .generate-bills .generate-bill-list .list .input-text {
	width: 80%;
}
.workplace .the-form.generate-bill .generate-bills .not-found {
	display: block;
	height: 72px;
	line-height: 72px;
	text-align: center;
	color: #aaaaaa;
	font-style: italic;
}
.workplace .the-form.generate-bill .generate-bills.highlight .not-found {
	color: #ff0000;
}


.workplace .the-form.collection .register-date {
	width: 45%;
}
.workplace .the-form.collection .search-by {
	width: 22%;
}
.workplace .the-form.collection .search-donor {
	width: 60%;
	margin-left: 8px;
}
.workplace .the-form.collection .current-balance {
	width: 45%;
}
.workplace .the-form.collection .amount-paid {
	width: 50%;
}
.workplace .the-form.collection .in-words {
	width: 87%;
	height: 68px;
}
.workplace .the-form.collection .payment-method {
	width: 70%;
}
.workplace .the-form.collection .notes {
	width: 98%;
	height: 68px;
}

.workplace .the-form .suggestation-box {
	position: absolute;
	left: 1px;
	top: 30px;
	width: 94%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	-webkit-box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	        box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .the-form .suggestation-box.show {
	display: inline-block;
}
.workplace .the-form .suggestation-box .fetching {
	padding: 10px 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 13px;
}
.workplace .the-form .suggestation-box .fetching span {
	margin-left: 10px;
}
.workplace .the-form .suggestation-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .the-form .suggestation-box a {
	display: block;
	color: #666666;
	cursor: pointer;
}
.workplace .the-form .suggestation-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .the-form .suggestation-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.5);
}
.workplace .the-form .suggestation-box .suggest-option.disable {
	opacity: 0.5;
}
.workplace .the-form .suggestation-box .suggest-option p {
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .the-form .suggestation-box .suggest-option p span {
	font-weight: 600;
}
.workplace .the-form .suggestation-box .suggest-option p span::after {
	content: ' ';
}



.workplace .the-form.collection .invoice-wrapper {
	display: block;
	font-size: 0.92em;
	border: 1px solid #dddddd;
	border-radius: 3px;
	position: relative;
}
.workplace .the-form.collection .invoice-wrapper.highlight {
	border-color: #ff0000;
}

.workplace .the-form.collection .invoice-wrapper .retrieving {
	background-color: rgba(255, 255, 255, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 72px;
	text-align: center;
	display: none;
}
.workplace .the-form.collection .invoice-wrapper .retrieving.show {
	display: block;
}
.workplace .the-form.collection .invoice-wrapper .retrieving .icon {
	font-size: 17px;
	margin-right: 8px;
}

.workplace .the-form.collection .invoice-wrapper .title {
	padding: 0 20px;
	font-weight: 600;
	background-color: var(--form_generate_bgcolor);
	border-bottom: 1px solid var(--form_generate_border);
	display: none;
}
.workplace .the-form.collection .invoice-wrapper .title.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list {
	max-height: 360px;
	overflow-y: scroll;
    counter-reset: section;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list .list {
	padding-left: 20px;
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list .list:nth-last-child(1) {
    border-bottom: none;
}
.workplace .the-form.collection .invoice-wrapper .cave {
	padding: 6px 12px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.workplace .the-form.collection .invoice-wrapper .cave.serial {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list .list .serial::before {
	counter-increment: section;
	content: counter(section)".";
}
.workplace .the-form.collection .invoice-wrapper .cave.bill-number {
	-ms-flex-preferred-size: 33%;
	    flex-basis: 33%;
	padding-right: 30px;
}
.workplace .the-form.collection .invoice-wrapper .cave.balance {
	-ms-flex-preferred-size: 22%;
	    flex-basis: 22%;
}
.workplace .the-form.collection .invoice-wrapper .cave.discount {
	-ms-flex-preferred-size: 35%;
	    flex-basis: 35%;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list .list .input-text {
	width: 75%;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list .list .error-icon {
	margin-left: 4px;
	font-size: 16px;
	color: #ff0000;
	display: none;
}
.workplace .the-form.collection .invoice-wrapper .invoice-list .list .error-icon.show {
	display: inline-block;
}
.workplace .the-form.collection .invoice-wrapper .not-found {
	display: block;
	height: 72px;
	line-height: 72px;
	text-align: center;
	color: #aaaaaa;
	font-style: italic;
}
.workplace .the-form.collection .invoice-wrapper.highlight .not-found {
	color: #ff0000;
}


.workplace .the-form.withdraw .form-section {
	padding-bottom: 70px;
}
.workplace .the-form.withdraw .register-date {
	width: 45%;
}
.workplace .the-form.withdraw .withdraw-account {
	width: 76%;
}
.workplace .the-form.withdraw .beneficiary-name {
	width: 90%;
	height: 58px;
}
.workplace .the-form.withdraw .beneficiary-phone {
	width: 70%;
}
.workplace .the-form.withdraw .register-date {
	width: 45%;
}
.workplace .the-form.withdraw .search-donor {
	width: 76%;
}
.workplace .the-form.withdraw .current-balance {
	width: 45%;
}
.workplace .the-form.withdraw .amount-paid {
	width: 50%;
}
.workplace .the-form.withdraw .in-words {
	width: 87%;
	height: 68px;
}
.workplace .the-form.withdraw .payment-method {
	width: 70%;
}
.workplace .the-form.withdraw .notes {
	width: 90%;
	height: 68px;
}


.workplace .the-form.event .event-date {
	width: 45%;
}
.workplace .the-form.event .event-title {
	width: 90%;
}
.workplace .the-form.event .priority-level {
	width: 45%;
}
.workplace .the-form.event .event-description {
	width: 90%;
	height: 88px;
}
.workplace .the-form.event .event-part {
	width: 90%;
	height: 70px;
}
.workplace .the-form.event .notes {
	width: 98%;
	height: 68px;
}





/* -------------------------- */
/* -------- file page ------- */
/* -------------------------- */

.workplace .files-wrap {
	padding: 2.5% 2%;
	font-size: 0.92em;
	background-color: #ffffff;
	border: 1px dotted #bbbbbb;
	border-radius: 4px;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.workplace .files-wrap .files-side {
	width: 23%;
	
}
.workplace .files-wrap .files-content {
	width: 78%;
}
.workplace .files-wrap .files-side .bottons {
	height: 40px;
	background-color: #ffffff;
	border-bottom: 1px solid #dadada;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .files-wrap .files-side .bottons .create-folder {
	height: 30px;
	line-height: 28px;
	padding: 0 12px;
	font-size: 1.1em;
	font-weight: 600;
	cursor: pointer;
	color: #777777;
    border: 1px solid #999;
    border-radius: 4px;
}
.workplace .files-wrap .files-side .bottons .upload {
	margin-left: 10px;
	height: 30px;
	line-height: 30px;
	padding: 0 12px;
	font-size: 0.9em;
	cursor: pointer;
	color: var(--file_mgt_upload_color);
    text-decoration: none;
    border: 1px solid var(--file_mgt_upload_color);
    border-radius: 4px;
}
.workplace .files-wrap .files-side .bottons .upload::before {
	content: "\f342";
	font-family: "Font Awesome 6 Pro";
	margin-right: 8px;
}

.workplace .files-wrap .files-side .folders {
    min-height: 400px;
    padding: 10px 20px;
    background-color: var(--file_mgt_sidebar_bgcolor);
    border-right: 1px solid #ccc;
}
.workplace .files-wrap .files-side .folders .folder {
	display: block;
	padding: 7px 0;
	font-size: 14px;
	color: #333333;
	text-decoration: none;
	cursor: pointer;
	border-bottom: 1px solid #dadada;
}
.workplace .files-wrap .files-side .folders .folder input {
	display: none;
}
.workplace .files-wrap .files-side .folder input[type=radio]:checked ~ span {
	color: var(--file_mgt_sidebar_active);
	font-weight: 600;
}
.workplace .files-wrap .files-content .header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	padding: 0 0 10px 25px;
	height: 40px;
	border-bottom: 1px solid #dadada;
}
.workplace .files-wrap .files-content .header .part {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.workplace .files-wrap .files-content .header .part.left {
	width: 35%; 
	-o-text-overflow: ellipsis; 
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .files-wrap .files-content .header .part.center {
	width: 40%;
}
.workplace .files-wrap .files-content .header .part.right {
	width: 22%;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.workplace .files-wrap .files-content .header .folder-name {
	color: var(--file_mgt_folder_name);
}


.workplace .files-wrap .files-content .search-box {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}
.workplace .files-wrap .files-content .search-box .search-by {
	width: 150px;
	padding: 0 24px 0 10px;
	background-color: var(--loadpage_title_bgcolor);
	border-right: none;
	border-radius: 3px 0 0 3px;

	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 2px;
}
.workplace .files-wrap .files-content .search-box .text-field {
	width: calc(100% - 200px);
	padding: 0 10px;
	background-color: #ffffff;
	border: 1px solid var(--loadpage_element_border);
	position: relative;
	border-radius: 0 3px 3px 0;
}
.workplace .files-wrap .files-content .search-box .text-field input {
	width: 100%;
	height: 30px;
	font-size: 0.9em;
	background-color: transparent;
	border: none;
}
.workplace .files-wrap .files-content .search-box .text-field.highlight {
	border-color: #ff0000;
}
.workplace .files-wrap .files-content .search-box .text-field .clickable {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
}
.workplace .files-wrap .files-content .search-box .text-field .clickable:hover {
	font-weight: 600;
	background-color: #eeeeee;
}

.workplace .files-wrap .files-content .search-box .suggestation-box {
	position: absolute;
	left: -150px;
	top: 31px;
	width: calc(100% + 150px);
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	-webkit-box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	        box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .files-wrap .files-content .search-box .suggestation-box.show {
	display: inline-block;
}
.workplace .files-wrap .files-content .search-box .suggestation-box .fetching {
	padding: 10px 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 13px;
}
.workplace .files-wrap .files-content .search-box .suggestation-box .fetching span {
	margin-left: 10px;
}
.workplace .files-wrap .files-content .search-box .suggestation-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .files-wrap .files-content .search-box .suggestation-box a {
	display: block;
	color: #666666;
	text-decoration: none;
	cursor: pointer;
}
.workplace .files-wrap .files-content .search-box .suggestation-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .files-wrap .files-content .search-box .suggestation-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.5);
}
.workplace .files-wrap .files-content .search-box .suggestation-box .suggest-option p {
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .files-wrap .files-content .search-box .suggestation-box .suggest-option p span {
	font-weight: 600;
}
.workplace .files-wrap .files-content .search-box .suggestation-box .suggest-option p span::after {
	content: ' ';
}


.workplace .files-wrap .files-content .header .seperator {
	height: 18px;
	margin: 0 10px;
	border-left: 1px solid #bbb;
}
.workplace .files-wrap .files-content .header .drop-box {
	padding-left: 8px;
	height: 32px;
	width: 140px;
	color: #666666;
	font-size: 0.92em;
    background-color: var(--form_element_bgcolor);
    border: 1px solid var(--form_element_border);
	border-radius: 3px;

	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: 2px;
}
.workplace .files-wrap .files-content .header .drop-box:focus {
	border-color: #dcdcdc;
	background-color: var(--form_element_focus_bgcolor);
	-webkit-box-shadow: 0 0 0 2px var(--form_element_focus_border);
	        box-shadow: 0 0 0 2px var(--form_element_focus_border);
}
.workplace .files-wrap .files-content .header .part.right span {
	margin-right: 8px;
}

.workplace .files-wrap .files-content .docs-wrap {
	padding-left: 17px;
	position: relative;
}
.workplace .files-wrap .files-content .docs-wrap .overlay {
	background-color: rgba(255, 255, 255, 0.5);
	position: absolute;
	width: 100%;
	height: 100%;
	text-align: center;
	display: none;
}
.workplace .files-wrap .files-content .docs-wrap .overlay.show {
	display: inline-block;
}
.workplace .files-wrap .files-content .docs-wrap .overlay .process {
	position: absolute;
	top: 22%;
	font-size: 2em;
}
.workplace .files-wrap .files-content .docs-wrap .overlay .process i {
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}

.workplace .files-wrap .files-content .docs-wrap .the-files {
	max-height: 660px;
    overflow-y: scroll;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc {
	padding: 10px 8px;
	border-bottom: 1px solid #dddddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc:nth-child(odd) {
	background-color: #f7f7f7;
}
.workplace .files-wrap .files-content .docs-wrap .empty {
    text-align: center;
    color: #aaaaaa;
	line-height: 100px;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .pick {
	-ms-flex-preferred-size: 3.3%;
	    flex-basis: 3.3%;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details {
	-ms-flex-preferred-size: 75%;
	    flex-basis: 75%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .commands {
	-ms-flex-preferred-size: 21%;
	    flex-basis: 21%;
	opacity: 0.5;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc:hover .commands {
	opacity: 1;
}


.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon {
	-ms-flex-preferred-size: 3.5%;
	    flex-basis: 3.5%;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon::before {
	content: '\f15c';
	font-family: "Font Awesome 6 Pro";
	font-size: 2.3em;
	font-weight: 300;
	color: #aaaaaa;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.pdf::before {
	content: '\f1c1';
	color: #de1112;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.doc::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.docx::before {
	content: '\f1c2';
	color: #4589f1;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.xls::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.xlsx::before {
	content: '\f1c3';
	color: #19ad65;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.ppt::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.pptx::before {
	content: '\f1c4';
	color: #d24625;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.jpg::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.jpeg::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.png::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.gif::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.bmp::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.tiff::before {
	content: '\f1c5';
	color: #a5c773;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.zip::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.rar::before {
	content: '\f1c6';
	color: #e2c630;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.mp3::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.wav::before,
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.aac::before {
	content: '\f1c7';
	color: #eabe08;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .icon.mp4::before {
	content: '\f1c8';
	color: #51a3d9;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .file-info {
	margin-left: 12px;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .file-info .name {
	display: block;
	color: var(--link_color);
	font-size: 13px;
	margin-bottom: 5px;
	cursor: pointer;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .file-info .name:hover {
	text-decoration: underline;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .details .file-info p {
	font-size: 0.85em;
	color: #777777;
}


.workplace .files-wrap .files-content .docs-wrap .one-doc .commands .cmd {
	margin-left: 10px;
	cursor: pointer;
}
.workplace .files-wrap .files-content .docs-wrap .one-doc .commands .cmd:hover {
	font-weight: 600;
}


.workplace .files-wrap .files-side .folders .folder ul {
}
.workplace .files-wrap .files-side .folders .folder .context-menu { 
	position: absolute;
	padding: 8px 0;
	background-color: #ffffff;
	border-radius: 4px;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	display: none;
} 
.workplace .files-wrap .files-side .folders .folder .context-menu.show { 
	display: inline-block;
} 
.workplace .files-wrap .files-side .folders .folder .menu {
	list-style: none;
}
.workplace .files-wrap .files-side .folders .folder .menu > li > a {
	padding: 8px 40px 8px 20px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-decoration: none;
	font-size: 13px;
	-webkit-transition: 0.3s linear;
	-o-transition: 0.3s linear;
	transition: 0.3s linear;
}
.workplace .files-wrap .files-side .folders .folder .menu > li > a:hover {
	background-color: #f1f3f7;
	color: var(--link_color);
}
.workplace .files-wrap .files-side .folders .folder .menu > li .icon {
	margin-right: 10px;
}




/* --------------------------- */
/* -------- show page -------- */
/* --------------------------- */


.workplace .show-page {
	font-size: 0.95em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	min-height: 70vh;
}
.workplace .show-page .show-content {
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .show-page .tab-section {
	padding-top: 10px;
	padding-bottom: 40px;
	background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 4px;
}
.workplace .show-page .tab-section.left {
	-ms-flex-preferred-size: 26%;
	    flex-basis: 26%;
}
.workplace .show-page .tab-section.right {
	-ms-flex-preferred-size: 72%;
	    flex-basis: 72%;
	margin-left: 20px;
}
.workplace .show-page .tab-section .tab-title {
    border-bottom: 1px solid #ddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.workplace .show-page .tab-section .tab-title h3 {
	margin: 0 24px;
	padding: 4px 6px;
	display: inline-block;
	color: var(--showpage_tab_color);
	font-size: 1em;
	font-family: var(--font_family_medium);
	font-weight: 500;
    border-bottom: 2px solid var(--showpage_tab_color);
}
.workplace .show-page .tab-section .tab-title .edit {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	color: #777777;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	display: none;
}
.workplace .show-page .tab-section .tab-title .edit::before {
	content: '\f303';
	font-weight: 600;
	font-family: "Font Awesome 6 Pro";
	margin-right: 6px;
}

.workplace .show-page .tab-section:hover .tab-title .edit {
    display: inline-block;
}

.workplace .show-page .tab-section .tab-title .commands {
	margin: 0 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.workplace .show-page .tab-section .tab-title .print {
	margin-top: -8px;
	font-size: 14px;
	color: var(--showpage_sms_color);
	text-decoration: none;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-title .print::before {
	content: '\f02f';
	font-weight: 600;
	font-family: "Font Awesome 6 Pro";
	margin-right: 6px;
}
.workplace .show-page .tab-section .tab-title .send-sms {
	margin-top: -8px;
	font-size: 14px;
	color: var(--showpage_sms_color);
	text-decoration: none;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-title .send-sms::before {
	content: '\f075';
	font-weight: 600;
	font-family: "Font Awesome 6 Pro";
	margin-right: 6px;
}
.workplace .show-page .tab-section .tab-title .navigations {
	margin-top: -10px;
	margin-left: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .show-page .tab-section .tab-title .navigations a {
	font-size: 13px;
	color: #777777;
	height: 28px;
	line-height: 28px;
	padding: 0 12px;
	text-decoration: none;
	border: 1px solid #bbbbbb;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-title .navigations a.to-list {
	color: #555555;
	font-size: 14px;
	background-color: #eeeeee;
	border: 1px solid #bbbbbb;
}
.workplace .show-page .tab-section .tab-title .navigations .nav.count-0 {
	color: #dddddd;
	border-color: #dddddd;
	cursor: default !important;
}
.workplace .show-page .tab-section .tab-title .navigations a.back {
	border-right-width: 0;
	border-radius: 4px 0 0 4px;
}
.workplace .show-page .tab-section .tab-title .navigations a.forward {
	border-left-width: 0;
	border-radius: 0 4px 4px 0;
}

.workplace .show-page .tab-section .tab-content {
	padding: 14px 24px 20px;
}
.workplace .show-page .tab-section .tab-content.divide-two {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .show-page .tab-section .tab-content.divide-two.second {
	padding-top: 0;
}
.workplace .show-page .spacer {
	display: block;
	margin: 24px auto;
	height: 1px;
	border-bottom: 1px dotted #dddddd;
}
.workplace .show-page .spacer.with-padding {
	margin: 24px;
}


.workplace .show-page .tab-section .tab-content .part {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .show-page .tab-section .tab-content .part.right {
	-ms-flex-preferred-size: 49%;
	    flex-basis: 49%;
	padding-left: 24px;
	border-left: 1px solid #dddddd;
}
.workplace .show-page .tab-section .tab-content .part.left {
	padding-right: 30px;
}
.workplace .show-page .tab-section .tab-content .row-details {
	margin: 8px 0;
	position: relative;
}
.workplace .show-page .tab-section .tab-content .row-details.status-row {
	margin-top: 16px;
}

.workplace .show-page .tab-section .tab-content .row-details .label {
	font-size: 0.95em;
	font-family: var(--font_family_semibold);
}
.workplace .show-page .tab-section .tab-content .row-details .value {
	position: relative;
	margin-top: 2px;
}
.workplace .show-page .tab-section .tab-content .row-details.status-row .value {
	margin-top: 6px;
}
.workplace .show-page .tab-section .tab-content .row-details .value.status span {
	padding: 2px 8px;
	font-size: 13px;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 0.5px;
	background-color: var(--showpage_pending_bgcolor);
	border-radius: 4px;
}
.workplace .show-page .tab-section .tab-content .row-details .value.status.active span {
	background-color: var(--showpage_active_bgcolor);
}
.workplace .show-page .tab-section .tab-content .row-details .value.status.deceased span {
	background-color: #f7ee2b;
	color: #958f0c;
}
.workplace .show-page .tab-section .tab-content .row-details .value.status.paid-no span {
	background-color: var(--showpage_paid_no_bgcolor);
	text-transform: initial;
}
.workplace .show-page .tab-section .tab-content .row-details .value.status.paid-yes span {
	background-color: var(--showpage_active_bgcolor);
	text-transform: initial;
}

.workplace .show-page .tab-section .tab-content .row-details .value.current-balance span {
	padding: 2px 8px;
	font-size: 13px;
	color: #ffffff;
	letter-spacing: 0.5px;
	background-color: var(--showpage_paid_no_bgcolor);
	border-radius: 4px;
}
.workplace .show-page .tab-section .tab-content .row-details .value.current-balance.empty span {
	background-color: var(--showpage_active_bgcolor);
}

.workplace .show-page .tab-section .tab-content .row-details .value .add-file {
	display: inline-block;
	margin: 6px 10px;
	padding: 2px 10px;
	font-size: 0.9em;
	background-color: #f1fdec;
	outline: 1px solid #adffae;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-content .row-details .value .delete-file {
	display: table;
	width: auto;
	margin: 6px 0;
	padding: 2px 10px;
	font-size: 0.9em;
	background-color: #ffdfdf;
	outline: 1px solid #ffadad;
	border-radius: 4px;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-content .row-details .edit {
	margin-left: 10px;
	color: #777777;
	font-size: 14px;
	cursor: pointer;
	text-decoration: none;
	display: none;
}
.workplace .show-page .tab-section .tab-content .row-details .edit.far-right {
	position: absolute;
	right: 10px;
}
.workplace .show-page .tab-section:hover .tab-content .row-details .edit {
	display: inline-block;
}
.workplace .show-page .tab-section .tab-content .row-details .edit::before {
	content: '\f303';
	font-weight: 600;
	font-family: "Font Awesome 6 Pro";
	margin-right: 6px;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value {
	width: 50%;
	margin: 4px 0 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	
	background-color: #f5f5f5;
	outline: 1px solid #ccc;
	border-radius: 4px;
	overflow: hidden;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.donor-profile {
	width: 210px;
}

.workplace .show-page .tab-section .tab-content .row-details .img-value .edit-file-btn {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 6px 0;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	display: none;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value:hover .edit-file-btn {
	display: block;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value .del-file-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	text-align: center;
	padding: 8px;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	cursor: pointer;
	display: none;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value:hover .del-file-btn {
	display: block;
}


.workplace .show-page .user-grants {
	width: 100%;
	margin: 10px 0;
}
.workplace .show-page .user-grants .grant-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 10px;
	border-bottom: 1px dashed #dddddd;
    font-size: 0.95em;
}
.workplace .show-page .user-grants .grant-row .grant-label {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
	padding: 14px 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.workplace .show-page .user-grants .grant-row .grant-values {
	-ms-flex-preferred-size: 80%;
	    flex-basis: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.workplace .show-page .user-grants .grant label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 170px;
	margin: 14px 0;
	margin-right: 30px;
}
.workplace .show-page .user-grants .grant label .checkbox::after {
	padding: 3px 6px;
	content: "\f00d";
	font-family: 'Font Awesome 6 Pro';
	background-color: #ffdbdb;
	border: 1px solid #ffaaaa;
	border-radius: 3px;
}
.workplace .show-page .user-grants .grant label .checkbox.yes::after {
	padding: 3px;
	content: "\f00c";
	background-color: #d8ffce;
	border-color: #99cf99;
}
.workplace .show-page .user-grants .grant label .text {
	margin-left: 8px;
}


.workplace .show-page.view-donor .next-kin-table {
	margin: 24px 0;
}
.workplace .show-page.view-donor .next-kin-table .title {
	margin-bottom: 10px;
    padding: 4px 12px 4px 6px;
    display: inline-block;
    color: var(--showpage_tab_color);
    font-size: 1em;
    font-family: var(--font_family_medium);
    font-weight: 500;
    border-bottom: 2px solid var(--showpage_tab_color);
}
.workplace .show-page.view-donor .next-kin-table .kin-row {
	margin-top: 10px;
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
	    -ms-flex-pack: justify;
    		justify-content: space-between;
    border-bottom: 1px solid #dddddd;
}
.workplace .show-page.view-donor .next-kin-table .kin-row .detail-column {
	-ms-flex-preferred-size: 90%;
	    flex-basis: 90%;
	padding-bottom: 10px;
}
.workplace .show-page.view-donor .next-kin-table .kin-row .btn-column {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
	text-align: right;
}
.workplace .show-page.view-donor .next-kin-table .kin-row .detail-column p {
	line-height: 24px;
}
.workplace .show-page.view-donor .next-kin-table .kin-row .detail-column p.name {
	font-size: 0.95em;
    font-family: var(--font_family_semibold);
}
.workplace .show-page.view-donor .next-kin-table .kin-row .btn-column .btn {
	color: #888;
    font-size: 14px;
	cursor: pointer;
	display: none;
}
.workplace .show-page .tab-section:hover .next-kin-table .kin-row .btn-column .btn {
	display: inline-block;
}
.workplace .show-page.view-donor .next-kin-table .kin-row .btn-column .fa-trash-can {
	margin-left: 6px;
}

.workplace .show-page.view-donor .next-kin-table .no-next-of-kin-found {
	display: block;
	margin-top: 10px;
	border: none;
	color: #888888;
}
.workplace .show-page.view-donor .next-kin-table .add-next-kin-button {
	display: inline-block;
	margin-top: 20px;
	padding: 7px 18px;
	font-size: 14px;
	background-color: #e1f8eb;
	border: 1px solid #b4cdbf;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
}



/* ---------------------------- */
/* -------- report page ------- */
/* ---------------------------- */

.workplace .report-page {
	width: 82%;
	font-size: 0.95em;
}
.workplace .report-page .selectors {
	padding: 28px 22px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;

	background-color: #ffffff;
    border: 1px dotted #bbbbbb;
    border-radius: 4px;
    overflow: hidden;
}
.workplace .report-page .filters {
	margin-top: 10px;
	padding: 26px 22px 32px;

	background-color: #ffffff;
    border: 1px dotted #bbbbbb;
    border-radius: 4px;
    overflow: hidden;
}
.workplace .report-page .selectors ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .report-page .selectors ul li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 15px;
}
.workplace .report-page .selectors ul li input[type=radio] {
	position: absolute;
	visibility: hidden;
}
.workplace .report-page .selectors ul li label {
	position: relative;
	padding: 0 20px 0 28px;
	min-width: 240px;
	z-index: 9;
	cursor: pointer;
}
.workplace .report-page .selectors ul li .check {
	position: absolute;
	border: 2px solid #aaaaaa;
	border-radius: 100%;
	height: 18px;
	width: 18px;
	z-index: 1;
}
.workplace .report-page .selectors ul li .check::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 8px;
	width: 8px;
	top: 3px;
	left: 3px;
}
.workplace .report-page .selectors input[type=radio]:checked ~ .check {
	border-color: var(--report_checked);
}
.workplace .report-page .selectors input[type=radio]:checked ~ .check::before {
	background-color: var(--report_checked);
}
.workplace .report-page .selectors input[type=radio] ~ label {
	font-size: 0.92em;
}

.workplace .report-page .filters .filter {
	margin-bottom: 8px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	position: relative;
	display: none;
}
.workplace .report-page .filters .filter.show {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .report-page .filters .filter::nth-child(even) {
	background-color: rgba(191, 191, 191, 0.2);
}
.workplace .report-page .filters .filter .label {
	-ms-flex-preferred-size: 240px;
	    flex-basis: 240px;
	line-height: 32px;
	font-size: 0.92em;
}
.workplace .report-page .filters .filter .filter-controls {
	-ms-flex-preferred-size: calc(90% - 240px);
	    flex-basis: calc(90% - 240px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .report-page .filters .filter .input-text,
.workplace .report-page .filters .filter .drop-box {
	height: 32px;
	color: #666666;
	font-size: 0.92em;
	padding-left: 8px;
    background-color: var(--form_element_bgcolor);
    border: 1px solid var(--form_element_border);
	border-radius: 3px;
}
.workplace .report-page .filters .filter .input-text[type="month"] {
	-webkit-padding-end: 8px !important;
}
.workplace .report-page .filters .filter .drop-box {
	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: 2px;
}
.workplace .report-page .filters .filter .input-text.highlight,
.workplace .report-page .filters .filter .drop-box.highlight {
    border-color: #ff0000;
}

.workplace .report-page .filters .filter .input-text:focus,
.workplace .report-page .filters .filter .drop-box:focus {
	background-color: var(--form_element_focus_bgcolor);
	-webkit-box-shadow: 0 0 0 2px var(--form_element_focus_border);
	        box-shadow: 0 0 0 2px var(--form_element_focus_border);
	border-color: var(--form_element_border);
}

.workplace .report-page .filters .filter .donor-sub-clan {
	width: 220px;
}
.workplace .report-page .filters .filter .donor-blood-group {
	width: 160px;
}
.workplace .report-page .filters .filter .donor-education-level {
	width: 300px;
}
.workplace .report-page .filters .filter .donor-residence-country {
	width: 220px;
}
.workplace .report-page .filters .filter .donor-residence-state {
	width: 220px;
}
.workplace .report-page .filters .filter .donor-working {
	width: 240px;
}
.workplace .report-page .filters .filter .bill-billing-month {
	width: 220px;
}
.workplace .report-page .filters .filter .bill-paid-status {
	width: 160px;
}
.workplace .report-page .filters .filter .bill-sub-clan {
	width: 220px;
}

.workplace .report-page .filters .filter .donation-sub-clan {
	width: 220px;
}
.workplace .report-page .filters .filter .donation-residence-country {
	width: 220px;
}
.workplace .report-page .filters .filter .donation-residence-state {
	width: 220px;
}

.workplace .report-page .filters .filter .receivable-sub-clan {
	width: 220px;
}

.workplace .report-page .filters .filter .search-donor-by {
	width: 160px;
}
.workplace .report-page .filters .filter .search-donor-text {
	width: 300px;
}

.workplace .report-page .filters .filter .withdraw-account {
	width: 220px;
}

.workplace .report-page .filters .filter .start-date {
	width: 220px;
}
.workplace .report-page .filters .filter .end-date {
	width: 220px;
}

.workplace .report-page .filters .search-btn {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: var(--form_search_btn_color);
    background-color: var(--form_search_btn_bgcolor);
    border: 1px solid var(--form_search_btn_border);
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}
.workplace .report-page .filters .search-btn::after {
	font-family: 'Font Awesome 6 Pro';
	content: '\f002';
}

.workplace .report-page .filters .text-with-suggest {
	position: relative;
}
.workplace .report-page .filters .suggestion-box {
	position: absolute;
	left: 1px;
	top: 32px;
	width: 99%;
	max-height: 200px;
	background-color: #ffffff;
	outline: 1px solid #bbbbbb;
	-webkit-box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	        box-shadow: 0 5px 15px -5px rgba(0,0,0,0.5);
	z-index: 100;
	overflow-y: scroll;
	display: none;
}
.workplace .report-page .filters .suggestion-box.show {
	display: inline-block;
}
.workplace .report-page .filters .suggestion-box .fetching {
	padding: 10px 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 13px;
}
.workplace .report-page .filters .suggestion-box .fetching span {
	margin-left: 10px;
}
.workplace .report-page .filters .suggestion-box .not-found {
	padding: 10px 12px;
	font-size: 13px;
}
.workplace .report-page .filters .suggestion-box a {
	display: block;
	color: #666666;
	cursor: pointer;
}
.workplace .report-page .filters .suggestion-box .suggest-option {
	padding: 8px 12px;
	font-size: 13px;
}
.workplace .report-page .filters .suggestion-box a:nth-child(even) .suggest-option {
	background-color: rgba(233, 233, 233, 0.1);
}
.workplace .report-page .filters .suggestion-box .suggest-option p {
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .report-page .filters .suggestion-box .suggest-option p span {
	font-weight: 600;
}
.workplace .report-page .filters .suggestion-box .suggest-option p span::after {
	content: ' ';
}


.workplace .report-page .buttons {
	margin-left: 240px;
	margin-top: 10px;
}
.workplace .report-page .buttons .btn-display {
	width: 220px;
	font-size: 0.95em;
	padding: 9px 0;

	color: var(--report_button_color);
    background-color: var(--report_button_bgcolor);
	border-radius: 4px;
	border: none;
	outline: none;
	cursor: pointer;
}
.workplace .report-page .buttons .btn-display:disabled {
	color: #333333;
	background-color: #cccccc;
	opacity: 0.8;
}
.workplace .report-page .buttons .process {
	margin-left: 8px;
	font-size: 0.95em;
	display: none;
}
.workplace .report-page .buttons .process i {
	margin-right: 10px;
	font-size: 1.2em;
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}
.workplace .report-page .error {
	margin: 10px 0;
}
.workplace .report-page .error.show {
	display: block;
}




/* -------- report view -------- */

.workplace .report-view {
	padding: 30px 30px 40px;
	min-height: 85vh;
	font-size: 0.92em;

	background-color: #ffffff;
	border: 1px dotted #bbb;
	border-radius: 4px;
}
.workplace .report-view .report-header {
	padding-bottom: 16px;
	border-bottom: 1px dashed #cccccc;
	position: relative;
}
.workplace .report-view .report-header .titles {
	text-align: center;
}
.workplace .report-view .report-header .btns {
	position: absolute;
	right: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.workplace .report-view .report-header .titles .report-name {
	font-size: 20px;
	line-height: 30px;
	color: var(--report_view_color);
}
.workplace .report-view .report-header .titles .filter {
	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	color: #777777;
}
.workplace .report-view .report-header .btns .link {
	margin-left: 8px;
	padding: 8px 10px;
	color: #777777;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #cccccc;
	border-radius: 3px;

	color: var(--form_button_color);
    background-color: var(--form_button_bgcolor);
    border: 1px solid var(--form_button_bgcolor);
}
.workplace .report-view .report-header .btns .back-btn {
	margin-left: 8px;
	padding: 5px 20px;
	text-align: center;
	color: #949494;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid #bbb;
	border-radius: 3px;
}
.workplace .report-view .report-header .btns .back-btn::before {
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	content: "\f060";
	margin-right: 8px;
}

.workplace .report-view .table-header {
	margin-top: 15px;
	padding-right: 17px;
    background-color: var(--loadpage_title_bgcolor);
	border: 1px solid var(--loadpage_border_color);
    border-radius: 4px 4px 0 0;

	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .report-view .cave {
    padding: 0 12px;
	height: 40px;
	line-height: 40px;
    font-size: 13px;

	color: var(--font_color);
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;

    border-left: 1px solid var(--loadpage_border_color);
}
.workplace .report-view .cave:first-child {
	border-left: none;
}
.workplace .report-view .table-header .cave {
	text-transform: uppercase;
	font-weight: 600;
}
.workplace .report-view .report-table {
	min-height: 120px;
	max-height: 630px;
	overflow: hidden;
	overflow-y: scroll;

	border: 1px solid var(--loadpage_border_color);
	border-top: none;
    border-radius: 0 0 4px 4px;
}
.workplace .report-view .report-table .no-record {
	line-height: 80px;
	text-align: center;
	color: #aaaaaa;
}

.workplace .report-view .report-table .report-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid rgb(223, 227, 235);
}
.workplace .report-view .report-table .report-row:nth-child(even) {
	background-color: var(--loadpage_bgcolor_hover);
}

.workplace .report-view .report-table .report-row .cave {
	height: 36px;
	line-height: 36px;
	
	border-color: rgb(223, 227, 235);
}
.workplace .report-view .report-table .report-row .cave .status.inactive {
	background-color: var(--showpage_pending_bgcolor);
	color: #ffffff;
	padding: 2px 6px;
	border-radius: 3px;
}

.workplace .report-view .cave.daily-s-n {
	-ms-flex-preferred-size: 5%;
	    flex-basis: 5%;
}
.workplace .report-view .cave.daily-datetime {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}
.workplace .report-view .cave.daily-username {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .report-view .cave.daily-activity {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .report-view .cave.daily-details {
	-ms-flex-preferred-size: 42%;
	    flex-basis: 42%;
}


.workplace .report-view .cave.donor-s-n {
	-ms-flex-preferred-size: 4%;
	    flex-basis: 4%;
}
.workplace .report-view .cave.donor-name {
	-ms-flex-preferred-size: 17%;
	    flex-basis: 17%;
}
.workplace .report-view .cave.donor-phone {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}
.workplace .report-view .cave.donor-sub-clan {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}
.workplace .report-view .cave.donor-recurring-amount {
	-ms-flex-preferred-size: 9%;
	    flex-basis: 9%;
}
.workplace .report-view .cave.donor-address {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .report-view .cave.donor-blood-group {
	-ms-flex-preferred-size: 9%;
	    flex-basis: 9%;
}
.workplace .report-view .cave.donor-working {
	-ms-flex-preferred-size: 9%;
	    flex-basis: 9%;
}
.workplace .report-view .cave.donor-status {
	-ms-flex-preferred-size: 8%;
	    flex-basis: 8%;
}

.workplace .report-view .cave.bill-s-n {
	-ms-flex-preferred-size: 4%;
	    flex-basis: 4%;
}
.workplace .report-view .cave.bill-date {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.bill-donor-name {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .report-view .cave.bill-donor-phone {
	-ms-flex-preferred-size: 11%;
	    flex-basis: 11%;
}
.workplace .report-view .cave.bill-sub-clan {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .report-view .cave.bill-amount {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}
.workplace .report-view .cave.bill-rest {
	-ms-flex-preferred-size: 9%;
	    flex-basis: 9%;
}
.workplace .report-view .cave.bill-balance {
	-ms-flex-preferred-size: 9%;
	    flex-basis: 9%;
}
.workplace .report-view .cave.bill-donor-balance {
	-ms-flex-preferred-size: 11%;
	    flex-basis: 11%;
}

.workplace .report-view .cave.receipt-s-n {
	-ms-flex-preferred-size: 4%;
	    flex-basis: 4%;
}
.workplace .report-view .cave.receipt-date {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.receipt-donor-name {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}
.workplace .report-view .cave.receipt-amount {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}
.workplace .report-view .cave.receipt-discount {
	-ms-flex-preferred-size: 8%;
	    flex-basis: 8%;
}
.workplace .report-view .cave.receipt-pay-method {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.receipt-donor-phone {
	-ms-flex-preferred-size: 11%;
	    flex-basis: 11%;
}
.workplace .report-view .cave.receipt-sub-clan {
	-ms-flex-preferred-size: 14%;
	    flex-basis: 14%;
}
.workplace .report-view .cave.receipt-residence {
	-ms-flex-preferred-size: 13%;
	    flex-basis: 13%;
}

.workplace .report-view .cave.receivable-s-n {
	-ms-flex-preferred-size: 5%;
	    flex-basis: 5%;
}
.workplace .report-view .cave.receivable-donor-name {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .report-view .cave.receivable-donor-phone {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.receivable-sub-clan {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .report-view .cave.receivable-residence {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .report-view .cave.receivable-balance {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.receivable-working {
	-ms-flex-preferred-size: 14%;
	    flex-basis: 14%;
}

.workplace .report-view .cave.dnr-actvty-s-n {
	-ms-flex-preferred-size: 5%;
	    flex-basis: 5%;
}
.workplace .report-view .cave.dnr-actvty-date {
	-ms-flex-preferred-size: 13%;
	    flex-basis: 13%;
}
.workplace .report-view .cave.dnr-actvty-details {
	-ms-flex-preferred-size: 26%;
	    flex-basis: 26%;
}
.workplace .report-view .cave.dnr-actvty-reference {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .report-view .cave.dnr-actvty-amount {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.dnr-actvty-balance {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}

.workplace .report-view .cave.withdrawal-s-n {
	-ms-flex-preferred-size: 5%;
	    flex-basis: 5%;
}
.workplace .report-view .cave.withdrawal-date {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.withdrawal-account {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .report-view .cave.withdrawal-amount {
	-ms-flex-preferred-size: 11%;
	    flex-basis: 11%;
}
.workplace .report-view .cave.withdrawal-beneficiary {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .report-view .cave.withdrawal-phone {
	-ms-flex-preferred-size: 13%;
	    flex-basis: 13%;
}
.workplace .report-view .cave.withdrawal-pay-method {
	-ms-flex-preferred-size: 19%;
	    flex-basis: 19%;
}


.workplace .report-view .report-summary {
	margin-top: 15px;
}
.workplace .report-view .report-summary .summary-record {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .report-view .report-summary .summary-cave {
	border: 1px solid var(--loadpage_border_color);
	border-left: none;

	padding: 0 12px;
	height: 40px;
	line-height: 40px;
    font-size: 13px;
}
.workplace .report-view .report-summary .summary-record.header .summary-cave {
	background-color: var(--loadpage_title_bgcolor);
	text-transform: uppercase;
	font-weight: 600;
}
.workplace .report-view .report-summary .summary-cave:first-child {
	border-left: 1px solid var(--loadpage_border_color);
}
.workplace .report-view .report-summary .summary-record.data .summary-cave {
	border-top: none;
}
.workplace .report-view .report-summary .summary-record.header .summary-cave:first-child {
	border-radius: 4px 0 0;
}
.workplace .report-view .report-summary .summary-record.header .summary-cave:last-child {
	border-radius: 0 4px 0 0;
}
.workplace .report-view .report-summary .summary-record.data .summary-cave:first-child {
	border-radius: 0 0 0 4px;
}
.workplace .report-view .report-summary .summary-record.data .summary-cave:last-child {
	border-radius: 0 0 4px;
}

.workplace .report-view .report-summary.generated-bills .summary-cave.grand-balance {
	width: 23%;
}
.workplace .report-view .report-summary.generated-bills .summary-cave.grand-rest {
	width: 9%;
}
.workplace .report-view .report-summary.generated-bills .summary-cave.grand-bill {
	width: 10%;
}

.workplace .report-view .report-summary.receipts .summary-cave.total-receipt {
	width: 14%;
}
.workplace .report-view .report-summary.receipts .summary-cave.total-discount {
	width: 15%;
}

.workplace .report-view .report-summary.receivables .summary-record.header .summary-cave.total-balance {
	width: 18%;
	border-radius: 4px 4px 0 0 !important;
}
.workplace .report-view .report-summary.receivables .summary-record.data .summary-cave.total-balance {
	width: 18%;
	border-radius: 0 0 4px 4px !important;
}

.workplace .report-view .report-summary.donor-activity .summary-cave.total-in {
	width: 12%;
}
.workplace .report-view .report-summary.donor-activity .summary-cave.total-out {
	width: 13%;
}
.workplace .report-view .report-summary.donor-activity .summary-cave.difference {
	width: 12%;
}

.workplace .report-view .report-summary.withdrawals .summary-record.header .summary-cave.total-paid {
	width: 22%;
	border-radius: 4px 4px 0 0 !important;
}
.workplace .report-view .report-summary.withdrawals .summary-record.data .summary-cave.total-paid {
	width: 22%;
	border-radius: 0 0 4px 4px !important;
}


/* --------------------------- */
/* ------- setting page ------ */
/* --------------------------- */


.workplace .setting-page {
	padding: 26px 30px;
	min-height: 600px;
	background-color: #ffffff;
	border: 1px dotted #bbbbbb;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.workplace .setting-page .menu-bar {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .setting-page .canvas-area {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	padding: 0 20px;
	min-height: 350px;
	border-left: 1px solid #d5d5d5;
}

.workplace .setting-page .menu-bar .list {
	list-style: none;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #d5d5d5;
}
.workplace .setting-page .menu-bar .list:last-child {
	border-bottom: none;
}
.workplace .setting-page .menu-bar .list li {
	margin-bottom: 5px;
	font-size: 14px;
}
.workplace .setting-page .menu-bar .list a {
	text-decoration: none;
	display: block;
}
.workplace .setting-page .menu-bar .list a:hover,
.workplace .setting-page .menu-bar .list .active a {
	color: var(--link_color);
	font-weight: 600;
	text-decoration: underline;
}

.workplace .setting-page .inside-unknown {
	display: block;
	background: #fff url(../images/system/oops.png) 94% 5px no-repeat;
}
.workplace .setting-page .inside-unknown h3 {
	font-size: 18px;
	margin-bottom: 6px;
}
.workplace .setting-page .inside-unknown ul {
	margin: 10px 34px;
}
.workplace .setting-page .inside-unknown p,
.workplace .setting-page .inside-unknown ul li {
	line-height: 20px;
	font-size: 14px;
	width: 80%;
}
.workplace .setting-page .inside-unknown .last-pg {
	margin-top: 30px;
}

.workplace .setting-page .canvas-area .inline-form {
	
}
.workplace .setting-page .canvas-area .inline-form .form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}

.workplace .setting-page .canvas-area .inline-form .input-text,
.workplace .setting-page .canvas-area .inline-form .drop-box {
	padding-left: 8px;
	width: 320px;
	height: 34px;

	color: #666666;
	font-size: 0.92em;
	background-color: var(--form_element_bgcolor);
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}
.workplace .setting-page .canvas-area .inline-form .drop-box {
	width: 280px;
	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 98%;
	background-position-y: 2px;
}
.workplace .setting-page .canvas-area .inline-form .place-right {
	position: absolute;
	right: 0;
}

.workplace .setting-page .canvas-area .inline-form .input-text.highlight,
.workplace .setting-page .canvas-area .inline-form .drop-box.highlight {
	border-color: #ff0000;
}

.workplace .setting-page .canvas-area .inline-form .input-text:not([readonly]):focus,
.workplace .setting-page .canvas-area .inline-form .drop-box:not([readonly]):focus {
	background-color: var(--form_element_focus_bgcolor);
	-webkit-box-shadow: 0 0 0 2px var(--form_element_focus_border);
	        box-shadow: 0 0 0 2px var(--form_element_focus_border);
	border-color: var(--form_element_border);
}

.workplace .setting-page .canvas-area .inline-form form .next-el {
	margin-left: 8px;
}
.workplace .setting-page .canvas-area .inline-form form .bank-balance {
	margin-left: 8px;
	width: 160px;
}

.workplace .setting-page .canvas-area .inline-form .btn-submit {
	display: inline-block;
	margin-left: 8px;
	padding: 0 20px;
	font-size: 0.9em;

	color: var(--form_button_color);
	background-color: var(--form_button_bgcolor);
	border: 1px solid var(--form_button_bgcolor);

	border: 1px solid var(--form_button_bgcolor);
	border-radius: 4px;
	cursor: pointer;
	outline: none;
}
.workplace .setting-page .canvas-area .inline-form .btn-submit:disabled {
	background-color: #cfcfcf;
    border-color: #bdbdbd;
    color: #444444;
	opacity: 0.5;
	cursor: not-allowed;
}
.workplace .setting-page .canvas-area .inline-form .loading {
	margin-left: 6px;
	font-size: 1.1em;
	display: none;
}
.workplace .setting-page .canvas-area .inline-form .loading.show {
	display: inline-block;
}
.workplace .setting-page .canvas-area .inline-form i {
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}

.workplace .setting-page .canvas-area .inline-form .error {
	margin: 6px 0;
	font-size: 14px;
}
.workplace .setting-page .canvas-area .inline-form .error.show {
	display: block;
}


.workplace .setting-page .canvas-area .setting-list {
	margin: 10px 0 0;
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
}
.workplace .setting-page .canvas-area .setting-list .sub-title {
	padding: 8px 16px;
	font-size: 14px;
	text-transform: uppercase;
	border: 1px solid var(--loadpage_border_color);
    background-color: var(--loadpage_title_bgcolor);
    border-radius: 4px 4px 0 0;
}
.workplace .setting-page .canvas-area .setting-list .setting-data {
	min-height: 300px;
	max-height: 500px;
	border: 1px solid #d7d7d7;
	border-top: none;
	overflow-y: scroll;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row {
	border-bottom: 1px solid #e4e4db;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row:nth-child(even) {
	background-color: var(--loadpage_bgcolor_hover);
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave {
	padding: 0 16px;
	height: 32px;
	line-height: 32px;
	font-size: 13px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
	border-left: 1px solid var(--loadpage_border_color);
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave.serial {
	-ms-flex-preferred-size: 6%;
	    flex-basis: 6%;
	border-left: none;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave.buttons {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data .table-row .btn {
	margin-right: 6px;
	cursor: pointer;
	opacity: 0.7;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row:hover .btn {
	opacity: 1;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .not-found {
	font-size: 0.95em;
	line-height: 80px;
	text-align: center;
	color: #999999;
}


.workplace .setting-page .canvas-area .setting-list .setting-data.sub-clan .cave.clan {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.sub-clan .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data.blood-group .cave.blood-name {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.blood-group .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data.countries .cave.country-name {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.countries .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.country-states .cave.state-name {
	-ms-flex-preferred-size: 35%;
	    flex-basis: 35%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.country-states .cave.country-name {
	-ms-flex-preferred-size: 28%;
	    flex-basis: 28%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.country-states .cave.status {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data.education-level .cave.education-name {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.education-level .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data.next-kin .cave.relationship {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.next-kin .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data.payment-methods .cave.account-name {
	-ms-flex-preferred-size: 40%;
	    flex-basis: 40%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.payment-methods .cave.account-balance {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.payment-methods .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}

.workplace .setting-page .canvas-area .setting-list .setting-data.withdraw-accounts .cave.account-name {
	-ms-flex-preferred-size: 50%;
	    flex-basis: 50%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data.withdraw-accounts .cave.status {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}



/* --------------------------- */
/* --------- profile --------- */
/* --------------------------- */


.workplace .my-profile {
	padding: 30px 35px;
	background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.workplace .my-profile .left {
	width: 24%;
}
.workplace .my-profile .right {
	width: 73%;
	margin-left: 25px;
	padding-top: 10px;
}
.workplace .my-profile .left .img-holder {
	position: relative;
	height: 360px;
	border: 1px solid #b1b1b1;
	border-radius: 4px;
	overflow: hidden;

	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.workplace .my-profile .left .img-holder .progress-bar {
	background: none repeat scroll 0 0 #e0e0e0;
	padding: 6px 0;
	top: 45%;
	position: absolute;
	width: 100%;
	display: none;
}
.workplace .my-profile .left .img-holder .progress-bar .bar {
	height: 15px;
}
.workplace .my-profile .left .img-holder .progress-bar .percent {
	display: inline-block;
	width: 100%;
	position: absolute;
	text-align: center;
	top: 2px;
}
.workplace .my-profile .left .img-holder .img-change {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: var(--sidebar_bgcolor);
	height: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.workplace .my-profile .left .img-holder .img-change input[type="file"] {
	position: absolute;
	width: 100%;
	height: 44px;
	opacity: 0;
	cursor: pointer;
}
.workplace .my-profile .left .img-holder .img-change span {
	width: 100%;
	color: #ffffff;
	text-align: center;
}
.workplace .my-profile .right .record {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 8px 12px;
	font-size: 14px;
	border-radius: 4px;
}
.workplace .my-profile .right .record.top-down {
	margin-top: 15px;
}
.workplace .my-profile .right .record:nth-child(odd) {
	background-color: var(--loadpage_bgcolor_hover);
}
.workplace .my-profile .right .record .label-part {
	-ms-flex-preferred-size: 26%;
	    flex-basis: 26%;
}
.workplace .my-profile .right .record .value-part {
	font-family: var(--font_family_medium);
}
.workplace .my-profile .right .record .value-part.status {
	padding: 1px 12px;
	border-radius: 4px;
	background-color: #cccccc;
}
.workplace .my-profile .right .record .value-part.status.active {
	background-color: #66ff85;
}
.workplace .my-profile .right .record .value-part.status.inactive {
	background-color: #ff9600;
}




/* --------------------------------- */
/* ------- frame popup center ------ */
/* ---------------------------------- */


.frame-popup-center {
	font-size: 0.95em;
	height: 100vh;
}
.frame-popup-center .unknown {
	padding: 3% 4%;
	min-height: 100vh;
	background: none;
	background-color: #ffffff;
	border: none;
}
.frame-popup-center .unknown h3 {
	margin-bottom: 2%;
}
.frame-popup-center .unknown p,
.frame-popup-center .unknown ul {
	width: 85%;
	margin-bottom: 2%;
}
.frame-popup-center .unknown p,
.frame-popup-center .unknown ul li {
	line-height: 19px;
}


.frame-popup-center header {
	padding: 9px 20px;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 600;
    background-color: #dfe9ed;
	border-bottom: 1px solid #ccc;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
}
.frame-popup-center header .check-all {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	margin-left: 30px;
}
.frame-popup-center header .check-all input {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.frame-popup-center header .check-all input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
}
.frame-popup-center header .check-all input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.frame-popup-center header .check-all span {
	margin-left: 30px;
	height: 20px;
}


.frame-popup-center .content {
	padding: 15px 20px 20px;
	height: calc(100vh - 40px);
	color: var(--font_color);
	background-color: #ffffff;
}
.frame-popup-center .content.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.frame-popup-center .content .content-sect {
	-ms-flex-preferred-size: 49%;
	    flex-basis: 49%;
}
.frame-popup-center .content .content-sect.right {
	border-left: 1px solid #c5c5c5;
	padding-left: 20px;
}
.frame-popup-center .content .frame-row {
	margin-bottom: 10px;
}
.frame-popup-center .content .frame-row.two {
	display: inline-block;
	width: 49%;
}
.frame-popup-center .content .frame-row.third {
	display: inline-block;
	width: 32.5%; background-color: rgba(255, 0, 0, 0.3);
}
.frame-popup-center .content .frame-row .label-part {
	line-height: 26px;
    font-size: 0.92em;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.frame-popup-center .content .frame-row .value-part {
	position: relative;
}
.frame-popup-center .content .frame-row .label-part span {
	color: #777777;
    margin-left: 3px;
}

.frame-popup-center .content .input-text,
.frame-popup-center .content .drop-box,
.frame-popup-center .content .text-area {
	padding-left: 8px;
	height: 32px;
	color: #666666;
	font-size: 0.92em;
	background-color: var(--form_element_bgcolor);
	border: 1px solid var(--form_element_border);
	border-radius: 3px;
	outline: none;
}
.frame-popup-center .content .drop-box {
	-webkit-padding-end: 22px !important;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg fill='Grey' height='30' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position-x: 99%;
	background-position-y: 2px;
}
.frame-popup-center .content .text-area {
	height: auto;
	padding: 8px 8px;
	line-height: 18px;
	resize: none;
	resize: vertical;
}

.frame-popup-center .content .input-text.next,
.frame-popup-center .content .drop-box.next,
.frame-popup-center .content .text-area.next {
	margin-left: 6px;
}

.frame-popup-center .content .input-text.highlight,
.frame-popup-center .content .drop-box.highlight,
.frame-popup-center .content .text-area.highlight {
	border-color: #ff0000;
}

.frame-popup-center .content .input-text:not([readonly]):focus,
.frame-popup-center .content .drop-box:not([readonly]):focus,
.frame-popup-center .content .text-area:not([readonly]):focus {
	background-color: var(--form_element_focus_bgcolor);
	-webkit-box-shadow: 0 0 0 2px var(--form_element_focus_border);
	        box-shadow: 0 0 0 2px var(--form_element_focus_border);
	border-color: var(--form_element_border);
}

.frame-popup-center .content label.error {
	margin: 8px 0 10px;
	font-size: 14px;
}
.frame-popup-center .content label.error.show {
	display: block;
}

.frame-popup-center .content .hint {
	display: inline-block;
	position: relative;
	font-size: 16px;
	cursor: pointer;
	margin-left: 4px;
	text-decoration: none;
}
.frame-popup-center .content .hint::before {
	content: "\f05a";
	font-family: 'Font Awesome 6 Pro';
	font-weight: 600;
	color: #8fbca3;
}

.frame-popup-center .content.edit-user .username {
	width: 92%;
}
.frame-popup-center .content.edit-user .user-password {
	width: 92%;
}
.frame-popup-center .content.edit-user .user-full-name {
	width: 92%;
}
.frame-popup-center .content.edit-user .user-status {
	width: 92%;
}
.frame-popup-center .content.change-password .old-password {
	width: 92%;
}
.frame-popup-center .content.change-password .new-password {
	width: 92%;
}
.frame-popup-center .content.change-password .confirm-password {
	width: 92%;
}

.frame-popup-center .content.edit-donor .donor-name {
	width: 96%;
}
.frame-popup-center .content.edit-donor .donor-phone {
	width: 96%;
}
.frame-popup-center .content.edit-donor .sub-clan {
	width: 96%;
}
.frame-popup-center .content.edit-donor .profile-photo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-donor .is-donor {
	width: 96%;
}
.frame-popup-center .content.edit-donor .recurring-amount {
	width: 50%;
}
.frame-popup-center .content.edit-donor .is-working {
	width: 96%;
}
.frame-popup-center .content.edit-donor .birth-year {
	width: 96%;
}
.frame-popup-center .content.edit-donor .donor-sex {
	width: 96%;
}
.frame-popup-center .content.edit-donor .blood-group {
	width: 97%;
}
.frame-popup-center .content.edit-donor .residence-country {
	width: 47%;
}
.frame-popup-center .content.edit-donor .residence-state {
	width: 48%;
}
.frame-popup-center .content.edit-donor .education-level {
	width: 97%;
}
.frame-popup-center .content.edit-donor .donor-status {
	width: 97%;
}

.frame-popup-center .content.add-next-kin .kin-name {
	width: 96%;
}
.frame-popup-center .content.add-next-kin .kin-phone {
	width: 96%;
}
.frame-popup-center .content.add-next-kin .kin-relationship {
	width: 60%;
}
.frame-popup-center .content.add-next-kin .kin-clan {
	width: 60%;
}

.frame-popup-center .content.edit-generate-bill .register-date {
	width: 50%;
}
.frame-popup-center .content.edit-generate-bill .billing-month {
	width: 50%;
}
.frame-popup-center .content.edit-generate-bill .bill-number {
	width: 70%;
}
.frame-popup-center .content.edit-generate-bill .new-invoice-amount {
	width: 50%;
}

.frame-popup-center .content.edit-contribution .register-date {
	width: 50%;
}
.frame-popup-center .content.edit-contribution .notes {
	width: 98%;
}
.frame-popup-center .content.edit-contribution .payment-method {
	width: 90%;
}

.frame-popup-center .content.add-withdraw-file .input-file.attachment + label span {
	width: 385px;
}
.frame-popup-center .content.edit-withdraw .register-date {
	width: 50%;
}
.frame-popup-center .content.edit-withdraw .withdraw-account {
	width: 92%;
}
.frame-popup-center .content.edit-withdraw .notes {
	width: 92%;
}
.frame-popup-center .content.edit-withdraw .beneficiary-name {
	width: 92%;
}
.frame-popup-center .content.edit-withdraw .beneficiary-phone {
	width: 92%;
}
.frame-popup-center .content.edit-withdraw .amount-paid {
	width: 50%;
}
.frame-popup-center .content.edit-withdraw .in-words {
	width: 92%;
}
.frame-popup-center .content.edit-withdraw .payment-method {
	width: 92%;
}

.frame-popup-center .content.edit-event .event-date {
	width: 50%;
}
.frame-popup-center .content.edit-event .event-title {
	width: 92%;
}
.frame-popup-center .content.edit-event .event-description {
	width: 92%;
	min-height: 100px;
}
.frame-popup-center .content.edit-event .priority-level {
	width: 50%;
}
.frame-popup-center .content.edit-event .event-part {
	width: 92%;
	min-height: 80px;
}
.frame-popup-center .content.add-event-file .input-file.attachment + label span {
	width: 385px;
}

.frame-popup-center .content.files .folder-name {
	width: 94%;
}
.frame-popup-center .content.files .choose-folder {
	width: 94%;
}
.frame-popup-center .content.files .input-file.upload-file + label span {
	width: 385px;
}
.frame-popup-center .content.files .move-file-name {
	width: 94%;
}
.frame-popup-center .content.files .rename-file-name {
	width: 94%;
}
.frame-popup-center .content.files .rename-folder-name {
	width: 94%;
}

.frame-popup-center .content.edit-settings .sub-clan {
	width: 94%;
}
.frame-popup-center .content.edit-settings .status {
	width: 94%;
}
.frame-popup-center .content.edit-settings .blood-group {
	width: 94%;
}
.frame-popup-center .content.edit-settings .country-name {
	width: 94%;
}
.frame-popup-center .content.edit-settings .state-name {
	width: 94%;
}
.frame-popup-center .content.edit-settings .state-country-id {
	width: 94%;
}

.frame-popup-center .content.edit-settings .education-level {
	width: 94%;
}
.frame-popup-center .content.edit-settings .kin-relationship {
	width: 94%;
}
.frame-popup-center .content.edit-settings .payment-method {
	width: 94%;
}
.frame-popup-center .content.edit-settings .withdraw-account {
	width: 94%;
}


.frame-popup-center .content.edit-user .grant-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 10px;
	border-bottom: 1px dashed #dddddd;
    font-size: 0.95em;
}
.frame-popup-center .content.edit-user .grant-row .grant-label {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
	padding: 14px 0;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}
.frame-popup-center .content.edit-user .grant-row .grant-values {
	-ms-flex-preferred-size: 80%;
	    flex-basis: 80%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.frame-popup-center .content.edit-user .grant-row label {
	width: 170px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	cursor: pointer;
	position: relative;
	margin: 14px 0;
	margin-right: 30px;
}
.frame-popup-center .content.edit-user .grant-row label input {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
.frame-popup-center .content.edit-user .grant-row label input::before {
	position: absolute;
	top: 0;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #ffffff;
	border: 1px solid #c1c1c1;
	border-radius: 3px;
	overflow: hidden;
}
.frame-popup-center .content.edit-user .grant-row label input:checked::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	line-height: 20px;
	text-align: center;
	content: "\f00c";
	font-family: 'Font Awesome 6 Pro';
	color: #ffffff;
	background-color: var(--form_check_bgcolor);
	border-radius: 3px;
}
.frame-popup-center .content.edit-user .grant-row label span {
	margin-left: 30px;
	height: 20px;
}


.frame-popup-center .content .frame-row.button-bar {
	margin: 10px 0 0;
	padding-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.frame-popup-center .content .frame-row.have-content-sect {
	width: 100%;
	display: block;
}
.frame-popup-center .content .frame-row.button-bar.no-mrgn-top {
	margin: 0;
}
.frame-popup-center .content .frame-row .btn-submit {
	padding: 8px 30px;
	font-size: 0.95em;
	border-radius: 4px;
	cursor: pointer;

	color: var(--form_button_color);
	background-color: var(--form_button_bgcolor);
	border: 1px solid var(--form_button_bgcolor);
}
.frame-popup-center .content .frame-row .btn-submit:disabled {
	background-color: #cfcfcf;
    border-color: #bdbdbd;
    color: #444444;
	opacity: 0.5;
	cursor: not-allowed;
}
.frame-popup-center .content .frame-row .btn-submit .loading {
	margin-left: 6px;
	font-size: 1.1em;
	display: none;
}
.frame-popup-center .content .frame-row .btn-submit .loading.show {
	display: inline-block;
}
.frame-popup-center .content .frame-row .btn-submit i {
	-webkit-animation: spinner 1s linear infinite;
	        animation: spinner 1s linear infinite;
}



@-webkit-keyframes spinner {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}



@keyframes spinner {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}