@import url('https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;900&display=swap');
html,
body,
h1,
h2,
h3,
h4,
h5,
p,
ul {
    font-family: 'Tajawal', 'Baloo Tammudu 2', cursive;
}

.loader__wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 9999;
    background-color: #222222;
    overflow: hidden;
}

.loader {
    --sz: 7rem;
    width: calc(var(--sz) * 2);
    height: var(--sz);
    margin: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: space-evenly;
    justify-content: space-evenly;
}

.loader__sq {
    --p-sz: calc(var(--sz) / 4);
    --m-offset: calc((var(--p-sz) * -1) * 0.75);
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -webkit-box-pack: space-evenly;
    justify-content: space-evenly;
    height: 100%;
    width: 50%;
}

.loader__sq::before,
.loader__sq::after {
    width: var(--p-sz);
    height: var(--p-sz);
    content: "";
    position: relative;
    -webkit-transform: translateY(calc((var(--sz) - var(--p-sz)) * -1));
    transform: translateY(calc((var(--sz) - var(--p-sz)) * -1));
    animation: loader-box-bounce 0.5s cubic-bezier(0.3, 0.5, 0.4, 0.95) calc(var(--i) * 0.06s) infinite alternate-reverse;
}

.loader__sq:first-of-type {
    margin-right: var(--m-offset);
}

.loader__sq:first-of-type::before {
    --i: 1;
    border: 3px solid #ff7ab5;
    border-radius: 50%;
}

.loader__sq:first-of-type::after {
    --i: 3;
    background-color: #c643fb;
}

@supports ((-webkit-clip-path: circle()) or (clip-path: circle())) {
    .loader__sq:first-of-type::after {
        -webkit-clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    }
}

.loader__sq:nth-of-type(2)::before {
    --i: 2;
    border: 3px solid #ffb650;
}

.loader__sq:nth-of-type(2)::after {
    --i: 4;
    background-color: #2fe2dd;
    border-radius: 50%;
}

@supports ((-webkit-clip-path: circle()) or (clip-path: circle())) {
    .loader__sq:nth-of-type(2)::after {
        border-radius: 0;
        -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
        clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    }
}

@-webkit-keyframes loader-box-bounce {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes loader-box-bounce {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html,
body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

.lead {
    font-size: 1.175em;
    font-weight: 300;
}

.uk-logo img {
    height: 28px;
}

.text-white {
    color: white;
}

.text-white:hover {
    color: rgb(219, 219, 219);
}

.uk-succes {
    background-color: #00c949;
}

.uk-danger {
    background-color: #b6403b;
}

.uk-button-default {
    color: gray !important;
}

.visible-xs {
    display: none;
}

@media (max-width: 640px) {
    .cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .uk-button-default {
        padding: 2px !important;
    }
    .uk-padding-mobile {
        padding: 2px !important;
    }
    .visible-xs {
        display: block;
    }
}

.pt-5 {
    padding-top: 20px;
}

.hidden {
    display: none !important;
}

.spinner-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

.three-quarter-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #00c949;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin .5s linear 0s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}