* {
	margin: 0;
	padding: 0;
}

.clearfix:after {
	content: '';
	display: table;
	width: 100%;
	clear: both;
}

.myModa {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(37,40,48,.7);
	z-index: 9999
}

.myModa .myAlertBox {
	width: 300px;
	border-radius: 5px;
	border: 1px solid #d9d9d9;
	background: #fff;
	overflow: hidden;
	margin: 0 auto;
}

.myModa .myAlertBox h6 {
	background: #f2f2f2;
	padding: 10px;
	line-height: 20px;
	font-size: 16px;
	text-align: center;
}

.myModa .myAlertBox p {
	padding: 20px;
	line-height: 26px;
	font-size: 14px;
	color: #9199A1;
	text-align: center;
}

.myModa .myAlertBox .btn {
	cursor: pointer;
	width: 80px;
	line-height: 36px;
	border-radius: 5px;
	text-align: center;
	font-size: 16px;
	margin: 0 auto;
	margin-bottom: 20px;
	background: #2990f7;
	color: #fff;
}

.myModa .myAlertBox .col2 .col {
	width: 120px;
	float: left;
}

.myModa .myAlertBox .col2 .col .btn {
	width: 100%;
}

.myModa .myAlertBox .col2 .col .btn.exit {
	color: #333;
	background-color: #f2f2f2;
}

.myModa .myAlertBox .col2 {
	padding: 0 20px;
}

.myToast {
	position: fixed;
	z-index: 9999;
}

.myToast #caseMarron {
	color: #fff;
	background: #666;
	background-color: rgba(0,0,0,0.4);
	height: 120px;
	width: 130px;
	padding-top: 10px;
	float: left;
	border-radius: 5px;
}

.myToast #caseMarron #load {
	color: #fff;
	font-family: calibri;
	text-align: center;
	margin-top: 40px;
}

.myToast #boule {
	height: 10px;
	width: 10px;
	position: absolute;
	top: 90px;
	left: 10px;
	background-color: #ddd;
	border-radius: 50%;
	animation: boule 2s infinite;
	-webkit-animation: boule 2s infinite;
}

@keyframes boule {
	0% {
		left: 10px;
		opacity: 0;
	}

	50% {
		height: 15px;
		width: 15px;
		opacity: 1;
	}

	100% {
		left: 120px;
		opacity: 0;
		height: 10px;
		width: 10px;
	}
}

@-webkit-keyframes boule {
	0% {
		left: 10px;
		opacity: 0;
	}

	50% {
		height: 15px;
		width: 15px;
		opacity: 1;
	}

	100% {
		left: 110px;
		opacity: 0;
		height: 10px;
		width: 10px;
	}
}

.jq-alert {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,.3);
	z-index: 10000;
}

.jq-alert .alert {
	background-color: #FFF;
	width: 80%;
	height: auto;
	border-radius: 4px;
	overflow: hidden;
}

.jq-alert .alert .title {
	position: relative;
	margin: 0;
	font-size: 16px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-weight: normal;
	color: rgba(0,0,0,.8);
}

.jq-alert .alert .content {
	padding: 15px;
	font-size: 14px;
	color: rgba(0,0,0,.6);
}

.jq-alert .alert .content .prompt {
	width: 100%;
}

.jq-alert .alert .content .prompt .prompt-content {
	font-size: 13px;
	color: rgba(0,0,0,.54);
}

.jq-alert .alert .content .prompt .prompt-text {
	background: none;
	border: none;
	outline: none;
	width: 100%;
	height: 30px;
	box-sizing: border-box;
	margin-top: 10px;
	background-color: #FFF;
	border: 1px solid #dcdcdc;
	text-indent: 5px;
}

.jq-alert .alert .content .prompt .prompt-text:focus {
	border: 1px solid #2196F3;
	background-color: rgba(33,150,243,.08);
}

.jq-alert .alert .fd-btn {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	justify-content: center;
	align-items: center;
}

.jq-alert .alert .fd-btn:after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #F3F3F3;
}

.jq-alert .alert .fd-btn a {
	width: 100%;
	height: 50px;
	font-size: 14px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: rgba(0,0,0,.8);
}

.jq-alert .alert .fd-btn a.cancel {
	position: relative;
	color: rgba(0,0,0,.5);
}

.jq-alert .alert .fd-btn a.cancel:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 0;
	width: 1px;
	height: 30px;
	background-color: #F3F3F3;
}

.jq-alert .alert .fd-btn a.confirm {
	color: #03ac65;
}

.jq-alert .alert .fd-btn a.confirm:active {
	background-color: #2990f7;
	color: #FFF;
}

.jq-toast {
	z-index: 999999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}

.jq-toast .toast {
	max-width: 80%;
	padding: 10px 15px;
	background-color: rgba(0,0,0,.6);
	color: #FFF;
	border-radius: 4px;
	font-size: 15px;
}

