/*******************************************/
/* Footer component styles
/*******************************************/
#acceptances {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 50px;
    background-color: #fff;
    box-shadow: 8px 8px 24px 12px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    width: 501px;
    z-index: 1000;
    animation: inFromLeft .8s ease 0s 1 normal forwards;
}
@media screen and (max-width: 468px) {
    #acceptances {
        width: 340px;
        left: 5%;
        transform: translate( -5% );
        bottom: 15px;
    }
}
#acceptances img {
    margin: unset;
}
#acceptances .content {
    margin-top: 1rem;
    margin-bottom: 2rem;
    color: #373737;
    font-size: 16px;
}
#acceptances .content h4 {
    color: #373737;
    font-size: 20px;
    font-family: 'Cera Round Pro Medium', sans-serif;
}
#acceptances .content a {
    color: #287de0;
    text-decoration: underline;
}
#acceptances input {
    background-color: #6400a9;
    display: inline-block;
    border-radius: 100px;
    width: auto;
    color: #fff;
    padding: 6px 20px;
    font-family: 'Cera Round Pro Medium', sans-serif;
    cursor: pointer;
}
#acceptances #btn-tyc {
    border: 1px solid #6400a9;
    border-radius: 100px;
    padding: 6px 20px;
    font-family: 'Cera Round Pro Medium', sans-serif;
    display: inline-block;
    margin-right: 15px;
    color: #6400a9;
}
@keyframes inFromLeft {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}