  /*
 * =============================================================================
 * [ FOOTER ]
 * =============================================================================
 */
.footer {
    padding-top: 55px;
    padding-bottom: 30px;
    background-color: #243548;
    color: #fff;
    line-height: 1.1;
}

.footer a:hover {
    color: #4cb2d8;
}

.footer__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.footer__box {
    transition: all 0.2s ease;
}

.footer__box:first-child {
    width: 250px;
}

.footer__box:last-child {
    width: auto;
}

.footer__logo {
    margin-bottom: 20px;
}

.footer__office {
    line-height: 1.4;
    margin-bottom: 10px;
}

.footer__office h2 {
    font-size: 18px;
    margin: 0 0 10px;
    font-weight: bold;
}

.footer__title {
    font-size: 14px;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #fff;
}

.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__list li {
    margin-bottom: 10px;
}

.footer__payment {
    margin-top: -5px;
}

.footer-soc-icons {
    display: flex;
    margin-bottom: 14px;
    gap: 8px;
}

.footer__badges {
    display: flex;
    align-items: center;
}
.trustwave-link {
    margin-right: 10px;
}
.trustwave-logo {
    max-width: 114px;
}

.alumni-logo {
    max-width: 80px;
}

.footer__box--support {
    width: 264px;
}

.footer__support {
    line-height: 1.4;
}

.footer__box--apps .apps {
    margin-bottom: 40px;
}

.apps__box:not(:last-child) {
    margin-bottom: 20px;
}

.apps__link:hover {
    text-decoration: none;
}

.footer__bottom {
    text-align: center;
}

.footer__prices {
    margin: 0 0 5px;
}

.footer__copyrights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer__copy {
    font-size: 14px;
    margin: 0 10px 0 0;
}

.footer__list--legal {
    display: flex;
    padding: 0;
}

.footer__list--legal li {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.footer__list--legal li:not(:first-child)::before {
    content: "|";
    margin: 0 5px;
}

.chat__button {
    width: 64px;
    height: 64px;
    padding: 0;
    background: rgb(49, 122, 226);
    position: fixed;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 300ms ease-in-out 0s, box-shadow 300ms ease-in-out 0s, opacity 300ms ease-in-out 0s;
    border: none;
    bottom: 48px;
    right: 48px;
    z-index: 10;
}

.chat__button:hover,
.chat__button.is-clicked {
    transform: translateY(-2px);
    box-shadow: rgb(0 0 0 / 8%) 0 11px 13px -2px;
}

.chat__button.is-clicked {
    opacity: 0.7;
}

.chat__svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
}

@media screen and (max-width: 1200px) {
    .gdpr-infobar-visible .footer {
        padding-bottom: 110px;
    }
}

@media screen and (max-width: 1100px) {
    /* TODO: bootstrap overrides */
    .footer__support {
        text-align: left;
    }
}

@media screen and (max-width: 1000px) {
    .footer__row {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .footer__box,
    .footer__box:first-child,
    .footer__box:last-child {
        width: 50%;
        margin: 0 0 20px;
        padding-left: 15%;
        padding-right: 15%;
    }
    .footer__box:last-child {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .footer__box--apps .apps {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer__row {
        margin-bottom: 15px;
        padding-bottom: 30px;
    }
    .footer__box,
    .footer__box:first-child,
    .footer__box:last-child {
        padding-left: 10%;
    }
    .footer__box:first-child {
        width: 100%;
    }
    .footer__box:last-child {
        width: 50%;
        display: block;
    }
    .footer-soc-icons {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 575px) {
    .chat__button {
        right: 16px;
        bottom: 16px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding-top: 30px;
    }
    .footer__box,
    .footer__box:first-child,
    .footer__box:last-child {
        padding: 0 10px;
    }
    .footer__bottom,
    .footer__copy {
        font-size: 12px;
    }
    .footer__copy {
        margin: 0 0 5px;
    }
    .footer__list--legal {
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }
    .footer__list--legal li:not(:first-child)::before {
        display: none;
    }
}