.loader {
    display: none;
    position: fixed;
    background: rgba(255, 140, 0, .3);
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.flex-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.right-btns {
    margin-top: 50px;
}

.lds-grid {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-grid div {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    animation: lds-grid 1.2s linear infinite;
}
.lds-grid div:nth-child(1) {
    top: 8px;
    left: 8px;
    animation-delay: 0s;
}
.lds-grid div:nth-child(2) {
    top: 8px;
    left: 32px;
    animation-delay: -0.4s;
}
.lds-grid div:nth-child(3) {
    top: 8px;
    left: 56px;
    animation-delay: -0.8s;
}
.lds-grid div:nth-child(4) {
    top: 32px;
    left: 8px;
    animation-delay: -0.4s;
}
.lds-grid div:nth-child(5) {
    top: 32px;
    left: 32px;
    animation-delay: -0.8s;
}
.lds-grid div:nth-child(6) {
    top: 32px;
    left: 56px;
    animation-delay: -1.2s;
}
.lds-grid div:nth-child(7) {
    top: 56px;
    left: 8px;
    animation-delay: -0.8s;
}
.lds-grid div:nth-child(8) {
    top: 56px;
    left: 32px;
    animation-delay: -1.2s;
}
.lds-grid div:nth-child(9) {
    top: 56px;
    left: 56px;
    animation-delay: -1.6s;
}
@keyframes lds-grid {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.d-none {
    display: none !important;
}

.m-0-auto {
    margin: 0 auto !important;
}

.d-flex {
    display: flex !important;
}

.bg-gray {
    background: #f8f8f8;
}

.w-100 {
    width: 100% !important;
}

.w-75 {
    width: 75% !important;
}

.w-50 {
    width: 50% !important;
}

.w-25 {
    width: 25% !important;
}

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.gradient {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, .12) 0%, #000 24%);
}

.container {
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 15px;
}

.pagination {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 250px;
}

.pagination a {
    display: block;
    padding: 5px;
    font-weight: 600;
    font-size: 28px;
    line-height: 150%;
    color: #C4C4C4;
    text-decoration: none;
    transition: linear all .2s;
}

.pagination a:hover {
    color: #FF8C00;
}

.pagination a.active {
    color: #0D0D0D
}

.angel {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 17L13.0968 10.2258L6 3.45161' stroke='%230D0D0D' stroke-width='2' stroke-miterlimit='10' stroke-linecap='square'/%3E%3C/svg%3E%0A");
    width: 20px;
    height: 20px;
    display: inline-block;
}

.angel-right {}

.angel-left {
    transform: rotate(-180deg);
}

.label-mr-default {
    margin-right: 55px !important;
}