/* Minification failed. Returning unminified contents.
(11,28): run-time error CSS1039: Token not allowed after unary operator: '-lightgray'
(12,35): run-time error CSS1039: Token not allowed after unary operator: '-mediumgray'
 */
/*.big-admin-menu{
    position:fixed;
}*/
.small-admin-menu {
    position:fixed;
}
.applicant-stepper {
    top: 50px;
    max-height: 115px;
    overflow: hidden;
    background-color: var(--lightgray);
    border-bottom: 1px solid var(--mediumgray);
    padding-bottom: 10px;
}

.applicant-stepper > .grid {
    background-color: transparent !important;
}

.mobile-stepper {
    display: none;
    font-size: small;
    z-index:1020;
}

.applicant-stepper hr {
    position: absolute;
    width: 100%;
    top: 36px;
}

.mobile-stepper > .grid {
    opacity: 1;
    background-color: white;
}

.mobile-stepper > .grid > .row {
    margin: 0;
    color: white;
    background-color: white;
}

.mobile-stepper > .grid > .row > .cell {
    text-align: center;
    margin: 0;
    padding: 5px;
    opacity: .625;
}

/*width miltiplied by cells-1 + 30 should approximate 100*/
.mobile-stepper > .grid > .row.cells12 > .cell {
    width: 6.25% !important;
}

.mobile-stepper > .grid > .row.cells11 > .cell {
    width: 7% !important;
}

.mobile-stepper > .grid > .row.cells8 > .cell {
    width: 10% !important;
}

.mobile-stepper > .grid > .row.cells7 > .cell {
    width: 11.6% !important;
}

.mobile-stepper > .grid > .row.cells6 > .cell {
    width: 14% !important;
}

.mobile-stepper > .grid > .row.cells5 > .cell {
    width: 17.5% !important;
}

.mobile-stepper > .grid > .row > .cell.bg-blue {
    width: 30% !important;
    font-size: medium;
    opacity: 1;
    padding-bottom: 8px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

/*width miltiplied by cells-1 + 28 should approximate 100*/
.mobile-stepper > .grid > .row.cells10 > .cell {
    width: 8% !important;
}

.mobile-stepper > .grid > .row.cells9 > .cell {
    width: 9% !important;
}

.mobile-stepper > .grid > .row.cells10 > .cell.bg-blue,
.mobile-stepper > .grid > .row.cells9 > .cell.bg-blue {
    width: 28% !important;
}

/*add to 100, both columns have same width*/
.mobile-stepper > .grid > .row.cells2 > .cell,
.mobile-stepper > .grid > .row.cells2 > .cell.bg-blue {
    width: 50% !important;
}

.mobile-stepper > .grid > .row.cells3 > .cell,
.mobile-stepper > .grid > .row.cells3 > .cell.bg-blue {
    width: 33.33% !important;
}

.mobile-stepper > .grid > .row > .cell:not(:first-child) {
    border-left: 1px solid #ffffff;
}

.step-name {
    display: none;
}

@media (max-width: 639px) {
    .applicant-stepper {
        display: none;
    }

    .mobile-stepper {
        display: block;
    }
}

/*.bg-lightGreen {
    background-color: #008a00 !important;
}*/

.fg-lightGreen {
    color: #008a00 !important;
}

.applicant-stepper .title{
    word-wrap:break-word;
}
.number > span {
    position: relative;
    text-align: center;
    display: block;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    font-size: 20px;
    line-height: 46px;
    margin: 0 auto;
}

.active-step .number > span {
    margin-top: -5px;
    width: 55px;
    height: 55px;
    font-size: 32px;
    line-height: 55px;
}

.active-step .title {
    font-weight: bold;
}

.loadHr {
    transform: scale(0);
    animation: little .3s ease forwards, hr-animation 1s .5s forwards;
}

@keyframes little {
    to {
        transform: scale(0);
    }
}

@keyframes hr-animation {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.active-step .number span {
    transform: scale(.7);
    animation: openspace 1.5s ease forwards, restored-item-animation 1s .5s cubic-bezier(.14,.25,.52,1.56) forwards;
    max-height: 55px;
    overflow: hidden;
}

@keyframes openspace {
    to {
        height: auto;
    }
}

@keyframes restored-item-animation {
    0% {
        transform: scale(.7);
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 900px) {

    div[id$="-step"]:not(.prev-step):not(.next-step):not(.active-step) {
        display: none;
    }

    .prev-step,
    .next-step,
    .active-step {
        width: 33.33333333333333% !important;
        margin: 0 !important;
    }

    .first-step {
        margin-left: 33.33333333% !important;
    }

    .last-step {
        margin-right: 33.33333333% !important;
    }

    .loadHr {
        width: 50% !important;
    }
}

