@charset "utf-8";

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.user-menu a {
	cursor: pointer;
}

.user-menu a > span {
	display: inline-block;
	width: 17px;
	height: 17px;
	margin-right: 5px;
    vertical-align: bottom;
}

.logout span {
	background: url('/static/images/icon/logout.png') no-repeat	center;
}

.userinfo span {
	background: url('/static/images/icon/user_info.png') no-repeat center;
}

.permission span {
	background: url('/static/images/icon/user_permission.png') no-repeat center;
}

.user-info-overlay {
	display: none;	
	width: 100%;
    height: 100%;
    position: fixed;
    background: #0000008c;
    left: 0;
    z-index: 300;
}

.user-info-overlay.on {
	display: block;
}

.user-info-overlay:focus {
	outline: 0;
}

.user-info-overlay-in {
    position: fixed;
    background: #fff;
    width: 482px;
    border: 1px solid;
	padding: 40px 30px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
	
}

.user-info-block {
    width: 8%;
    height: 10px;
    display: inline-block;
    background-color: #142c4e;
    border: 1px solid #848484;
    position: relative;
    left: 46%;
}

.user-info-top {
    text-align: center;
    margin-bottom: 20px;
}

.user-info-title {
    font-size: 23px;
    font-weight: bold;
    color: #4c4c50;
    letter-spacing: -0.3px;
}

.user-info-subtitle {
    color: #828282;
}

.user-info-item {
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #dad9d9;
    height: 55px;
    line-height: 55px;
    float: left;
	font-size: 14px;
}

.user-info-item.disabled {
    background-color: #dcdcdc;
    cursor: context-menu;
}

.user-info-item:last-child {
	border-bottom: 0;
}

.user-info-item.on:not(:last-child) {
	border-bottom: 1px solid #2ab4ec;
}

.user-info-item.on .user-info-item-title,
.user-info-item.on input {
	color: #2ab4ec;
}

.user-info-item input {
	font-size: 14px;
}

.user-info-item-title,
.user-info-item-input {
    float: left;
}

.user-info-item-input {
	width: 60%;
}

.user-info-item-input input {
	height: 48px;
	font-size: 14px;
	border: 0;
	width: 100%;
}

.user-info-item-title {
	margin-left: 25px;
	width: 25%;
}

.user-info-item-title > span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    position: relative;
    top: 4px;
}

.icon-user-info-name {
	background: url('/static/images/icon/user_info_name_off.png') no-repeat	center;
}

.user-info-item.on .icon-user-info-name{
	background: url('/static/images/icon/user_info_name_on.png') no-repeat	center;
}

.icon-user-info-position {
	background: url('/static/images/icon/user_info_position_off.png') no-repeat	center;
}

.user-info-item.on .icon-user-info-position {
	background: url('/static/images/icon/user_info_position_on.png') no-repeat	center;
}

.icon-user-info-duty {
	background: url('/static/images/icon/user_info_duty_off.png') no-repeat	center;
}

.user-info-item.on .icon-user-info-duty {
	background: url('/static/images/icon/user_info_duty_on.png') no-repeat	center;
}

.icon-user-info-contact {
	background: url('/static/images/icon/user_info_contact_off.png') no-repeat center;
}

.user-info-item.on .icon-user-info-contact {
	background: url('/static/images/icon/user_info_contact_on.png') no-repeat center;
}

.icon-user-info-email {
	background: url('/static/images/icon/user_info_email_off.png') no-repeat center;
}

.user-info-item.on .icon-user-info-email {
	background: url('/static/images/icon/user_info_email_on.png') no-repeat center;
}

.icon-user-info-role {
	background: url('/static/images/icon/user_info_permission.png') no-repeat center;
}

.icon-interview-client {
	background: url('/static/images/icon/aside-client-active.png') no-repeat center;
	background-size: contain;
}

.icon-interview-candidate {
	background: url('/static/images/icon/aside-candidate-active.png') no-repeat center;
	background-size: contain;
}

.icon-document-search {
	background: url('/static/images/icon/document-search.png') no-repeat center;
	background-size: contain;
}

.icon-guide {
	background: url('/static/images/icon/aside-guide.png') no-repeat center;
	background-size: contain;
}

.count-icon {
	width: 10px;
    height: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
}

.user-info-bottom {
    width: 100%;
    height: 35px;
    text-align: center;
    background: #bbbbbb;
    color: #fff;
    border-radius: 3px;
    border: 1px solid #797979;
    line-height: 35px;
    font-size: 15px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    letter-spacing: 1px;
}

.user-info-overlay-close {
    position: absolute;
    width: 25px;
    height: 25px;
    right: 15px;
    background: url(/static/images/icon/share_preview_close_off.png) no-repeat center;
    top: 15px;
    cursor: pointer;
}

#search {
	position: relative;
	width: 280px;
	height: 42px;
	margin-right: 22px;
}

#search input {
	float: left;
	width: 205px;
	height: 22px;
	padding: 10px 55px 10px 20px;
	line-height: 22px;
	border: 0;
	border-radius: 22px;
	background-color: #fff;
	font-size: 14px;
	color: #333;
}

input:focus {
	outline: none;
}

input[readonly] {
	cursor: default;
}

#search button {
	position: absolute;
	right: 15px;
	top: 6px;
	width: 30px;
	height: 30px;
	background: url('/static/images/icon/reading_glasses.png') no-repeat
		center;
}

.bullet-top, .bullet-bottom {
	width: 6px;
	height: 30px;
	display: inline-block;
    vertical-align: middle;
}

.bullet-top {
	background-color: #2ab4ec;
	border-radius: 2px;
	margin-right: 6px;
}

.bullet-bottom {
	top: 15px;
	background-color: #1a3866;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
}

a {
	letter-spacing: -0.5px;
	text-decoration: none;
	position: relative;
}

a:-webkit-any-link {
	text-decoration: none;
}

::-webkit-input-placeholder {
	color: #aaa !important;
}

::-moz-placeholder {
	color: #aaa !important;
}

:-ms-input-placeholder {
	color: #aaa !important;
}

::-ms-input-placeholder {
	color: #aaa !important;
}

::placeholder {
	color: #aaa !important;
}

