/* Ensure that the error indicators are reset properly */
.group.required p {
    transition: color 0.3s;
    position: relative;
}

.speech-bubble {
    position: absolute;
    background-color: #e75f58;
    border: 1px solid #e75f58;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    max-width: 240px;
    z-index: 1000;
    font-size: 11px;
    left: -10px;
    top: -10px;
    transform: translateX(-100%);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #e75f58;
}

@media (max-width: 500px) {
    .speech-bubble {
        max-width: 280px;
		width: 100%;
        text-align: center;
        left: 50%;
        bottom: 10px;
        top: auto;
        transform: translateX(-50%);
    }

    .speech-bubble::after {
        top: auto;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        border-width: 5px;
        border-style: solid;
        border-color: #e75f58 transparent transparent transparent;
    }
}