body {
    color: #000;
    padding-bottom: 2rem;
    font-family: 'SanaSans Alt Regular', sans-serif;
    font-size: 1.1rem;
    background: #efefef;
}

@font-face {
    font-family: 'SanaSans Alt Regular';
    src: url('../webfonts/SanaSansAlt-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SanaSans Alt Black';
    src: url('../webfonts/SanaSansAlt-Black.ttf');
    font-weight: normal;
    font-style: normal;
}

.form-control {
    background: #e5e5e5;
    color: #000;
    border: 2px solid #e5e5e5;
    font-size: 1em;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    color: #000;
    border: 2px solid #e5e5e5;
    font-size: 1em;
}

.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

#password {
    background-color: #fff;
    color: #212529;
    border: 1px solid #ced4da;
}

#password:focus {
    background-color: #fff;
    color: #212529;
    border-color: #86b7fe;
}

h3 {
    font-family: 'SanaSans Alt Black';
}

.logo {
    margin: 33px 60px 0 0;
}

.valign {
    vertical-align: middle;
    font-size: .9em;
}

.progress {
    background: #f5f5f5;
    font-size: .75em;
}

.animateBar {
    animation-name: animateBar;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.9s;
}

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

    100% {
        transform: translateX(0);
    }
}
.card {
    background: transparent;
    margin-bottom: 1.5rem;
    border: none;
}
.btn-purple, .btn-purple-small, .btn-purple-small-mobile {
    background: #773289;
    border-color: #773289;
    font-weight: 600;
    color: #fff;
    padding: 5px 60px 4px;
}
.btn-purple-small {
    padding: 5px 30px 4px;
}
.btn-purple-small-mobile {
    padding: 1px 20px 0px;
    margin: -5px 0 0 50px;
}
.btn-purple:hover, .btn-purple-small:hover, .btn-purple-small-mobile:hover {
    color: #fff;
}
.bg {
    background: #fff;
    padding: 3rem;
    border-radius: 3rem;
    margin-top: 1.5rem;
}
.bg-purple {
    background-color: #773289 !important;
}
.title {
    margin-bottom: 1.5rem;
}
.challenge_name {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.challenges_list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}
.challenges_list > li {
    display: inline-block;
}
img.icon {
    width: 38px;
}
.result_detail {
    border-bottom: 1px solid #d2d2d2;
    margin: 1rem 0;
    padding-bottom: 1rem;
    display:none;
}
.mobile, .table_mobile, .table_micro {
    display: none;
}
.badge_img {
    position: absolute;
    display: none;
    max-height: 300px;
}

.cta_success,
.cta_fail {
    background: #fff;
    border: 4px solid #773289;
    border-radius: 20px;
    padding: 1rem;
    display: none;
}
@media (max-width: 992px) {
    .result_detail {
        display: inherit;
    }
    .results-table {
        display: none;
    }
    .bg {
        padding: 2rem;
        border-radius: 2rem;
    }
}
@media (max-width: 576px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: initial;
    }
}
@media (max-width: 1400px) {
    .table_desktop {
        display: none;
    }

    .table_mobile {
        display: initial;
    }
}
@media (max-width: 768px) {
    .table_micro {
        display: initial;
    }

    .table_mobile {
        display: none;
    }
    .badge_img {
        max-height: 200px;
    }
}