@charset "UTF-8";

.floating_content{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.floating_content.is-visible{
	transform: translateY(0);
}

.floating_content .content_inner{
	width: 100%;
    max-width: 750px;
    padding: 1rem 7em;
    margin: 0 auto;
    background-color: #eee;
}
