html {
	overflow-x: hidden;
}

body {
	background-repeat: repeat;
	background-size: 60%;
	background-color: #fff;
/*	font-family: 'db_airystd_med';*/
}

html,
body {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'db_airystd_bd';
	margin: 0 0 35px;
	letter-spacing: 1px;
}

#all-wrap {
	min-height: 100%;
}


/* Preload css */
#loader-wrapper {
	position: fixed;
	display: grid;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #2b3143;
	z-index: 1002;
}

@keyframes clockwise {
	to {
		transform: rotate(360deg) translateZ(0);
	}
}

@-webkit-keyframes clockwise {
	to {
		transform: rotate(360deg) translateZ(0);
	}
}

@-moz-keyframes clockwise {
	to {
		transform: rotate(360deg) translateZ(0);
	}
}

#loader-collection {
	position: absolute;
	top: 50%;
	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#loader {
	display: block;
	margin-right: auto;
	margin-left: auto;
	background-color: transparent;
	width:  8px;
	height: 8px;
	border-radius: 100%;
	box-shadow:
	     12px -12px rgba(242, 20, 39, 0.125),
	     17px     0 rgba(242, 20, 39, 0.250),
	     12px  12px rgba(242, 20, 39, 0.375),
	        0  17px rgba(242, 20, 39, 0.500),
	    -12px  12px rgba(242, 20, 39, 0.625),
	    -17px     0 rgba(242, 20, 39, 0.750),
	    -12px -12px rgba(242, 20, 39, 0.875),
	        0 -17px rgba(242, 20, 39, 1.000);

	-webkit-animation: clockwise 0.74s steps(8, end) infinite;
	-moz-animation: clockwise 0.74s steps(8, end) infinite;
	animation: clockwise 0.75s steps(8, end) infinite;
}

#loader-collection {
	display: block;
}

#loader-running {
	display: block;
	margin-top: 35px;
}

#loader-collection #loader-pic {
	max-width: 120px;
}

#loader-collection #loader-pic .image-loader {
	display: block;
	width: 100%;
}

.loaded #loader-wrapper .loader-section {
	opacity: 0;

	-webkit-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	-moz-transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all .7s .3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-pic,
.loaded #loader {
	transform: scale(0,0) rotate(35deg);

	opacity: 0;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.loaded #loader-wrapper {
	visibility: hidden;

	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);

	-webkit-transform-origin: bottom;
	-moz-transform-origin: bottom;
	transform-origin: bottom;
	/*opacity: 0;*/

	-webkit-transition: all .3s 1s ease-out;
	-moz-transition: all .3s 1s ease-out;
	transition: all .3s 1s ease-out;
}

/* Javascript Turn Off */
.no-js #loader-wrapper {
	display: none;
}

.content-collection {
	margin-top: 30px;
	margin-bottom: 60px;
}

.all-wrapper-section {
	margin-top: 50px;
	widows: 90%;
	margin-left: auto;
	margin-right: auto;
}

