.snax-quiz-separator {
    text-align: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 2em auto;
    padding: 12px;
    text-transform: uppercase;
    position: relative;
    color: white;
    border-bottom: 2px solid #3c5a98;
    background-color: #3c5a98;
    border-radius: 2px;
    width: 100%;
}

.snax-quiz-separator::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #3c5a98;
}