.footer {
    background-color: #111;
    padding: 36px 0 10px;
    color: #fff;
}

.footer *,
.footer *::before,
.footer *::after {
    box-sizing: border-box;
}

.footer a {
    color: #fff;
}

.footer img,
.footer svg {
    vertical-align: middle;
}

.footer img {
    max-width: none;
    display: inherit;
}

.footer__container {
    width: 100%;
    max-width: 1210px;
    margin-inline: auto;
    padding-inline: 12px;
}

.footer__utility-row,
.footer__main-row,
.footer__legal-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
}

.footer__utility-item,
.footer__nav-column,
.footer__social-column,
.footer__legal-column {
    width: 100%;
    padding-inline: 12px;
}

.footer__utility-item {
    width: 50%;
}

.footer__nav-column,
.footer__social-column {
    width: 100%;
}

.footer__utility-link {
    display: block;
    margin-bottom: 36px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.footer__utility-link:hover,
.footer__utility-link:focus {
    color: #fff;
    text-decoration: underline;
}

.footer__utility-link:visited,
.footer__utility-link:active {
    color: #fff;
    text-decoration: none;
}

.footer__utility-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border: 1px solid #fff;
    border-radius: 25px;
    vertical-align: middle;
    position: relative;
}

.footer__utility-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer__utility-icon--shipping img {
    top: calc(50% - 2px);
}

.footer__section {
    margin-bottom: 0;
    border-bottom: 1px solid #bcbcbc;
}

.footer__section[open] .footer__section-chevron {
    transform: rotate(180deg);
}

.footer__nav-column:first-child .footer__section {
    border-top: 1px solid #fff;
}

.footer__nav-column:nth-child(3) .footer__section {
    border-bottom: none;
}

.footer__section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 20px 0;
    color: #fff;
    list-style: none;
    cursor: pointer;
}

.footer__section-title::-webkit-details-marker {
    display: none;
    content: "";
}

.footer__section-title-text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.footer__section-chevron {
    transition: transform 0.5s ease;
}

.footer__section-content {
    padding: 0 0 20px;
    border-top: none;
}

.footer__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link-item {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.footer__link-item:hover .footer__link {
    color: #fff;
    text-decoration: underline;
}

.footer__link {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
}

.footer__link:hover,
.footer__link:focus,
.footer__link:active,
.footer__link:visited {
    color: #fff;
}

.footer__link:hover,
.footer__link:focus {
    text-decoration: underline;
}

.footer__link--cookie {
    background-color: transparent !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 20px;
    color: #fff !important;
    text-decoration: none;
    cursor: pointer;
}

.footer__link--cookie:hover,
.footer__link--cookie:focus {
    text-decoration: underline;
}

.footer__social-column {
    position: relative;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 29px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__social-column::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -12px;
    width: calc(100% + 24px);
    max-width: 100vw;
    height: 1px;
    background-color: #fff;
}

.footer__social-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 45px;
    max-width: 162px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__social-item {
    max-width: 24px;
}

.footer__social-link {
    display: block;
    color: #fff;
}

.footer__social-link:hover .footer__social-icon,
.footer__social-link:focus .footer__social-icon {
    color: #cf2013;
}

.footer__social-icon {
    color: #fff;
    transition: color 0.3s ease;
}

.footer__bizrate {
    position: relative;
    z-index: 1;
    width: 125px;
    height: 73px;
    margin-left: auto;
}

.footer__bizrate-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: block;
    width: 55px;
    height: 23px;
    background: #fff;
    opacity: 0;
    text-decoration: none;
}

.footer__bizrate-link {
    display: block;
}

.footer__bizrate-image {
    display: block;
    width: 125px;
    height: 73px;
}

.footer__legal-column {
    margin-bottom: 8px;
}

.footer__legal-text {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.footer__visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (min-width: 576px) {
    .footer__legal-column {
        width: 33.333333%;
    }
}

@media (min-width: 768px) {

    .footer__utility-item {
        width: 25%;
    }

    .footer__nav-column,
    .footer__social-column {
        width: 25%;
    }

    .footer__section {
        border-bottom: none;
    }

    .footer__nav-column:first-child .footer__section {
        border-top: none;
    }

    .footer__section-title {
        padding: 0 0 15px;
        cursor: default;
        pointer-events: none;
    }

    .footer__section-title-text {
        font-size: 14px;
    }

    .footer__section-chevron {
        display: none;
    }

    .footer__section-content {
        padding: 0;
    }

    .footer__link-item:last-child .footer__link {
        margin-bottom: 0;
    }

    .footer__social-column {
        display: block;
        padding-top: 0;
        margin-bottom: 0;
    }

    .footer__social-column::before {
        display: none;
    }

    .footer__social-list {
        align-items: end;
        position: absolute;
        right: 12px;
        bottom: 20px;
        max-width: 100%;
        max-height: 78px;
    }

    .footer__legal-row {
        padding: 10px 0;
        border-top: 1px solid #fff;
        margin-top: 30px;
    }
}


