.btn-load-pagination {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 64px;
    gap: 15px;
    background: #FFF;
    border: 1px solid #9aa1ac;
}

.btn-load-pagination:hover {
    background-color: #dddddd1c;
}

.pagination-text-justify {
	text-align: justify;
}


/** preloader **/

.line {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #4b9cdb;
}

.title-button {
    font-family: var(--second-family);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #202020;
}
.title-button img {
    margin-left: 15px;
    height: 16px;
}

.load-pagination {
    position: absolute;
    right: 30px;
    display: none;
}

.ring-pagination {
    width: 10px;
    height: 10px;
    margin: 0 auto;
    padding: 10px;
    border: 6px dashed #4b9cdb;
    border-radius: 100%;
}


/* =Animate the stuff
------------------------ */
.load-pagination .ring-pagination {animation: loading-format 1.5s .3s cubic-bezier(.17,.37,.43,.67) infinite;}


@keyframes loading-format {
    0 {transform: rotate(0deg);}
    50% {transform: rotate(180deg);}
    100% {transform: rotate(360deg);}
}