/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
.top-control{
    padding-top: 20px;
    position: relative;
}

.top-control .top-error-message{
    font-size: 0.7rem;  
    position: absolute;
    bottom: 23px;
    right: -11px;   
    margin-left: 1px;
    text-align: center;
    padding: 7px;
    padding-right: 15px;
    padding-left: 15px;
    color: #c3120e;
    background-color: #ffffff;
    border: 1px solid #c3120e;
    border-radius: 3px;
    min-height: 31px;
    z-index: 1000;
    animation-name: fadeIn;
    animation-duration: 0.5s;
    display: none; 
    box-shadow: 2px 3px 3px 0px rgb(183, 176, 176);
    pointer-events: none;
    font-weight: bold;
}

.top-control .top-error-message:before{
    content: "";
    position: absolute;
    bottom: -6px;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
    border-bottom: 1px solid #c3120e;
    border-right: 1px solid #c3120e;
}
.top-control:hover .top-error-message{
    display: block;
}


.top-state-error{
    color: red!important;
}
.top-state-error:before,
.top-required:before{
    font-family: FontAwesome;
    background: none;
    width: auto;
    font-size: 10px;
    content: "\f069";
    margin-left: 3px;
}

.top-control .top-control-label{
    font-size: 0.75rem; 
    color: #0449bd;
    font-weight: normal;
    margin-left: 6px;
    top: 0;
    right: 0;
    position: absolute;
    width: 100%;
}

.top-control .ui-state-disabled,
.top-control .ui-state-disabled label{
    color: #a9a6a6!important;
    cursor: not-allowed!important;
    user-select: none!important;
    background-color: #f5f5f7;
}
.ui-selectonemenu .ui-state-disabled{
    cursor: pointer!important;
    background-color:transparent!important;
}
