
#popup-msg-overlay { 
	display: none;
	position: absolute; 
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999999999;
}

#popup-msg { 
	display: none;
    position: fixed;
    top: 120px;
    left: 0;
    bottom: auto;
    right: auto;
    z-index: 99999999;
    background: #fff;
    border-radius: 5px;
    width: 800px;
    margin: 0 auto;
    max-width: 91%;
    text-align: center;
	padding: 1em; 
	max-height: calc(85vh - 120px);  
	overflow: auto; 
}
	
#popup-msg img { 
	height: 75px; 
	float: left;
	margin: 15px; 
}
	
#popup-msg .cta-btn { 
	background: #009fe3; 
	height: 50px;
	display: block;
	float: left;
	line-height: 50px;
	padding: 0 10px;
	color: #fff;
	width: 150px; 
	margin-left: calc(50% - 75px);  
}

#popup-msg .popup-imgs, 
#popup-msg .contact-links { 
	float: left; 
	width: 100%; 
	text-align: center;
}


#popup-msg #popup-msg-close { 
	position: absolute; 
	top: 0.5em; 
	right: 1em;
}

#popup-msg #popup-msg-close:hover { 
	cursor: pointer; 
}

#popup-msg p { 
	float: left; 
	width: 100%; 
	margin: 2px 0; 
}

#popup-msg a { 
	 word-wrap: break-word;
	 display: block; 
	 padding: 0.5em 0; 
}

#popup-msg .popup-btn { 
	background: #009fe3;
	color: #fff;
	padding: 10px 15px;
	display: block;
	float: left;
	width: 175px; 
	margin-left:calc(50% - 87px); 
}

#sm-popup-msg-wrap {
	position: fixed;
    bottom: 0;
    right: 30;
    z-index: 9999999;
	left: calc(50% - 160px); 
	display: none;
	transition: height .3s; 
	-webkit-transition: height .3s; 
	-moz-transition: height .3s;
}

#sm-popup-msg {
	background: #fff;
    padding: 0.5em 1em 0.75em;
    width: 320px;
    /*box-shadow: -3px -3px 3px rgb(0 0 0 / 50%);*/
    border: 2px solid rgba(0,0,0,0.5);
    border-bottom: 0;
}

#sm-popup-msg-close {
	float: right;
}

.sm-popup-text {
	margin-top: 30px;
	font-weight: normal;
}


.sm-popup-msg-inner {
	display: block;
    clear: both;
}

.sm-popup-msg-inner p {
	margin: 0.5em 0; 
	font-weight: bold;
	font-size: 0.9rem;
}

.sm-popup-button {
	background-color: #2D7AB2;
    color: #fff;
    margin: 20px 0px;
	padding: 5px 10px;
    display: inline-block;
	color: #fff !important;
}

.sm-popup-button:hover {
	background-color: #333340;
}

@media only screen and (min-width:480px) { 
	#sm-popup-msg-wrap {
		left: auto; 
		right: 30px; 
	}
}

@media only screen and (min-width:768px) { 

	#popup-msg { 
	top: 110px; 
	width: 700px; 
	left: calc(50% - 350px); 
	max-width: 100%; 
	max-height: calc(100vh - 110px);  
	padding: 0; 
	}

	#popup-msg .popup-msg-inner { 
		padding: 2em 3em;  
		float: left; 
	}
	
}

@media only screen and (min-width:1240px) {
	
	#popup-msg .popup-msg-inner { 
		padding: 2em 3em; 
	}
	
}

