/*
Theme Name: Beaver Builder Child Theme
Theme URI: http://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: http://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

/*-------- fixed mobile footer ---------*/

#mobile-phone-ctas {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 999;
    -webkit-box-shadow: 0 -2px 8px 0 rgba(0,0,0,.25);
    box-shadow: 0 -2px 8px 0 rgba(0,0,0,.25);
    border-top: 1px solid rgba(0,0,0,.1);
    display: none;
}


#mobile-phone-ctas a:first-child {
    border-right-color: #FFF;
    width: 100%;
}
#mobile-phone-ctas a:last-child {
    width: 100%;
}
a.btn-mobile-phone{background: #0026E8 !important;
    color: #fff !important;}

#mobile-phone-ctas a {
    height: 60px;
    padding: 10px 2%;
    color: #FFF;
    background-color: #0026E8;
    font-size: calc(80% + .5vw);
    font-weight: bold;
    line-height:1.1;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
}
#mobile-phone-ctas a i {padding-right: 5%;}

@media only screen and (max-width: 569px){
div#mobile-phone-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: flex-start;
    align-items: flex-start;
    -webkit-animation: slideInUp .4s ease-in-out;
    animation: slideInUp .4s ease-in-out;
}
