#rml_cta_container {
    position: fixed;
	z-index: 10000;
    bottom: 0;
    width: 100%;
    text-align: center;
    -webkit-transition: all .6s ease-in-out;
    -moz-transition: all .6s ease-in-out;
    -ms-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}

#rml_cta_button,
#rml_submit_button,
.rml-modal.submitted .rml-close {
    display: block;
    color: #FFF;
    background-color: rgba(255, 73, 63, .9);
    font-size: 18px;
    padding: 15px 0;
    text-decoration: none;

    -webkit-transition: all .2s;
    -moz-transition: all .2s;
    -ms-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

#rml_submit_button,
.rml-modal.submitted .rml-close{
    border: 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin: 30px 0;
    padding: 18px 0;
    cursor: pointer;
}

.rml-modal.submitted .rml-close {
    margin-bottom: 0;
}

#rml_cta_button:hover {
    background-color: rgba(255, 73, 63, 1);
    color: #FFF;
    //text-decoration: underline;
}

@media (max-width: 767px) {
    .rml_cta_button--hide {
        bottom: -150px !important;
        visibility: hidden;
    }
}
@media (min-width: 768px) {
    #rml_cta_container {
        bottom: 30px;
        right: 30px;
        text-align: right;
    }

    #rml_cta_button {
        width: auto;
        display:inline-block;
        margin: auto;
        padding-left: 70px;
        padding-right: 70px;
    }
}

.rml-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: #000;
    background-color: rgba(0,0,0, .6);
}

/* Modal Header */
.rml-modal-header {
    padding: 0px 0px;
    color: white;
    font-size: 16px;
	font-weight:bold;
    text-align: center;
}

/* Modal Body */
.rml-modal-body {padding: 2px 0px;}

/* Modal Footer */
.rml-modal-footer {
    padding: 2px 16px;
    color: white;
    text-align: center;
    font-size: 14px;
}

/* Modal Content */
.rml-modal-content {
    position: relative;
    background-color: #f7f7f7;
    margin: auto;
    padding: 40px 30px;
    width: 100%;
    min-height: 100%;
    max-width: 420px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@media (min-width: 481px) {
    .rml-modal {
        padding-top: 60px; /* Location of the box */
    }

    .rml-modal-content {
        border-radius: 8px;
        min-height: unset;
    }
}

.rml-close {
    cursor: pointer;
    color: #a9a9a9;
    font-size: 16px;
    font-weight: 300;
}


//.rml-close:hover, #rml_submit_button:hover {text-decoration:underline; opacity:0.8;}
#rml_submit_button:hover {
    opacity:0.8;
}
.rml-close:hover {
    color: black;
    opacity:0.8;
}



.rml-modal-body label {
    font-family: 'FuturaPT Medium', sans-serif;
    display: block;
    font-size: inherit;
    margin-top: 18px;
}
.rml-modal-body [type="text"] {
    background-color: #FFF;
    font-size: inherit;
    padding: 7px 10px;
    width: 100%;
}

.rml-modal-body ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #bfbfbf;
}
.rml-modal-body ::-moz-placeholder { /* Firefox 19+ */
    color: #bfbfbf;
}
.rml-modal-body :-ms-input-placeholder { /* IE 10+ */
    color: #bfbfbf;
}
.rml-modal-body :-moz-placeholder { /* Firefox 18- */
    color: #bfbfbf;
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}