.hms-workflow-spinner-container {
    min-width: 300px;
    min-height: 120px;
}

.hms_state_inline .popover {
    border-width: 2px 0;
    border-color: #00a65a;
    border-style: solid;
    color: #000000;
}

.hms_state_inline .statusLabel {
    cursor: pointer;
}

.hms_state_inline .class {
    display: none;
}

/*.hms_state_inline .arrow,*/
.hms_state_inline .popover {
    background: rgba(255, 255, 255, 0.9);
}

.hms_state_inline .popover-content {
    background: none;
}

.workflow-all-choice {
    padding: 5px;
    margin: 5px;
}


.hms_state_inline .msg {
    display: none;
}

.hms_state_inline .msg.show {
    display: inline-block;
    background: #00a65a;
    color: #FFF;
    padding: 5px;
    border-radius: 5px;
}

.hms_state_inline .popover .popover-title {
    color: #000;
}

/** Animált betöltő */
.hms-workflow-spinner {
    margin: 0 auto;
    width: 25px;
    height: 20px;
    text-align: center;
    font-size: 5px;
    display: inline-block;
}

.hms-workflow-spinner > div {
    background-color: #333;
    height: 100%;
    width: 3px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.hms-workflow-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.hms-workflow-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.hms-workflow-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.hms-workflow-spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}