.profile-drop-down {
	position: absolute;
	width: 310px;
	top: 60px;
	right: 16px;
	padding: 25px 0 30px;
	background: #fff;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border: 1px solid #E4E5E5;
	box-shadow: 0 10px 25px 0 rgba(0,0,0,0.25);
	-webkit-box-shadow: 0 10px 25px 0 rgba(0,0,0,0.25);
	-moz-box-shadow: 0 10px 25px 0 rgba(0,0,0,0.25);
	transform: translateX(50%);
}

.profile-drop-down .login-box {
	padding: 0 20px;
	text-align: left;
}

.profile-drop-down .login-box-forgotten-password-link {
	right: 20px;
}

.profile-drop-down .login-box-register-link {
	max-width: calc(100% - 40px);
	margin: 0 auto;
}

.profile-drop-down .have-no-account {
	position: relative;
	margin: 25px 0;
	text-align: center;
}

.profile-drop-down .have-no-account span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 7px;
	background: #FFFFFF;
}

.profile-drop-down .have-no-account:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #E4E5E5;
	transform: translateY(-50%);
}

.profile-drop-down .links {
	margin-top: -15px;
	padding: 0 10px;
	list-style: none;
	text-align: left;
}

.profile-drop-down .links li a {
	position: relative;
	width: 100%;
	padding: 15px 10px;
	border-radius: 10px;
}

.profile-drop-down .links li a span {
	display: block;
	position: relative;
	z-index: 10;
}

.profile-drop-down .links li a:after {
	content: '';
	position: absolute;
	left: 0;
	top: -1px;
	width: 100%;
	height: calc(100% + 2px);
	background: #F3F3F3;
	border-radius: 10px;
	z-index: 5;
	opacity: 0;
	transition: opacity 0.30s;
}

.profile-drop-down .links li a:hover:after {
	opacity: 1;
}

.profile-drop-down .links li a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 10px;
	width: calc(100% - 20px);
	height: 1px;
	background: #E4E5E5;
}