/*Loading Ajax*/
.waiting_for_ajax {
    position: fixed;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 9999999999999999999;
    max-height: 100%;
}
.waiting_for_ajax > div {
    opacity: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    background: #6161618c;
    width: 100%;
    padding: 10px 25px;
    border-radius: 10px;
    margin: auto;
    /*max-width: 300px;*/
}
.waiting_for_ajax img {
    width: 50px;
}
.waiting_for_ajax p {
    font-size: 16px;
    color: #FFF!Important;
    margin-top: 10px;
    height: auto;
    margin-bottom: 0px;
}
#rotate-image {
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }