﻿.headroom {
    will-change: transform;
    transition: transform 200ms linear;
}
.headroom--pinned {
    transform: translateY(100%);
}
.headroom--unpinned {
    transform: translateY(0%);
}
.header-absolute
{
    position: fixed;        
    z-index: 9999;
    bottom: 0;
    left: 23%;
    background: #ed5929;                        
    height: 42px;
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;    
}
.sticky-footer-wrapper
{        
    margin: 13px;
}
.sticky-footer-wrapper a
{        
    color: white;
    font-size: 15px;
}
.sticky-footer-left
{
    float: left;
    padding: 0 15px 0 0;
    border-right: 1px solid white;
}
.sticky-footer-right
{
    padding: 0 0 0 15px;
    float: left;
}

@media screen and (max-width:700px) {        
    .header-absolute {
        position: fixed;
        z-index: 9999;
        bottom: 0;
        left: auto;
        width: 100%;
        background: transparent;
        height: auto;        
    }

    .header-absolute .sticky-footer-wrapper {
        border-top-right-radius: 18px;
        border-top-left-radius: 18px;
        background: #ed5929;
        max-width: 300px;
        margin: 0 auto;
    }

    .sticky-footer-left,
    .sticky-footer-right {
        float: none;
        display: inline-block;
        margin: 12px auto;
        box-sizing: border-box;
        width: 50%;
        padding: 0 20px;
        margin-left: -5px;
    }

    .sticky-footer-left {
        margin-left: 0;
        width: 50%;
    }

    .fa-phone {
        padding: 0 10px 0 0;
    }    
}