/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select {
    display: inline-block;
    min-width: 167px;
    position: absolute;
    left: 495px;
    top: 20px;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status {
    background-color: initial;
    border-radius: 0;
    color: initial;
    text-transform: uppercase;
    border: 0;
    position: relative;
    line-height: 1;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status.opened .active-choice {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom: none;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .toggler {
    right: 30px;
    z-index: 9;
    margin-top: 0;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .active-choice {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 1;
    padding: 15px 67px 12px 28px;
    position: relative;
    overflow: visible;
    background-color: #ed1d24;
    border: 2px solid #FFFFFF;
    border-radius: 24px;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: left;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .skinme-select-choices {
    border-radius: 0;
    margin: 0;
    max-height: 250px;
    overflow: auto;
    top: 0;
    border: 2px solid #FFFFFF;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .skinme-select-choices.open {
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    border-top: none;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .skinme-select-choices .choice {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #FFFFFF;
    padding: 10px 28px;
    background-color: #ed1d24;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .skinme-select-choices .choice:hover {
    background: #FFFFFF;
    color: #ed1d24;
}

.applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn select {
    border: none;
    padding: 0;
    margin: 0;
    padding-right: 17px;
}

@media (min-width: 0) and (max-width: 1439px) {
    .applications-listing .centered-content .select.application-status .active-choice {
        font-size: 28px;
    }
    .applications-listing .centered-content .select.application-status .skinme-select-choices .choice {
        font-size: 16px;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select {
        min-width: 150px;
        left: 375px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select {
        min-width: 120px;
        max-width: 120px;
        left: 0;
        top: 10px;
        position: absolute;
    }
    .applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .active-choice {
        font-size: 14px;
        padding: 13px 20px 12px 15px;
    }
    .applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .toggler {
        right: 15px;
    }
    .applications-listing .centered-content .wrapper .row .overflow-container > *:nth-child(3) .application-status-dropdown.skinMe.select .skinme-select-ctn .select.application-status .skinme-select-choices .choice {
        font-size: 14px;
    }
}

/*# sourceMappingURL=plugin.me.skin.select-application-status.css.map */
