.root {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 64px 0;
    overflow: hidden;
}

.footer {
    width: 100%;
    display: flex;
    border-top: var(--border-width-sm) solid var(--border-color-light);
    border-bottom: var(--border-width-sm) solid var(--border-color-light);
}

.label {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-primary);
    text-decoration: none;
    white-space: nowrap;
    padding: 9px 32px;
    cursor: pointer;
    position: relative;

    &:hover {
        text-decoration: none;
        color: inherit;
    }

    &::after {
        content: "";
        display: flex;
        width: 1px;
        height: 32px;
        background-color: var(--border-color-light);
        position: absolute;
        right: 0;
    }
}

.default {
    cursor: default;
}

@media screen and (width <= 768px) {
    .root {
        padding: 40px 0;
    }

    .label {
        padding: 10px 24px;
    }
}
