body>footer {
    display: flex;
    min-height: 90px;
    width: 100%;
    padding-top: 5px;
    margin-top: 5px;
    background-color: #eee;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

footer article.footer-section {
    display: flex;
    width: 33.3%;
    margin-top: auto;
    margin-bottom: auto;
}

/*-------------------------------------*/
/* Left Badges Section                 */
.footer-section.badges {
    padding-left: 1em;
    align-items: center;
}

.badges > div {
    margin: 5px;
}

.usa-badge {
    height: 54px;
    border-radius: 3px;
    box-shadow: 0.1em 0.1em 0.3em #000;
    margin: 5px;
}

/* Custom review badges */
.custom-reviews-badge {
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0.1em 0.1em 0.3em #000;
    font-family: "Roboto", sans-serif;
    font-size: 0.65rem;
    width: 120px;
}

.custom-reviews-badge-logo-link-container {
    display: flex;
    flex-direction: column;
    padding: 5px;
    text-align: center;
}

.custom-reviews-badge-logo,
.custom-reviews-badge-rating {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-reviews-badge-logo-icon {
    height: 18px;
    width: 18px;
}

.custom-reviews-badge-logo-text,
.custom-reviews-badge-stars {
    padding-left: 5px;
}

.custom-reviews-badge-stars {
    color: #FF5D48;
}

/*-------------------------------------*/
/* Center Socials/Copyright Section    */
.footer-section.central {
    flex-direction: column;
    align-items: center;
}

.footer-section.central #social-links {
    display: flex;
}

#social-links > div {
    width: 60px;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 16px;
}

#social-links > div span {
    margin: 0;
}

#social-links a {
    padding-top: 5px;
}

#social-links > div > span {
    opacity: 0;
    background-color: hsla(12, 95%, 47%, 0.93);
    color: rgb(250, 245, 198);
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    font-size: 8px;
    z-index: 9001;
}

#social-links>div span:hover {
    color: hsla(12, 95%, 47%, 0.93);
    transition: all 0.5s ease-in-out;
}

#social-links>div span:not(:hover) {
    color: black;
    transition: all 0.5s ease-in-out;
}

.socials-tooltip {
    opacity: 0;
    font-size: 8px;
    top: -10px;
    transition: all 0.5s;
}

#social-links > div:hover .socials-tooltip {
    opacity: 1;
    font-size: 14px;
    color: rgb(250, 245, 198);
    transition: all 0.5s;
}

/* Custom tooltip widths */
#tt1, #tt2 {
    width: 100px;
}

#tt3 {
    width: 140px;
}

#tt4 {
    width: 195px;
}

#copyright,
#post-socials-text {
    padding: 17px 0;
    text-align: center; 
}

/*-------------------------------------*/
/* Right Credit Cards Section          */
.footer-section.credit-cards {
    justify-content: flex-end;
    padding-right: 1.5em;
}

.credit-card {
    border-radius: 3px;
    box-shadow: 0.1em 0.1em 0.3em #000;
    width: 80px;
    max-width: 80px;
    min-width: 60px;
    max-height: 52px;
    margin: 2px;
    vertical-align: middle;
}

@media only screen and (max-width: 1320px) {
    /* Left Badges Section */
    .footer-section.badges {
        -webkit-transform: scale(0.8); /* Chrome, Opera 15+, Safari 3.1+ */
        -moz-transform: scale(0.8); /* Firefox 3.5+ */
        -ms-transform: scale(0.8); /* IE 9 */
        -o-transform: scale(0.8); /* Opera 10.5+ */
        transform: scale(0.8); /* Firefox 16+, IE 10+, Opera */
        padding-left: 0;
    }

    .credit-card {
        width: 70px;
        max-width: 70px;
        min-width: 50px;
        max-height: 44.8px;
    }
}

@media only screen and (max-width: 1120px) {
    /* Left Badges + Right Credit Cards Section */
    .footer-section.badges,
    .footer-section.credit-cards {
        flex-wrap: wrap;
        justify-content: center;
        width: 25%;
    }

    /* Center Socials/Copyright Section */
    .footer-section.central {
        width: 50%;
    }
}

@media only screen and (max-width: 640px) {
    /* Left Badges + Right Credit Cards Section */
    .footer-section.badges,
    .footer-section.credit-cards {
        display: none;
    }

    /* Center Socials/Copyright Section */
    .footer-section.central {
        width: 100%;
    }

    #social-links > div {
        width: 80px;
    }

    #copyright,
    #post-socials-text {
        font-size: 14px;
        padding-top: 25px;
    }
}