#sticky-footer, #sticky-footer-positioner {
    display: none;
    height: 14vw;
}

#sticky-footer img {
    width: 100%;
}

#sticky-footer {
    bottom: 0;
    background-color: white;
    z-index: 10;
    position: static;
    width: 1200px;
    overflow: hidden;
    /*left: 50%;
    margin: 0 0 0 -600px;*/
    /*margin-bottom: -1px;*/
    /*chrome gap fix*/
}

#sticky-footer.sticky-footer-sticky {
    position: fixed;
}

#sticky-footer-positioner {
    position: relative;
    width: 100%;
    bottom: 0;
    margin-bottom: -1px;
}

.sf-close-button {
    position: absolute;
    top: -2px;
    right: -3px;
    z-index: 1;
}

.sf-close-button:after {
    display: inline-block;
    content: "×";
    font-size: 28px;
    line-height: 32px;
    padding: 2px 8px;
    color: #000;
}

.footer-col {
    float: left;
    /*width: 33.33%; CHANGE DEPENDING ON NUMBER OF COLLUMNS*/
    width: 100%;
    text-align: center;
    height: 100%;
    /* padding: 15px; */
    box-sizing: border-box;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    border-bottom: 1px solid black;
    position: relative;
    display: inline-block;
    background-color: white;
}

#sticky-footer.sticky-footer-sticky .footer-col {
    border-bottom: none;
}

.footer-col h3 {
    font-size: 1.1rem;
    line-height: 1.2rem;
    color: black;
}

.footer-col p {
    display: block;
    margin: 0;
    font-size: 12px;
    color: inherit;
}

.footer-col a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1235px) {
    #sticky-footer {
        position: absolute;
        border-right: none;
        border-left: none;
        height: 100%;
        width: 100%;
        margin: 0 0 -1px 0;
        box-sizing: border-box;
    }
    #sticky-footer.sticky-footer-sticky {
        height: 14vw;
        /* border-right: solid white 10px;
        border-left: solid white 10px; */
        left: 0;
    }
}

@media only screen and (max-width: 700px) {

    #sticky-footer, #sticky-footer-positioner {
        display: block;
    }

}