
/********
* CONTACT ME
********/

#eap-cm-tab{
    display:inline-block;
    position: fixed;
    font-size: 18px;
    line-height: 30px;
    padding:3px 10px;
    cursor: pointer;
    z-index: 9999;
}

#eap-cm-overlay{
    display:  none;
    position:fixed;
    background-attachment: fixed;
    z-index: 9999;
    width:100%;
    height:100%;
}

#eap-cm{
    display:none;
    position:fixed;
    height:auto;
    z-index:10000;
    border-radius: 7px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
	padding:20px;

}
#eap-cm input,#eap-cm textarea{


    margin:10px 0;
} 
#eap-cm input#eap-fname,
#eap-cm input#eap-lname{

width:calc( 50% - 5px );

}
#eap-cm input#eap-lname{
    margin-left: 10px;
}

#eap-cm input:focus,#eap-cm textarea:focus{

    border: 1px solid rgba(51, 51, 51, 0.5) !important;

}

#eap-cm .eap-cm-photo{
    position:absolute;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}

#eap-cm .eap-cm-close{
    display: inline-block;
    position: absolute;
    right:10px;
    top:0;
    opacity: .5;
    cursor: pointer;
    width:15px;
    height:15px;
}
#eap-cm .eap-cm-close:hover{
    opacity:1;
}

#eap-cm .eap-cm-header{
    line-height: 1.3em;
    font-weight: 900;
    text-align:center;
}

#eap-cm .eap-cm-text{
    font-weight: 400;
    text-align:center;
    margin-bottom: 10px;
}
#eap-cm .eap-cm-hr{
    margin:20px auto;
    width:49%;
    height:1px;
}

#eap-cm .eap-cm-button-wrap{
    display: inline-block;
    position: relative;
    left:50%;
}
#eap-cm .eapcm-button{
    overflow: hidden;
    position: relative;
    z-index: 1;
    font-family: var(--eap-button-font);
    text-decoration: none;
    display: inline-block;
    padding: 4px;
    margin: 8px 0 0 0;
    text-decoration: none;
    border-radius: 4px;
    left:-50%;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    transition: 0.4s;
}
#eap-cm .eapcm-button span{
    display: inline-block;
    padding: 0 15px;
    font-size: 1.0625em;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 40px;
}

#eap-cm .eapcm-button .fa{
    padding: 0 10px 0 15px;
    font-size: 1.75em;
    vertical-align: middle;
    line-height: 40px;
    position: relative;
    top: -2px;
}

@media screen and (max-width: 768px) {
    #eap-cm{
		position: absolute;
        width:100% !important;
		max-width:100%;
		height: 100vh;
		left:0%;
		z-index: 100000;
    }
    #eap-cm .eap-cm-close{
      top:initial;
      bottom:15px;
      top:0px;
      right:15px;
      font-size: 32px;
	}
	
}