/*---------------------------
	WIDGET POOL
---------------------------*/

.widget-pool-form {
	background-color: #fff;
	border: 1px solid #e0eded;
	border-radius: 2px;
	box-shadow: 0 3px 25px rgba(200, 200, 200, 0.35);
	box-sizing: border-box;
	padding: 15px 20px;
	margin: 15px auto;
	min-width: 300px;
	max-width: 450px;
}

.widget-pool-form .alert {
	display: none;
}

.widget-pool-form-title {
	color: #000;
	font-size: 22px;
	font-weight: 400;
	margin: 15px 0;
	text-align: center;
	width: 100%;
}

.widget-pool-form-title.success {
	color: #87ad00;
}

.widget-pool-form-label {
	color: #333;
	display: inline-block;
	font-size: 13px;
	margin-bottom: 12px;
	padding: 0;
	text-align: left;
	white-space: normal;
}

.widget-pool-form-label span {
	color: #0994f1;
	font-size: 13px;
	font-weight: normal;
}

.widget-pool-form-input-wrap {
	margin-top: 0 !important;
}

.widget-pool-form-input {
	background-color: #fafafa;
	border: 1px solid #e4e4e4;
	display: block;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 0 15px;
	transition: all .4s ease;
	height: 40px;
	width: 100%;
}

.widget-pool-form-input::-webkit-input-placeholder {
	color: #777;
	font-size: 14px;
}

.widget-pool-form-input::-moz-placeholder {
	color: #777;
	font-size: 14px;
}

.widget-pool-form-input:-ms-input-placeholder {
	color: #777;
	font-size: 14px;
}

.widget-pool-form-input:-moz-placeholder {
	color: #777;
	font-size: 14px;
}

.widget-pool-form-input-wrap.error .widget-pool-form-input {
	color: #ff0000;
	border-color: #ff0000;
}

.widget-pool-form-input-wrap.error .widget-pool-form-input::-webkit-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}

.widget-pool-form-input-wrap.error .widget-pool-form-input::-moz-placeholder {
	color:#ff0000;
	font-size: 14px;
}

.widget-pool-form-input-wrap.error .widget-pool-form-input:-ms-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}

.widget-pool-form-input-wrap.error .widget-pool-form-input:-moz-placeholder {
	color: #ff0000;
	font-size: 14px;
}

.widget-pool-form-textarea {
	background-color: #fafafa;
	border: 1px solid #e4e4e4;
	display: block;
	margin-bottom: 20px;
	padding: 15px;
	resize: none;
	height: 120px;
	width: 100%;
}

.widget-pool-form-input-wrap.error .widget-pool-form-textarea {
	color: #ff0000;
	border-color: #ff0000;
}

.widget-pool-form-input-wrap.error .widget-pool-form-textarea::-webkit-input-placeholder {
	color: #ff0000;
	border-color: #ff0000;
}

.widget-pool-form-input-wrap.error .widget-pool-form-textarea::-moz-placeholder {
	color: #ff0000;
	border-color: #ff0000;
}

.widget-pool-form-input-wrap.error .widget-pool-form-textarea:-ms-input-placeholder {
	color: #ff0000;
	border-color: #ff0000;
}

.widget-pool-form-input-wrap.error .widget-pool-form-textarea:-moz-placeholder {
	color: #ff0000;
	border-color: #ff0000;
}

.widget-pool-form-button {
	background-color: #ff0000;
	border: none;
	border-radius: 25px;
	color: #fff;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	height: 40px;
	width: 140px;
}

.widget-pool-form-checkbox-list {
	overflow: hidden;
	margin: 20px auto;
}

.widget-pool-form-checkbox-list .widget-pool-form-label {
	cursor: pointer;
	font-size: 13px;
	position: relative;
	height: 25px;
}

.widget-pool-form-link {
	color: #9e9e9e;
	font-size: 11px;
	text-decoration: none;
}

.widget-pool-form-link:hover {
	color: #9e9e9e;
	font-size: 11px;
	text-decoration: none;
}

.widget-pool-form-checkbox {
	display: none;
}

.widget-pool-form-checkbox-custom {
	cursor: pointer;
	display: block;
	font-size: 13px;
	float: left;
	margin: 5px;
	padding-right: 30px;
	padding-top: 5px;
	position: relative;
	height: 25px;
}

.widget-pool-form-checkbox-custom::before {
	border: 1px solid  #9e9e9e;
	border-radius: 0;
	content: '';
	color: #9e9e9e;
	overflow: hidden;
	position: absolute;
	top: 3px;
	left: 0;
	height: 20px;
	width: 20px;
}

