@layer template {
    .arrow {
        display: flex;
        align-items: center
    }

    @media (min-width: 1024px) {
        .arrow {
            align-self:center
        }
    }

    .arrow .arrow__container {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        width: 100%
    }

    @media (min-width: 1024px) {
        .arrow .arrow__container {
            flex-direction:row
        }
    }

    @media (max-width: 1023px) {
        .arrow.arrow--m-bottom .arrow__container {
            flex-direction:column-reverse
        }

        .arrow.arrow--m-bottom .arrow__container .arrow__arrow {
            clip-path: polygon(0 0,100% 0,50% 100%);
            margin-top: -1px;
            margin-bottom: 0
        }
    }

    @media (min-width: 1024px) {
        .arrow.arrow--d-right .arrow__container {
            flex-direction:row-reverse
        }

        .arrow.arrow--d-right .arrow__container .arrow__arrow {
            clip-path: polygon(0 0,100% 50%,0 100%);
            margin: 0 0 0 -1px
        }
    }

    .arrow .arrow__arrow {
        clip-path: polygon(50% 0,0 100%,100% 100%);
        display: flex;
        width: 7.8125vw;
        height: 3.90625vw;
        margin-bottom: -1px;
        background: var(--background)
    }

    @media (min-width: 1024px) {
        .arrow .arrow__arrow {
            clip-path:polygon(100% 0,0 50%,100% 100%);
            align-self: stretch;
            width: 35px;
            height: auto;
            margin-right: -1px;
            margin-bottom: 0
        }
    }

    .arrow .arrow__text {
        flex: 1;
        width: 100%;
        padding: 3.75vw 3.125vw 4.0625vw;
        text-align: center;
        background: var(--background)
    }

    @media (min-width: 1024px) {
        .arrow .arrow__text {
            width:auto;
            padding: 23px 20px;
            text-align: left
        }
    }
}

.arrow[data-v-63e82ca9] {
    --background: var(--7cba99ea)
}
