div#footerOverlayDiv {
    height: 50px;
    width: 100%;
    background-color: #000;
    border: 1px solid #000;
    position: fixed;
    bottom: -125px;
    border-radius: 2px;
    box-shadow: rgba(0; 0 0 0.35) -1px 0px 1px;
    -webkit-transition: all .5s ease-in;
    -moz-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    -ms-transition: all .5s ease-in;
    transition: all .5s ease-in;
    text-align: center;
    z-index: 2147483647;
}

div#footerOverlayDiv.smaller {
    height: 45px;
}

div#closeButton {
    color: #fff;
    margin: 17px 15px 0px 0px;
    background-color: #000;
    border: 0px solid #000;
    position: absolute;
    top: 0;
    right: 4px;
    border-radius: 2px 2px 0px 0px;
    text-align: center;
    z-index: 999999;
    cursor: pointer;
    font-size: 15px;
    line-height:  15px;
}

div#centerLine {
    background-color: #fff;
    position: absolute;
    top: 47%;
    left: 3%;
    width: 94%;
    height: 1px;
    display: none;
}

.singleLinkDiv {
    display: inline-block;
    position: relative;
    width: auto;
    text-align: center;
    height: 45px;
    vertical-align: top;
    margin: 17px 10px 0px 25px;
}

.singleLinkDiv a {
    text-decoration: none;
}

span.footerLink {
    position: relative;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    display: block;
    width: auto;
    line-height: 15px;
}




@media (max-width:480px) {
    div#footerOverlayDiv {
        height: 95px;
    }
    div#linksContainer {
        margin: auto;
        max-width: 440px;
    }
    div#closeButton {
        color: #fff;
        padding: 4px 15px;
        background-color: #000;
        border: 1px solid #000;
        position: absolute;
        top: -45px;
        right: -13px;
        font-size: 18px;
        border-radius: 2px 2px 0px 0px;
        text-align: center;
        z-index: 999999;
        cursor: pointer;
    }
    .singleLinkDiv {
        display: inline-block;
        position: relative;
        width: auto;
        text-align: center;
        height: 45px;
        vertical-align: top;
        padding: 15px 20px;
        margin: unset;
    }
    div#centerLine {
        display: block;
    }
    div#footerOverlayDiv.smaller #centerLine {
        display: none;
    }
}