p {
	margin: 0;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.container {
	width: 1430px;
	margin: 0 auto;
	zoom: 1;
}

.container:before, .container:after {
	display: table;
	content: "";
	line-height: 0;
}

.container:after {
	clear: both;
}

.number {
	font-family: "tahoma", "Verdana", "arial";
}

table {
	width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
}

form {
	padding: 0;
	margin: 0;
}

.ellipsis {
	overflow: hidden;
	white-space: nowrap;
	-moz-text-overflow: ellipsis;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.off {
	display: none !important;
}

.init-off {
	display: none !important;
}

.hide {
	visibility: hidden;
}

.show {
	visibility: visible;
}
/* ì—ë””í„° í™•ì¸ ë²„íŠ¼ */
.te-apply-button {
	color: #000 !important;
}

.autocomplete-cover {
	overflow: inherit !important;
}

.autocomplete-suggestions {
	text-align: left;
	cursor: default;
	border: 1px solid #ccc;
	border-top: 0;
	background: #fff;
	-webkit-box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
	        box-shadow: -1px 1px 3px rgba(0, 0, 0, .1);
	position: absolute;
	display: none;
	z-index: 9999;
	max-height: 254px;
	overflow: hidden;
	overflow-y: scroll;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.autocomplete-suggestion {
	position: relative;
	padding: 0.6em;
	line-height: 23px;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	font-size: 1.02em;
	color: #333;
	border-bottom: 1px solid;
	border-bottom-style: ridge;
}

.autocomplete-suggestion b {
	font-weight: normal;
	color: #1f8dd6;
}

.autocomplete-suggestion.selected {
	background: #f0f0f0;
}

.completed {
	-webkit-animation: completed 2s ease 0s 1 alternate;
	animation: completed 2s ease 0s 1 alternate;
	z-index: 0;
}

@-webkit-keyframes completed {
	from { background-color:#F6F6BC;}
	to { background-color: white; }
}
@-keyframes completed {
	from { background-color:#F6F6BC; }
	to { background-color: white; }
}
.view .none-view {
	display: none;
}

.validate-error {
	background-color: #FFECEC !important;
	z-index: 0;
}

.tooltip {
	visibility: hidden;
	border-radius: 6px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	padding: 10px 0;
	background-color: #0e2443;
	color: #fff;
	font-size: 14px;
	text-align: center;
	z-index: 70;
	opacity: 0;
	-webkit-transition: visibility 0.3s linear, opacity 0.3s linear;
	-o-transition: visibility 0.3s linear, opacity 0.3s linear;
	transition: visibility 0.3s linear, opacity 0.3s linear;
}

.tooltip.on {
	visibility: visible;
	opacity: 1;
}

.tooltip::before {
	content: '';
    width: 24px;
    height: 24px;
    background: url(/static/images/icon/tooltip_exclamation_mark.png) no-repeat center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    margin-bottom: 5px;
}

.tooltip .tooltip-close {
    position: absolute;
    right: 0;
    top: 0;
    padding-right: 7px;
    padding-top: 2px;
    cursor: pointer;
}

.tagify__dropdown__item--active {
	background: #e2f7ff;
	font-size: 15px;
}

.tagify__tag__removeBtn {
	font: 13px/14px Dotum !important;
	color: #FFEB3B;
}

.tagify {
	-tag-hover: #77c7f6 !important;
}

.tagify.cb-input {
	height: auto !important;
	min-height: 46px;
	letter-spacing: -0.5px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.tagify__tag__removeBtn:hover+div::before {
	-webkit-box-shadow: 0 0 0 20px #f6a2a2 inset !important;
	        box-shadow: 0 0 0 20px #f6a2a2 inset !important;
}

.tag-position-type {
	border-radius: inherit;
	padding: 4px;
	font-size: 14px;
	color: white;
}

.flex-right {
	margin-left: auto;
}

.page-navi {
	height: 20px;
	font-size: 11px;
	letter-spacing: 0px;
	font-family: ë‹ì›€;
	bottom: 15px;
	display: inline-block;
}

.page-navi-title {
	height: 20px;
	color: gray;
}

.page-navi-arrow {
	color: gray;
	font-weight: 100;
}

ul.pagination li {
    border: 1px solid #929292;
    text-align: center;
    padding: 2px;
    display: inline-block;
    min-width: 20px;
}

ul.pagination li.none {
	border: 0;
}

ul.pagination li > a {
	color: #545454;
	width: 100%;
    height: 100%;
    display: block;
}

ul.pagination li.active {
	background-color: #17345d;
    border: 1px solid #17345d;
}

ul.pagination li.active a{
	color: #fff;
}




#section_content .container {
	background-color: #fff;
}
/* 
background 이미지 추가
 */
.list-top-btn {
	float: left;
	width: 32px;
	height: 32px;
	border-radius: 3px;
	background: url('/static/images/icon/plus.png') no-repeat center;
	background-size: contain;
}

.list-top-btn:hover {
	border-color: #999;
}

#list_body:empty:before {
	content: '검색 결과가 없습니다.';
	color: black;
	font-size: 20px;
	color: #a0a0a0;
	text-align: center;
	line-height: 350px;
	display: block;
}

.list-box {
	position: relative;
	padding: 20px;
	cursor: pointer;
}

.list-box.on {
	z-index: 20;
}

.list-box.current, .list-box:hover {
	background-color: #f6f6f6;
}

.list-box+.list-box {
	border-top: 1px solid #e6e6e6;
}

.lb-top {
	min-height: 52px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
}

.lb-title {
	font-weight: bold;
}

.lb-top.grades {
	padding-left: 0px;
	min-height: 36px;
}

/* 
background 조절

background-size:contain;
background-repeat: no-repeat;
background-position: center;
 */
.lb-logo {
	width: 56px;
	height: 56px;
	border-radius: 3px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background-color: #fff;
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url('/static/images/white-image.png');
	-webkit-background-origin: border;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	margin-right: 5px;
}

.lb-logo.client {
	width: 64px;
	height: 64px;
}

[class^="lb-grade-"] {
	float:left;
	line-height: 22px;
	text-align: center;
	border-radius: 3px;
	color: #fff;
	padding: 2px 4px;
	cursor: pointer;
	background-size: 16px;
	background-repeat: no-repeat;
	background-position: center center;
   	width: 13px;
    height: 16px;
}

span.ct-tab-btn.emergency,
a.ct-tab-btn.emergency {
    background-color: #d2d2d2 !important;
    z-index: 1;
    width: auto;
    padding: 2px 7px 1px 4px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

span.ct-tab-btn.emergency.on,
a.ct-tab-btn.emergency.on {
	background-color: #ff2222 !important;
}

.force-update + .ct-tab-btn-wrap {
	margin-left: 10px;
}

span.ct-tab-btn.emergency > span,
a.ct-tab-btn.emergency > span {
	display: inline-block;
	width: 20px;
	height: 18px;
	background: url('/static/images/icon/emergency_white.png') no-repeat center;
}

.lb-grade-emergency{
	background-image: url('/static/images/icon/emergency_on.png');
}

.lb-grade-important{
	background-image: url('/static/images/exclamation.svg');
}

.lb-content-title {
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.matching-pass {
	display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
	margin-left: auto;
}

.icon-pass {
	display: inline-block;
	height: 100%;
    width: 20px;
	background: url('/static/images/icon/pass.png') no-repeat center / cover;
	cursor: pointer;
}

.icon-pass:hover {
    box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
}

.lb-grade-emergency, .ct-tab-btn.a.on {
	z-index: 2;
    padding: 0;
    width: 20px;
}

.lb-grade-important, .ct-tab-btn.b.on {
	background-color: #f7c05d !important;
	z-index: 1;
    padding: 0;
    width: 20px;
}

.lb-grade-normal, .ct-tab-btn.c.on {
	background-color: #999db3 !important;
	z-index: 0;
    padding: 0;
    width: 20px;
}

.lb-grades {
	margin-top: 4px;
	float:left;
}

.lb-content,
.lb-company {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
	width: 100%;
	font-size: 15px;
	padding-top: 1px;
	color: #2f3133;
	letter-spacing: 0;
	margin-left: 5px;
	margin-right: 5px;
    word-break: break-all;
}

.lb-location:hover,
.lb-title:hover {
	cursor: pointer;
	text-decoration: underline;
}

.lb-title + .lb-corporate-name {
	display: block;
    font-weight: 100;
    font-size: 14px;
    color: gray;
    margin-top: 2px;
}

.lb-corporate-name {
	font-weight: bold;
	color: #4e4e52;
}

.lb-corporate-name + .lb-date {
	margin-top: 5px;
}

.lb-service-name {
	font-size: 13px;
	color: #646464;
}

.lb-candidate-name {
	font-size: 20px;
	color: #2f3133;
	margin-left: 5px;
}

.lb-settings{
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: -15px;
    position: relative;
}

.underline {
	color: inherit;
}

.underline:hover .lb-candidate-name, .lb-candidate-name:hover {
	text-decoration: underline;
}

.lb-btn-setting, .lb-btn-lock {
	width: 26px;
	height: 26px;
	border-radius: 3px;
	background-color: #9ea5af;
}


.lb-btn-spliter {
	-ms-flex-item-align: start;
	    align-self: flex-start;
	margin-top: 5%;
}
/* 
background 이미지 추가
 */
.lb-btn-setting {
	background: url('/static/images/icon/26_cogwheel.png') no-repeat center;
}

.lb-btn-lock {
	background: url('/static/images/icon/26_unlock.png') no-repeat center;
}

.lb-btn-lock.on {
	background: url('/static/images/icon/26_lock.png') no-repeat center;
}

.lb-job {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
	margin-top: 6px;
}

.lb-job button, .lb-skill-btn {
	float: left;
}

.lb-job button {
	height: 22px;
	line-height: 20px;
	padding: 0 6px;
	font-size: 12px;
	border: 1px solid #aaa;
	margin: 1px;
}

.lb-job-type {
	color: white;
	border: 0px !important;
	border-radius: 3px;
	letter-spacing: -0.5px;
}

a + .lb-skill {
    margin-top: 3px;
}

.lb-skill {
	position: relative;
	min-height: 24px;
}

.lb-skill.on {
	z-index: 1;
	display: inline-block;
}
.lb-skill.on .lb-skill-btn-toggle {
    display: block;
    float: right;
    position: relative;
}

.lb-skill.folded {
	max-height: 27px;
	padding-right: 40px;
	overflow: hidden;
}

.lb-skill-btn {
	display: inline-block;
	padding: .4em .5em;
	margin: 3px 2px 0 0;
	font-size: 12px;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	text-align: center;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	background-color: #cee0ed;
	border-color: #cee0ed;
	color: #33658a;
	letter-spacing: 0px;
}

.lb-skill-btn:hover {
	color: #444;
}

.lb-skill-btn-toggle {
	position: absolute;
	bottom: 0px;
	right: 0;
	height: 24px;
	line-height: 24px;
	font-size: 12px;
	text-decoration: underline;
	color: #888;
}

.lb-skill-btn-toggle:hover {
	color: #333;
}

.lb-skill.on .lb-skill-btn-toggle {
    bottom: 0px;
}

.lb-skill.folded.on {
	max-height: 111px;
}

.lb-status {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    display : -webkit-flex;
	margin-top: 10px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	max-width: 379px;
}

.lb-status > .row {
	width: 100%;
	margin-top: 3px;
}

.lb-status > span {
	margin-right: 10px;
}

.lb-bottom {
	height: 26px;
	margin-top: 5px;
}

.lb-date > span,
.lb-open-jd > span,
.lb-contract > span {
	width: 15px;
	height: 14px;
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle;
}

.lb-date > span {
	background: url('/static/images/icon/list_date.png') no-repeat center;
	background-size: contain;
}

.lb-open-jd > span {
	background: url('/static/images/icon/list_open_jd.png') no-repeat center;
	background-size: contain;
}

.lb-contract > span {
	background: url('/static/images/icon/list_contract.png') no-repeat center;
}

.lb-corporate-name > span,
.lb-title > span {
    width: 15px;
    height: 14px;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    background: url(/static/images/new.png) no-repeat center;
    background-size: contain;
}

.lb-contract,
.lb-open-jd,
.lb-date {
	letter-spacing: -0.3px;
	color: #787878;
    font-size: 12px;
    width: 40%;
}

.lb-contract,
.lb-date, 
.lb-location
.lb-location-none {
	height: 17px;
	line-height: 17px;
}

.lb-content > .lb-location,
.lb-content > .lb-location-none,
.lb-company > .lb-location,
.lb-company > .lb-location-none {
	color: #787878;
    font-size: 12px;
    margin-top: 4px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.lb-vline {
	width: 1px;
	height: 14px;
	margin: 6px 10px;
	background-color: #ccc;
}

.lb-location {
	color: #318dd0;
}

.lb-tooltip {
    display: none;
    position: absolute;
    right: 35px;
    bottom: -25px;
    padding: 10px 40px 10px 15px;
    border: 1px solid #666;
    background-color: #fff;
}

.lb-tooltip-btn {
	float: left;
	height: 24px;
	line-height: 24px;
	margin-right: 6px;
	font-size: 12px;
	color: #555;
}

.lb-tooltip-btn:hover {
	text-decoration: underline;
}

.lb-bottom.on .lb-tooltip {
	display: block;
}

[class$="-btn-jd"] {
	height: 26px;
	line-height: 24px;
	padding: 0 10px;
	/* border:1px solid #54a5ea; */
	border-radius: 3px;
	font-size: 13px;
	font-weight: 700;
	color: #219cf3;
	display: inline-block;
}

/**************** content_wrapper start here ****************/
.content-company {
	margin-bottom: 20px;
}

.content-menu-wrapper,
.content-owners {
	float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    -ms-flex-item-align: end;
        align-self: flex-end;
    height: 24px;
    letter-spacing: 0;
}

.content-menu-wrapper {
	float: right;
    margin-left: 8px;
    position: relative;
}

.content-owners {
    float: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.content-owners .owner-icon {
    line-height: 14px;
}

.owner-icon .icon {
    margin-right: 4px;
}

.tagify__tag[readonly] > div::before {
	background: #318dd0 !important;
}

.tagify__tag[readonly] > div::after {
	content: attr(data-inherited);
    font-size: 6px;
    color: white;
}

.content-owner {
	line-height: 24px;
    color: #303030;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0px;
}

.content-owner.owner-master {
	color: #1774b9;
}

.content-owner + .content-owner {
	margin-left: 5px;
}

.content-menu {
	display: none;
    position: absolute;
    border: 1px solid #b5b3b3;
    border-radius: 3px;
    width: 215px;
    right: 0px;
    top: 32px;
    background: white;
    z-index: 3;
}

.content-menu.on {
	display: block;
}

.ctm-item + .ctm-item {
    border-top: 1px solid #b5b3b3;
}

.content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    clear: both;
    padding: 12px 4px;
}

.content-title > input {
    border: 0;
    font-size: 27px;
    font-weight: bold;
    background: #fff;
    color: #121212;
    height: 46px;
    padding: 0px 8px;
}

.content-title > .cb-title {
	width: 100%;
    border: 0;
    font-size: 27px;
    font-weight: bold;
    background: #fff;
    color: #121212;
    height: 46px;
    padding: 0px 8px;
}

.content-button {
    text-align: right;
    margin-bottom: 8px;
}

.content-button .content-wide-btn {
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 4px 20px;
    color: #00135d;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.content-button .content-wide-btn + .content-wide-btn {
    margin-left: 4px;
}

.content-button .content-wide-btn .icon {
    width: 13px;
    height: 14px;
    margin-right: 4px;
    margin-top: 2px;
}

.position-title {
	width: 100%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    font-size: 27px;
    font-weight: bold;
}

.ctm-item {
    padding: 5px 10px;
    line-height: 30px;
    min-height: 32px;
}

.ctm-item div {
	display: inline-block;
	vertical-align: middle;
    color: #5f5f5f;
}

.tagify.ctm-item-input {
	width: 118px;
    border-radius: 3px;
    border: 1px solid #b5b3b3;
    float: right;
}

.content-menu .tagify__input {
    min-width: 40px;
    padding: 0 .5em;
    position: relative;
    margin: 0;
}

.content-menu .tagify__input:empty::before {
    -webkit-transition: .2s ease-out;
    -o-transition: .2s ease-out;
    transition: .2s ease-out;
    opacity: .5;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.content-menu .tagify__input::before {
    content: attr(data-placeholder);
    line-height: 2.3;
    position: absolute;
    top: 0;
    z-index: 1;
    color: #000;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
}

.ctm-item-title {
    width: 84px;
}

.ctm-item-option {
    width: 105px;
}

.icon-content-menu-owner,
.icon-content-menu-active {
	width: 12px;
	height: 16px;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
    position: relative;
    top: -2px;
}

.icon-content-menu-owner {
	background: url('/static/images/icon/content_menu_owner.png') no-repeat center;
}

.icon-content-menu-active {
	background: url('/static/images/icon/content_menu_active.png') no-repeat center;
}

.icon-content-owner {
	width: 12px;
	height: 24px;
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
    position: relative;
    background: url('/static/images/icon/content_owner.png') no-repeat center;
}

.menu-open-btn {
	width: 40px;
	height: 24px;
	display: inline-block;
    background: url('/static/images/icon/content_menu_btn.png') no-repeat center;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
  float: right;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: -12px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #152f53;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

[class^="content-company"] {
	height: 50px;
}

[class^="content-company-"] {
	float: left;
}

.content-client-logo {
	width: 115px;
	height: 115px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 3px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	margin-right: 14px;
	background-image: url('/static/images/white-image.png');
	-webkit-background-origin: border;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.title-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    display : -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.position-title {
	width: 100%;
	-ms-flex-item-align: center;
	    -ms-grid-row-align: center;
	    align-self: center;
}

.ct-tab-btn-wrapper + .position-title {
    margin-bottom: auto;
}

.client-title {
	width: 100%;
    font-weight: 100;
    color: gray;
    font-size: 18px;
    line-height: 1;
    display: block;
    padding: 5px 0;
}

.ct-update + .title {
	margin-top: 10px;
	margin-bottom: 10px;
}

.ct-update + .logo-title {
	margin-bottom: 0;
}

.logo-title {
    line-height: 1.3em;
    padding-left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}

.title > input.cb-input {
	border: 0;
    font-size: 27px;
    font-weight: bold;
    width: 90%;
}

.content-btn-wrap {
	text-align: right;
    margin-bottom: 8px;
    position: relative;
}

.content-btn-wrap.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin: 20px 10px 20px 0;
}

.content-btn-wrap img {
	display: block;
	margin: 0 auto;
}

.content-wide-btn > span{
	width: 16px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 8px;
}

.icon-total-jd {
	background: url('/static/images/icon/total_jd.png') no-repeat center;
}

.icon-success {
	background: url('/static/images/icon/success.png') no-repeat center;
}

.icon-open-jd {
	background: url('/static/images/icon/open_jd.png') no-repeat center;
}

.flex-column .content-wide-btn {
	margin: 4px 0;
}

.content-wide-btn {
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 6px 20px;
    color: #00135d;
    font-weight: bold;
    width: 190px;
    display: inline-block;
    text-align: center;
    position: relative;
    cursor: pointer;
}

.content-wide-btn img {
    display: inline-block;
    width: 16px;
    height: 18px;
    margin: 0;
    padding: 0 3px 2px 0;
    vertical-align: middle;
}

.content-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	width: 100%;
	border-top: 1px solid #d8d8d8;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.content-wide-btn + .content-wide-btn {
    margin-left: 5px;
}

.flex-column .content-wide-btn + .content-wide-btn {
    margin-left: 0;
}

.content-top, [class^="ct-tab-btn"], .ct-update {
	line-height: 22px;
}

.ct-tab-btn-wrapper {
	margin-top: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    -ms-flex-item-align: end;
        align-self: flex-end;
}

.page-navi + .ct-tab-btn-wrapper {
	float: right;
	width: auto;
}

.ct-tab-btn-wrap {
	background-color: #fff;
	border-radius: 3px;
	height: 100%;
}

.content-matchings {
    display: none;
    background: #fff;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    position: absolute;
    right: 0px;
    top: 28px;
    z-index: 100;
    width: 100%;
    padding: 4px;
    text-align: center;
}

.matching-info {
    border-bottom: 1px solid #dfdfdf;
    padding: 6px 0px;
}

.content-matchings .matching-info:last-child {
	border-bottom: none;
}

.logo-title .ct-tab-btn-wrap {
	top: 30px;
}
/* 
. 마우스 드래그 방지
 */
.noselection {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
/* 
.force-update 있을때 마우스 포인터 변경
 */
.ct-tab-btn-wrap.force-update .ct-tab-btn {
	cursor: pointer;
}

.ct-tab-btn {
	float: left;
	width: 75px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #aaa;
	z-index: 1;
    height: 100%;
    background-color: #e7e8e9;
    border-radius: 1px;
}

.ct-tab-btn+.ct-tab-btn {
	margin-left: 3px;
}

.ct-tab-btn.on {
	background-color: #1b87d1;
	border-radius: 1px;
	color: #fff;
	z-index: 2;
}

.ct-update {
    height: 20px;
    font-family: 돋움;
    letter-spacing: 0px;
    cursor: pointer;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #9ba3b1;
    font-size: 11px;
    position: relative;
}

.ct-update > .icon {
	background: url('/static/images/icon/last_edit.png') no-repeat center;
	display: inline-block;
	vertical-align: sub;
	width: 16px;
    height: 16px;
    margin-right: 4px;
}

.ct-update-history {
	display: none;
    position: absolute;
	z-index: 10;
	width: 525px;
    height: 560px;
	top: 28px;
	background-color: #fff;
	border: 1px solid #afafaf;
}

.histories-title {
    padding: 10px 15px;
    border-bottom: 2px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.histories-close {
	position: absolute;
    width: 25px;
    height: 25px;
    right: 15px;
    top: 10px;
    background: url(/static/images/icon/share_preview_close_off.png) no-repeat center;
    cursor: pointer;
}

.ct-update-history.on {
    display: block;
}

.histories {
	font-family: "Nanum Gothic", "Dotum", "돋움", "sans-serif" !important;
	overflow: auto;
	height: 516px;
}

.history {
    padding: 10px 15px;
    border-bottom: 1px solid #dfdfdf;
    line-height: 16px;
    word-break: keep-all;
}

.history-title {
    font-size: 13px;
    color: #464646;
    display: inline;
    overflow: hidden;
}

.history-field-title {
	font-weight: bold;
}

.history.on .history-field-title {
	color: #063e8a;
}

.history-content {
	display: none;
	font-size: 13px;
	padding: 5px 0 5px 5px;
}

.history-content-title {
    color: #00135d;
    font-weight: bold;
    width: 100%;
    display: inline-block;
}

.history.on .history-content {
	display: block;
	line-height: 24px;
}

.history-created-date {
    font-size: 12px;
    letter-spacing: -0.5px;
    color: #8f8f8f;
}

.history-content .added {
	color: green !important;
	background-color: #e6ffed;
}

.history-content .removed {
	color: red !important;
	background-color: #ffeef0;
}

.history-content .line-break {
	display: block;
}

.history-content .removed > .line-break {
/* 	height: 10px; */
/* 	width: 3px; */
/* 	background-color: red; */
}

.history-content .added > .line-break {
/* 	height: 10px; */
/* 	width: 3px; */
/* 	background-color: green; */
}

.history-content .skill,
.history-content .position {
	display: inline-block;
	padding: .2em .5em;
	border-radius: 3px;
	margin-right: 3px;
    margin-top: 2px;
}

.history-content .skill-level {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    border-radius: 100%;
    background-color: #fff;
    color: #f90;
    padding: 2px 6px;
    margin-left: 4px;
}

.history-content type {
    background: #a3a3a3;
    border-radius: 5px;
    color: white;
    padding: 2px 4px;
    font-size: 10px;
    margin-right: 2px;
}

.history-content .history-arrow {
	color: black;
	font-weight: bold;
	padding: 5px 10px;
}

.history-content .ct-tab-btn + .history-arrow {
	float: left;
}

.history-content .lb-logo + .history-arrow {
    line-height: 64px;
    vertical-align: top;
}

.history-content ul {
    display: block;
    list-style-type: disc;
    padding-left: 17px;
    margin: 6px 0 10px;
    color: #555;
}

.history-content li ul {
    margin-top: 0!important;
    margin-bottom: 0!important;
}
.history-content li ul {
    margin-left: 15px!important;
}

/* 
.view 추가 
- 일반화면모드, 수정화면모드가 있음.
- view는 일반화면 모드
- view가 없으면 수정화면 모드

content-body에 .view가 있을 때, 

- 액션이 필요한 element를 숨김
- default cursor:pointer인 element는 cursor: default로  

.force-update 추가
- .view(일반 화면 모드) 일 때, 해당 element만 수정하기 위한 클래스


*/
.force-update {
	z-index: 20 !important;
	-webkit-box-shadow: 6px 6px 5px #a5dbeb;
	        box-shadow: 6px 6px 5px #a5dbeb;
}

.content-body.view label:not(.force-update),
.content-body.view .cb-select-btn:not(.force-update), 
.content-body.view .cb-panel-default:not(.force-update) {
	cursor:default;
}
.content-body:not(.view ) label.cb-input {
	cursor: pointer;
}

.content-body.view .cb-title>button, .content-body.view .cb-line-del-btn,
.content-body.view .cb-select-btn>span, .content-body.view .cb-line-add-btn {
	display: none;
}

.content-body.view .cb-line-down-btn {
	display: block;
}

/* 
height: auto 변경
 */
.cb-basic-wrap {
    position: relative;
    padding-top: 20px;
    border-top: 1px solid #d8d8d8;
    height: auto;
}

.cb-add-wrap {
    margin-top: 50px;
}

.cb-sub-title {
    line-height: 26px;
    padding-bottom: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid #72767d;
    text-indent: 6px;
    font-size: 20px;
    color: #303030;
}

.cb-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
}

.cb-line .cb-title {
    color: #173660;
    font-size: 14px;
    line-height: 46px;
}

.cb-line .cb-input {
    height: 46px;
    width: auto;
    line-height: 26px;
    padding: 10px 9px;
    color: #121212;
    -o-transition: padding 300ms;
    transition: padding 300ms;
    -webkit-transition: padding 300ms;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
    border-left: 0;
   	border-radius: 0px;
}

.cb-line .cb-textarea {
    width: 88%;
    min-height: 46px;
    height: auto;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding: 4px 8px;
}

.cb-filebox {
    position: absolute;
    top: 20px;
    right: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.2);
    -o-border-image: initial;
       border-image: initial;
    border-radius: 3px;
    width: 160px;
    height: 160px;
    z-index: 1;
}

.cb-mobile-logo {
	display: none;
}

.cb-discuss-box {
	display: flex;
	flex-direction: column;
	width: 15%;
}

/* 
background 이미지 조절

background-size:contain; 추가
 */
.cb-filebox label {
	display: inline-block;
	line-height: normal;
	vertical-align: middle;
	background-color: #fff;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	border-radius: 3px;
	cursor: pointer;
	background-image: url('/static/images/white-image.png');
	-webkit-background-origin: border;
	width: 158px;
	height: 158px;
}
/* 
 label에 .force-update 추가
 */
label.force-update {
	cursor: pointer;
}

label.area {
	padding-top: 11px;
	padding-left: 12px;
	border-bottom: 0;
}
/* 

<label>파일첨부 이름</label>
<input class="cb-input-file"> 
위의 형태로 이미지가 아닌 일반 파일첨부 쓰기위해서
inpt.cb-input-file 클래스 생성

 */
.cb-filebox input[type="file"], input.cb-input-file {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.content-body.view label[data-handle-force-update=file] .noselection:empty:before{
	content: "첨부된 파일이 없습니다.";
	color: #aaa;
}

.content-title .cb-input,
.content-short-comment .cb-input,
.content-body.view [class^="cb-selectbox-"],
.content-body.view .cb-input {
	border: 0px;
}

label[data-handle-force-update=file] .noselection:empty:before {
	content: "파일을 첨부해주세요.";
	color: #aaa;
}

/* 
.cb-selectbox-left 의 리스트가 길어질경우 cb-line이 리스트 위로 보여서
z-index:1 삭제함
 */
.cb-line {
	position: relative;
	min-height: 46px;
	zoom: 1;
	-o-transition: padding 300ms;
	transition: padding 300ms;
	-webkit-transition: padding 300ms;
}

.cb-line:before, .cb-line:after {
	display: table;
	content: "";
	line-height: 0;
}

.cb-line:after {
	clear: both;
}

.cb-line.selected {
	z-index: 10;
}

.cb-line+.cb-line {
	margin-top: 12px;
}

.content-title .cb-line {
	margin: 0;
}

.content-title .cb-line:not([data-structure]) .cb-input {
	padding: 0 0 0 2px;
	font-size: 20px;
	font-weight: bold;
}

.content-title .cb-line .tagify__input::before {
	line-height: 2.5;
}

.content-title .cb-input.candidate-name {
	width: 60px !important;
}

.content-short-comment .cb-line {
	margin: 0;
	min-height: 30px;
}

.content-short-comment .cb-input {
	padding: 4px;
	line-height: 0;
	height: fit-content;
	color: #616161;
}

.cb-title, .cb-input, .cb-exp, .cb-btn, .cb-wave, .cb-textarea {
	float: left;
}

.cb-title, .cb-exp, .cb-input, .cb-textarea {
	font-size: 14px;
}

.cb-title {
	position: relative;
	width: 120px;
	height: 46px;
	line-height: 46px;
	text-indent: 6px;
	color: #00135d;
	font-weight: 600;
	letter-spacing: -0.6px;
}

.cb-title.inline{
	width: 100px;
	color: #474747;
}
.cb-title.inline.clear-line-height{
	line-height: 1.5em;
	text-indent: 0;
	padding-left: 6px;
	margin-top: 12px;
}

.cb-title button {
	position: absolute;
	top: 7px;
	left: -24px;
	width: 32px;
	height: 32px;
	background: url('/static/images/icon/filled_arrow_up.png') no-repeat center;
}

.cb-title button.on {
	background: url('/static/images/icon/filled_arrow_down.png') no-repeat center;
}

.cb-wave {
	width: 26px;
	height: 26px;
	margin: 10px;
	    text-align: center;
}
span.cb-wave:before {
    content: '~';
    color: black;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.cb-btn.open-map-btn {
	margin-left: 0px;
    padding: 0px;
}

.cb-btn.link-map-btn {
	margin-left: 3px;
    padding: 0px;
}

.link-map-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.link-map-btn > span {
	width: 18px;
	background: url('/static/images/icon/link_map_btn.png') no-repeat center;
	background-size: contain;
}

.open-map-btn > span {
	width: 24px;
	background: url('/static/images/icon/map_btn.png') no-repeat center;
}

.link-map-btn:hover > span {
	width: 18px;
	background: url('/static/images/icon/link_map_btn_on.png') no-repeat center;
	background-size: contain;
}

.open-map-btn:hover > span {
	width: 24px;
	background: url('/static/images/icon/map_btn_on.png') no-repeat center;
}

.cb-btn {
	height: 34px;
	padding: 0 10px;
	margin: 7px 0 0 12px;
	font-size: 0;
	line-height: 32px;
	text-align: center;
	flex-shrink: 0;
}

.cb-btn:hover {
	border-color: #359ade;
}

.cb-btn span {
	display: inline-block;
	height: 24px;
	line-height: 24px;
	vertical-align: middle;
	font-size: 13px;
	font-weight: bold;
	color: #2ab4ec;
}

.cb-btn.none-view {
	margin-left: 0;
}

.cb-btn span.plus {
	width: 40px;
	height: 22px;
	margin-right: 5px;
	background: url('/static/images/icon/add_btn_off.png') no-repeat center;
}

.cb-btn span.plus:hover {
	background: url('/static/images/icon/add_btn_on.png') no-repeat center;
}

.cb-btn span.arrow{
	width: 15px;
	margin-right: 5px;
	background: url('/static/images/icon/additional_arrow_down.png') no-repeat center;
}

.cb-btn.on span.arrow{
	background: url('/static/images/icon/additional_arrow_up.png') no-repeat center;
}


.cb-input-age {
	border-radius: 3px;
    background-color: #d9d9d9;
    color: #333;
    padding: 5px;
    margin-left: 10px;
}

.cb-line > .cb-input-age {
	width: 50px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0;
    margin-top: 10px;
}


.cb-input, .cb-exp, .cb-textarea {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.cb-input, .cb-exp {
	height: 46px;
	line-height: 26px;
	padding: 10px 9px;
	color: #121212;
	-o-transition: padding 300ms;
	transition: padding 300ms;
	-webkit-transition: padding 300ms;
}

.cb-input {
	width: 840px;
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #ddd;
	border-left: 0;
}

.cb-line-group .cb-input {
	max-width: 800px;
}

.cb-exp {
	min-width: 200px;
	max-width: 730px;
	white-space: nowrap;
	overflow: hidden;
}

.cb-exp-line {
	min-height: 32px;
	display: inline-block;
	height: 32px;
}

.cb-exp-line .cb-exp {
	height: 32px;
	line-height: 0;
}

.cb-exp-line .dot {
	min-width: 5px;
	margin: 0px 5px 0 15px;
	border-radius: 10px;
	background-color: black;
	height: 5px;
	padding: 0;
	top: 8px;
	width: 5px;
	position: relative;
}

.area .cb-line:last-child .cb-input, .area .cb-line:last-child [class^="cb-selectbox-"]:last-child {
	border-bottom: 0;
}

.area.cb-line-group .cb-input,
.area.cb-line-group [class^="cb-selectbox-"],
.area.cb-line .cb-input, 
.area.cb-line [class^="cb-selectbox-"] {
	border-bottom: 0;
}

.content-body.view .cb-btn.add {
	display: none !important;
}

.content-body.view .slider-container-wrapper.force-update {
	display: block !important;
}

.content-body.view .slider-container-wrapper {
	display: none !important;
}

.content-body.view .cb-line.range:not(.force-update-expand) {
	padding-top:0!important;
}
.content-body .cb-line.range .cb-input, .content-body.view .cb-line.range.force-update-expand .cb-input {
	display: none;
}

.content-body.view .cb-line.range .cb-input {
	display: block;
}

.content-body.view .cb-line.range .cb-title {
	line-height: 46px !important;
}

.content-body.view .cb-input[data-format=homepage]:not(.force-update) {
	color: #15c;
}
.content-body.view .cb-input[data-format=homepage]:not(.force-update):visited {
	color: #61c;
}
/*

.cb-textarea 가 있는 영역에 cb-title 오른쪽 부분이 비어있는곳을 채우고,
그 영역에 클릭이벤트를 주기위해 만든 클래스

*/
.dummy-input {
	width: 840px;
	height: 46px;
	line-height: 26px;
	padding: 10px 9px;
	border: 0;
	float: left;
	font-size: 14px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.content-body.view .force-update-expand .slider-container-wrapper,
	.slider-container-wrapper {
	padding: 50px 35px 25px 35px !important;
	float: left;
}

.content-body.view .slider-container-wrapper {
	padding: 0px !important;
	float: left;
}

.slider-container {
	float: left;
	width: 550px;
}

.content-body.view .cb-line.range:not(.force-update-expand ) .cb-title
	{
	padding: 0px !important;
	float: left;
}

.cb-line.range .cb-title {
	line-height: 26px !important;
	padding-top: 40px;
}

.cb-input.on, .cb-textarea.on {
	border-color: #2f9ce6;
	color: #1e92e0;
}
.cb-selectbox-right+.cb-title,
.cb-input+.cb-title {
	margin-left: 22px;
}

/*

height:110px; -> height:auto;

*/
.cb-textarea {
	width: 782px;
	min-height: 46px;
	height: auto;
	margin-top: 15px;
	border-top: 0;
	border-left: 0;
	border-right: 0;
}

.cb-textarea.wth700{
	width:700px;
}

.cb-textarea:empty:after {
	content: "--";
	color: #a4a8ae;
	height: 46px;
	line-height:36px;
}

.cb-textarea.wth638 {
	margin-top: 14px;
}

.cb-textarea.wth638:not(.auto-height) {
	margin-top:0px;
}

.te-ww-container .tui-editor-contents:first-child{
	padding: 16px 15px 0 15px!important;
}

.tui-toolbar-icons.tui-underline {
    background-position: -4px -70px;
}

.cb-add-wrap {
	margin-top: 50px;
}

.cb-add-wrap .cb-line+.cb-line {
/* 	margin-top: 14px; */
}

.sub-title {
	line-height: 26px;
	padding-bottom: 14px;
	margin-bottom: 20px;
	border-bottom: 1px solid #72767d;
	text-indent: 6px;
	font-size: 20px;
	color: #303030;
}

.cb-panel-wrap, .cb-panel-default, .cb-panel-selected {
	float: left;
	width: 686px;
}

.cb-panel-wrap {
	position: relative;
	min-height: 45px;
	z-index: 1;
}

.cb-panel-default {
	width: 840px;
	height: 45px;
	text-align: left;
	text-indent: 9px;
	font-size: 14px;
	border-bottom: 1px solid #ccc;
	color: #aaa;
}

.cb-panel-selected, .cb-panel-group {
	position: relative;
	padding: 15px 20px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

.cb-panel-selected {
	height: 108px;
	margin-top: 15px;
	background-color: #f1f5f7;
	border-radius: 2px;
}

.area.cb-panel-selected {
	padding: 13px 18px;
}

.cb-panel-line {
	height: 26px;
}

.cb-panel-line p {
	float: left;
	height: 26px;
	line-height: 26px;
}

.cb-panel-title {
	width: 80px;
	color: #474747;
	font-weight: bold;
}

.cb-title.inline > img,
.cb-panel-title > img {
	display: inline-block;
	vertical-align: middle;
    margin-bottom: 3px;
    margin-right: 4px;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    width: 16px;
}

.cb-panel-exp {
	width: 230px;
	color: #777;
}

.cb-panel-btn {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.cb-panel-del-btn {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 70px;
	height: 26px;
	line-height: 24px;
	border: 1px solid #a4b6bd;
	border-radius: 4px;
	text-align: center;
	font-size: 12px;
	background-color: #fff;
	color: #638286;
}

.cb-panel-del-btn:hover {
	border-color: #889498;
}

.cb-panel-list {
	display: none;
	position: absolute;
	top: 44px;
	left: 0;
	right: 0;
	width: 838px;
	min-height: 108px;
	max-height: 326px;
	border: 1px solid #999;
	background-color: #fff;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 30;
}

.cb-panel-list:empty:before {
    content: '고객사에 등록된 담당자가 없습니다.';
    text-align: center;
    line-height: 110px;
    display: block;
    color: #aaa;
    font-size: 14px;
}

.cb-panel-group {
	width: 838px;
}

.cb-panel-group:hover {
	background-color: #f0f7fb;
}

.cb-panel-group+.cb-panel-group {
	border-top: 1px solid #ccc;
}

.cb-panel-add-btn {
	display: block;
	width: 788px;
	height: 30px;
	line-height: 30px;
	margin: 5px 25px 15px;
	border-radius: 4px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	background-color: #e4f1f9;
	color: #6a9dbf;
}

.cb-panel-add-btn:hover {
	color: #458ebf;
}

.cb-panel-wrap.on .cb-panel-list {
	display: block;
}

.cb-line-group {
	position: relative;
	-o-transition: all 300ms;
	transition: all 300ms;
	-webkit-transition: all 300ms;
	margin-bottom: 16px;
}

.cb-line-group.first-on{
	display:block;
}

.cb-line-group .cb-line:not(:first-of-type) {
	margin-top: 5px !important;
}
.cb-line-group+.cb-line-group {
	margin-top: 18px;
}

.cb-line-group[class^=mgl]+.cb-line-group[class^=mgl] {
	margin-top: 25px;
}

.cb-line-group-wrap {
	width: 88%;
}

.cb-line-group-wrap .cb-line {
	margin-bottom: 0px;
}

.update .cb-line-group-wrap {
	width: 83%;
}

.cb-line.mark,
.cb-line-group.mark {
    border: 1px solid #e5e5e5;
    border-radius: 3px;
    padding: 15px;
}

.cb-title + .cb-line.mark,
.cb-title + .cb-line-group.mark{
	margin-left:0px;
}

.cb-line-group.mark + .cb-line-group.mark{
	margin-top:12px;
}

.cb-line-del-btn, .cb-line-add-btn {
	height: 30px;
	line-height: 30px;
	border-radius: 3px;
	text-align: center;
}

.cb-line-del-btn, .cb-line-down-btn {
	position: absolute;
	top: 7px;
	height: 30px;
	line-height: 30px;
	border-radius: 4px;
	text-align: center;
	font-size: 12px;
	z-index: 20;
}

.cb-line-del-btn:not(.relative) {
	top: 2px;
	right: 2px;
	width: 30px;
	color: #738286;
	background: url('/static/images/icon/wastebasket_off.png') no-repeat center;
	-webkit-transition: background 0.6s;
	-o-transition: background 0.6s;
	transition: background 0.6s;
	z-index: 1;
}

.cb-line-del-btn.relative {
	position: relative;
	top: 2px;
	right: 2px;
	margin-top: 3px;
	margin-left: 10px;
	float: left;
	width: 55px;
	color: #fff;
	background-color: #808080;
	-webkit-transition: background 0.6s;
	-o-transition: background 0.6s;
	transition: background 0.6s;
	z-index: 1;
}

.cb-line-del-btn:hover {
	color: #fff;
}

.cb-line-del-btn:not(.relative):hover {
	background: url('/static/images/icon/wastebasket_on.png') no-repeat	center;
}

.cb-panel-selected .cb-line-del-btn{
	background: url('/static/images/icon/manager_wastebasket.png') no-repeat center;
}

.cb-panel-selected .cb-line-del-btn:hover{
	background: url('/static/images/icon/wastebasket_on.png') no-repeat center;
}

.cb-line-del-btn.wastebasket{
	top: 6px;
	right: 0;
	margin-left: 3px;
	width: 15px;
	padding: 1px 5px;
	background: url('/static/images/icon/wastebasket_off.png') no-repeat center;
}

.cb-line-del-btn.wastebasket:hover{
	background: url('/static/images/icon/wastebasket_on.png') no-repeat center;
}

.cb-line-down-btn {
	display: none;
	position: relative;
	float: left;
	margin-left: 10px;
	width: 74px;
	background-color: #e4f1f9;
	color: #6a9dbf;
	-webkit-transition: background-color 0.6s;
	-o-transition: background-color 0.6s;
	transition: background-color 0.6s;
}

.cb-line-down-btn:hover {
	color: #fff;
	background-color: #33aaf3;
}

.force-update-expand .cb-line-del-btn {
	display: block !important;
}

.force-update-expand .cb-line-down-btn {
	display: none !important;
}

/*
.cb-line-del-btn:hover 일 때,
cb-line-del-btn 을 감싸고 있는 element 영역을 보여주기 위해서 .area추가
*/
.area {
	-webkit-transition: all 300ms linear;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
	-webkit-box-shadow: 6px 6px 5px #a5dbeb;
	        box-shadow: 6px 6px 5px #a5dbeb;
	padding-top: 1px;
	padding-left: 2px;
	z-index: 9999;
}

.cb-line-add-btn {
	display: inline-block;
	margin-top: 16px;
	font-size: 13px;
	font-weight: 700;
	background-color: #e4f1f9;
	color: #6a9dbf;
	width: 100%;
}

.cb-line-add-btn:hover {
	color: #458ebf;
}

.cb-line-add-btn.off + .cb-line {
    width: 100%;
}

.cb-line-group:not(.off) + .cb-line-add-btn + .cb-line{
	margin-top:50px;
}

.content-body:not(.view) .cb-line-add-btn+.cb-line {
	margin-top: 60px;
	display: inline-block;
}


[class^="cb-selectbox-"] {
	position: relative;
	float: left;
	height: 45px;
	border-bottom: 1px solid #ddd;
	z-index: 10;
}

.cb-selectbox-left {
	margin-right: 15px;
}

.cb-selectbox-left .cb-select-btn {
	text-indent: 5px;
}

.cb-selectbox-right .cb-select-btn {
	text-indent: 9px;
}

.cb-selectbox-right.in{
	border-bottom:0;
}

.cb-select-btn {
	position: relative;
	float: left;
	width: 100%;
	height: 45px;
	line-height: 45px;
	text-align: left;
	text-indent: 6px;
	font-size: 14px;
	color: #2c2f33;
}

.cb-select-btn.in {
	background-color: #ddd;
    height: 36px;
    top: 5px;
    line-height: 36px;
    border-radius: 3px;
}

.content-body.view .cb-select-btn.in:not(.force-update) {
    text-indent: 0px;
    padding:0 10px;
    width: auto;
}

.cb-select-btn span {
    height: 100%;
    width: 10px;
    background: url(/static/images/icon/filled_arrow_down.png) no-repeat center;
    display: inline-block;
    float: right;
    vertical-align: middle;
    margin-right: 5px;
}

.cb-select-btn.in span{
	top: 10px;
}


.cb-select-btn.force-update span {
	display: block !important;
}

.cp-content .cped {
	display: none;
    position: absolute;
    text-align: center;
    line-height: 38px;
    color: #fff;
    border-radius: 3px;
    margin: auto;
    font-size: 14px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background: #29b6f6;
    z-index: 2;
}

.cp-content {
	position: relative;
}

.cp-link-btn {
	font-size: 12px;
    font-weight: bold;
    background-color: #e4f1f9;
    color: #6a9dbf;
    border-radius: 4px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 2px 10px;
    margin-left: 10px;
}

.cp-link {
	cursor: pointer;
    color: #A2A4A6;
    line-height: 20px;
}

[class^="cb-selectbox-"] ul {
	display: none;
	position: absolute;
	top: 45px;
	left: 0;
	right: 0;
	min-height: 34px;
	padding: 8px 0;
	border: 1px solid #999;
	background-color: #fff;
	z-index: 13;
}

[class^="cb-selectbox-"] li button {
	display: block;
	width: 100%;
	height: 34px;
	line-height: 34px;
	text-align: left;
	text-indent: 16px;
}

[class^="cb-selectbox-"] li button.sns {
	text-indent: 10px;
}

button.sns:before {
	content: '';
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 3px;
    margin-bottom: 2px;
}

button.sns.facebook:before,
.sns[data-sns='facebook']:before{
	background: url('/static/images/icon/sns_facebook.png') no-repeat center;
}
button.sns.github:before,
.sns[data-sns='github']:before{
	background: url('/static/images/icon/sns_github.png') no-repeat center;
}
button.sns.linkedin:before,
.sns[data-sns='linkedin']:before{
	background: url('/static/images/icon/sns_linkedin.png') no-repeat center;
}
button.sns.band:before,
.sns[data-sns='band']:before{
	background: url('/static/images/icon/sns_band.png') no-repeat center;
}
button.sns.instagram:before,
.sns[data-sns='instagram']:before{
	background: url('/static/images/icon/sns_instagram.png') no-repeat center;
}
button.sns.kakaostory:before,
.sns[data-sns='kakaostory']:before{
	background: url('/static/images/icon/sns_kakaostory.png') no-repeat center;
}
button.sns.twitter:before,
.sns[data-sns='twitter']:before{
	background: url('/static/images/icon/sns_twitter.png') no-repeat center;
}
button.sns.youtube:before,
.sns[data-sns='youtube']:before{
	background: url('/static/images/icon/sns_youtube.png') no-repeat center;
}
button.sns.blog:before,
.sns[data-sns='blog']:before{
	background: url('/static/images/icon/sns_blog.png') no-repeat center;
}

[class^="cb-selectbox-"] li button:hover {
	background-color: #ecf3f7;
}

[class^="cb-selectbox-"].selected .cb-select-btn span {
	background: url('/static/images/icon/filled_arrow_up.png') no-repeat center;
}

[class^="cb-selectbox-"].selected ul {
	display: block;
}

.sub-title+.cb-opinion-write {
	margin-bottom: 22px;
}

#opinion-container {
    position: fixed;
    top: 70px;
    z-index: 9999;
    background-color: #fff;
    right: 0;	
    border: 1px solid #dfdddd;
    padding: 2em;
    width: 25%;
    min-width: 400px;
    max-height: 80vh;
    overflow-y: scroll;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
}

#opinion-container::-webkit-scrollbar {
	width: 6px;
}

#opinion-container::-webkit-scrollbar-track {
	background-color: transparent;
}

#opinion-container::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background-color: gray;
}

#opinion-container::-webkit-scrollbar-button {
	width: 0;
	height: 0;
}

.opinion-container a {
	cursor: text;
}

.opinion-container .opinion-container-close-btn {
	position: absolute;
    right: 25px;
    color: #5f6368;
    width: 40px;
    height: 40px;
    top: 15px;
    font-weight: bold;
    font-size: 15px;
    border-radius: 100%;
}

.opinion-container .opinion-container-close-btn:hover {
	background-color: rgba(32,33,36,0.039);
}

.opinion-text-editor-wrapper {
	position: relative;
}

.mention-container {
	border: 1px solid #dfdfdf;
	min-width: 10em;
}

.mention-container .highlight {
	background-color: #0AA;
}

.mention-container img {
	width: 2em;
	margin-right: 0.5em;
	border-radius: 100%;
}

.mention-container li {
	background-color: #ffffff;
	font-size: 1.2em;
}

.cb-opinion-write .opinion-text-editor {
	display: block;
	margin-top: 5px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	resize: none;
}

.cb-opinion-bottom {
	height: 35px;
	margin-top: -1px;
}

.cb-opinion-bottom button {
	float: right;
	width: 80px;
	height: 35px;
	line-height: 35px;
	border: 1px solid #ccc;
	font-size: 13px;
	color: #0f7cc5;
}

.cb-opinion-bottom button+button {
	color: #777;
}

.cb-opinion-bottom button:hover {
	background-color: #eee;
}

.cb-opinion-top {
	height: 24px;
    display: flex;
    align-items: center;
}

.cb-opinion-img {
	width: 20px;
	height: 20px;
	margin-right: 3px;
	background-size: cover;
	border-radius: 100%;
}

.cb-opinion-name {
	font-size: 13px;
}

.cb-opinion-top button {
	width: 30px;
	height: 100%;
}

.cb-opinion-top button.edit {
    background: url(/static/images/icon/tag_update.png) no-repeat center;
    margin-left: 1em;
    background-size: 1em;
}

.cb-opinion-top button.delete {
    background: url(/static/images/icon/tag_delete.png) no-repeat center;
}

.cb-opinion-top button:hover {
	text-decoration: underline;
}

.cb-opinion-vline {
	width: 1px;
	height: 10px;
	background-color: #ccc;
	margin: 0 5px;
}

.cb-opinion-date {
	margin-left: 5px;
	color: #9ba3b1;
	font-size: 10px;
}

.cb-opinion-basis {
	font-size: 13px;
	color: #333;
	padding: 0 1em;
}

.cb-opinion-basis a[href^="#mention"],
.tui-editor-contents a[href^="#mention"],
.tui-editor-contents a[href^="#mention"]:hover {
	color: #A2A4A6;
}

.cb-opinion .cb-opinion-write, .cb-opinion.edit .cb-opinion-basis,
	.cb-opinion.edit .cb-opinion-vline, .cb-opinion.edit .cb-opinion-date,
	.cb-opinion.edit .cb-opinion-top button {
	display: none;
}

.cb-opinion.edit .cb-opinion-write {
	display: block;
}

.cb-opinion {
	padding: 0.5em 0;
	-webkit-transition: background 3s;
	-moz-transition: background 3s;
	-o-transition: background 3s;
	transition: background 3s
}

.cb-opinion.selected {
	background: #2ab4ec78;
	-webkit-transition: background 1s;
	-moz-transition: background 1s;
	-o-transition: background 1s;
	transition: background 1s
}

/*
텍스트 에디터 영역 패딩 조절
*/
.text-editor.auto-height {
	padding: 0px !important;
	margin: 0px !important;
}

.action.content-btn-jd {
	border:0px;
}
.action-btns {
	position: fixed;
    width: 70px;
    left: 1291.5px;
    z-index: 45;
    padding-left: 4px;
    top: 45%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.aside-list.on ~ .action-btns {
	left: 1671.5px;
}

.aside-list.on ~ .detail .action-btns {
	left: 1671.5px;
}

.aside-list.hidden ~ .action-btns {
	left: 1671.5px;
}

.action-btns.bottom{
	position: fixed;
	float: left;
	width: auto;
	bottom: 0px;
	left: 0;
}

.content-vertical-line{
    width: 1px;
    background-color: #dad9d9;
    height: 70px;
    display: inline-block;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
}

.content-btn-jd {
	padding: 5px 10px;
	height: 100%;
	line-height: 1.2;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 300;
	color: #219cf3;
	display: inline-block;
	text-align: center;
}

button.action.content-btn-jd,
a.action.content-btn-jd {
	background-color: #7e7e7e;
    color: #fff;
    cursor: pointer;
    width: 7em;
    height: 2.5em;
    margin: 2px;
    float: left;
	padding: 1px;
}

button.action.content-btn-jd.create {
	background-color: #66bb6a;
}

.content-btn-jd.active {
  position: relative;
  -webkit-box-shadow: 0 0 0 0 rgba(42, 180, 236, 0.7);
          box-shadow: 0 0 0 0 rgba(42, 180, 236, 0.7);
  background-color: #2ab4ec!important;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.content-btn-jd.active:hover {
  -webkit-animation: none;animation: none;
}

@-webkit-keyframes pulse {to {-webkit-box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}
@keyframes pulse {to {-webkit-box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);box-shadow: 0 0 0 15px rgba(232, 76, 61, 0);}}


button.action[data-action='href'] span {
	background: url('/static/images/external.png') no-repeat center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 10px;
    height: 10px;
    padding: 0px;
    margin-left: 5px;
}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: 1000;
}

.overlay.on {
	display: block;
}

.overlayin {
	position: absolute;
	top: 55%;
	left: 50%;
	width: 600px;
	height: 600px;
	margin: -350px 0 0 -350px;
	background-color: #fff;
}

.overlay-close-btn {
	position: absolute;
	top: -55px;
	right: 0;
	width: 50px;
	height: 50px;
	background: #fff url() center no-repeat;
    font-size: 25px;
    font-weight: bold;
    color: #29b6f6;
    border-radius: 3px;
}

.open-map, .map-area {
	width: 100%;
	height: 100%;
}

.delete-wrapper {
	position: relative;
	min-height: 46px;
	float: left;
	padding-right: 30px;
}

.force-update-expand .cb-line-del-btn[data-preserve] {
	display: none !important;
}

.tagify__tag-star-warp {
	margin: 4px 2px 0 2px;
}

.tagify__tag-star {
	float: left;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	font-weight: 700;
	font-size: 13px;
	border-radius: 20px;
	background-color: #fff;
	color: #f90;
	letter-spacing: 0px;
}

.tagify__tag-star.selected {
	background-color: #77c7f6;
	color: #fff !important;
}

.tagify__tag-star.focus {
	background-color: #77c7f6;
	color: #fff !important;
}

.tagify__tag-star:hover {
	background-color: #fafafa;
	color: #f70;
}

.tagify__tag-star+.tagify__tag-star {
	margin-left: 4px;
}

.tagify--hide .tagify__tag-star-warp {
	display: none;
	position: absolute;
	padding: 0px;
	margin: 0px;
}

.tagify__tag-star-tooltip:after {
	display: table;
	content: '';
	line-height: 0;
	position: absolute;
	top: -12px;
	left: 50%;
	margin-left: -6px;
	border-top: 6px solid transparent;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #ffeaa5;
}

.tagify__tag-star-tooltip {
	display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    width: 140px;
    height: 38px;
    padding: 10px 12px;
    margin-left: -65px;
    border-radius: 20px;
    background-color: #ffeaa5;
}

.tagify__tag-star-tooltip.on {
	z-index: 10;
	display: block;
}

.tagify[readonly]>.tagify__input {
	display: none;
}

.tagify__input{
	min-width:50px;
}
   

.ct-create-jd-btn {
	position: relative;
	float: right;
	top: 5px;
	background-color: #000000;
	border-radius: 3px;
	padding: 3px 9px;
	font-size: 14px;
	color: white;
}

.search-btn {
	float: right;
	width: 34px;
	height: 34px;
	border-radius: 3px;
	background: url('/static/images/icon/reading_glasses.png') no-repeat center;
	background-size: contain;
}

.search-overlay.on {
	display:inline-block;
	margin-top:10px;
	height: auto;
	width: 100%;
}

.search-overlay {
	display:none;
	height: 0;
	z-index: 100;
    margin-top: 0;
}

.search-line {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    margin-top: 10px;
}

.search-radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    width: 80%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 5px;
}

.search-radio-wrapper > label {
	width: 20%;
}

.search-radio-wrapper > input {
	width: 5%;
}

.error-report {
	color: white;
    background-color: #000000;
    border-radius: 3px;
    padding: 1px 10px;
}

span.timer {
	color: #8eff8a;
	font-weight: bold;
}

.search-title{
	width: 64px;
	margin: 0 7px;
	color: #142d4f;
	font-size: 14px;
	display:inline-block;
	float:left;
	line-height: 31px;
    height: 31px;
}

.search-icon {
	display: inline-block;
    vertical-align: sub;
    margin-left: 4px;
    cursor: pointer;
    width: 14px;
    height: 14px;
}

.search-icon.question {
	background-image: url('/static/images/icon/question-off.png');
	background-repeat: no-repeat;
	background-size: contain;
}

.search-icon.question.on {
	background-image: url('/static/images/icon/question-on.png');
}

.search-icon.question:hover {
	background-image: url('/static/images/icon/question-on.png');
}

.search-input-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   	display : -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

input.search-input{
	padding-left: 12px;
	width: 258px;
}

input.search-input.date {
	width: 161px !important;
	cursor: pointer;
}
.search-input {
	width: 270px;
	min-height: 28px;
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #ddd;
	border-left: 0;
	font-size: 14px;
	color: #333;
	float:left;
	letter-spacing: -0.5px;
}

.search-select {
	border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
    border-left: 0;
    font-size: 14px;
    color: #333;
    padding: 0px 8px;
    width: calc(100% - 60px);
}

.search-select.period { 
	width: 158px;
}

.search-select ~ .bar {
	width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-overlay-btn {
	width: 45%;
	margin-top: 10px;
	background-color: #7e7e7e;
	border-radius: 4px;
	padding: 7px;
	color: white;
    position: relative;
    left: 15px;
}

.search-overlay-btn:hover {
	background-color: #2ab4ec;
}

.search-input > .tagify__tag > div > *{
	vertical-align: baseline;
}
.cb-textarea.tui-editor-contents{
	padding-top: 3px;
	padding-left: 9px;
}
.cb-textarea{
	padding-top:0px;
}

.fl{
	float:left;
}

.wth-full{
	width: 100% !important;
}

.wth50{
	width: 50px !important;
}

.wth60{
	width: 60px !important;
}

.wth70{
	width: 70px !important;
}

.wth80{
	width: 80px !important;
}

.wth104 {
	width: 104px !important;
}

.wth115 {
	width: 115px !important;
}

.wth134 {
	width: 134px !important;
}

.wth200 {
	width: 200px !important;
}

.wth218 {
	width: 218px !important;
}

.wth248 {
	width: 248px !important;
}

.wth315 {
	width: 315px !important;
}

.wth349 {
	width: 349px !important;
}

.wth365{
	width: 365px !important;
}

.wth380{
	width: 380px !important;
}

.wth480 {
	width: 480px !important;
}

.wth600 {
	width: 600px !important;
}

.wth650 {
	width: 650px !important;
}

.wth638 {
	width: 638px !important;
}

.wth686 {
	width: 686px !important;
}

.wth710 {
	width: 710px !important;
}

.wth772 {
	width: 772px !important;
}

.min-wth180 {
	min-width: 180px;
}

.min-wth250 {
	min-width: 250px;
}

.mgl120{
	margin-left: 120px;
}

.no-mg{
	margin-top:0px!important;
}

.view-mode-overlay{
    width: 100%;
    position: fixed;
    height: 100%;
    top: 0px;
    z-index: 56;
    background-color: rgba(0, 0, 0, 0.65);
}

.left-block {
    position: fixed;
    width: 611px;
    height: 100%;
    background-color: #000000bd;
}

.right-block {
    position: fixed;
    width: 229px;
    height: 100%;
    right: 0px;
    background-color: #000000bd;
}

.preview-overlay {
    color: white;
    margin: 100px auto 0px;
    width: 50%;
    text-align: center;
    font-size: 20px;
    float:right;
}

.po-create-btn {
    background-color: #03A9F4;
    border-radius: 3px;
    width: 70%;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
}
.content-body{
	padding-bottom: 60px;
}
span.cb-period {
    float: left;
    min-width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 3px;
    background-color: #f2f3f9;
    color: #666;
    position: relative;
    top: 8px;
	padding: 0 5px;    
}

.content-body .tagify__input::before {
	line-height:2.5;
}

.hyperlink-tooltip {
	width:auto;
	height:auto;
	font-size:14px;
	position:absolute;
	z-index:1;
    background: #fcfcfc;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.15), 0px 1px 2px 0px rgba(0,0,0,0.40);
            box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.15), 0px 1px 2px 0px rgba(0,0,0,0.40);
    border-radius: 1px;
    display: inline-block;
    padding: 5px 7px 5px 7px;
}

.hyperlink-tooltip:hover{
    background: #fff;
    -webkit-box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.20), 0px 2px 3px 0px rgba(0,0,0,0.30);
            box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.20), 0px 2px 3px 0px rgba(0,0,0,0.30);
}

.bulge {
    -webkit-box-shadow: -1px 1px 3px #eaeaea, 1px -1px 3px #eaeaea;
            box-shadow: -1px 1px 3px #eaeaea, 1px -1px 3px #eaeaea;
    z-index: 0;
}

#list_open_btn {
	display: none;
}

@CHARSET "UTF-8";

.container-left {
    display: inline-block;
    width: 20%;
    float: left;
}

.left-menu-title {
	color: #949494;
    padding: 15px 10px 15px 50px;
	font-weight: 700;
    font-size: 19px;
    border-top: 1px solid #d3d3d3;
}

.left-menu {
    padding: 0 10px 0 60px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.left-menu-title.active,
.left-menu.active a {
	color: #16355f;
}

.left-menu.active {
	background-color: #f3f3f3;
}

.left-menu > a {
	letter-spacing: 0px;
	font-size: 16px;
	color: #949494;
	font-weight: 700;
	line-height: 36px;
}

.left-menu > a span {
	width: 40px;
    height: 40px;
    display: inline-block;
    float: left;
    margin-right: 7px;
}

.container-right {
    display: inline-block;
    width: 1050px;
    padding: 20px 40px 50px;
    border-left: 1px solid #a8a8a8;
}

.cr-content {
	padding-left: 5px;
}

.cr-content.expand {
	padding-top: 20px;
	font-size: 0px;
}

.cr-pagination {
	float: right;
	margin-top: 40px;
    margin-right: 15px;
}

.cr-top {
    padding: 5px 5px 15px;
    position: relative;
}

.cr-top-tools {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
    position: absolute;
    right: 0;
    top: 0;
}

.top-search {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
	width: 35%;
    border-bottom: 1px solid #cfcfcf;
    margin-right: 10px;
	margin-left: auto;
}

.top-search > input {
	width: 70%;
    height: 95%;
    border: 0;
    font-size: 16px;
    padding: 0 10px;
}

.top-search > button {
	width: 27px;
	height: 100%;
	display: inline;
	background: url(/static/images/icon/tag_search.png) no-repeat center;
}

.top-order {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
    border: 1px solid #929292;
    border-radius: 3px;
	margin-right: 17px;
}

.top-order > button {
    height: 100%;
    padding: 7px;
    font-size: 14px;
    color: #7f7f7f;
    width: 80px;
}

.top-order > button.selected {
	background-color: #929292;
	color: #fff;
}

.top-order > button + button {
	border-left: 1px solid #929292;
}

.cr-top.no-line {
	border-bottom: 0;
}

.cr-top-title {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.cr-top-title.tag {
	color: #173660;
	font-size: 24px;
	letter-spacing: 0;
}

.cr-top-title.tag + .cr-top-subtitle {
	margin: 10px 0;
}

.cr-top-subtitle {
    font-size: 16px;
    color: #1b1b1b;
    letter-spacing: -0.5px;
}

.cr-top-subtitle a {
	color: #343434;
    letter-spacing: 0;
}

.user-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
  	border-bottom: 1px solid #d8d8d8;
  	font-size: 15px;
    color: #585858;
    height: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.user-nav-item {
    margin: 0px 16px;
    cursor: pointer;
}

.user-nav-item:first-child {
    letter-spacing: 0px;
}

.user-nav-item.selected {
    color: #173660;
    font-weight: bold;
}

.user-list {
    padding: 25px 25px 0 15px;
}

.user-list-item {
    border-bottom: 1px solid #d8d8d8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    padding: 12px 5px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.user-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
}

.user-info > .user-picture {
    width: 40px;
    height: 40px;
    background-size: cover;
    border-radius: 100%;
    margin-right: 15px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.user-info-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.user-info-right > .user-name {
    font-size: 16px;
    font-weight: bold;
}

.user-info-right > .user-email {
    color: #8a8a8a;
    letter-spacing: 0;
}

.user-options {
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display : -webkit-flex;
}

.user-options .role {
	position: relative;
    display: inline-block;
    margin-right: 5px;
    color: #fff;
    padding: 7px 18px 7px 14px;
    border-radius: 3px;
}

.user-options .role .role-del-btn {
    color: #fff;
    position: absolute;
    display: inline-block;
    line-height: 0px;
    right: 5px;
}

.user-options .role[data-name=admin] {
	background-color: #153259;
}

.user-options .role[data-name=staff] {
	background-color: #4f8fbb;
}

.user-options .role[data-name=consultant] {
	background-color: #5ea382;
}

.user-options .role[data-name=awaiting_permission] {
	background-color: #848484;
}

.user-options .role > span {
    width: 15px;
    height: 17px;
    display: inline-block;
    float: left;
    margin-right: 8px;
}

.user-options .role[data-name=admin] > span {
	background: url(/static/images/icon/role_admin.png) no-repeat center;
}

.user-options .role[data-name=staff] > span {
	background: url(/static/images/icon/role_staff.png) no-repeat center;
}

.user-options .role[data-name=consultant] > span {
	background: url(/static/images/icon/role_consultant.png) no-repeat center;
}

.user-options .role[data-name=awaiting_permission] > span {
	background: url(/static/images/icon/role_waiting.png) no-repeat center;
}

.user-menus {
	display: inline-block;
	position: relative;
}

.um-open-btn {
    display: inline-block;
    margin-right: 5px;
    color: #000;
    padding: 5px 20px;
    background: url(/static/images/icon/permission_role_menu_closed.png) no-repeat center;
    width: 20px;
    height: 31px;
}

.um-open-btn.on {
    background: url(/static/images/icon/permission_role_menu_open.png) no-repeat center;
}

.um-items {
    position: absolute;
    top: 0;
    left: 65px;
    width: 110px;
    border: 1px solid #000;
    background-color: #fff;
    color: #545454;
    font-weight: bold;
}

.um-item-role {
	padding: 10px 15px;
    border-bottom: 1px solid;
    cursor: pointer;
}

.um-item-role.selected {
	background-color: #dfdfdf;
	color: #000;
}

.um-item-role:last-child {
    border-bottom: 0;
}

.um-item-role > span {
    width: 15px;
    height: 17px;
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.um-item-role[data-name=admin] > span {
	background: url(/static/images/icon/item_admin.png) no-repeat center;
}

.um-item-role[data-name=staff] > span {
	background: url(/static/images/icon/item_staff.png) no-repeat center;
}

.um-item-role[data-name=consultant] > span {
	background: url(/static/images/icon/item_consultant.png) no-repeat center;
}



.cr-top-group-name-input {
    width: 400px;
    height: 48px;
    margin-top: 25px;
    padding: 3px 0;
    border: 1px solid #a8a8a8;
    border-radius: 3px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
}

.input-option-wrapper {
	height: 100%;
	z-index: 10;
	
}

.input-option-value {
	font-size: 15px;
    height: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #b9b9b9;
    color: #fff;
    word-break: keep-all;
    padding: 0 10px;
    border-right: 1px solid #a8a8a8;
}

.input-options {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	position: absolute;
}

.input-options.on > .input-option {
	display: block;
}

.input-option {
    display: none;
}

.input-option.selected {
    display: block;
}


.cr-top-group-name-input.small {
	width: 310px;
	padding: 0;
}

.cr-top-group-name-input input {
	border: 0;
    padding: 10px;
    font-size: 16px;
    display: inline-block;
    width: 80%;
}

.find-member > button,
.cr-top-group-name-input button {
	display: inline-block;
    margin-left: auto;
    border-radius: 3px;
    background-color: #d2d2d2;
    color: #fff;
    padding: 5px 6px;
    height: 25px;
    text-align: center;
    line-height: 15px;
    margin-right: 10px;
    letter-spacing: 0;
    width: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.basic-groups,
.permission-groups {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    margin-top: 15px;
    margin-bottom: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.permission-group {
    border: 1px solid #a8a8a8;
    width: 16%;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	display : -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 10px;
    text-align: center;
    min-width: 170px;
    position: relative;
}

.group-icon {
    margin: 5px auto;
    background-color: #d8d8d8;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
}

.group-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px;
    letter-spacing: -1.5px;
    position: relative;
}

.group-title > input {
    font-size: 16px;
   	width: 73%;
    padding-right: 40px;
    border: 0;
    border-bottom: 1px solid #afafaf
}

.group-title > button {
    position: absolute;
    right: 0px;
    border-radius: 3px;
    background-color: #a5a5a5;
    color: #fff;
    height: 20px;
    text-align: center;
    width: 35px;
}

.group-description {
    letter-spacing: -1.5px;
    color: #7b7b7b;
    text-align: center;
}

.group-btns > span {
    width: 1px;
    border: 1px solid #585858;
    margin: 0 10px;
}

.group-btns > button {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.group-btns > button[data-action=update] {
	background: url(/static/images/icon/group_edit.png) no-repeat center;
}

.group-btns > button[data-action=delete] {
	background: url(/static/images/icon/group_delete.png) no-repeat center;
}

.permission-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  	display : -webkit-flex;
  	width: 100%;
 	margin-bottom: 40px;
}

.member-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
   	display : -webkit-flex;
    border-bottom: 1px solid #a8a8a8;
    height: 30px;
}

.member-title {
    font-size: 18px;
    color: #4d5d4d;
}

.permission-group-member-line {
    width: 75%;
    margin-left: 10px;
}

.member-list {
	padding: 10px;
}

.member-list .user-picture {
    width: 30px;
    height: 30px;
    background-size: cover;
    border-radius: 100%;
    margin-right: 10px;
}

.member-list .user-name {
	font-size: 15px;
	font-weight: 600;
}

.member {
	margin-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5px;
}

.member > button {
    height: 20px;
    width: 12px;
    color: #7d7d7d;
    border-radius: 3px;
    line-height: 4px;
    margin-left: 3px;
    margin-bottom: 5px;
    font-size: 16px;
}

.member-menu-open-btn {
    width: 40px;
    height: 24px;
    display: inline-block;
    background: url(/static/images/icon/content_menu_btn.png) no-repeat center;
    float: right;
}

.permission-detail-menu {
    margin-left: auto;
    position: relative;
}

.basic-groups .permission-detail-menu {
	position: absolute;
    right: 0;
    top: 0;
}

.basic-groups .permission-details {
    position: absolute;
    left: 10px;
    top: 26px;
    width: 275px;
}

.find-member {
	position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display : -webkit-flex;
    width: 320px;
    right: 30px;
}

.find-member > input {
    border: 0;
    font-size: 16px;
    width: 255px;
    padding-right: 5px;
    letter-spacing: 0;
}

.autocomplete-suggestion > .user-info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 5px 0;
}

input:focus::-webkit-input-placeholder,
input:hover::-webkit-input-placeholder {
    color: #888 !important;
}
input:focus:-moz-placeholder,
input:hover:-moz-placeholder {
    color: #888 !important;
}
input:focus::-moz-placeholder,
input:hover::-moz-placeholder {
    color: #888 !important;
}
input:focus:-ms-input-placeholder,
input:hover:-ms-input-placeholder  {
    color: #888 !important;
}

.permission-details {
	background-color: #fff;
    border: 1px solid #000;
	float: right;
    position: relative;
    z-index: 1;
}

.permission-detail > div {
    display: inline-block;
}

.permission-detail {
    border-bottom: 1px solid #000;
	padding: 10px 15px;
}

.permission-detail:last-child {
    border-bottom: 0;
}

.detail-title {
    width: 50px;
}

.detail-btn {
    background-color: #d2d2d2;
    color: #fff;
    border-radius: 3px;
    padding: 2px 10px;
    cursor: pointer;
}

.detail-btn.selected {
    background-color: #17355e;
}

.tag-box,
.tag-synonym-box,
.tag-box-top,
.tag-box-content,
.tag-tools  {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	display : -webkit-inline-flex;
}

.tag-synonym-box {
	margin-right: 5px;
	margin-bottom: 5px;
	min-width: 18%;
}

.tag-synonym-box > .tag-box-top {
	width: 100%;
}

.tag-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
    border: 1px solid #e6e6e6;
    padding: 3px;
	min-width: 18%;
    margin-right: 9px;
}

.tag-box-top {
    background-color: #e4f2fc;
	padding: 8px 15px;
}

.tag-box-top > .tag-tools {
    margin: 0;
    width: auto;
    margin-left: auto;
}

.tag-title {
   	color: #27436a;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
}

.tag-title > input {
    border: 0;
    padding: 2px 5px;
	font-size: 14px;
}

.tag-title > button {
    display: inline-block;
    border-radius: 3px;
    background-color: #d2d2d2;
    color: #fff;
    padding: 2px 6px;
    font-size: 14px;
}

.tag-tools {
	width: 100%;
	margin-left: auto;
	margin-top: 15px;
}

.tag-tools > span {
    width: 1px;
    border: 1px solid #585858;
    margin: 0 10px;
}

.tag-tools > button {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.tag-tools > button.tag-update {
	background: url(/static/images/icon/tag_update.png) no-repeat center;
	margin-left: auto;
}

.tag-tools > button.tag-delete {
	background: url(/static/images/icon/tag_delete.png) no-repeat center;
}

.tag-box-content {
	padding: 5px 0 3px 10px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-flow: row wrap;
	        flex-flow: row wrap;
	font-size: 12px;
}

.tag-box-count {
	letter-spacing: -0.5px;
}

.tag-box-count > div > span {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 3px;
}

.tag-box-count + .tag-box-count {
	margin-left: 15px;
}

.tag-box-count .client > span {
	background: url(/static/images/icon/aside-client.png) no-repeat center;
	background-size: contain;
}

.tag-box-count .job-description > span {
	background: url(/static/images/icon/tag_count_jd.png) no-repeat center;
}

.tag-box-count .resume > span {
	background: url(/static/images/icon/tag_count_resume.png) no-repeat center;
}

.share-career + .share-career {
	margin-top: 30px;
}

.share-career-top {
    background-color: #e9e9e9;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    margin-bottom: 5px;
}

.share-career-top div {
	margin-left: 10px;
}

.share-career-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.scc-line {
    width: 100%;
    margin-bottom: 5px;
    margin-left: 5px;
}

.sccl-title {
    color: #2c7dd3;
}

.tag-statistic {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    display : -webkit-inline-flex;
	color: #173660;
    font-weight: bold;
    font-size: 20px;
}

.tag-statistic > .tag-box-count > div > span {
    width: 20px;
    height: 23px;
	margin-right: 5px;
}


.tag-statistic > .tag-box-count + .tag-box-count {
	margin-left: 25px;
}

.tag-statistic .job-description > span {
	background: url(/static/images/icon/tag_detail_count_jd.png) no-repeat center;
}

.tag-statistic .resume > span {
	background: url(/static/images/icon/tag_detail_count_resume.png) no-repeat center;
}

.matching-pass-list {
    position: absolute;
    top: 55%;
    left: 2%;
	width: 96%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px, rgba(0, 0, 0, 0.2) 0px 2px 4px -1px;
    z-index: 1;
    padding: 10px;
    font-size: 13px;
}

.matching-pass-content img {
	width: 15px;
	border-radius: 100%;
	margin: 0 3px;
}

.matching-pass-content + .matching-pass-content {
    margin-top: 5px;
}

.matching-pass-content {
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 3px;
}

span.at {
	font-size: 12px;
    color: #a9a9a9;
    align-items: center;
    display: inline-flex;
}
