
@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: #f1f6f4;
}
input,
select,
option,
optgroup,
textarea,
button {
	font-size: 1em;
	border: 1px solid var(--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;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
	color: #ababab;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #ababab;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
	color: #ababab;
}
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: #f00;
}
.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: #666;
    background-color: #dcdcdc;
    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: #ccc;
	color: #333;
}


.swal-overlay--show-modal .swal-modal {
	border-radius: 4px;
}
.swal-title {
	color: #555;
}
.swal-text {
	color: #666;
	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: #f00;
	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-color: #e6f2ec;
	background-image: url('../../images/system/index-cover.png');
	background-size: contain;
	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: #fff;

	background-color: #012839;
}
.index .client .image-wrap img {
	width: 140px;
}
.index .client .info {
	margin-top: 16%;
}
.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: #ff2121;
}
.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 #ff2121;
}
.index .form-section .credential .field .login-text {
	width: 94%;
	height: 28px;
	border: none;
	background-color: transparent;
	caret-color: #c3dfff;
	color: #fff;
}
.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;
	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: #ff2121;
}
.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: 14px 24px;
	background-color: rgba(0, 0, 0, 0.3);
}
.sidebar .client-logo img {
	width: 180px;
}

.sidebar .menus {
	margin-top: 6%;
	list-style: none;
}
.sidebar .menus a {
	display: block;
	padding: 9px 24px;
	color: #fff;
	font-size: 0.95em;
	text-decoration: none;
}
.sidebar .menus a:hover {
	background-color: #279357;
}
.sidebar .menus a.active {
	background-color: var(--sidebar_menu_active);
}
.sidebar .menus .text {
	margin-left: 8px;
}


.sidebar footer {
	width: 80%;
	margin: 0 10%;
	position: absolute;
	bottom: 40px;
	padding: 16px 10px;
	text-align: center;
	color: #fff;
	font-size: 0.9em;
	border-radius: 4px;

	background-color: #003f5a;
}
.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: #fff;
	background-color: #9a9fa1;

	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;
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}

.middlebar .top-controls .quick-links {
	background-color: #bbbfc1;
	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: #fff;
	text-decoration: none;
	padding: 0 16px;
	height: 54px;
	line-height: 54px;
	font-size: 1.2em;
}
.middlebar .top-controls .quick-links a.active {
	background-color: #fff;
	color: #a9a9a9;
}
.middlebar .top-controls .quick-links a:hover {
	background-color: #d4dadd;
	color: #666;
}

.middlebar .top-controls .logged-user .photo {
	margin-right: 4px;
	width: 38px;
	height: 38px;
	border: 2px solid #fff;
	border-radius: 99em;
}
.middlebar .top-controls .logged-user img {
	border-radius: 99em;
}

.middlebar .top-controls .logged-user .drop-down {
	position: absolute;
	right: 1%;
	width: 32%;
	top: 56px;
	background-color: #fff;
	border: 1px solid #ccc;
	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 #ccc;
	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: #eee;
}
.middlebar .top-controls .logged-user .drop-down .row .photo {
	-ms-flex-preferred-size: 72px;
	    flex-basis: 72px;
	height: 72px;
	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 #999;
}
.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: #fff;
	-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: #fff;
	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;
}
.dashboard .bars .section {
	-ms-flex-preferred-size: 68%;
	    flex-basis: 68%;
}
.dashboard .bars .section .top-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.dashboard .bars .section .top-items .item {
	-ms-flex-preferred-size: 24%;
	    flex-basis: 24%;
	padding: 18px 18px;
	color: #fff;
	text-decoration: none;
	background-color: #999;
	border-radius: 4px;

	display: -webkit-box;

	display: -ms-flexbox;

	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 4px 0;
}
.dashboard .bars .section .top-items .item.invoices {
	-ms-flex-preferred-size: 24%;
	    flex-basis: 24%;
	background-color: #2c6076;
}
.dashboard .bars .section .top-items .item.clients {
	background-color: #20bf7d;
}
.dashboard .bars .section .top-items .item.receipts {
	background-color: #26b0d9;
}
.dashboard .bars .section .top-items .item.expenses {
	background-color: #df813d;
}

.dashboard .bars .section .top-items span {
	display: block;
}
.dashboard .bars .section .top-items .icon {
	height: 24px;
	font-size: 1.3em;
}
.dashboard .bars .section .top-items .item-label {
	font-size: 0.95em;
	padding-right: 24px;
}
.dashboard .bars .section .top-items .item-amount {
	font-family: var(--form_label_font);
	font-size: 1em;
	text-align: right;
}

.dashboard .bars .section .website-status {
	margin-top: 1em;
	padding: 20px 30px;
	min-height: 295px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.dashboard .bars .section .website-status .title {
	display: block;
	font-size: 18px;
    font-weight: 600;
}
.dashboard .bars .section .website-status #website_visits {
	margin-top: 10px;
	width: 100%;
}

