footer {
    background: var(--card-background);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    display: block;
    margin-top: 60px;
}

/* -- Contact Information -- */

.ditec-footer-contact-information {
    text-align: center;
    padding-top: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--card-border);
}

.ditec-footer-contact-information a {
    font-size: 1.15rem;
    font-weight: 500;
}

.ditec-footer-contact-information .ditec-footer-phone {
    margin-right: 25px;
}

.ditec-footer-contact-information a svg {
    width: 18px;
    fill: #fff;
    margin-right: 4px;
}

.ditec-footer-phone svg {
    margin-top: -2px;
}



.footer-grid {
    display: grid;
    grid-template-columns: auto 1px auto;
    justify-content: space-between;
    padding-top: 70px;
    padding-bottom: 70px;
    position: relative;
}

.footer-grid::after {
    content: "";
    border-bottom: 1px solid var(--card-border);
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: absolute;
    right: 50%;
    width: 100vw !important;
    bottom: 0;
}

.footer-grid-separator {
    height: 140px;
    width: 1px;
    background-color: var(--card-border);
}

.footer-grid h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.footer-grid p {
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer-grid-links a {
    background: #fff;
    color: var(--card-background);
    padding: 8px 22px;
    border-radius: 100px;
    font-weight: 500;
    margin-right: 14px;
    display: inline-block;
    text-align: center;
}

.footer-grid-links a:last-child {
    margin-right: 0;
}

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

    .footer-grid {
        padding-top: 40px;
        padding-bottom: 0px;
        display: block;
        text-align: center;
    }

    .footer-grid::after {
        display: none;
    }

    .footer-grid h2 {
        font-size: 1.45rem;
    }

    .footer-grid p {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .footer-treatment-helper .footer-grid-links {
        margin-top: 34px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
        row-gap: 18px;
    }

    .footer-treatment-helper .footer-grid-links a:last-child {
        grid-column: 1 / -1;
    }

    .footer-grid-links a {
        margin-right: 0;
        padding: 18px 12px;
    }

    .footer-grid-separator {
        display: none;
    }

    .footer-faq {
        margin-top: 40px;
    }

    .footer-faq a {
        margin-top: 10px;
        width: 100%;
    }

}

.footer-links {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding-top: 34px;
}

.footer-links a {
    font-weight: 500;
}

.footer-links span {
    display: none;
}

.footer-information a {
    margin-right: 22px;
}

.footer-social a {
    margin-left: 22px;
}

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 24px;
        padding-top: 26px;
        text-align: center;
    }

    .footer-links a {
        display: block;
        margin-bottom: 4px;
    }

    .footer-links a:last-child {
        margin-bottom: 0;
    }

    .footer-links span {
        display: block;
        color: var(--grey-text);
        text-transform: uppercase;
        font-weight: 500;
        font-size: 0.875rem;
        letter-spacing: 1.2px;
        margin-bottom: 4px;
    }

    .footer-information a {
        margin-right: 0px;
    }
    
    .footer-social a {
        margin-left: 0px;
    }

}




.footer-bottom {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 30px;
}

.footer-bottom-notices {
    color: var(--grey-text);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1px;
}

.footer-country-select select {
    background: var(--background);
    border: 1px solid var(--card-border);
    color: #fff;
    font-weight: 500;
    height: 48px !important;
    padding-left: 14px !important;
}

.footer-country-select select:focus {
    background: var(--background);
    color: #fff;
    border: 1px solid var(--card-border) !important;
    outline: none !important;
}

.footer-country-select select:focus-visible {
    outline: none !important;
}

.footer-country-select select:not([multiple]):not([size]) {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICAgIDxwb2x5Z29uIGZpbGw9IiNGRkYiIHBvaW50cz0iMTIgMSA5IDYgMTUgNiIgLz4KICAgIDxwb2x5Z29uIGZpbGw9IiNGRkYiIHBvaW50cz0iMTIgMTMgOSA4IDE1IDgiIC8+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

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

    .footer-bottom {
        display: flex;
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 0;
    }

    .footer-bottom-notices {
        order: 2;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-country-select {
        order: 1;
        width: 100%
    }

    .footer-country-select select {
        height: 54px !important;
    }

}