/*================================================================================
	Item Name: Frest HTML Admin Template
	Version: 1.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */

.icon-list .icon{
	padding: 5px;
	border: 1px solid #ccc;
	border-right-width: 0;
	cursor: pointer;
}
.icon-list .icon:hover{
	background-color: #ccc;
}
.icon-list .icon.active{
	background-color: #5A8DEE;
}
.icon-list .icon:first-child{
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.icon-list .icon:last-child{
	border-right-width: 1px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.icon-list i{
	font-size: 1.7rem;
	display: flex;	
}

.limited-popup-content{
	max-height: 500px;
	overflow-y: auto;
}

/* TASK LIST */
.task-list{
	position: relative;
}
.task-list-item{
	position: relative;
	box-shadow: -8px 12px 18px 0 rgb(25 42 70 / 13%);
}
.task-list-item > .icon{
	display: flex;
	align-items: center;
    justify-content: center;
	position: absolute;
	border: 1px solid #ccc;
	height: 30px;
	width: 30px;
	border-radius: 50px;
	background-color: white;
	left: 0;
    z-index: 2;
}
.task-list-item-status{
	width: 15%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.task-list-item-status-circle{
	border: 1px solid #DFE3E7;
	width: 30px;
	height: 30px;
	border-radius: 30px;
}
.task-list-item-create{
	width: 90%;
}
.task-list-item-content{
	padding: 5px;
	position: relative;
}
.task-list-item-content-name{
	flex-basis: 90%;
}
.task-list-item-menu{
	flex-basis: 10%;
	text-align: right;
}
.task-list-item-desc{
	color: white;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 1rem 2rem;
}
.add-task{
	padding: 1rem 2rem;
	border-radius: 5px;
}
.task-list-item-content-user,
.task-list-item-content-date-start{
	font-size: 10px;
}

.parsley-errors-list{
	margin: 0px!important;
}

/*.has-icon-left .form-control-position i{*/
/*	left: -10px!important;*/
/*}*/

/* END TASK LIST */

/* FORM */
.picker__holder.top{
	/*bottom: 46px;*/
}
.modal-footer{
	padding: 1.3rem 1.3rem!important;
}
.picker--opened.top::before{
	transform: rotateZ(224deg);
	top: -52px;
}
/* END FORM */
.dropdown-menu-wrapper{
	position: absolute;
	right: 10px;
}
.hover_color :hover{
	background-color: #F2F4F4;
}

.comment_area {
	display: grid;
	grid-template-columns: 5% 95%;
	grid-template-rows: 1fr;
	gap: 94px 0px;
	grid-template-areas:
    "one two";
}
.one { grid-area: one; }
.two { grid-area: two; }

.avatar_area [class*="avatar-status-"] {
	border-radius: 50%;
	width: 11px;
	height: 11px;
	position: absolute;
	right: 22px;
	bottom: 0;
	border: 1px solid #FFFFFF;
}
.avatar_area .avatar-status-online {
	background-color: #39DA8A;
}
.avatar_area {
	white-space: nowrap;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	color: #FFFFFF;
	display: inline-flex;
	font-size: 0.8rem;
	text-align: center;
	vertical-align: middle;
	margin: 5px 0px 5px 5px;
}

.avatar_area img {
	border-radius: 50%;
}