/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
.LearnMoreBtn i{
    margin-right: 10px;
	color: #FFF;
}

.LearnMoreBtn{
	display: block;
	margin: 20px auto;
    cursor: pointer;
    text-align: center;
    transition: all .2s;
    text-decoration: none;
    font-size: 15px;
    line-height: 16px;
    padding: 12px 30px;
    color: #fff;
     border: none;
     width: auto;
}
.overlay {
    display: none;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    z-index: 99999;
    
}
.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 600px;
    height: 150px;
    transform: translate(-50%, -50%);
    background-color: #369;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 5px;
   
}
.popup textarea{
	width: 100%;
	height: 100%;
	padding: 10px 5px;
}
.popup   button{
	text-indent: -9999px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	position: absolute;
	top: -15px;
	right: -15px;
	cursor: pointer;
}
.popup button:after{
		content: "X";
		font-size: 18px;
		line-height: 30px;
		font-weight: bold;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	    text-indent: 0;
}


@media only screen and (max-width: 767px) {
	.popup {
		width: 80%;
		height: 130px;
    	z-index: 999999;
	}
}