.dashboard .bars .section.business-summary {
	-ms-flex-preferred-size: 31%;
	    flex-basis: 31%;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;

	text-align: center;
}
.dashboard .bars .section.business-summary .title {
	margin: 20px 30px 0;
	font-size: 1.1em;
	text-align: left;
}
.dashboard .bars .section.business-summary .text {
	margin: 14px 30px 0;
	font-size: 0.95em;
	color: #888;
	text-align: left;
}

.dashboard .bars .section.business-summary #sectors_chart {
	display: inline-block !important;
	margin-top: 20px;
	width: 290px !important;
	height: 290px !important;
}


.dashboard .bars.second {
	margin-top: 20px;
}
.dashboard .bars.second .box {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}
.dashboard .bars.second .box.projects {
	-ms-flex-preferred-size: 68%;
	    flex-basis: 68%;
}
.dashboard .bars.second .box.user-activity {
	-ms-flex-preferred-size: 31%;
	    flex-basis: 31%;
}


.dashboard .bars.second .box .title {
	padding: 10px 20px;
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.2px;
	font-family: var(--form_label_font);
	background-color: #2c607678;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
}
.dashboard .bars.second .box.projects article {
	height: 300px;
	overflow-y: scroll;
}
.dashboard .bars.second .box.projects article .not-found {
	display: block;
	margin-top: 20px;
	text-align: center;
	color: #aaa;
	font-size: 0.95em;
}
.dashboard .bars.second .box.projects article .record {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 0 20px;
	font-size: 0.9em;
	height: 38px;
	line-height: 38px;
	border-bottom: 1px dotted #ccc;
}
.dashboard .bars.second .box.projects article .record {
    height: 30px;
	line-height: 30px;
}
.dashboard .bars.second .box.projects article .record.header {
	height: 36px;
	line-height: 36px;
	font-family: var(--form_label_font);
	background: #ededed;
}
.dashboard .bars.second .box.projects article .record .cave {
	padding-right: 10px;
	font-size: 13px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
	overflow: hidden;
}
.dashboard .bars.second .box.projects article .record.header .cave {
	font-size: 14px;
}
.dashboard .bars.second .box.projects article .record .date-time {
	width: 13%;
}
.dashboard .bars.second .box.projects article .record .profile-type {
	width: 15%;
}
.dashboard .bars.second .box.projects article .record .profile-name {
	width: 32%;
}
.dashboard .bars.second .box.projects article .record .industry {
	width: 20%;
}
.dashboard .bars.second .box.projects article .record .status {
	width: 20%;
}
.dashboard .bars.second .box.projects article .record .status span {
	display: inline;
	padding: 2px 8px;
	font-size: 12px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.5px;
	background-color: #e97e14;
	border-radius: 4px;
}
.dashboard .bars.second .box.projects article .record .status.active span {
	background-color: #46df2d;
}



