.errorTooltip-container {
    top: 0;
    left: calc(100% + 17px);
}

.errorTooltip-content {
    border: 1px solid #B50203;
    background-color: white;
    border-radius: 8px;
    color: #B50203;
    position: relative;    
    z-index: 2;
}

.errorTooltip-container::before {
    content: "";
    width: 20px;
    height: 20px;
    background-color: #B50203;
    position: absolute;
    rotate: 45deg;
    top: 12px;
    left: -5px;
    z-index: 1;
}