.widget-pool-form-checkbox:checked + .widget-pool-form-checkbox-custom::after {
	background: url("../img/mark.png") center no-repeat;
	background-size: 12px;
	color: #016444;
	content: '';
	font-size: 20px;
	overflow: hidden;
	position: absolute;
	height: 20px;
	width: 20px;
}

.widget-pool-form-input-wrap.error .widget-pool-form-checkbox-custom::before {
	border-color: #ff0000;
	color: #ff0000;
}


.widget-link {
	background-color: #f7f7f7;
	background-image: url(../img/widget-link.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 50%;
	border-radius: 50%;
	cursor: pointer;
	color: #fff;
	display: block;
	font-size: 18px;
	overflow: hidden;
	padding: 30px 0;
	position: fixed;
	right: 20px;
	bottom: 80px;
	text-align: center;
	text-decoration: none;
	height: 90px;
	width: 90px;
	z-index: 100;
}

.widget-link:hover {
	background-color: #2e2e2e;
}

.widget-link span {
	font-weight: 100;
	font-size: 14px;
	display: block;
}

.widget-link .outer {
	border:5px solid rgba(0,152,247,0.5);
	opacity:.9;
	border-top-color:transparent;
	border-bottom-color:transparent;
	border-radius:50%;
	box-shadow: 0 0 35px rgba(0,152,247,0.5);
	animation: spin-right 5s infinite ease-in-out;
	margin:0 auto;
	width: 90px;
	height: 90px;
	position: fixed;
	right: 20px;
	bottom: 80px;
}

.widget-link .inner {
	display:block;
	border:5px solid rgba(0,152,247,1);
	opacity:.9;
	border-radius:50%;
	border-left-color:transparent;
	border-bottom-color:transparent;
	box-shadow: 0 0 35px rgba(0,152,247,1);
	margin:0 auto;
	width: 90px;
	height: 90px;
	position: fixed;
	right: 20px;
	bottom: 80px;
	animation: spin-left 2.5s infinite ease-in-out;
}

@-webkit-keyframes spin-right {
	from { -webkit-transform:rotate(0deg); opacity:0.2; }
	50% { -webkit-transform:rotate(180deg); opacity:1.0; }
	to { -webkit-transform:rotate(360deg); opacity:0.2; }
}

@-moz-keyframes spin-left {
	from { -moz-transform:rotate(0deg); opacity:0.2; }
	50% { -moz-transform:rotate(-180deg); opacity:1.0; }
	to { -moz-transform:rotate(-360deg); opacity:0.2; }
}

.widget-link._active {
	background: none;
	border-radius: 0;
	height: 142px;
	width: 352px;
}

.widget-link._active .inner,
.widget-link._active .outer {
	display: none;
}

.widget-link .widget-link-content {
	background-color: #0098f7;
	display: block;
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 142px;
	width: 352px;
	transition: opacity .4s ease;
}

.widget-link._active .widget-link-content {
	opacity: 1;
}

.widget-link .widget-link-icon {
	display: none;
}

.widget-link._active .widget-link-icon {
	display: block;
	position: absolute;
	top: 54px;
	left: 16px;
}

.widget-link-icon::before {
	background-position: center;
	font-size: 26px;
	position: absolute;
	top: calc(50% - 15px);
	left: calc(50% - 12px);
	width: 25px;
	height: 26px;
	animation: wiggle 10s ease infinite;
	z-index: 2;
}

.widget-link-icon::after {
	background-color: #19191b;
	background-image: url("../img/widget-link.png");
	background-position: 8px 8px;
	background-repeat: no-repeat;
	background-size: 70%;
	border-radius: 50%;
	content: '';
	display: block;
	position: absolute;
	top: calc(50% - 25px);
	left: 0;
	height: 50px;
	width: 50px;
}

.widget-link._active .widget-link-icon::after {
	background-color: #fff;
}

.widget-link-text {
	color: #fff;
	display: inline-block;
	font-size: 15px;
	opacity: 0;
	transition: opacity .4s ease;
	width: 322px;
}

.widget-link-text span {
	color: #fff;
	display: block;
	font-weight: 500;
	margin-top: 10px;
	text-decoration: underline;
}

.widget-link._active .widget-link-text {
	opacity: 1;
	padding: 32px 4px 26px 85px;
}

.widget-link-close {
	color: #fff;
	cursor: pointer;
	display: none;
	position: absolute;
	top: 6px;
	right: 7px;
	width: 20px;
	height: 20px;
	z-index: 100500;
	cursor: pointer;
}

.widget-link._active .widget-link-close {
	display: block;
}

#wlModal .modal-dialog {
	border-radius: 0;
}

.modal-title {
	font-size: 1.4em;
	font-weight: 400;
}

#wlModal form > div.input > label {
	display: inline-block;
	padding: 0;
	margin-bottom: 12px;
	font-size: 13px;
	color: #333;
	text-align: left;
	white-space: normal;
}

