.stick_block_layer {
	background: rgba(0,0,0,0.6);
	opacity: 0.7;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
}

.stick_popup {
	height: 400px;
	width: 600px;
	box-shadow: 0px 0px 7px #4a4a4a;
	-moz-box-shadow: 0px 0px 7px #4a4a4a;
	-webkit-box-shadow: 0px 0px 7px #4a4a4a;
	background: #f2f2f2;
	-webkit-animation: zoomin 0.7s;
	animation: zoomin 0.7s;
background-image:url('https://www.sms-magic.com/wp-content/uploads/2022/09/Dreamforce-popup-background.png');
}
.content-part {
    color: white;
    padding: 0 40px;
}

.content-part h1 {
    color: white;
    font-size: 45px !important;
    line-height:55px !important;
    text-transform: uppercase;
}
.content-part p, .content-part ol {
    margin-bottom: 0;
}
.content-part h3 {
    color: white;
    margin-bottom:0;
}
.stick_content {
	padding: 20px;
}
.stick_content .right-float {
    width: 100px;
    float: right;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.stick_close {
	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;
	font-family:Arial,sans-serif;
	font-size: 17px;
	font-weight:bold;
}
@media only screen and (max-width:767px){
	div#stickLayer {
    top: 25%;
    left: 0;
    right: 0;
    max-width: 350px;
    margin: 0;
	height:auto;
}
.content-part h3{
	font-size:20px;
	line-height:25px;
}
.content-part h1{
	font-size:25px !important;
	line-height:30px !important;
}
}
/* 
CSS3 animation keyframes.
*/
@-webkit-keyframes zoomin {

	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	50% {
		-webkit-transform: scale(1.04);
		-ms-transform: scale(1.04);
		transform: scale(1.04);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@-ms-keyframes zoomin {

	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	50% {
		-webkit-transform: scale(1.04);
		-ms-transform: scale(1.04);
		transform: scale(1.04);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	
}
@keyframes zoomin {

	0% {
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		opacity: 0;
	}

	50% {
		-webkit-transform: scale(1.04);
		-ms-transform: scale(1.04);
		transform: scale(1.04);
		opacity: 1;
	}
  
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}



