.loadMoreBtn {
    color: inherit
}

.lds-ellipsis {
    display: none;
    position: relative;
    width: 80px;
    height: 12px
}

.lds-ellipsis div {
    position: absolute;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0)
}

.lds-ellipsis div:first-child {
    left: 8px;
    animation: lds-ellipsis1 .6s infinite
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 .6s infinite
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0)
    }
    100% {
        transform: scale(1)
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1)
    }
    100% {
        transform: scale(0)
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(24px, 0)
    }
}

.ald-ajax-btn {
    min-width: 160px
}

.ald-ajax-btn.loading .ald-btn-label {
    display: none
}

.ald-ajax-btn.loading .lds-ellipsis {
    display: inline-block
}

.ald_laser_loader {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e1e4e8;
    z-index: 99999;
    width: 100%
}

.ald_laser_loader.show {
    visibility: visible
}

.ald_loader_progress {
    background: linear-gradient(to left, #230dc2, #ff9200);
    box-shadow: rgb(35 13 194) 0 0 10px;
    height: 100%;
    position: absolute;
    z-index: 99999;
    left: 0;
    width: 100%;
    top: 0;
    transform: translate3d(-100%, 0, 0);
    transition: all 2s cubic-bezier(0, 0, .2, 1) 0s
}