* {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 1em;
}

body {
    padding-top: 70px;
}

a,
a:hover {
    text-decoration: none;
}

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

.primary-input {
    color: #ffffff;
    background-color: #FFFFFF30;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    border: 1px solid #69727d;
    width: 100%;
    height: 100%;
    outline: none;
    padding: 12px;
    border-radius: 3px;
}

.primary-input:focus {
    border: 1px solid #f1f1f1;
}

.primary-button {
    height: 100%;
    width: 100%;
    background-color: var(--brand-primary);
    color: #ffffff;
    padding: 12px 18px;
    font-weight: 400;
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    transition: all .3s;
    cursor: pointer;
    border: none;
    border-radius: 3px;
    outline: none;
}

.primary-button:hover {
    background-color: var(--brand-primary);
}

.primary-divider {
    width: 100%;
    height: 1px;
    background-color: #292929;
}

.global_loading_icon {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    animation: loading_rotate 1s infinite linear;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}

.global_loading_icon.white {
    border-bottom: 2px solid #ffffff;
    border-left: 2px solid #ffffff;
}

.global_loading_icon.black {
    border-bottom: 2px solid #000000;
    border-left: 2px solid #000000;
}

@keyframes loading_rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.slide-in-right {
    animation: slideInFromRight 0.6s ease-out forwards;
}

.slide-in-top {
    animation: slideInFromTop 0.6s ease-out forwards;
}

.slide-in-bottom {
    animation: slideInFromBottom 0.6s ease-out forwards;
}

.slide-in-left-delay-1 {
    animation: slideInFromLeft 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.slide-in-left-delay-2 {
    animation: slideInFromLeft 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.slide-in-right-delay-1 {
    animation: slideInFromRight 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.slide-in-right-delay-2 {
    animation: slideInFromRight 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.slide-in-top-delay-1 {
    animation: slideInFromTop 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.slide-in-top-delay-2 {
    animation: slideInFromTop 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.slide-in-bottom-delay-1 {
    animation: slideInFromBottom 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.slide-in-bottom-delay-2 {
    animation: slideInFromBottom 0.6s ease-out 0.2s forwards;
    opacity: 0;
}