/*--- Input Field with Icon ---*/
.input-box {
	padding-bottom: 30px;
	position: relative;
}

.search-box .input-box {
	padding-bottom: 0;
}

header .form-control.search-input {
	padding-left: 30px;
}

label.error {
	font-size: 90%;
	color: rgb(255, 0, 0);
}

.input-box label.error {
	font-size: 90%;
	color: rgb(255, 0, 0);
	position: absolute;
	bottom: 0;
	margin-bottom: 0;
}

.input-box input.error,
.input-group input.error {
	border-color: rgb(255, 0, 0, 50%);
}

.form-control {
	background: #FFFFFF url(../../../media/img/icons/input.svg) no-repeat 12px center;
	padding-left: 40px;
	border-radius: 6px;
}

.form-control.no-icon {
	background: #FFFFFF;
	padding-left: 12px;
}

textarea.form-control {
	background-position: 12px 12px;
}

.form-control.user-input {
	background-image: url(../../../media/img/icons/user.svg);
}

.form-control.email-input {
	background-image: url(../../../media/img/icons/mail-grey.svg);
}

.form-control.phone-input {
	background-image: url(../../../media/img/icons/phone-grey.svg);
}

.form-control.search-input {
	background-image: url(../../../media/img/icons/search.svg);
}

.form-control.userid-input {
	background-image: url(../../../media/img/icons/user-id.svg);
}

.form-control.password-input {
	background-image: url(../../../media/img/icons/password.svg);
}

.search-box .form-control {
	box-shadow: 0px 3px 12px 0px #21252914 !important;
	border-radius: 12px;
	border: none;
	background-color: #FFF;
}

.form-group label.required::after {
	content: '*';
	color: red;
	margin-left: 5px;
}

.form-group .form-control.big-text {
	font-size: 42px;
	font-weight: 600;
	line-height: 56px;
	border: none;
	padding: 10px 0;
	background-color: #F4FBFE;
}

.tox-tinymce,
.form-group .form-control.posting-box {
	border-left: none !important;
	border-right: none !important;
	border-radius: 0 !important;
}

.tox .tox-tbtn,
.tox .tox-toolbar,
.tox .tox-toolbar__overflow,
.tox .tox-toolbar__primary,
.tox:not(.tox-tinymce-inline) .tox-editor-header,
.tox .tox-edit-area__iframe {
	background-color: #F4FBFE !important;
}

.tox .tox-edit-area::before {
	border: none !important;
	border-radius: 0 !important;
}

.content-row {
	margin: 10px 0;
	color: #212529;
}

.content-row .label {
	color: #21252980;
}

.content-row .icon-label {
	padding-left: 40px;
	color: #21252980;
	position: relative;
}

.content-row .icon-label img {
	position: absolute;
	left: 12px;
	top: 2px;
}

.address-box .content-row .icon-label {
	display: flex;
	color: #212529;
	align-items: center;
}

.address-box .content-row .icon-label img {
	top: 4px;
}

.form-group label {
	margin-bottom: 5px;
}

/** -- Drag and drop file upload -- **/
.drag-area {
	height: 480px;
	border: 1px dashed #21252980;
	border-radius: 12px;
	margin: 10px auto;
	background: #FFF;
	position: relative;
	box-sizing: border-box;
	cursor: pointer;
}

.drag-area.medium {
	height: 350px;
	padding: 10px;
}

.drag-area.small {
	height: 200px;
	padding: 10px;
}

.drag-area .action-box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	gap: 10px;
}

.drag-area .action-box.smaller {
	height: auto;
	flex-direction: row;
	box-shadow: 2px 0px 5px 0px rgb(0 0 0 / 20%);
	position: relative;
	z-index: 1;
}

.drag-area.small .action-box {
	/* flex-direction: row; */
	/* gap: 20px; */
	/* justify-content: flex-start; */
}

.drag-area.small .content-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.drag-area .image-box {
	width: 100%;
	height: 100%;
	position: absolute;
	margin: auto;
	display: none;
}

.drag-area .image-box.d-flex {
	left: 0;
	top: 0;
	align-items: center;
	justify-content: center;
}

.drag-area.blog .image-box {
	height: calc(100% - 90px);
	background-color: #FAFAFA;
	overflow-y: auto;
}

h3 {
	margin-bottom: 20px;
	font-weight: 500;
}

.drag-area .icon img {
	width: 50px;
}

.drag-area .header {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #21252988;
	width: 220px;
	text-align: center;
}

.drag-area .support {
	font-size: 12px;
	color: gray;
	margin: 10px 0 15px 0;
}

.drag-area .button {
	font-size: 20px;
	font-weight: 500;
	color: #2653A2;
	cursor: pointer;
}

.drag-area.active {
	border: 2px solid #2653A2;
}

.drag-area .image-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.drag-area .image-box img.small {
	width: 100px;
	height: auto;
}

.drag-area .image-box img.btn-close {
	width: 10px;
	height: auto;
	right: 0;
	top: 0;
	z-index: 2;
}

.add-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	.add-actions {
		flex-direction: column;
		align-items: start;
	}

	.tox .tox-toolbar--scrolling {
		flex-wrap: wrap !important;
	}

	.form-group .form-control.big-text {
		font-size: 24px;
		line-height: 32px;
	}

	input[type=date],
	input[type=time] {
		width: 150px;
	}
}