﻿@keyframes spin {
    0 {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotateImageLoading {
    from {
        transform: translate(-50%,-50%) rotateY(0) scale(1.01)
    }

    to {
        transform: translate(-50%,-50%) rotateY(360deg) scale(1.01)
    }
}

@keyframes shine-skeleton-lines {
    0 {
        background-position: -100px
    }

    40%,100% {
        background-position: 600px
    }
}

.cmp__footer {
    --paddingBottom: 40px;
    background-color: var(--color-bg-02);
    position: relative;
    padding: 40px 0 var(--paddingBottom)
}

.cmp__footer__mainwrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: solid 1px var(--color-font-04);
    padding: 32px 16px 0;
    max-width: 1436px;
    margin: 0 auto
}

.cmp__footer__rrss {
    position: relative;
    display: inline-flex;
    gap: 16px
}

    .cmp__footer__rrss .cmp-button {
        height: auto;
        width: auto;
        padding: unset;
        border: 0;
        transition: unset
    }

        .cmp__footer__rrss .cmp-button:hover {
            border: 0
        }

        .cmp__footer__rrss .cmp-button .cmp-icon-button__icon {
            position: relative;
            width: 24px;
            height: 24px
        }

            .cmp__footer__rrss .cmp-button .cmp-icon-button__icon .ico {
                mask: var(--ico-path) no-repeat 100% 100%;
                -webkit-mask: var(--ico-path) no-repeat 100% 100%;
                -webkit-mask-size: contain;
                mask-size: contain
            }

    .cmp__footer__rrss .social-icon-button {
        background-color: unset;
        border: 0;
        padding: 0
    }

        .cmp__footer__rrss .social-icon-button .cmp-icon-button:hover {
            background-color: unset
        }

        .cmp__footer__rrss .social-icon-button .cmp-icon-button__icon .ico {
            background-color: var(--color-bg-01)
        }

.cmp__footer__wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 32px
}

.cmp__footer__options {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

    .cmp__footer__options .cmp-link {
        position: relative;
        text-decoration: none;
        color: var(--color-font-02)
    }

        .cmp__footer__options .cmp-link .cmp-link__text {
            position: relative;
            font-family: 'CupraBook',sans-serif;
            font-weight: 350;
            font-size: 14px;
            line-height: 1.2;
            margin-bottom: 0;
            color: var(--color-font-02)
        }

.cmp__footer__brand {
    position: relative;
    margin-top: 16px;
    width: 100%;
    text-align: center
}

    .cmp__footer__brand .cmp-text p {
        position: relative;
        font-family: 'CupraBook',sans-serif;
        font-weight: 350;
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 0;
        color: var(--color-font-02)
    }

@media(min-width:764px) {
    .cmp__footer__mainwrapper {
        padding: 32px 32px 0
    }

    .cmp__footer__options {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px 32px;
        justify-content: center;
        align-items: center
    }

        .cmp__footer__options .cta {
            position: relative
        }

            .cmp__footer__options .cta:before {
                position: absolute;
                width: 1px;
                height: 16px;
                display: block;
                content: '';
                top: 50%;
                left: -16px;
                background-color: var(--color-ui-03);
                transform: translateY(-50%)
            }

            .cmp__footer__options .cta:first-child:before {
                display: none
            }
}

@media(min-width:1016px) {
    .cmp__footer__rrss {
        flex-shrink: 0
    }

    .cmp__footer__wrapper {
        flex-direction: row
    }

    .cmp__footer__mainwrapper {
        gap: 0
    }

    .cmp__footer__options {
        flex-wrap: wrap;
        gap: 16px 32px;
        justify-content: center;
        align-items: center
    }

    .cmp__footer__brand {
        flex-shrink: 0
    }
}

@media(min-width:1436px) {
    .cmp__footer__mainwrapper {
        flex-direction: row;
        justify-content: space-between;
        gap: 106px
    }

    .cmp__footer__wrapper {
        margin-top: 0;
        align-items: unset
    }

    .cmp__footer__brand {
        width: auto;
        margin-top: 0
    }
}
