.requiredField:after {
    content:" *";
    color: red;
}

.FieldOperationRow{
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}
.FieldHasOperationLeft .FieldOperationRow{
    left: 0;
}
.FieldHasOperationRight .FieldOperationRow{
    right: 0;
}
.FieldOperationRowBtn{
    cursor: pointer;
    font-size: 1.2rem;
}


/*staff working tag */
.staffWorkingStatusTag{
    position: absolute;
    top: 5px;
    left: 5px;
}
/*switch btn*/
.is-switch-btn-input{
    display: none;
    visibility: hidden;
}
.is-switch-btn{
    /*display: inline-block;*/
    /*border: 1px solid #ccc;*/
    box-shadow: 0 0 2px #000;
    border-radius: 30px;
    width: 100px;
    text-align: right;
    position: relative;
    padding: 0 10px;
    height: 35px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}
.is-switch-btn::after{
    font-family: FontAwesome;
    font-size: 1.2rem;
    content: "\f0eb";
    color: #000;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background: #f1f1f1;
    box-shadow: 0 0 1px #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5px;
    z-index: 1;
    transition: all 1.2s ease;
}
.is-switch-off-label {
    display: inline-block;
    opacity: 1;
    transition: opacity 1.2s ease;
}
.is-switch-on-label {
    display: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.is-switch-btn-input:checked + .is-switch-btn{
    /*text-align: left;*/
    justify-content: end;
    background: #1abc9c;
    color: #fff;
    box-shadow: 0 0 2px #fff;
}
.is-switch-btn-input:checked + .is-switch-btn::after{
    left: calc(100% - 30px);
    color: #e0a800;
}
.is-switch-btn-input:checked + .is-switch-btn .is-switch-off-label {
    display: none;
    opacity: 0;
}
.is-switch-btn-input:checked + .is-switch-btn .is-switch-on-label {
    display: inline-block;
    opacity: 1;
}
/*blinking circle*/
.is-circle, .is-circle::before {
    content: " ";
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transition: all 0.3s;
    display: inline-block;
}
.is-circle::before {
    position: absolute;
}
.circle-success, .circle-success::before {
    background-color: #218838;
}
.circle-success::before {
    background-color: #28a745;
}
.circle-danger, .circle-danger::before {
    background-color: #c82333;
}
.circle-danger::before {
    background-color: #dc3545;
}
.circle-warning, .circle-warning::before {
    background-color: #e0a800;
}
.circle-warning::before {
    background-color: #ffc107;
}
.has-blink::before {
    animation: has-blink 1.3s infinite;
}
@-webkit-keyframes has-blink {
    50%   {
        transform: scale(2);
        opacity: 0
    }
    100%   {
        transform: scale(2);
        opacity: 0
    }
}

.disabledItemElement{
    pointer-events: none!important;
}
.disabledItemElement:before{
    pointer-events: none!important;
}

.ltr{
    direction: ltr;
}
.rtl{
 direction: rtl;   
}

