.footer__payment__methods {
    width: 100vw;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    gap: .25rem;
    background-color: var(--primary-color);
    border-top: 1px solid var(--border-color);
    padding: 1rem var(--h-gap2);

    h3 {
        font-weight: 500;
    }

    ul {
        display: flex;
        gap: 1rem;

        li {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: .5rem;
            width: 4.8rem;
            height: 3rem;
            border-radius: .5rem;
            padding: .5rem;

            svg {
                border: 1px solid var(--border-color);
                border-radius: 0.4rem;
                width: 100%;
                height: 100%;
            }
        }
    }
}

.footer {
    width: 100vw;
    max-width: 100vw;
    border-top: 1px solid var(--border-color);
    position: relative;
    background-color: var(--primary-color);
}

.footer__menu {
    width: 100%;
    height: 100%;
    padding: 1.5rem var(--h-gap2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__logo__container {
    display: flex;

    img {
        height: 200px;
        width: 200px;
        transform: translateY(-1.5rem);
    }
}

.footer__menu__title {
    margin-bottom: .75rem;
    font-size: 1.025rem;
}

.footer__menu__links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding-inline: 0.25rem;
}

.footer__menu__link {
    font-size: .9rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .3rem;

    &.social {
        background: none;

        &::after {
            width: 0 !important;
        }
    }

    svg {
        width: 1.75rem;
        height: 1.75rem;
        aspect-ratio: 1 / 1;
    }
}

.footer__menu__links__social {
    flex-direction: row;
}

.footer__copyrights {
    width: 100vw;
    max-width: 100vw;
    height: 5vh;

    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background-color: var(--accent-color);
    position: relative;

    span {
        position: absolute;
        right: 1rem;
        opacity: 0;
        transition: 5s cubic-bezier(.6, .04, .98, .34);
        cursor: help;
        display: flex;
        align-items: center;
        gap: .3rem;

        * {
            cursor: help;
            font-size: 1vw;
            color: var(--primary-color);
        }

        a {
            cursor: pointer;

            &::after {
                background-color: var(--primary-color);
                height: .5px;
            }
        }

        &:hover {
            opacity: 1;
        }
    }
}

.cookie__banner {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 1rem calc(var(--h-gap2) / 1.325);
    background: #fff3;
    color: var(--accent-color);
    border-top: 1px solid #0000001a;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    z-index: 800;
    backdrop-filter: blur(4px);
    width: 100vw;
    max-width: 100vw;
    --webkit-backdrop-filter: blur(4px);
    transition: translate .25s cubic-bezier(.19, 1, .22, 1);
    translate: 0 100%;

    @media screen and (max-width: 768px) {
        flex-direction: column;
    }

    &.open {
        translate: 0 0;
    }

    .cookie__banner__header {
        display: flex;
        gap: 1rem;
        align-items: center;
        justify-content: space-between;
        width: 100%;

        @media screen and (max-width: 768px) {
            flex-direction: column;
        }
    }

    p {
        letter-spacing: 0.0075rem;

        a {
            background: none;
            text-decoration: underline;
        }
    }

    .cookie__buttons {
        display: flex;
        gap: .5rem;
        align-items: center;
        justify-content: center;
        max-width: fit-content;
        width: 100%;

        @media screen and (max-width: 768px) {
            flex-direction: column;
            max-width: 100%;
        }

        .row__cookie__buttons {
            display: flex;
            gap: .5rem;
            align-items: center;
            justify-content: center;
            max-width: fit-content;
            width: 100%;

            @media screen and (max-width: 768px) {
                max-width: 100%;
            }
        }

    }

    .cookie__button {
        background-color: var(--accent-color);
        color: var(--primary-color);
        padding: .5rem 1.25rem;
        border-radius: var(--squared-border-radius);
        border: none;
        cursor: pointer;
        transition: outline-color .25s cubic-bezier(.19, 1, .22, 1), background-color .25s cubic-bezier(.19, 1, .22, 1);
        outline: 1px solid transparent;
        border: 1px solid var(--accent-color);

        @media screen and (max-width: 768px) {
            width: 100%;
        }

        &:hover {
            background-color: var(--accent-color-hover);
        }

        &:active{
            background-color: var(--accent-color-active);
        }

        &.primary__variant {
            background-color: var(--primary-color);
            color: var(--accent-color);

            &:hover {
                background-color: var(--primary-color-hover);
            }

            &:active{
                background-color: var(--primary-color-active);
            }
        }

        &:focus {
            outline-color: #2020209d;
        }
    }

    .cookie__more__options {
        display: none;
        gap: 1rem;
        width: 100%;

        @media screen and (max-width: 768px) {
            flex-direction: column;
        }
    }

    .cookie__more__options__row {
        display: flex;
        align-items: start;
        justify-content: space-between;
        width: 100%;
        border: 1px solid var(--border-color);
        padding: 1rem;
        border-radius: var(--squared-border-radius);

        .cookie__more__options__col {
            display: flex;
            flex-direction: column;
            gap: .5rem;
        }

    }

    #finish__cookies__selection {
        display: none;
    }

    &.cookie__options__open {
        flex-direction: column;

        #finish__cookies__selection {
            display: block;
        }

        .cookie__more__options {
            display: flex;
        }

        .cookie__buttons {
            display: none;
        }
    }
}