.all-wrapper-section {
	margin-top: 50px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.profile-collection {
	background: #fff;
	width: 100%;
	/*height: 750px;*/
	box-shadow: 0 3px 3px rgba(0,0,0,0.3);
	display: flex;
}

.profile-info-section {
	width: 70%;
	position: relative;
	display: block;
	padding: 30px;
}

.profile-image-section {
	width: 30%;
	position: relative;
	display: block;
	padding: 30px;

}

.profile-info-head {
	font-family: 'db_airystd';
	margin-bottom: 10px;
}

.profile-info-head-collection {
	margin-top: 40px;
	margin-bottom: 50px;
	border-bottom: 1px solid rgba(57,57,57,0.5);
}

.generic-line-collection {
	display: flex;
	margin-bottom: 30px;
}

.generic-info-collection {
	display: block;
	position: relative;
	width: 100%;
}

.generic-head {
	font-family: 'db_airystd';
	margin-bottom: 10px;
	font-size: 1.5rem;
	color: #393939;
}

.generic-field {
	border: 1px solid #F21529;
	display: block;
	background-color: #fff;
	color: #F21529;
	padding: 3px 5px;
	font-family: 'db_airystd';
	font-size: 1.2rem;
	width: 50%;
	box-shadow:
		10px 10px 0px 0px #F21529,
		9px  9px  0px 0px #F21529,
		8px  8px  0px 0px #F21529,
		7px  7px  0px 0px #F21529,
		6px  6px  0px 0px #F21529,
		5px  5px  0px 0px #F21529,
		4px  4px  0px 0px #F21529,
		3px  3px  0px 0px #F21529,
		2px  2px  0px 0px #F21529,
		1px  1px  0px 0px #F21529,
		0px  0px  0px 0px #F21529;

	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.generic-field:focus,
.generic-field:active {
	box-shadow:
		0px 0px  0px 0px #F21529;
	border: 1px solid #F21529;
}

.each-profile--collection {
	width: 200px;
	height: 200px;
	margin-left: auto;
	margin-right: auto;
}

.each-profile {
	width: 100%;
	height: 100%;
	border-radius: 100%;
	object-fit: cover;
}

.upload-profile-wrapper {
	text-align: center;
	position: relative;
	margin-top: 15px;
	height: 50px;
}

.upload-profile-btn,
.input-upload-profile {
	position: absolute;
	top: 50%;
	bottom: 50%;
	left: 50%;
	right: 50%;
	width: 160px;
	height: 40px;

	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.upload-profile-btn {
	z-index: 1;
	background: #F21529;
	color: #fff;
}

.input-upload-profile {
	opacity: 0;
	z-index: 2;
}

.header--collection {
	margin-bottom: 20px;
}

.header-head {
	margin-bottom: 0px;
	font-size: 1.5rem;
}

.header-underline {
	border-bottom: 3px solid #F21529;
	width: 70px;
	padding: 0;
	margin-bottom:
}

.profile-field--input,
.submit-btn{
	margin-bottom: 10px;
}

.submit-btn {
	background: #F21529;
	color: #fff;
}

.birthday-field--input {
	display: inline-block;
	width: 85%;
}

.add-on-icon {
	display: inline-block;
	width: 13%;
	text-align: center;
	background: #ddd;
	padding: 7px;
	border-radius: .25rem;
/*	border: 1px solid rgba(0,0,0,.15);*/
}




/* Show Profile Page */
.head-big-head {
	font-size: 2rem;
	margin-bottom: 0;
	color: #393939;

}

.underline-head {
	margin-left: 0;
	width: 100px;
	border-bottom: 4px solid #F21529;
}

.teller-inside--collection {
	border: 1px solid rgba(0,0,0,.1);
	box-shadow: 0px 3px 5px 0px rgba(0,0,0,.2);
	position: relative;
	background: #fff;
	margin-bottom: 15px;
	min-height: 160px;
	z-index: 1;
}

.teller-info-inside--collection {
	padding: 15px;
}

.body--collection {
	margin-top: 20px;
	margin-bottom: 20px;
}

.teller-edit--collection {
	text-align: right;
}

.teller-edit-btn {
	color: #393939;
	font-size: 1.25rem;
}

.teller-edit-btn:hover,
.teller-edit-btn:focus {
	color: #393939;
}

.teller-in-inside--collection {
	text-align: center;
}

.teller-profile--collection {
	width: 140px;
	height: 140px;
	position: relative;
	border-radius: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}

.teller-profile-display {
	width: 70%;
	height: 70%;
	border-radius: 100%;
	object-fit: cover;
}

.teller-info-detail--collection {
/*
 margin-bottom: 20px;
	margin-top: 20px;
*/
}

.teller-text {
	font-size: 1rem;
	margin-bottom: 0;
	color: #393939;
}

.teller-text-head,
.package-title {
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 10px;
}

.teller-profile-info-text {
	max-height: 75px;
	line-height: 25px;
	display: block;
	display: -webkit-box;
	margin: 0 auto;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.underline-teller-info {
	width: 100%;
	border-bottom: 1px solid rgba(0,0,0,.3);
	margin-bottom: 15px;
}

.teller-icon-detail {
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
}

.teller-icon-detail:hover,
.teller-icon-detail:focus {
	text-decoration: none;
}

.teller-icon-icon--collection {
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: #2b3143;
	margin: auto;
	border-radius: 100%;
	color: #fff;
	font-size: 1.1rem;
}

/*
.sub-teller-icon--collection {
	background-color: #3a5998;
}

.chat-teller-icon--collection {
	background-color: #00c300;
}

.webpage-teller-icon--collection {
	background-color: #533691;
}
*/

.user-preview-name {
	margin-bottom: 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: #414141;
}

.upload-profile-mock {
	margin-bottom: 0;
	color: #008CD8;
}

.teller-icon-icon--collection i{
	display: block;
	vertical-align: middle;
}

.teller-icon-detail .teller-icon-icon-text {
	font-weight: 700;
}

.teller-info-skill--collection,
.teller-sample-info--collection {
	text-align: left;
}

.teller-text-sub-info {
	float: right;
}

#good-skill-container {
	position: relative;
	min-height: 75px;

}

.have-no-skills {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 1.2rem;
	font-weight: 700;
	color:  rgba(0,0,0,.3);
}

.good-skill-btn {
	display: inline-block;
	padding: 5px 15px;
	color: #fff;
	background-color: #2b3143;
	border-radius: 20px;
	margin: 5px 5px 5px 0;
}

.good-skill-btn:hover,
.good-skill-btn:focus {
	color: #fff;
	text-decoration: none;
}

.teller-bio-text-container {
	height: 75px;
	position: relative;
	overflow-y: hidden;

/*	transition: all .3s ease-out;*/
}

.teller-bio-text-container.active {
	height: auto;
	padding-bottom: 15px;
}

.teller-readmore-bio {
	position: absolute;
	display: none;
	bottom: 0;
	right: 0;
	background-color: #fff;
	padding-left: 15px;
	padding-right: 5px;
	color: #F21529;
}

.teller-readmore-bio.active {
	display: block;
}

.teller-readmore-bio:hover,
.teller-readmore-bio:focus {
	color: #F21529;
	text-decoration: none;
}

.approve-teller--collection {
	margin-bottom: 10px;
}

.approve-icon-teller {
	display: inline-block;
	margin-right: 10px;
	width: 25px;
	height: 25px;
	line-height: 25px;
	background-color: #b7b7b7;
	color: #fff;
	text-align: center;
	border-radius: 100%;
}

.approve-icon-teller.active {
	background-color: #2adb00;
	color: #000;
}

.approve-teller--collection .teller-text {
	display: inline-block;
}

.teller-video--collection,
.teller-video-list--collection {
	display: inline-block;
	vertical-align: top;
}

.teller-video--collection {
	width: 100%;
	padding-top: 56.25%;
	position: relative;
}

.video-mock-show {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	object-fit: cover;
	display: none;
}

.video-mock-show.active {
	display: block;
}

.teller-video-list--collection {
	width: 19%;
	overflow-y: auto;
	overflow-x: hidden;
	height: 325px;
}

.teller-video-list {
	margin-bottom: 5px;
	display: block;
}

.teller-video-thumnail-container {
	display: block;
	position: relative;
}

.teller-video-thumnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.teller-head-tab--container {
	list-style-type: none;
	padding-left: 0;
/*	padding-bottom: 15px;*/
	border-bottom: 4px solid #bdbdbd;
}

.each-teller-tab-link {
	display: inline-block;
	position: relative;
/*	margin-right: 40px;*/
	padding-bottom: 15px;
	font-size: 1.35rem;
	font-weight: 700;
	color: #bdbdbd;
	width: 120px;
	text-align: center;
}

.each-teller-tab-link.active {
	color: #393939;
}

.each-teller-tab-link:hover,
.each-teller-tab-link:focus {
	cursor: pointer;
}

.each-teller-tab-underline {
	position: absolute;
	display: none;
	bottom: 0;
	width: 100%;
	border-bottom: 4px solid #F21529;
	margin-bottom: -4px;
}

.active .each-teller-tab-underline {
	display: block;
}

.each-teller-article--collection {
	display: block;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid rgba(0,0,0,.3);
}

.each-teller-article--collection:last-child {
	border-bottom: none;
}

.each-teller-article--collection:hover,
.each-teller-article--collection:focus {
	text-decoration: none;
}

.each-teller-article-thumnail-container,
.each-teller-article-content-container {
	display: inline-block;
	vertical-align: top;
}

.each-teller-article-thumnail-container {
	width: 30%;
}

.each-teller-article-content-container {
	width: 69%;
	padding-left: 15px;
}

.each-teller-article-thumnail {
	width: 100%;
	height: 180px;
	display: block;
	object-fit: cover;
}

.teller-article-create-date {
	font-weight: 700;
	color: #ff0f0f;
	line-height: 30px;
	max-height: 60px;
	display: block;
	display: -webkit-box;
	margin: 0 auto;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.teller-article-each-head {
	margin-bottom: 0;
}

.teller-text-article {
	line-height: 25px;
	max-height: 125px;
	display: block;
	display: -webkit-box;
	margin: 0 auto;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.package-select,
.package-price {
	font-size: 1rem;
}

.each-tag-rate-star-container {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 15px;
}

.each-tag-rate-star-btn {
	background-color: transparent;
	border: 1px solid #929292;
}

.each-tag-rate-star-btn:hover,
.each-tag-rate-stat-btn:focus {
	cursor: pointer;
}

.count-star-tag-rate-container {
	display: inline-block;
	height: 25px;
	vertical-align: middle;
}

.count-star-tag-rate {
	width: 15px;
	height: auto;
	vertical-align: middle;
}

.count-tag-rate {
	color: #929292;
	font-weight: 700;
	vertical-align: middle;
	line-height: 25px;
}

.teller-each-review--collection {
	margin-top: 15px;
/*	min-height: 500px;*/
}

.teller-each-review-container {
	margin-bottom: 15px;
	display: none;
}

.teller-each-review-container.active {
	display: block;
}

.teller-inner-each-review {
	border: 1px solid #929292;
	padding: 15px;
}

.teller-inline-each-review {
	margin-bottom: 10px;
}

.teller-inline-each-review:last-child {
	margin-bottom: 0;
}

.each-rate-star-teller-inline {
	width: 15px;
	height: 15px;
	margin-right: 3px;
	background: url("../image/v02/rate-star-empty.png");
	background-size: cover;
	display: inline-block;
}

.each-rate-star-teller-inline.active {
	background: url("../image/v02/rate-star-1.png");
	background-size: cover;
}

.teller-tag-review-from{
	font-size: 1.1rem;
	text-align: right;
}

.teller-review-detail {
	font-size: 1rem;
	max-height: 50px;
	line-height: 25px;
	display: block;
	display: -webkit-box;
	margin: 0 auto;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.user-review-profile-img-container {
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-right: 5px;
}

.user-review-profile-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.user-review-profile-text-container {
	display: inline-block;
	vertical-align: middle;
}

.user-review-profile-text {
	max-width: 100px;
	display: block;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.past-review-profile-text {
	display: block;
	vertical-align: middle;
	font-size: .9rem;
	line-height: 30px;
}

.tab-pane {
	display: none;
	min-height: 500px;
}

.mock-empty-content {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	color: #c1c1c1;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}

.suggest--collection {
	display: block;
	text-align: center;
	padding: 20px;
}

.suggest-show-btn {
	font-size: 1.1rem;
	margin-left: 15px;
	margin-right: 15px;
	background: #533691;
	color: #fff;
	font-weight: 700;
	display: inline-block;
	min-width: 250px;
	padding: 12px;
}

.suggest-show-btn:hover,
.suggest-show-btn:focus {
	color: #fff;
}

#register {
	background: #2b3142;
}

.footer-bottom-wrap {
	margin-top: 150px;
}


.teller-none-content {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: auto;
	margin-bottom: 0;
	font-size: 1.2rem;
	color: #c1c1c1;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}

.upload-cover-btn--collection {
	position: absolute;
	width: 200px;
	top: 20px;
	left: 20px;
	z-index: 2;
}

.upload-cover-image-btn {
	position: absolute;
	background-color: #000;
	border: 1px solid #fff;
	color: #fff;
}

.submit-cover-btn {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 0;
	opacity: 0;
}

.submit-cover-btn:hover,
.submit-cover-btn:focus {
	cursor: pointer;
}



/* User Edit Profile Page css */
.teller--collection {
	position: relative;

}

.button-toggle-field--collection {
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -15px;
}

.all-user-box-container {
	padding-top: 15px;
	padding-bottom: 15px;
	border: 1px solid rgba(0,0,0,.2);
	background-color: #fff;
}

.upload-profile-image-btn,
.submit-profile-image-btn{
	position: absolute;
	top: 50%;
	left: 50%;
	margin: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;

	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}

.submit-profile-image-btn {
	opacity: 0;
	z-index: 2;
}

.submit-profile-image-btn:hover,
.submit-profile-image-btn:focus {
	cursor: pointer;
}

.upload-profile-image-btn {
	z-index: 1;
	opacity: 0;
	background-color: transparent;
	color: #fff;
	font-size: 2.5rem;
	opacity: 1;
	background: rgba(0,0,0,.1);
}

.simple-upload-img {
	width: 100%;
}

.icon-id-status-container {
	position: absolute;
	top: 0;
	right: 0;
	padding: .5rem .75rem;
	color: #393939;
}

.icon-id-status-container.active {
	color: green;
}

/*
.upload-profile-image-btn.active {

}
*/

.user-patch-header--collection {
	border-bottom: 1px solid #929292;
	margin-bottom: 15px;
	position: relative;
}

.user-patch-body--collection {
	padding-top: 15px;
	padding-bottom: 15px;
/*	border-bottom: 1px solid #e0e0e0;*/
}

.user-patch-body--collection:last-child {
	border-bottom: none;
}

.only-common-user.hide-common-line {
	display: none;
}

.user-patch-label--collection,
.user-patch-input--collection {
	display: inline-block;
}

.user-patch-label--collection {
	width: 25%;
	vertical-align: top;
}

.user-patch-input--collection {
	width: 73%;
	vertical-align: top;
	position: relative;
}

.user-patch-input {
/*	border: none;*/
	border: 1px solid #dadada;
}

.user-face-pic-patch--collection {
	display: inline-block;
	vertical-align: middle;
}

.user-face-pic-patch-container {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	width: 80px;
	height: 80px;
	border: 2px solid #929292;
	margin-right: 5px;
}

.user-face-pic-patch {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.user-face-pic-btn,
.user-face-pic-upload {
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	top: 0;
	left: 0;
}

.user-face-pic-btn {
	color: #929292;
	font-size: 1.7rem;
}

.user-face-pic-upload {
	opacity: 0;
}

.user-patch-submit-body--collection {
	text-align: center;
}

.user-all-patch-submit {
	background: #F21529;
	color: #fff;
	width: 150px;
	font-size: 1.2rem;
	padding: .75rem;
}

.teller-patch-header,
.just-for-horo--collection,
.just-for-horo {
	display: inline-block;
}

.teller-patch-header,
.just-for-horo--collection {
	width: 100%;
}

.just-for-horo--collection {
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
}

.just-for-horo {
	margin-left: 5px;
	display: none;
}

.just-for-horo.active {
	display: block;
}

.user-patch-about-input {
/*	border: none;*/
	border: 1px solid #dadada;
	min-height: 25px;
	height: auto;
}

.edit-last-warning {
	color: #737373;
	font-size: .9rem;
	display: none;
}

.edit-last-warning.active {
	display: block;
}

.tt-cursor {
	background-color: #cce6ff;
}

.time-input-btn {
	background: transparent;
	border: none;
}

.each-skills-checkbox-container {
	display: inline-block;
	margin-right: 10px;
	margin-left: 10px;
}

.each-skills-checkbox,
.each-skills-checkbox-container .teller-text {
	display: inline-block;
	vertical-align: middle;
}

.teller-text-profile {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 20px;
	color: #8c8c8c;
}

.teller-progressing-form-container {
	color: #8c8c8c;
	margin-top: 30px;
}

.progressing-line-text {
	font-size: 2.5rem;
	margin-bottom: 0;
	font-weight: 700;
}

.progressing-msg-text {
	font-weight: 700;
	margin-bottom: 0;
}

.progressing-bar-container {
	display: flex;
}

.progressing-bar {
	flex: 33.3333;
	height: 15px;
	padding: .25rem .1rem;
	margin: 15px 0;
}

.progressing-bar .progressing-bar-in {
	background-color: #c1c1c1;
	border-radius: 0.15rem;
	width: 100%;
	height: 100%;
}

.progressing-bar.step1 .progressing-bar-in {
	background-color: red;
}

.progressing-bar.step2 .progressing-bar-in {
	background-color: #F21529;
}

.progressing-bar.step3 .progressing-bar-in {
	background-color: #269f09;
}

.progressing-warn-msg {
	font-size: 1rem;
}


/* Teller Conditions */
.all-condition-box--collection {
	padding: 15px;
	text-align: center;
}

.condition-box--collection {
	margin-bottom: 20px;
	background: #f2f2f2;
	padding: 15px;
	max-height: 400px;
	overflow-y: overlay;
	overflow-x: hidden;
	text-align: justify;
}

.condition-box--collection::-webkit-scrollbar-track {
/*	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
	border-radius: 10px;
	background-color: #f2f2f2;
}

.condition-box--collection::-webkit-scrollbar {
	width: 12px;
	background-color: #ddd;
}

.condition-box--collection::-webkit-scrollbar-thumb {
	border-radius: 10px;
/*	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
	background-color: #ddd;
}

.condition-box--collection::-webkit-scrollbar-thumb:window-inactive {
		background-color: #ddd;
}

.each-check-condition-box--collection {
	margin-bottom: 20px;
}

.teller-text-check {
	display: inline-block;
}

.check-condition-btn2 {
	background: #F21529;
}

.check-condition-btn2.disable {
	pointer-events: none;
	background: #cecece;
}

.button-toggle-btn {
	position: relative;
	border: 1px solid rgba(0,0,0,.1);
	background-color: #fff;
	border-radius: 0;
	color: #212529;
	width: 150px;
	z-index: 1;
	font-size: 1.1rem;
	height: 55px;
}

.button-toggle-left {
	margin-left: -5px
}

.button-toggle-btn:hover,
.button-toggle-btn:focus {
	cursor: pointer;
	box-shadow: none;
}


.button-toggle-btn.active {
	background: #fff;
	color: #F21529;
	border-bottom: 5px solid #F21529;
}

.user-edit--collection {
	display: none;
}

.user-edit--collection.active {
	display: block;
}


.evidence-img {
	float: left;
	color: #393939;
	text-decoration: underline;
/*	width: calc(100% - 120px);*/
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.evidence-img:hover,
.evidence-img:focus {
	color: #F21529;
}

.evidence-status {
	float: right;
}

.evidence-status span {
	display: inline-block;
	height: 16px;
	width: 16px;
	line-height: 1rem;
	height: 1rem;
	width: 1rem;
	border-radius: 100%;
	color: #cecece;
	font-size: 1rem;
}

.evidence-status span.active {
	color: #2adb00;
	background-color: #000;
}

/* Teller Register */
.user-patch-input--collection {
	position: relative;
}

.user-id-card-input-container {
	position: relative;
	width: 20%;
	height: 40px;
	display: inline-block;
	vertical-align: middle;
}

.upload-id-file-container {
	display: inline-block;
	vertical-align: middle;
	width: 79%;
}

.user-id-card-input-btn,
.user-id-card-input-upload {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.user-id-card-input-btn {
	background-color: transparent;
	color: #F21529;
	border:  1px solid #F21529;
}

.user-id-card-input-upload {
	z-index: 2;
	opacity: 0;
}

.upload-id-file-name,
.upload-id-file-sample-file {
	display: inline-block;
}

.upload-id-file-name {
	width: 78%;
	padding-left: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: middle;
}

.upload-id-file-sample-file {
	width: 20%;
	color: #8c8c8c;
	text-decoration: underline;
}

.upload-id-file-sample-file:hover,
.upload-id-file-sample-file:focus {
	color: #8c8c8c;
}

.same-addess-text {
	display: inline-block;
}

.user-patch-label span,
.last-warning {
	color: red;
}

.evidence-status.remark-finish,
.evidence-status.remark-finish span,
.user-patch-label span.remark-finish {
	color: green;
}

.evidence-status.remark-pending,
.evidence-status.remark-pending span,
.user-patch-label span.remark-pending {
	color: #ff8d00;
}

.evidence-status.remark-pending,
.evidence-status.remark-pending span,
.user-patch-label span.remark-pending-2 {
	color: #969696;
}

.last-warning span {
	text-decoration: underline;
}

.user-all-patch-cancel {
	background: #797979;
	margin-right: 20px;
}

.user-patch-label,
.user-patch-input{
	font-size: 1rem;
}

.another-skill-input-container {
	display: none;
}

.another-skill-input-container.active {
	display: block;
}

.memo-show-hide-container {
	position: relative;
	width: 100%;
}

.memo-show-hide {
	position: absolute;
	right: 0;
	top: 0;
	color: rgba(0,0,0,.6);
	opacity: 0;
	visibility: hidden;

	transition: .2s all ease-out;
	-webkit-transition: .2s all ease-out;
	-moz-transition: .2s all ease-out;
}

.memo-show-hide.show {
	opacity: 1;
	visibility: visible;
}

.change-memo-note-container {
	margin-top: 20px;
}

.upload-input-verify-collection {
	margin-top: 15px;
	display: none;
}

.upload-input-verify-collection.active {
	display: block;
}

.resend-email-btn {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	color: #fff;
	background-color: #5095E9;
}

.resend-email-btn:hover,
.resend-email-btn:focus {
	cursor: pointer;
}

@media(min-width: 320px) {
	.each-teller-tab-link {
		width: 32%;
		font-size: 1.1rem;
	}

	.each-teller-article-thumnail-container,
	.each-teller-article-content-container {
		width: 100%;
	}

	.each-teller-article-content-container {
		padding-left: 0;
		padding-top: 15px;
	}

	.teller-text-article {
		-webkit-line-clamp: 3;
	}

	.each-tag-rate-star-container {
		margin-right: 0;
		margin-bottom: 5px;
	}

	.count-star-tag-rate {
		width: 10px;
	}

	.teller-article-each-head {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		font-size: 1rem;
	}

	.teller-article-create-date {
		text-align: right;
		font-weight: 500;
		font-size: .9rem;
		padding-right: 5px;
	}

	.user-review-profile-text {
		max-width: 60px;
	}

	.each-tag-rate-star-btn {
		padding: 0.25rem .5rem;
	}

	.suggest-show-btn {
		min-width: 220px;
		margin-bottom: 15px;
		font-size: 1rem;
	}



	/* Edit Profile	*/
	.user-face-pic-patch-container {
		width: 50px;
		height: 50px;
		margin-bottom: 5px;
	}

	.user-face-pic-btn {
		font-size: 1rem;
	}

	.user-face-remove-image-btn {
		position: absolute;
		top: -12px;
		right: -5px;
		background: red;
		color: #fff;
		width: 20px;
		height: 20px;
		line-height: 20px;
		border-radius: 100%;
		text-align: center;
	}

	.user-face-remove-image-btn:hover,
	.user-face-remove-image-btn:focus {
		cursor: pointer;
	}

	.head-big-head {
		font-size: 1.75rem;
	}

	.teller-text,
	.user-patch-label,
	.user-patch-input,
	.user-patch-about-input{
		font-size: .75rem;
	}

	.user-id-card-input-container {
		width: 50%;
	}

	.upload-id-file-container {
		width: 47%;
	}

	.upload-id-file-name,
	.upload-id-file-sample-file{
		font-size: 0.75rem;
		text-align: right;
		width: 100%;
	}

	.user-all-patch-cancel {
		margin-right: 0;
	}

	.user-all-patch-submit {
		width: 49%;
		font-size: 0.9rem;
	}

	.button-toggle-btn {
		font-size: 0.8rem;
		width: 33.33333333%;
		text-align: center;
		flex: 33.33333333%;
		white-space: normal;
	}


	.teller-text-profile {
		font-size: 1rem;
	}

	.all-user-box-container {
		margin-top: 15px;
	}

	.user-patch-label--collection,
	.user-patch-input--collection {
		width: 100%;
	}

	.teller-text, .user-patch-label {
		margin-bottom: 0;
	}

	.label-info,
	.good-skill-btn,
	.memo-show-hide.show {
		font-size: 0.75rem;
	}

	.user-patch-body-profile-desktop {
		display: none;
	}

	.teller-info-inside--collection {
		padding: 0;
	}

	.button-toggle-field-m--collection {
		display: flex;
		justify-content: space-between;
	}

	.button-toggle-field-d--collection {
		display: none;
	}

	.profile-mobile-img-container {
		display: block;
		width: 100%;
	}

	.profile-mobile-img-con-container,
	.profile-mobile-img-text-container {
		display: inline-block;
		vertical-align: middle;
	}

	.profile-mobile-img-con-container {
		width: 25%;
	}

	.profile-mobile-img-text-container {
		width: 70%;
		padding-left: 15px;
	}

	#user-preview-name-m {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		font-size: 1.1rem;
	}

	.teller-profile-display-m {
		width: 82px;
		height: 82px;
	}


}


@media(min-width: 480px) {
	.each-teller-article-thumnail {
		height: 220px;
	}
}

@media(min-width: 768px) {
	.each-teller-article-thumnail-container {
		width: 40%;
	}

	.each-teller-article-content-container {
		width: 60%;
		padding-left: 15px;
	}

	.tab-pane {
		min-height: 400px;
	}

	.each-teller-article-thumnail {
		height: 170px;
	}

	.teller-text-article {
		-webkit-line-clamp: 4;
	}

	.each-teller-tab-link {
		width: 25%;
	}



	/* Edit Profile	*/
	.user-face-pic-patch-container {
		width: 80px;
		height: 80px;
	}

	.user-face-pic-btn {
		font-size: 1.7rem;
	}


	.user-all-patch-submit {
		width: 150px;
		font-size: 1.2rem;
		margin-right: 15px;
	}

	.user-id-card-input-container {
		width: 20%;
	}

	.upload-id-file-container {
		width: 79%;
	}

	.upload-id-file-name {
		width: 78%;
		text-align: left;

	}

	.upload-id-file-sample-file {
		width: 20%;
	}

	.button-toggle-field-m--collection {
		display: none;
	}

	.button-toggle-field-d--collection {
		display: block;
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(0,0,0,.2);
	}

	.teller-progressing-form-container {
		margin-top: 15px;
	}

	.button-toggle-btn {
		font-size: 1.15rem;
		width: 100%;
		border: none;
		text-align: left;
		padding: 0;
	}

	.button-toggle-btn.active {
		border-bottom: none;
		font-weight: 600;
	}


	.all-user-box-container {
		margin-top: 0px;
	}

	.teller-text-profile {
		font-size: 1.3rem;
	}

	.user-patch-input--collection {
		width: 73%;
	}

	.user-patch-label--collection {
		width: 25%;
	}

	.user-patch-body-profile-desktop {
		display: block;
	}

	.teller-info-inside--collection {
		padding: 15px;
	}

	.profile-mobile-img-container {
		display: none;
	}

	.teller-profile-display {
		width: 100px;
		height: 100px;
	}
}

@media(min-width: 1024px) {
	.teller-text-article {
		-webkit-line-clamp: 5;
	}

	.each-teller-article-thumnail {
		height: 180px;
	}

	.head-big-head {
		font-size: 2rem;
	}

	.teller-text,
	.user-patch-label,
	.user-patch-input,
	.upload-id-file-sample-file,
	.user-patch-about-input{
		font-size: 1rem;
	}

	.edit-last-warning {
		font-size: .9rem;
	}

	.label-info,
	.good-skill-btn,
	.memo-show-hide.show{
		font-size: .95rem;
	}

	.teller-profile-display {
		width: 120px;
		height: 120px;
	}
}

@media(min-width: 1280px) {
	.teller-profile-display {
		width: 130px;
		height: 130px;
	}
}
