.throbber-modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    display: none;
    z-index: 9999;
    opacity: 0.3;
}

.throbber-modal::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    background-image: url(/javax.faces.resource/img/gazella_white.png.jsf);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

    animation: spin 1s linear infinite;
    display: block;
    transform-origin: 61% 64%;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.loading {
    overflow: hidden;
}

body.loading .throbber-modal {
    display: block;
}

.throbber-background {
    background-image: url('../resources/img/ajax-loader.gif');
    background-repeat: no-repeat;
}

.owner-hide{
    display: none;
}

.owner-show{
    display: block;
}