/* WIDGET */
#cmind-fos *,
#cmind-fos *:after,
#cmind-fos *:before,
#cmind-fos {
	box-sizing: border-box;
}
#cmind-fos {
	display: none;
	position: fixed;
	z-index: 99999999;
	right: 20px;
	bottom: 3%;
	line-height: 0;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	width: 75px;
	height: 75px;
	border-radius: 50%;
}
@media screen and (min-width: 1200px) {
	#cmind-fos {
		left: 50%;
		right: auto;
		margin-left: 530px;
	}
}
@media screen and (min-width: 1260px) {
	#cmind-fos {
		margin-left: 590px;
	}
}
#cmind-fos.active {
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
#cmind-fos.active .phone {
	left: -44px;
}
#cmind-fos.active .mail {
	left: -20px;
	top: -30px;
}
#cmind-fos .phone-big {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	opacity: 1;
	width: 75px;
	border-radius: 50%;
	text-align: center;
	height: 75px;
}
#cmind-fos .phone-big .fa {
	font-size: 55px;
	line-height: 75px;
}
#cmind-fos .phone,
#cmind-fos .mail {
	position: absolute;
	left: 20px;
	top: 20px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	opacity: 0.8;
	z-index: 3;
	width: 35px;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
#cmind-fos .phone:hover,
#cmind-fos .mail:hover {
	opacity: 1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
#cmind-fos .phone .fa,
#cmind-fos .mail .fa {
	line-height: 35px;
	font-size: 22px;
}
/* FORMS */
.cmind-form {
	position: fixed;
	width: 320px;
	bottom: 3%;
	left: 50%;
	margin-left: -160px;
	border: 2px solid #000;
	padding: 20px;
	box-sizing: border-box;
	background: #fff;
	display: none;
	z-index: 99999999;
	max-height: 94%;
	overflow-y: auto;
}
.cmind-loading:after,
.cmind-form-opened:after{
	content: '';
	position: fixed;
	left:0;
	right:0;
	bottom:0;
	top:0;
	background-color: rgba(0,0,0,0.4);
}
.cmind-form .close-form {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	font-weight: bold;
	padding: 5px 10px;
}
.cmind-form h3,
.cmind-form .form-group {
	margin-bottom: 20px;
}
.cmind-form input[type="text"],
.cmind-form input[type="email"],
.cmind-form textarea {
	width: 100%;
	padding: 5px;
	border: 1px solid #000;
	border-radius: 0;
	box-sizing: border-box;
}
.cmind-form textarea {
	min-height: 150px;
}
.cmind-form .note {
	color: #ccc;
	font-size: small;
	font-style: italic;
}
.cmind-form .message {
	margin-top: 20px;
	padding: 5px;
	border: 2px solid transparent;
	text-align: center;
}
.cmind-form .message.error {
	border-color: rgb(128, 0, 0);
	background-color: rgba(128, 0, 0,0.2);
}
.cmind-form .message.success {
	border-color: rgb(21, 128, 0);
	background-color: rgba(21, 128, 0,0.2);
}
.cmind-form .captcha-holder {
	position: relative;
}
.cmind-form .captcha-pic {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	bottom: 0;
	width: 50%;
}
.cmind-form .submit-btn {
	width: 100%;
	display: block;
	text-align: center;
	border: 1px solid #000;
	border-radius: 0;
}
/* ANIMATIONS */
@-webkit-keyframes bounceInDown {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes bounceInDown {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	100% {
		-webkit-transform: none;
		transform: none;
	}
}
@-webkit-keyframes bounceInUp {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes bounceInUp {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}
.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}

.required-label{
	color:#f57c00;
}

.politic{
	color:#f57c00;
}

.politic a{
	text-decoration: underline;
}

.politic a:hover{
	color:unset;
}