.page-uaePassAuthorizationPage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-uaePassAuthorizationPage .cd-main-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

#uaepass-auth-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.uaepass-progress-list {
    list-style: none;
}

.uaepass-progress-list li {
    position: relative;
    counter-increment: list;
    min-height: 72px;
    padding-left: 12px;
    padding-top: 3px;
    color: #646E81;
}

.uaepass-checkout .btn-uaepass img{
    max-height: 100%;
}


.uaepass-progress-list li:not(.uaepass-progress-list li.active ~ li) {
    color: #0a0a0a;
}

.uaepass-progress-list li.active {
    color: #046BB3;
    font-weight: bold;
}

.uaepass-progress-list li:not(:last-child)::before {
    display: inline-block;
    content: '';
    position: absolute;
    left: -27px;
    height: 100%;
    width: 3px;
    border-left: 3px dotted #D3EDFF;
}

.uaepass-progress-list li::after {
    content: counter(list);
    display: inline-block;
    position: absolute;
    top: -2px;
    left: -42px;
    width: 32px;
    height: 32px;
    border: 2px solid #D3EDFF;
    border-radius: 50%;
    background-color: #EFF9FF;
    text-align: center;
    line-height: 28px;
    color: #046BB3;
    font-weight: bold;
}


.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

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

.uaepass-loading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

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

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

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.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);
    }
}