@-webkit-keyframes sk-circleFadeDelay {
	0%,39%,100% {
		opacity: 0
	}

	40% {
		opacity: 1
	}
}

@-moz-keyframes sk-circleFadeDelay {
	0%,39%,100% {
		opacity: 0
	}

	40% {
		opacity: 1
	}
}

@-o-keyframes sk-circleFadeDelay {
	0%,39%,100% {
		opacity: 0
	}

	40% {
		opacity: 1
	}
}

@keyframes sk-circleFadeDelay {
	0%,39%,100% {
		opacity: 0
	}

	40% {
		opacity: 1
	}
}

.fading-circle {
	width: 60px;
	height: 60px;
	position: relative
}

.sk-circle {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0
}

.sk-circle:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 18%;
	height: 18%;
	background-color: #2990f7;
	border-radius: 100%;
	-webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
	-moz-animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
	-o-animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
	animation: sk-circleFadeDelay 1.2s infinite ease-in-out;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both
}

.sk-circle2 {
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg)
}

.sk-circle3 {
	-webkit-transform: rotate(60deg);
	-moz-transform: rotate(60deg);
	-o-transform: rotate(60deg);
	transform: rotate(60deg)
}

.sk-circle4 {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg)
}

.sk-circle5 {
	-webkit-transform: rotate(120deg);
	-moz-transform: rotate(120deg);
	-o-transform: rotate(120deg);
	transform: rotate(120deg)
}

.sk-circle6 {
	-webkit-transform: rotate(150deg);
	-moz-transform: rotate(150deg);
	-o-transform: rotate(150deg);
	transform: rotate(150deg)
}

.sk-circle7 {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg)
}

.sk-circle8 {
	-webkit-transform: rotate(210deg);
	-moz-transform: rotate(210deg);
	-o-transform: rotate(210deg);
	transform: rotate(210deg)
}

.sk-circle9 {
	-webkit-transform: rotate(240deg);
	-moz-transform: rotate(240deg);
	-o-transform: rotate(240deg);
	transform: rotate(240deg)
}

.sk-circle10 {
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg)
}

.sk-circle11 {
	-webkit-transform: rotate(300deg);
	-moz-transform: rotate(300deg);
	-o-transform: rotate(300deg);
	transform: rotate(300deg)
}

.sk-circle12 {
	-webkit-transform: rotate(330deg);
	-moz-transform: rotate(330deg);
	-o-transform: rotate(330deg);
	transform: rotate(330deg)
}

.sk-circle2:before {
	-webkit-animation-delay: -1.1s;
	-moz-animation-delay: -1.1s;
	-o-animation-delay: -1.1s;
	animation-delay: -1.1s
}

.sk-circle3:before {
	-webkit-animation-delay: -1s;
	-moz-animation-delay: -1s;
	-o-animation-delay: -1s;
	animation-delay: -1s
}

.sk-circle4:before {
	-webkit-animation-delay: -.9s;
	-moz-animation-delay: -.9s;
	-o-animation-delay: -.9s;
	animation-delay: -.9s
}

.sk-circle5:before {
	-webkit-animation-delay: -.8s;
	-moz-animation-delay: -.8s;
	-o-animation-delay: -.8s;
	animation-delay: -.8s
}

.sk-circle6:before {
	-webkit-animation-delay: -.7s;
	-moz-animation-delay: -.7s;
	-o-animation-delay: -.7s;
	animation-delay: -.7s
}

.sk-circle7:before {
	-webkit-animation-delay: -.6s;
	-moz-animation-delay: -.6s;
	-o-animation-delay: -.6s;
	animation-delay: -.6s
}

.sk-circle8:before {
	-webkit-animation-delay: -.5s;
	-moz-animation-delay: -.5s;
	-o-animation-delay: -.5s;
	animation-delay: -.5s
}

.sk-circle9:before {
	-webkit-animation-delay: -.4s;
	-moz-animation-delay: -.4s;
	-o-animation-delay: -.4s;
	animation-delay: -.4s
}

.sk-circle10:before {
	-webkit-animation-delay: -.3s;
	-moz-animation-delay: -.3s;
	-o-animation-delay: -.3s;
	animation-delay: -.3s
}

.sk-circle11:before {
	-webkit-animation-delay: -.2s;
	-moz-animation-delay: -.2s;
	-o-animation-delay: -.2s;
	animation-delay: -.2s
}

.sk-circle12:before {
	-webkit-animation-delay: -.1s;
	-moz-animation-delay: -.1s;
	-o-animation-delay: -.1s;
	animation-delay: -.1s
}

.mop-load-div {
	max-width: 80%;
	padding: 20px;
	border-radius: 4px;
}

.mop-load-banner .text {
	font-size: 15px;
	color: #2990f7;
	height: 40px;
	line-height: 40px;
}

.mop-load-banner {
	z-index: 99999;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.6);
	height: 100%;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	justify-content: center;
	-webkit-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
}