.glue_block_layer {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.glue_popup {
	height: 480px;
	width: 700px;
	-webkit-animation: pop 0.5s;
	animation: pop 0.5s;
}

.glue_content {
	padding: 20px;
	background-color: #fff;
}

.glue_close {
	display: none;
	cursor: pointer;
	position: relative;
	top: 0px;
	left: 0px;
	float: right;
	font-family: Arial;
	font-size: 17px;
	background-color: #d1d1d1;
	color: #4c4c4c;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
}

/* 
CSS3 animation keyframes.
*/
@-webkit-keyframes pop {

	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	30% {
		-webkit-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@-ms-keyframes pop {
	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	30% {
		-webkit-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	
}
@keyframes pop {

	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	30% {
		-webkit-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

/* CUSTOM CSS */
.wrap-exit-content{
	display: block;
}
.logo-exit-ctb{
	height: 90px;
	display: inline-block;
}
.bg-ttle-exit{
	font-size: 40px;
	font-weight: 800;
}
.wrap-exit-content p{
	color: #555;
	font-size: 18px
}

.wrap-exit-content p:first-child span {
  font-size: 40px;
  font-weight: 800;
  color: #333;
  margin-top: 40px;
  display: block;
  margin-bottom: 20px;
 }
 .glue_popup {
  background-color: transparent;
  box-shadow: none;
 }
 .glue_block_layer{
  opacity: 1;
 }
 
 /* Contrib Task */
.contrib-task-container{
	margin: 40px auto 5px;
    width: 70%;
}
.box-icon{
	border-radius: 0.6rem;
	display: inline-block;
	font-size: 14px;
	height: 3rem;
	line-height: 3rem;
	position: relative;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 3rem;
}
/* Circle */
.box-icon span {
	border-radius: 0;
	display: block;
	height: 0;
	left: 50%;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	width: 0;
}
.box-icon span {
	width: 3rem;
	height: 3rem;
	border-radius: 0.3rem;
	margin: -1.5rem;
}
.facebook span {
	background-color: #3B5998;
}
.facebook span {
	background-color: #3B5998;
}
.twitter span {
	background-color: #4099ff;
}
.google-plus span {
	background-color: #dd4b39;
}
.website span {
	background-color: #36465d ;
}
.email span {
	background-color: #0072b1 ;
}
/* Icons */
.box-icon i {
	background: none;
	color: white;
	height: 3rem;
	left: 0;
	line-height: 3rem;
	position: absolute;
	top: 0;
	width: 3rem;
	z-index: 10;
}
.bnt-blue-green{
	background-color: #00A4BD;
	border-color: #00A4BD;
}
.contrib-task-container.verify,
.contrib-task-container.check{
	opacity: 0.7;
}