.ui-login {
	display: block;
	position: relative;
}
.ui-login .uil-connection-menu {
	line-height: 60px;
	text-transform: uppercase;
	font-size: 14px;
	color: #fff;
	display: block !important;
}

/* ATTENTION : lié au thème */
.header-fixed .ui-login .uil-connection-menu {
	line-height: 60px;
}
.ui-login .uil-connection-btn {
	padding: 2px 15px 5px 15px;
	border-radius: 10px;-moz-border-radius:10px;-webkit-border-radius:10px;-o-border-radius:10px;
	cursor: pointer;
	text-align: center;
	background-color: #ef920b;
}
.ui-login .uil-actions-btn {
	border-radius: 10px;-moz-border-radius:10px;-webkit-border-radius:10px;-o-border-radius:10px;
	cursor: pointer;
	text-align: center;
	background-color: #009ee0;
}
@media only screen and (min-width: 1025px) and (max-width: 1359px) {
	.ui-login .uil-connection-btn,
	.ui-login .uil-actions-btn {
		padding: 2px 7px 5px 7px !important;
	}
}

.ui-login .uil-panel {
	position: absolute;
	z-index: 101;
	top: 100%;
	right: 0;
	color: #564a44;
	background-color: rgba(255,255,255,.9);
	border-radius: 0 0 4px 4px;-moz-border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-o-border-radius:0 0 4px 4px;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	width: 260px;
}
.ui-login .uil-panel-footer {
	padding: 0;
	border-radius: 0 0 4px 4px;-moz-border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-o-border-radius:0 0 4px 4px;
	text-align: center;
}
.ui-login label {
	font-size: 13px;
}
.ui-login .uil-form-group {
	width: 90%;
	padding: 1%;
	text-align: center;
	margin-left: 4%;
	padding-bottom: 20px;
}
.ui-login .form-control {
	border: 1px solid #bfbcbb;
	padding: 5px;
	background-color: #e2e5e8;
}
.ui-login .uil-submit-btn {
	color: #fff;
	background-color: #564a44;
}
.ui-login .uil-forgotten-pwd-btn {
	padding: 10px;
	width: 100%;
	border: none;
	color: #fff;
	background-color: rgb(239,146,11);
}
.ui-login .msg {
	width: 100%;
	margin: 0;
	padding: 1%;
	font-size: 12px;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.ui-login .error {
	background-color: #ff0000;
}
.ui-login .success {
	background-color: #518dc5;
}
.ui-login .has-error {
	border: 1px solid #ff0000;
}

.uil-actions-list {
	background: #4b4e53;
	text-transform: uppercase;
	margin: 0;
	border-left: 0;
	clip: inherit;
	pointer-events: inherit;
	min-width: 250px;
	opacity: 1;
	z-index: 1;
}

.uil-actions-list li a{
	color: #d3d3d3;
	display: block;
	min-width: 160px;
	text-decoration: none;
	line-height: 24px;
	white-space: nowrap;
}

.uil-actions-list li a:hover {
	color: #fff;
	padding-left: 7px;
	transition: all 0.2s ease 0s;
}

@media screen and (min-width: 1025px) {
	#site-auth {
		display: block;
		float: right;
		height: 100% !important;
	}
	.ui-login .uil-close,
	.ui-login .uil-open {
		display: none !important;
	}

	.ui-login .uil-actions-btn {
		padding: 5px 15px;
	}

	.uil-actions-list {
		position: absolute;
		left: 0;
		padding: 10px 10px 10px 24px;
	}

	.uil-actions-list li a{
		padding: 9px 9px 9px 0;
	}
}
@media screen and (max-width: 1024px) {
	/* ATTENTION : lié au thème */
	.page-has-onepage #cshero-header-navigation #site-navigation {
		position: relative !important;
	}
	.ui-login {
		display: block;
		width: 100%;
	}
	.ui-login .uil-panel {
		position: relative;
		width: 100%;
	}
	.ui-login .uil-connection-menu {
		line-height: 20px !important;
		padding: 17px;
		text-align: left;
		background-color: #ef920b;
	}
	.ui-login .uil-connection-menu.logged {
		background-color: #009ee0 !important;
	}
	.ui-login .uil-close,
	.ui-login .uil-open {
		width: 30px;
		height: 30px;
		line-height: 30px;
		float: right;
		font-size: 20px;
	}
	.ui-login .uil-connection-btn {
		padding: 0;
	}
	.ui-login .uil-connection-btn,
	.ui-login .uil-panel-footer {
		border-radius: 0;-moz-border-radius: 0;-webkit-border-radius: 0;-o-border-radius: 0;
	}

	.uil-actions-list {
		position: relative;
		background: #3e4045;
		box-shadow: none;
		padding: 0;
	}

	.uil-actions-list li {
		float: none;
		list-style: none;
		margin: 0;
		text-align: left;
	}

	.uil-actions-list li a{
		padding: 15px 9px 15px 27px;
	}
}

/*
    Original version: http://www.bootply.com/128062
    This version adds support for IE 10+ and Firefox.
*/
.spinner-animate {
    -animation: spin .7s infinite linear;
    -ms-animation: spin .7s infinite linear;
    -webkit-animation: spinw .7s infinite linear;
    -moz-animation: spinm .7s infinite linear;
}
@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}
@-webkit-keyframes spinw {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}
@-moz-keyframes spinm {
    from { -moz-transform: rotate(0deg);}
    to { -moz-transform: rotate(360deg);}
}