.dashboard .bars.second .box.user-activity .not-found {
	display: block;
	margin-top: 20px;
	text-align: center;
	color: #aaa;
	font-size: 0.95em;
}
.dashboard .bars.second .box.user-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;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.dashboard .bars.second .box.user-activity .user .image {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
	height: 40px;
}
.dashboard .bars.second .box.user-activity .user .image img {
	width: 100%;
	border-radius: 99em;
}
.dashboard .bars.second .box.user-activity .user .details {
	-ms-flex-preferred-size: 78%;
	    flex-basis: 78%;
	margin-top: 4px;
	font-size: 0.9em;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.dashboard .bars.second .box.user-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.user-activity .user .details .time {
	margin-left: 7px;
	color: #999;height: 17px;
	font-size: 0.8em;
}
.dashboard .bars.second .box.user-activity .user .details .activity {
	-ms-flex-preferred-size: 100%;
	    flex-basis: 100%;
	font-size: 0.95em;
}



/* ------------------------------ */
/* -------- 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 #ccc;
	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: #fff;
	border: 1px dotted #bbb;
	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: #fff;
	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:not(.primary):hover {
	background-color: var(--loadpage_link_bgcolor);
}
.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 10px;
	font-size: 0.9em;
	background-color: #f5f8fa;
	border-right: none;
	border-radius: 3px 0 0 3px;
}
.workplace .load-page .filter-bar .text-field {
	width: 45%;
	padding: 0 10px;
	border: 1px solid var(--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 .clickable {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	line-height: 35px;
	text-align: center;
	cursor: pointer;
}
.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: #fff;
	-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 #fff transparent;
}
.workplace .load-page .filter-bar .filter .list:before {
	top: -23px;
	border-color: transparent transparent #ddd transparent;
}
.workplace .load-page .filter-bar .filter .list li {
	border-bottom: 1px solid #ddd;
	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 .suggestation-box {
	position: absolute;
	left: 0px;
	top: 36px;
	width: 100%;
	max-height: 200px;
	background-color: #fff;
	outline: 1px solid #bbb;
	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: flex;
	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: #666;
	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 {
	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(--element_border);
	color: #777;
	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(--element_border);
	border-radius: 4px;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar {
	width: 10px;
	border: 1px solid #ccc;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-track {
	background-color: #eee;
	border-radius: 0 3px 0 3px;
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-thumb {
	background-color: #bbb; 
}
.workplace .load-page .dynamic-area .list-data::-webkit-scrollbar-corner {
	background-color: #eee;
	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(--element_border);
	background-color: #dfe9ed;
}
.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;
}
.workplace .load-page .dynamic-area .list-data .styled-table .truncate-div .status.inactive {
	margin-right: 8px;
    height: 16px;
    width: 16px;
    display: inline-block;
    background-color: #e97e14;
    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: #c00;
}
.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: #888;
}

.workplace .load-page .dynamic-area .list-data .column.busniz-name {
	min-width: 320px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-hq {
	min-width: 220px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-industry {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-size {
	min-width: 120px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-founded {
	min-width: 170px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-website {
	min-width: 210px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-state {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.busniz-map {
	min-width: 200px;
}

.workplace .load-page .dynamic-area .list-data .column.talent-name {
	min-width: 320px;
}
.workplace .load-page .dynamic-area .list-data .column.talent-title {
	min-width: 240px;
}
.workplace .load-page .dynamic-area .list-data .column.talent-location {
	min-width: 240px;
}
.workplace .load-page .dynamic-area .list-data .column.talent-whatsapp {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.talent-expert-areas {
	min-width: 250px;
}
.workplace .load-page .dynamic-area .list-data .column.talent-university-attended {
	min-width: 270px;
}
.workplace .load-page .dynamic-area .list-data .column.talent-languages {
	min-width: 260px;
}

.workplace .load-page .dynamic-area .list-data .column.resource-title {
	min-width: 320px;
}
.workplace .load-page .dynamic-area .list-data .column.resource-topic {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.resource-type {
	min-width: 200px;
}
.workplace .load-page .dynamic-area .list-data .column.publication-year {
	min-width: 110px;
}
.workplace .load-page .dynamic-area .list-data .column.resource-author {
	min-width: 220px;
}
.workplace .load-page .dynamic-area .list-data .column.resource-file {
	min-width: 360px;
}

.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-phone {
	min-width: 260px;
}
.workplace .load-page .dynamic-area .list-data .column.user-role {
	min-width: 160px;
}
.workplace .load-page .dynamic-area .list-data .column.user-last-login {
	min-width: 200px;
}
.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: #999;
	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: #fff;
    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: #fff;
	border: 1px solid #ddd;
	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 var(--form_button_bgcolor);
	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: #444;
	opacity: 0.5;
	cursor: not-allowed;
}
.workplace .the-form .form-buttons .btn-cancel {
	border: 1px solid var(--element_border);
}

.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: #fff;

    border: 1px solid #ddd;
    border-radius: 4px;
}
.workplace .the-form.add-resource .form-section.left {
	-ms-flex-preferred-size: 70%;
	    flex-basis: 70%;
}
.workplace .the-form.add-resource .form-section.right {
	-ms-flex-preferred-size: 28.6%;
	    flex-basis: 28.6%;
}
.workplace .the-form .form-section.next {
	margin-top: 20px;
}
.workplace .the-form .form-section .tab-title {
    border-bottom: 1px solid #ddd;
}
.workplace .the-form .form-section .tab-title h3 {
	margin: 0 24px;
	padding: 4px 6px;
	display: inline-block;
	color: #1ebf65;
	font-size: 1em;
	font-family: var(--font_family_medium);
	font-weight: 500;
    border-bottom: 2px solid #24e579;
}
.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.add-resource .form-section .tab-content {
	display: block;
}
.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 {
	-ms-flex-preferred-size: 70%;
	    flex-basis: 70%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.workplace .the-form .form-section .tab-content .record .value.second {
	margin-top: 10px;
}
.workplace .the-form .form-section .tab-content .record .value.second-without-title {
	margin-left: 30%;
	margin-top: 8px;
}
.workplace .the-form .form-section .tab-content .record .label .required {
	color: #777;
	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: #666;
	font-size: 0.92em;
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	outline: none;
}

.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: #f00;
}

.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 {
	-webkit-box-shadow: 0 0 0 2px #3fdd4e;
	        box-shadow: 0 0 0 2px #3fdd4e;
}
.ck-focused {
	border-color: #3fdd4e !important;
}

.workplace .the-form .error.show {
	display: block;
	margin: 6px 0 0;
	font-size: 14px;
}
.workplace .the-form .add-tag-button {
	display: inline-block;
	line-height: 26px;
    font-size: 0.92em;
    color: #8fbca3;
    cursor: pointer;
}
.workplace .the-form .add-tag-button::before {
	font-family: 'Font Awesome 6 Pro';
    content: '\f055';
    font-weight: 600;
    margin-right: 8px;
    font-size: 1.1em;
}

.workplace .the-form .busniz-name {
	width: 92%;
}
.workplace .the-form .busniz-address {
	width: 92%;
}
.workplace .the-form .busniz-web {
	width: 92%;
}
.workplace .the-form .busniz-founded-date {
	width: 50%;
}
.workplace .the-form .busniz-industry {
	width: 92%;
}
.workplace .the-form .busniz-size {
	width: 70%;
}
.workplace .the-form .city-state {
	width: 70%;
}
.workplace .the-form .busniz-map {
	width: 92%;
}
.workplace .the-form .latitude {
	width: 45%;
}
.workplace .the-form .longitude {
	width: 45%;
}
.workplace .the-form .map-zoom {
	width: 45%;
	margin-right: 10px;
}

.workplace .the-form #about_section ~ .ck.ck-editor {
	width: 96% !important;
}
.workplace .the-form #about_section ~ .ck.ck-editor .ck-editor__editable[role="textbox"] {
    min-height: 160px;
}
.workplace .the-form .desired-partner {
	width: 86%;
}
.workplace .the-form .record.partnership-wrapper .remove {
	color: #8fbca3;
	font-size: 20px;
	margin-left: 6px;
	cursor: pointer;
}

.workplace .the-form .talent-name {
	width: 92%;
}
.workplace .the-form .talent-headline {
	width: 92%;
}
.workplace .the-form .talent-whatsapp {
	width: 92%;
}
.workplace .the-form .talent-location {
	width: 92%;
}
.workplace .the-form .areas-expertise {
	width: 60%;
}
.workplace .the-form .years-experience {
	width: 32%;
	margin-left: 2.2%;
}
.workplace .the-form .university-attended {
	width: 82%;
}
.workplace .the-form .languages-spoken {
	width: 74%;
}
.workplace .the-form .talent-bio {
	width: 92%;
	min-height: 100px;
}


.workplace .the-form .talent-skill {
	width: 82%;
}
.workplace .the-form .add-tag-button.talent-expertise {
	margin-top: 8px;
}
.workplace .the-form .add-tag-button.talent-university {
	margin-top: 8px;
}
.workplace .the-form .add-tag-button.talent-skill {
	margin-top: 8px;
}
.workplace .the-form #talent_bio ~ .ck.ck-editor {
	width: 95% !important;
}
.workplace .the-form #talent_bio ~ .ck.ck-editor .ck-editor__editable[role="textbox"] {
    min-height: 160px;
}

.workplace .the-form .resource-title {
	width: 100%;
	min-height: 54px;
}
.workplace .the-form #resource_content ~ .ck.ck-editor {
	width: 100%;
}
.workplace .the-form #resource_content ~ .ck.ck-editor .ck-editor__editable[role="textbox"] {
    min-height: 560px;
}
.workplace .the-form .resource-issue {
	width: 98%;
}
.workplace .the-form .resource-type {
	width: 98%;
}
.workplace .the-form .publication-year {
	width: 98%;
}
.workplace .the-form .resource-author {
	width: 98%;
	min-height: 100px;
}
.workplace .the-form .resource-author-link {
	margin-top: 10px;
	width: 98%;
	min-height: 50px;
}
.workplace .the-form .spacer {
	margin: 20px auto;
	height: 80px;
	width: 1px;
	background-color: #ccc;
}



.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-phone {
	width: 88%;
}

.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: 14px 20px;
	border-bottom: 1px dashed #ddd;
    font-size: 0.95em;
}
.workplace .the-form .user-grants .grant-row:nth-child(odd) {
	background-color: #f5f5f5;
}
.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: 30%;
	    flex-basis: 30%;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.workplace .the-form .user-grants .grant-row 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;
	cursor: pointer;
	position: relative;
	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: #fff;
	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: #fff;
	background-color: #10a351;
	border-radius: 3px;
}
.workplace .the-form .user-grants .grant-row label span {
	margin-left: 30px;
	height: 20px;
}




/* --------------------------- */
/* -------- 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: 88vh;
}
.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;
	background-color: #fff;

    border: 1px solid #ddd;
    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: #1ebf65;
	font-size: 1em;
	font-family: var(--font_family_medium);
	font-weight: 500;
    border-bottom: 2px solid #24e579;
}
.workplace .show-page .tab-section .tab-title .edit {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	color: #777;
	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 .view-as {
	margin-top: -8px;
	font-size: 14px;
	color: #1ebf65;
	text-decoration: none;
}
.workplace .show-page .tab-section .tab-title .view-as::before {
	content: '\f06e';
	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: #777;
	height: 28px;
	line-height: 28px;
	padding: 0 12px;
	text-decoration: none;
	border: 1px solid #bbb;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-title .navigations a.to-list {
	color: #555;
	font-size: 14px;
	background-color: #eee;
	border: 1px solid #bbb;
}
.workplace .show-page .tab-section .tab-title .navigations .nav.count-0 {
	color: #ddd;
	border-color: #ddd;
	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 .tab-section .tab-content .part {
	-ms-flex-preferred-size: 58%;
	    flex-basis: 58%;
}
.workplace .show-page .tab-section .tab-content .part.right {
	-ms-flex-preferred-size: 42%;
	    flex-basis: 42%;
	padding-left: 24px;
	border-left: 1px solid #ddd;
}
.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.talent-skills {
	margin-top: 30px;
}
.workplace .show-page .tab-section .tab-content .row-details.formatted {
	margin: 0 0 8px 0;
}
.workplace .show-page .tab-section .row-details.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px dotted #ddd;
	padding-bottom: 8px;
}
.workplace .show-page .tab-section .tab-content .row-details.account-status {
	margin-top: 16px;
	padding-bottom: 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.flex .label {
	-ms-flex-preferred-size: 34%;
	    flex-basis: 34%;
	line-height: 20px;
	padding-right: 20px;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.workplace .show-page .tab-section .tab-content .row-details .value {
	position: relative;
}
.workplace .show-page .tab-section .tab-content .row-details.flex .value {
	-ms-flex-preferred-size: 66%;
	    flex-basis: 66%;
}
.workplace .show-page .tab-section .tab-content .row-details .value.status span {
	padding: 2px 8px;
	font-size: 13px;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.5px;
	background-color: #e97e14;
	border-radius: 4px;
}
.workplace .show-page .tab-section .tab-content .row-details .value.status.active span {
	background-color: #46df2d;
}
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content {
	font-family: var(--font_family);
}
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h1, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h2, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h3, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h4, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h5, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h6 {
	margin-top: 20px;
	font-size: 1.1em;
	font-family: var(--font_family_semibold);
	font-weight: 500;
}
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h1:first-child, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h2:first-child, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h3:first-child, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h4:first-child, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h5:first-child, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content h6:first-child {
	margin-top: 0px;
}
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content ul, 
.workplace .show-page .tab-section .tab-content .row-details .value.formatted-content ol {
	padding-left: 40px;
}

.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: inline-block;
	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 .label.desired-partner {
	font-size: 1.1em;
	margin-bottom: 10px;
}
.workplace .show-page .tab-section .tab-content .row-details .label.featured-photos {
	font-size: 1.1em;
	margin-bottom: 10px;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value {
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul {
	list-style: none;
	border: 1px solid #ddd;
	margin-bottom: 20px;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li {
	border-bottom: 1px solid #ddd;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li:last-child {
	border-bottom-width: 0;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li div {
	padding: 6px 10px;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li .btns {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
	border-right: 1px solid #ddd;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li .btns.twenty {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li .text {
	-ms-flex-preferred-size: 88%;
	    flex-basis: 88%;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li .btns a {
	text-decoration: none;
	cursor: pointer;
	opacity: 0.4;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li .btns a.delete {
	margin-left: 8px;
}
.workplace .show-page .tab-section .tab-content .row-details .list-value ul li:hover .btns a {
	opacity: 1;
}
.workplace .show-page .tab-section .tab-content .empty {
	margin-top: 10px;
	padding: 8px 12px;
	color: #aaa;
	font-style: italic;
	border-top: 1px dotted #ddd;
	border-bottom: 1px dotted #ddd;
}

.workplace .show-page .tab-section .tab-content .row-details .edit {
	position: absolute;
	right: 10px;
	top: 4px;
	color: #777;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: none;
}
.workplace .show-page .tab-section:hover .tab-content .row-details .edit {
    display: inline-block;
}
.workplace .show-page .tab-section .tab-content .row-details .edit-status {
	position: absolute;
	right: 10px;
	top: -5px;
	color: #777;
    font-size: 22px;
    cursor: pointer;
    text-decoration: none;
    display: none;
}
.workplace .show-page .tab-section:hover .tab-content .row-details .edit-status {
    display: inline;
}
.workplace .show-page .tab-section .tab-content .row-details .edit-status::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Pro';
}
.workplace .show-page .tab-section .tab-content .row-details .edit-status.active::before {
	content: '\f2d3';
}

.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.logo {
	width: 170px;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.cover-photo {
	width: 96%;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.hero-photo {
	width: 96%;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.featured-photo {
	width: 96%;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.talent-profile-logo {
	width: 210px;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.resource-featured {
	width: 96%;
}

.workplace .show-page .tab-section .tab-content .row-details .add-file-btn {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 14px;
	text-align: center;
	padding: 4px 20px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value .edit-file-btn {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding: 4px 0;
	color: #fff;
	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: #fff;
	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 .tab-section .tab-content .row-details .img-value.cover-color {
	padding: 6px;
	width: 180px;
}
.workplace .show-page .tab-section .tab-content .row-details .img-value.cover-color span {
	border-radius: 4px;
	height: 24px;
	width: 100%;
}
.workplace .show-page .spacer {
	display: block;
	margin: 24px auto;
	height: 1px;
	border-bottom: 1px dotted #ddd;
}
.workplace .show-page .spacer.with-padding {
	margin: 24px;
}

.workplace .show-page .tab-section .tab-content .row-details .label.job-skills {
	font-size: 1.1em;
	margin-bottom: 10px;
}
.workplace .show-page .tab-section .tab-content .row-details .label.areas-of-expertise {
	font-size: 1.1em;
	margin-bottom: 10px;
}
.workplace .show-page .tab-section .tab-content .row-details .label.university-attended {
	font-size: 1.1em;
	margin-bottom: 10px;
}
.workplace .show-page .tab-section .tab-content .row-details .label .add-new-btn {
	font-size: 0.8em;
	margin-left: 14px;
	font-family: var(--font_family);
	padding: 4px 10px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	cursor: pointer;
}
.workplace .show-page .tab-section .tab-content .row-details .label .add-new-btn::before {
	content: '\2b';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 4px;
}

.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: 14px 10px;
	border-bottom: 1px dashed #ddd;
    font-size: 0.95em;
}
.workplace .show-page .user-grants .grant-row .grant-label {
	-ms-flex-preferred-size: 30%;
	    flex-basis: 30%;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.workplace .show-page .user-grants .grant-row 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;
	margin-right: 60px;
}
.workplace .show-page .user-grants .grant-row 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-row label .checkbox.yes::after {
	padding: 3px;
	content: "\f00c";
	background-color: #d8ffce;
	border-color: #99cf99;
}
.workplace .show-page .user-grants .grant-row label .text {
	margin-left: 8px;
}







/* ---------------------------- */
/* -------- 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: #fff;
    border: 1px dotted #bbb;
    border-radius: 4px;
    overflow: hidden;
}
.workplace .report-page .filters {
	margin-top: 10px;
	padding: 26px 22px 32px;

	background-color: #fff;
    border: 1px dotted #bbb;
    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;
}
.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 #aaa;
	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: #0bcb60;
}
.workplace .report-page .selectors input[type=radio]:checked ~ .check::before {
	background-color: #0bcb60;
}
.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: #666;
	font-size: 0.92em;
	padding-left: 8px;
    background-color: #f5f5f5;
    border: 1px solid #dcdcdc;
	border-radius: 3px;
}
.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: #f00;
}

.workplace .report-page .filters .filter .input-text:not([readonly]):focus,
.workplace .report-page .filters .filter .drop-box:not([readonly]):focus {
	-webkit-box-shadow: 0 0 0 2px #3fdd4e;
	        box-shadow: 0 0 0 2px #3fdd4e;
}

.workplace .report-page .filters .filter .business-sector {
	width: 220px;
}
.workplace .report-page .filters .filter .business-state {
	width: 180px;
}
.workplace .report-page .filters .filter .business-status {
	width: 160px;
}
.workplace .report-page .filters .filter .talent-sector {
	width: 220px;
}
.workplace .report-page .filters .filter .talent-status {
	width: 200px;
}

.workplace .report-page .buttons {
	margin-left: 240px;
	margin-top: 10px;
}
.workplace .report-page .buttons .btn-display {
	width: 220px;
	font-size: 0.95em;
	padding: 7px 0;
	color: #fff;
    background-color: var(--loadpage_link_color);
	border: 1px solid var(--loadpage_link_color);
	border-radius: 4px;
	border: none;
	outline: none;
	cursor: pointer;
}
.workplace .report-page .buttons .btn-display:disabled {
	color: #333;
	background-color: #ccc;
	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: #fff;
	border: 1px dotted #bbb;
	border-radius: 4px;
	overflow: hidden;
}
.workplace .report-view .report-header {
	padding-bottom: 16px;
	border-bottom: 1px dashed #ccc;
	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: #012839;
}
.workplace .report-view .report-header .titles .filter {
	margin-top: 0;
	font-size: 14px;
	font-weight: 500;
	color: #777;
}
.workplace .report-view .report-header .btns .link {
	margin-left: 8px;
	padding: 8px 10px;
	color: #777;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 3px;
}
.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: #ecf7f2;
	border: 1px solid var(--element_border);
    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(--element_border);
}
.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 #cbcbcb;
	border-top: none;
    border-radius: 0 0 4px 4px;
}
.workplace .report-view .report-table .no-record {
	line-height: 80px;
	text-align: center;
	color: #aaa;
}

.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: 38px;
	line-height: 38px;
	
	border-color: rgb(223, 227, 235);
}
.workplace .report-view .report-table .report-row .cave .status.pending {
	background-color: #e97e14;
	color: #fff;
	padding: 2px 6px;
	border-radius: 3px;
}

.workplace .report-view .cave.business-s-n {
	-ms-flex-preferred-size: 5%;
	    flex-basis: 5%;
}
.workplace .report-view .cave.business-name {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .report-view .cave.business-sector {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.business-city {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}
.workplace .report-view .cave.business-hq-address {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .report-view .cave.business-web {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}
.workplace .report-view .cave.business-founded-date {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}

.workplace .report-view .cave.talent-s-n {
	-ms-flex-preferred-size: 5%;
	    flex-basis: 5%;
}
.workplace .report-view .cave.talent-name {
	-ms-flex-preferred-size: 20%;
	    flex-basis: 20%;
}
.workplace .report-view .cave.talent-headline {
	-ms-flex-preferred-size: 16%;
	    flex-basis: 16%;
}
.workplace .report-view .cave.talent-sector {
	-ms-flex-preferred-size: 12%;
	    flex-basis: 12%;
}
.workplace .report-view .cave.talent-address {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .report-view .cave.talent-languages {
	-ms-flex-preferred-size: 15%;
	    flex-basis: 15%;
}
.workplace .report-view .cave.talent-status {
	-ms-flex-preferred-size: 10%;
	    flex-basis: 10%;
}



/* --------------------------- */
/* ------- setting page ------ */
/* --------------------------- */

.workplace .setting-page {
	padding: 26px 30px;
	background-color: #fff;
	border: 1px dotted #bbb;
	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: 10px;
	padding-bottom: 10px;
	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: 4px;
	font-size: 0.95em;
}
.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);
	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: 1.3em;
	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: 0.95em;
	width: 80%;
}
.workplace .setting-page .inside-unknown .last-pg {
	margin-top: 30px;
}

