﻿.footer-help {
    width: 100%;
    bottom: 0;
    right: 0;
    z-index: 1000;
}

.footer-squares-wrapper-help {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    margin-top: 40px;
}

    .footer-squares-wrapper-help::-webkit-scrollbar {
        display: none;
    }

.footer-squares-container-help {
    display: flex;
    overflow: hidden;
    margin-right: 40px;
    width: 100%;
}

.footer-square-help {
    min-width: 28px;
    min-height: 28px;
    max-width: 28px;
    max-height: 28px;
}

.footer-squares-container-help .footer-square-help:nth-child(odd) {
    background-color: black;
}

.footer-squares-container-help .footer-square-help:nth-child(even) {
    background-color: white;
}

.footer-squares-container-help.alternate-help .footer-square-help:nth-child(odd) {
    background-color: white;
}

.footer-squares-container-help.alternate-help .footer-square-help:nth-child(even) {
    background-color: black;
}

.footer-black-bar-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    box-sizing: border-box;
}

.logo-footer-help {
    max-width: 220px;
    max-height: auto;
}

.footer-black-bar-help a {
    color: white;
    text-decoration: none;
}

.footer-black-bar-help .social-logo-help {
    margin-left: 10px;
}

.footer-black-bar-help div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-black-bar-help span {
    font-size: 14px;
}

.social-logo-help {
    width: 25px;
}

.footer-links a {
    margin-left: 20px;
}

    .footer-links a:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .footer-help {
        overflow: hidden;
        padding-left: 0;
    }

    .footer-black-bar-help {
        margin-top: -5.6px;
        flex-direction: column;
    }

        .footer-black-bar-help a {
            margin-top: 20px;
            margin-bottom: 20px;
        }
}