#wlModal form > div.input > label > span {
	color: #ff0000;
	font-size: 13px;
	font-weight: bold;
}

#wlModal form > div.input > input {
	background-color: #fafafa;
	border: 1px solid #e4e4e4;
	display: block;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 0 15px;
	transition: all .4s ease;
	height: 40px;
	width: 100%;
}

#wlModal form > div.input > input::-webkit-input-placeholder {
	color: #777;
	font-size: 14px;
}

#wlModal form > div.input > input::-moz-placeholder {
	color: #777;
	font-size: 14px;
}

#wlModal form > div.input > input:-ms-input-placeholder {
	color: #777;
	font-size: 14px;
}

#wlModal form > div.input > input:-moz-placeholder {
	color: #777;
	font-size: 14px;
}


#wlModal form > div.input > input[error = "yes"] {
	color: #ff0000;
	border-color: #ff0000;
}

#wlModal form > div.input > input[error = "yes"]::-webkit-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}

#wlModal form > div.input > input[error = "yes"]::-moz-placeholder {
	color: #ff0000;
	font-size: 14px;
}

#wlModal form > div.input > input[error = "yes"]:-ms-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}

#wlModal form > div.input > input[error = "yes"]:-moz-placeholder {
	color: #ff0000;
	font-size: 14px;
}


#wlModal form > div.error > input {
	color: #ff0000;
	border-color: #ff0000;
}

#wlModal form > div.error > input::-webkit-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}
#wlModal form > div.error > input::-moz-placeholder {
	color:#ff0000;
	font-size: 14px;
}
#wlModal form > div.error > input:-ms-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}
#wlModal form > div.error > input:-moz-placeholder {
	color: #ff0000;
	font-size: 14px;
}

#wlModal form > div.input > textarea {
	background-color: #fafafa;
	border: 1px solid #e4e4e4;
	display: block;
	margin-top: 0;
	margin-bottom: 20px;
	padding: 15px;
	resize: none;
	height: 120px;
	width: 100%;
}

#wlModal form > div.input > textarea::-webkit-input-placeholder {
	color: #777;
	font-size: 14px;
}

#wlModal form > div.input > textarea::-moz-placeholder {
	color: #777;
	font-size: 14px;
}

#wlModal form > div.input > textarea:-ms-input-placeholder {
	color: #777;
	font-size: 14px;
}

#wlModal form > div.input > textarea:-moz-placeholder {
	color: #777;
	font-size: 14px;
}


#wlModal form > div.error > textarea {
	color: #ff0000;
	border-color: #ff0000;
}

#wlModal form > div.error > textarea::-webkit-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}
#wlModal form > div.error > textarea::-moz-placeholder {
	color:#ff0000;
	font-size: 14px;
}
#wlModal form > div.error > textarea:-ms-input-placeholder {
	color: #ff0000;
	font-size: 14px;
}
#wlModal form > div.error > textarea:-moz-placeholder {
	color: #ff0000;
	font-size: 14px;
}

#wlModal form > button {
	background-color: #0994f1;
	border: none;
	border-radius: 25px;
	color: #fff;
	cursor: pointer;
	display: block;
	margin: 0 auto;
	height: 40px;
	width: 140px;
}

#wlModal form > .checkbox-list {
	overflow: hidden;
	margin: 20px auto;
}

#wlModal form > .checkbox-list label {
	cursor: pointer;
	position: relative;
	font-size: 13px;
	height: 25px;
}

#wlModal form > .checkbox-list a,
#wlModal form > .checkbox-list a:hover {
	color: #9e9e9e;
	font-size: 11px;
	text-decoration: none;
}

#wlModal form > .checkbox-list .checkbox {
	display: none;
}

#wlModal form > .checkbox-list .checkbox-custom {
	cursor: pointer;
	display: block;
	font-size: 13px;
	float: left;
	margin: 5px;
	padding-right: 30px;
	padding-top: 5px;
	position: relative;
	height: 25px;
}

#wlModal form > .checkbox-list .checkbox-custom::before {
	border: 1px solid  #9e9e9e;
	border-radius: 0;
	content: '';
	color: #9e9e9e;
	overflow: hidden;
	position: absolute;
	top: 3px;
	left: 0;
	height: 20px;
	width: 20px;
}

#wlModal form > .checkbox-list .checkbox:checked + .checkbox-custom::after {
	background: url("../img/mark.png") center no-repeat;
	background-size: 12px;
	color: #016444;
	content: '';
	font-size: 20px;
	overflow: hidden;
	position: absolute;
	height: 20px;
	width: 20px;
}

#wlModal form .input.error .checkbox-custom::before {
	border-color: #ff0000;
	color: #ff0000;
}