div[id^="comp-ajax-"][id$="page-cover"] {
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2147483647;
}
@keyframes spin {
    from {transform: rotate(0deg)} to {transform: rotate(360deg)}
}
div[id^="comp-ajax-"][id$="ajax-cover"] {
    background-color: #000;
    opacity: 0.8;
    min-width: 20%;
    width: auto;
    height: auto;
    position: fixed;
    top: 30%;
    left: 38%;
    display: none;
    padding: 2%;
    border-radius: 10px;
    z-index: 2147483647;
}
div[id^="comp-ajax-"][id$="ajax-cover"].loading div:first-child {
    border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    top: 35%;
    margin: 0 auto;
}
div[id^="comp-ajax-"][id$="ajax-cover"].success div:first-child {
    border: 5px solid #FFF;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    top: 35%;
    margin: 0 auto;
}
div[id^="comp-ajax-"][id$="ajax-cover"].fail div:first-child, div[id^="comp-ajax-"][id$="ajax-cover"].warning div:first-child {
    width: 50px;
    height: 50px;
    padding: 0 5px 10px;
    position: relative;
    top: 35%;
    margin: 0 auto;
}
div[id^="comp-ajax-"][id$="ajax-cover"].fail div:first-child:before {
    content: 'X';
    color: #FFF;
    line-height: 50px;
    font-size: 80px;
}
div[id^="comp-ajax-"][id$="ajax-cover"].warning div:first-child:before {
    content: '‼';
    color: #FFF;
    line-height: 50px;
    font-size: 80px;
}
div[id^="comp-ajax-"][id$="ajax-hint"] {
    font-size: 39px;
    line-height: 40px;
    font-weight: bold;
    color: #FFF;
    opacity: 1;
    position: relative;
    padding-top: 10px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}