.workplace .setting-page .canvas-area .inline-form {
	-ms-flex-preferred-size: 88%;
	    flex-basis: 88%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.workplace .setting-page .canvas-area .inline-form form {
	-ms-flex-preferred-size: 80%;
	    flex-basis: 80%;
}
.workplace .setting-page .canvas-area .inline-form .form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.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: #666;
	font-size: 0.92em;
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	outline: none;
}
.workplace .setting-page .canvas-area .inline-form .drop-box.country-id {
	width: 220px;
} 
.workplace .setting-page .canvas-area .inline-form .input-text.highlight,
.workplace .setting-page .canvas-area .inline-form .drop-box.highlight {
	border-color: #f00;
}

.workplace .setting-page .canvas-area .inline-form .input-text:not([readonly]):focus,
.workplace .setting-page .canvas-area .inline-form .drop-box:not([readonly]):focus {
	-webkit-box-shadow: 0 0 0 2px #3fdd4e;
	        box-shadow: 0 0 0 2px #3fdd4e;
	border-color: #dcdcdc;
}

.workplace .setting-page .canvas-area .inline-form form .next-el {
	margin-left: 8px;
}

.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: #444;
	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: 10px 0 4px;
}
.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(--element_border);
    background-color: #dfe9ed;
    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 {
	padding: 8px 16px;
	font-size: 14px;
	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.buttons {
	-ms-flex-preferred-size: 8%;
	    flex-basis: 8%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave.serial {
	-ms-flex-preferred-size: 6%;
	    flex-basis: 6%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave.title {
	-webkit-box-flex: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave.subtitle {
	-ms-flex-preferred-size: 32%;
	    flex-basis: 32%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .cave.status {
	-ms-flex-preferred-size: 18%;
	    flex-basis: 18%;
}
.workplace .setting-page .canvas-area .setting-list .setting-data .table-row .btn {
	margin-right: 6px;
	cursor: pointer;
	color: #888;
	opacity: 0.5;
}
.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: #999;
}




/* --------------------------- */
/* --------- profile --------- */
/* --------------------------- */

.workplace .my-profile {
	padding: 30px 35px;
	background-color: #fff;
    border: 1px solid #ddd;
    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: 40px;
	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: 40px;
	opacity: 0;
	cursor: pointer;
}
.workplace .my-profile .left .img-holder .img-change span {
	width: 100%;
	color: #fff;
	text-align: center;
}
.workplace .my-profile .right .record {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 8px 12px;
	font-size: 0.95em;
	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(--form_label_font);
}
.workplace .my-profile .right .record .value-part.status {
	padding: 1px 12px;
	border-radius: 4px;
	background-color: #ccc;
}
.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: #fff;
	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 var(--element_border);
}
.frame-popup-center .content {
	padding: 15px 20px 20px;
	height: calc(100vh - 40px);
	color: var(--font_color);
	background-color: #fff;
}
.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.third {
	display: inline-block;
	width: 32.5%;
}
.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: #777;
    margin-left: 3px;
}

.frame-popup-center .content .input-text,
.frame-popup-center .content .drop-box,
.frame-popup-center .content .text-area {
	height: 29px;
	padding-left: 8px;
	color: #666;
	font-size: 0.92em;
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	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-color {
	inline-size: 100px;
    block-size: 32px;
	padding: 1px 2px;
	background-color: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-radius: 3px;
	outline: none;
}

.frame-popup-center .content .input-text.highlight,
.frame-popup-center .content .drop-box.highlight,
.frame-popup-center .content .text-area.highlight {
	border-color: #f00;
}

.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 {
	-webkit-box-shadow: 0 0 0 2px #3fdd4e;
	        box-shadow: 0 0 0 2px #3fdd4e;
	border-color: #dcdcdc;
}

.frame-popup-center .content .input-text:-moz-read-only, .frame-popup-center .content .drop-box::read-only, .frame-popup-center .content .text-area:-moz-read-only {
	background-color: transparent;
}

.frame-popup-center .content .input-text:read-only,
.frame-popup-center .content .drop-box::read-only,
.frame-popup-center .content .text-area:read-only {
	background-color: transparent;
}

.frame-popup-center .content label.error {
	margin: 8px 0 10px;
}
.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.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-business .busniz-name {
	width: 94%;
}
.frame-popup-center .content.edit-business .busniz-address {
	width: 94%;
}
.frame-popup-center .content.edit-business .busniz-web {
	width: 60%;
}
.frame-popup-center .content.edit-business .busniz-founded-date {
	width: 60%;
}
.frame-popup-center .content.edit-business .about-section ~ .ck.ck-editor {
	width: 94% !important;
}
.frame-popup-center .content.edit-business .about-section ~ .ck.ck-editor .ck-editor__editable[role="textbox"] {
    height: 380px;
}
.frame-popup-center .content.edit-business .busniz-industry {
	width: 93.5%;
}
.frame-popup-center .content.edit-business .busniz-size {
	width: 93.5%;
}
.frame-popup-center .content.edit-business .city-state {
	width: 60%;
}
.frame-popup-center .content.edit-business .busniz-map {
	width: 93.5%;
}
.frame-popup-center .content.edit-business .latitude, 
.frame-popup-center .content.edit-business .longitude, 
.frame-popup-center .content.edit-business .map-zoom {
	width: 30%;
}

.frame-popup-center .content.edit-business .busniz-partner {
	width: 94%;
	height: 100px;
}
.frame-popup-center .content.edit-business .business-logo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-business .cover-photo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-business .hero-photo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-business .featured-photo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-talent .talent-photo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-talent .upload-resume + label span {
	width: 300px;
}
.frame-popup-center .content.edit-resource .resource-photo + label span {
	width: 300px;
}
.frame-popup-center .content.edit-resource .resource-file + label span {
	width: 300px;
}

.frame-popup-center .content.edit-talent .talent-name {
	width: 94%;
}
.frame-popup-center .content.edit-talent .talent-headline {
	width: 94%;
}
.frame-popup-center .content.edit-talent .talent-whatsapp {
	width: 94%;
}
.frame-popup-center .content.edit-talent .talent-location {
	width: 94%;
}
.frame-popup-center .content.edit-talent .languages-spoken {
	width: 94%;
}

.frame-popup-center .content.edit-talent .about-section ~ .ck.ck-editor {
	width: 94% !important;
}
.frame-popup-center .content.edit-talent .about-section ~ .ck.ck-editor .ck-editor__editable[role="textbox"] {
    height: 380px;
}

.frame-popup-center .content.add-talent .talent-skill {
	width: 94%;
}

.frame-popup-center .content.add-talent .areas-expertise {
	width: 94%;
}
.frame-popup-center .content.add-talent .years-experience {
	width: 94%;
}

.frame-popup-center .content.edit-talent .areas-expertise {
	width: 68%;
}
.frame-popup-center .content.edit-talent .years-experience {
	width: 28%;
}
.frame-popup-center .content.add-talent .university-attended {
	width: 94%;
}

.frame-popup-center .content.edit-resource .resource-title {
	width: 96%;
	min-height: 70px;
}
.frame-popup-center .content.edit-resource .resource-author {
	width: 96%;
	min-height: 70px;
}
.frame-popup-center .content.edit-resource .resource-author-link {
	width: 96%;
	min-height: 70px;
}
.frame-popup-center .content.edit-resource .resource-content ~ .ck.ck-editor {
	width: 96% !important;
}
.frame-popup-center .content.edit-resource .resource-content ~ .ck.ck-editor .ck-editor__editable[role="textbox"] {
    height: 420px;
}

.frame-popup-center .content.edit-resource .resource-issue {
	width: 96%;
}
.frame-popup-center .content.edit-resource .resource-type {
	width: 96%;
}
.frame-popup-center .content.edit-resource .publication-year {
	width: 96%;
}

.frame-popup-center .content.edit-settings .business-industry {
	width: 94%;
}
.frame-popup-center .content.edit-settings .status {
	width: 94%;
}
.frame-popup-center .content.edit-settings .state-name {
	width: 94%;
}
.frame-popup-center .content.edit-settings .resource-topic {
	width: 94%;
}
.frame-popup-center .content.edit-settings .resource-type {
	width: 94%;
}

.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-phone {
	width: 92%;
}


.frame-popup-center .content.edit-user .grant-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding: 14px 20px;
	border-bottom: 1px dashed #ddd;
    font-size: 0.95em;
}
.frame-popup-center .content.edit-user .grant-row:nth-child(odd) {
	background-color: #f5f5f5;
}
.frame-popup-center .content.edit-user .grant-row:nth-last-child(1) {
	border-bottom: none;
}
.frame-popup-center .content.edit-user .grant-row .grant-label {
	-ms-flex-preferred-size: 30%;
	    flex-basis: 30%;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.frame-popup-center .content.edit-user .grant-row 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;
	cursor: pointer;
	position: relative;
	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: #fff;
	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: #fff;
	background-color: #10a351;
	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 .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: #444;
	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);
	}
}