/* 유효성 검증 툴팁 HSB 2023-05-25 */
.error-popup {
    text-align: center;
    background-color: #323232;
    opacity: 0.9;
    position: absolute;
}
.error-popup:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    top: -8px;
    border-bottom: 8px solid #323232;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    opacity: 0.9;
}
.error-popup .error-popup-content .error-msg{
    color : white;
    font-weight: 100;
    padding: 5px;
}