/* CSS for Ttesa career mod_ttesa_career */
.cnt-loader {
    width: 100%;
}
.cnt-loader::before {
    font-family: 'Font Awesome 6 Free';
    font-size: 8em;
    font-weight: 900;
    position: absolute;
    content: "\f110";
    width: 100%;
    left: 0;
    top: 50%;
    text-align: center;
    transition: all .35s;
    z-index: 1;
    -webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    -ms-transition: all .35s;
    -o-transition: all .35s;
}
@-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); } }
