.section__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    padding: 40px 0 0 0;
    border-top: solid 1px var(--color-header-border-gray);
    background: var(--color-header-gray);
    flex-flow: column wrap;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 16px;
}

.footer {
    font-weight: 500;
    line-height: 18px;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    gap: 0;
}

.footer__top {
    padding-bottom: 30px;
    border-bottom: 3px solid rgb(255 255 255 / 10%);
    width: 100%;
    gap: 30px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
}

.footer__logo img {
    width: 160px;
    height: auto;
}

.footer__links {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: calc(100% - 190px);
}

.footer__link {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--color-white);
}
.footer__link:after {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0px;
    transition: 200ms;
    background: red;
}
.footer__link:hover:after {
    width: 100%;
}

.footer__bottom {
    width: 100%;
    padding: 30px 0 40px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__left {
    display: flex;
    flex-flow: column wrap;
    gap: 10px;
}

.footer__left a { transition: 250ms; }

.footer__left a:hover { color: var(--color-primary); }

.footer__extra {
    padding: 15px 25px;
    background-color: black;
    width: 100%;
}

.footer__extra span {
    max-width: 1110px;
    display: block;
    font-size: 14px;
    color: white;
    margin: auto;
    line-height: 1.2;
}

#popup__cookies {
    display: none;
    position: fixed;
    z-index: 999999;
    bottom: 40px;
    margin: auto;
    padding: 0 25px;
    width: 100%;
    pointer-events: none;
}

#popup__cookies .container {
    width: 100%;
    max-width: 1110px;
    margin: auto;
}

#popup__cookies .wrapper {
    width: 100%;
    max-width: 290px;
    background-color: #F8F8F8;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 16px;
    pointer-events: all;
}

#popup__cookies .cookies__text {
    display: flex;
    gap: 10px;
    flex-flow: row wrap;
    align-items: flex-start;
    margin-bottom: 12px;
}

#popup__cookies .cookies__text img { width: 22px; }

#popup__cookies .cookies__text span {
    display: block;
    width: calc(100% - 32px);
    font-size: 13px;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
    letter-spacing: 0.2px;
}

#popup__cookies button {
    width: 100%;
    height: 32px;
    text-transform: uppercase;
    color: white;
    border: 2px solid #FF3535;
    background-color: #FF3535;
    border-radius: 6px;
    font-weight: 500;
    font-size: 12px;
    transition: 250ms;
}

#popup__cookies button:hover {
    background-color: transparent;
    color: black;
}

table.requisites__table {
    width: 100%;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.1);
}

table.requisites__table tr:nth-child(even) { background-color: #EBEBEB; }

table.requisites__table tr td {
    padding: 0 15px;
    font-weight: 500;
    font-size: 18px;
    height: 52px;
    display: inline-flex;
    width: 50%;
    align-items: center;
}

table.requisites__table tr td:last-child { font-weight: 700; }
table.requisites__table.requisites__table--styled tr td:last-child { font-weight: 400 !important; font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important; }

@media (min-width: 601px) and (max-width: 900px) {
    .footer__top { gap: 10px; }
    .footer__logo img { width: 120px; }
    .footer__links { width: calc(100% - 130px); }
    .footer__link { font-size: 12px; }
    table.requisites__table tr td, .footer__left a, .footer__copyright { font-size: 14px; }
}

@media (max-width: 600px) {
    .footer {
        font-size: 14px;
        gap: 30px;
    }

    .footer__logo img {
        width: 100%;
        max-height: 74px;
    }

    .footer__links {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .footer__link { font-size: 16px; }

    .footer__bottom {
        padding-top: 0;
        flex-flow: column wrap;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__copyright {
        font-size: 16px;
    }

    table.requisites__table tr td {
        display: flex;
        width: 100%;
        height: 32px;
        font-size: 16px;
    }

    .footer__extra span { font-size: 12px; }
}


/* Styled requisites */
.requisites__table--styled tr td {
  padding: 10px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  vertical-align: top;
}
.requisites__table--styled tr td:first-child {
  color: #888;
  font-size: 13px;
  white-space: nowrap;
  padding-right: 24px;
}
.requisites__table--styled tr td:last-child {
  font-weight: 400;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  word-break: break-word;
  max-width: 220px;
}
.requisites__table--styled tr {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.requisites__table--styled tr:last-child {
  border-bottom: none;
}
.requisites__table--styled tr:nth-child(even) {
  background-color: transparent;
}
