.is-animated {
    animation: .6s slide-top;
}

.is-animated--end {
    animation: .6s slide-bottom;
}

@keyframes zoom-in {
    0% {
        transform: scale(.1);
    }
    100% {
        transform: none;
    }
}

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
}
@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
        opacity: 0;
    }
}

/**
 * ----------------------------------------
 * animation slide-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-bottom {
    0% {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/**
 * ----------------------------------------
 * animation slide-in-bottom
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-bottom {
    0% {
        top: 100%;
        opacity: 0;
    }
    100% {
        top: calc(100% - 265px);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        top: 100%;
        opacity: 0;
    }
    100% {
        top: calc(100% - 265px);
        opacity: 1;
    }
}

@-webkit-keyframes slide-out-bottom {
    0% {
        top: 65%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes slide-out-bottom {
    0% {
        top: 65%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/**
 * ----------------------------------------
 * animation slide-in-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-in-top {
    0% {
        top: -50px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes slide-in-top {
    0% {
        top: -50px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@-webkit-keyframes slide-out-top {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: -50px;
        opacity: 0;
    }
}

@keyframes slide-out-top {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: -50px;
        opacity: 0;
    }
}

/* loader */
.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 16px;
}

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

.button--disabled .lds-ellipsis div, .lds-ellipsis--iframe div {
    background: #ccc;
}

.list-controls--loader .lds-ellipsis div {
    background: #0076a8;
}

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

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

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

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

.opacity--0 {
    opacity: 0;
}

@-webkit-keyframes loading {
    to {
        background-position: 350% 0, var(--title-position), var(--title-2-position), var(--job-box-1-position), var(--job-box-2-position), var(--job-box-3-position), var(--job-box-4-position), var(--job-box-5-position), var(--job-box-6-position), var(--button-position), 0 0;
    }
}

@keyframes loading {
    to {
        background-position: 350% 0, var(--title-position), var(--title-2-position), var(--job-box-1-position), var(--job-box-2-position), var(--job-box-3-position), var(--job-box-4-position), var(--job-box-5-position), var(--job-box-6-position), var(--button-position), 0 0;
    }
}

@media all and (max-width: 768px) {
    .skeleton--1.loading {
        height: 100vh !important;
    }

    :root {
        --job-box-1-width: 100%;
        --job-box-1-position: center 262px;
        --job-box-4-width: var(--job-box-1-width);
        --job-box-4-position: center 464px;
    }
}

.slide-out-top {
    -webkit-animation: slide-out-top 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-out-top 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes slide-out-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
        opacity: 0;
    }
    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

.slide-out-top-1 {
    -webkit-animation: slide-out-top-1 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-out-top-1 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-top-1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
    }
}
@keyframes slide-out-top-1 {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    25% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
    }
}

.slide-out-bottom-1 {
    -webkit-animation: slide-out-bottom-1 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: slide-out-bottom-1 0.4s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

@-webkit-keyframes slide-out-bottom-1 {
    0% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slide-out-bottom-1 {
    0% {
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
}

/* search tags */
.article--searchTags {
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.list--searchTags {
    margin: 8px 0 16px;
}

.list--searchTags li {
    display: inline-block;
    float: none;
    width: auto;
    padding: 6px 25px 6px 6px;
    cursor: pointer;
    border: 1px solid #ececec !important;
    background-color: #ececec !important;
    font-weight: 300;
    font-size: 14px !important;
    position: relative;
    background: none;
    transition: all .3s;
    margin-bottom: 5px;
    margin-right: 5px;
}
.list--searchTags li:hover {
    background-color: #ddd !important;
}
.list--searchTags li:after {
    content: "×";
    display: inline-block;
    padding-left: 5px;
    color: #007CB0;
    font-size: 24px;
    position: absolute;
    top: -1px
}
.list--searchTags li[data-clear] {
    font-weight: 700;
    border: 1px solid transparent !important;
    background-color: transparent !important;
    padding: 6px !important;
}
.list--searchTags li[data-clear]:after {
    content: '';
}

/* Collapsible search wizard fields */
