/*=========================Custom for flat-ui css=========================*/
/* input[type=text], .input-group-btn>.btn{
	border-color: #89C4F4;
} */
.form-control{
	border-radius: 0;
}
.input-group-lg>.form-control, .input-group-lg>.input-group-addon, .input-group-lg>.input-group-btn>.btn, .input-group-lg>.select2-search input[type=text]{
	border-radius: 0px;
}
.form-control, .select2-search input[type=text]{
	border: none;
}
.input-group-btn .btn{
	/* border: none; */
	color: #2D3444;
}
.form-group.focus .input-group-btn .btn,
.input-group.focus .input-group-btn .btn {
	color: #E30037;
}
.form-group.focus .input-group-btn .btn:hover,
.input-group.focus .input-group-btn .btn:hover {
	color: #FF174F;
}
.search-shadow{
	transition: .3s;
	padding: 4px;
}
.search-shadow.shadow{
	padding: 4px;
	transition: .3s;
}
.btn{
	border-radius: 0;
}
.search-field{
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 1.3em;
	transition: .3s all;
	 box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2), 0 4px 18px 0 rgba(0, 0, 0, 0.19); 
	/*box-shadow: 0 1px 1px rgba(0, 0, 0, .075);*/
	transition: .3s box-shadow;
	border: 1px solid #dedede;
}
.search-field:focus{
	/* box-shadow: 0 0px 4px 0 rgba(117, 54, 47, 0.2), 0 4px 18px 0 rgba(117, 54, 47, 0.19); */
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	border: 1px solid #dedede;
}

.guru-link{
	position: absolute;
	top: 20px;
	/* padding: 6px 0; */
	/* padding-left: 30px; */
	transition: .3s all;
	color: #333;
	cursor: pointer;
	/* text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3); */
}
.guru-link.active{
	display: none;
}
/* .guru-link::after{
	content: ' Guru';
	opacity: 0;
	transition: .2s all;
} */
/* .guru-link:hover{
	padding-left: 0;
	padding: 6px 12px;
	color: #fff;
	background: #276BB0;
} */
/* .guru-link:hover::after{
	opacity: 1;
} */

.profile-photo{
	position: absolute;
	/* left: 20px; */
	top: 20px;
	width: 50px; height: 50px;
	overflow: hidden;
	border-radius: 50%;
	border: 2px solid #fff;
	padding: 0;
	z-index: 2;
	display: none;
}
.profile-photo.active{
	display: block;
}
.profile-photo img{
	width: 60px;
	position: absolute;
	display: inline-block;
	margin: 0 auto;
}

.account-menu{
	position: absolute;
	/* left: 20px; */
	top: 85px;
	width: 300px; height: 150px;
	background: #fff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	transition: .3s all;
}
.account-menu::after{
	content: " ";
	position: absolute;
	bottom: 100%;
	/* left: 6%; */
	border-width: 8px;
	border-style: solid;
	border-color: transparent transparent #fff transparent;
}
.account-menu.active{
	visibility: visible;
	opacity: 1;
}

.account-menu-left{
	width: 29.99999%;
	height: 100%;
	float: left;
	position: relative;
}
.account-menu-left .profile-photo{
	width: 80px;
	height: 80px;
	top: 20px;
	border: none;
	position: relative;
	display: block;
	margin: 0 auto;
	left: 0;
}
.account-menu-right{
	width: 69.99999%;
	height: 100%;
	float: left;
	position: relative;
	padding: 20px 10px;
}
.account-menu-right .profile-photo{
	width: 70px;
	height: 70px;
	border: none;
}
.account-menu-right p{
	padding: 0;
	margin: 0;
}
.account-menu-right p:nth-child(1){
	font-size: 17px;
}
.account-menu-right p:nth-child(2){
	font-size: 14px;
}

.account-signout,
.account-dashboard{
	width: 49.99999%;
	position: absolute;
	bottom: 0;
	background: #02A8DB;
	border: none;
	padding: 6px 12px;
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-size: 15px;
	font-weight: 700;
	z-index: 1;
	transition: .3s all;
	text-align: center;
}
.account-signout{
	right: 0;
}
.account-dashboard{
	left: 0;
}
.account-signout:hover,
.account-dashboard:hover{
	background: #07B4E9;
	color: #EDEDED;
}
.account-signout:active,
.account-dashboard:active{
	background: #18A2CC;
}