/* =======================================================================
 * 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 {
    margin: 75px 0;
}

.applications-listing .wrapper {
    margin-left: 11.46245%;
    margin-right: 11.46245%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 77.0751%;
    float: left;
    margin-right: 3.16206%;
}

.applications-listing .wrapper .row {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #D0D0D0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.applications-listing .wrapper .row.expended {
    background-color: #F5F5F5;
}

.applications-listing .wrapper .row.expended .overflow-container :first-child a svg {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.applications-listing .wrapper .row.title {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    color: #ed1d24;
}

.applications-listing .wrapper .row.title :nth-child(1) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25.64103%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row.title :nth-child(2) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18.20513%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row.title :nth-child(3) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18.20513%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row.title :nth-child(4) {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25.64103%;
    float: right;
    margin-right: 0;
}

.applications-listing .wrapper .row .mobile-only {
    display: none;
}

.applications-listing .wrapper .row:first-child {
    margin-bottom: 30px;
    border-bottom: none;
}

.applications-listing .wrapper .row .overflow-container {
    height: 65px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.applications-listing .wrapper .row .overflow-container.mobile-height {
    height: auto !important;
}

.applications-listing .wrapper .row .overflow-container p, .applications-listing .wrapper .row .overflow-container span, .applications-listing .wrapper .row .overflow-container a {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}

.applications-listing .wrapper .row .overflow-container .title-mobile {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #ed1d24;
    margin-top: 15px;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25.64103%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-name {
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 10px;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-name a {
    text-decoration: none;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-name svg {
    fill: #ed1d24;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone svg {
    margin-left: 70px;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone p {
    padding-left: 10px;
    font-weight: 600;
}

.applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone p span {
    line-height: 1.5;
}

.applications-listing .wrapper .row .overflow-container .post-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18.20513%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row .overflow-container .post-wrapper .post-name {
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.applications-listing .wrapper .row .overflow-container .post-wrapper .applicant-email {
    padding-top: 15px;
}

.applications-listing .wrapper .row .overflow-container .post-wrapper .applicant-email p {
    font-weight: 600;
}

.applications-listing .wrapper .row .overflow-container .post-wrapper .applicant-email p span {
    line-height: 1.5;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18.20513%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn {
    position: relative;
    height: 46px;
    line-height: 1;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 46px;
    border: 1px solid;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #ffffff;
    color: #333333;
    border-color: #d3d8d8;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .toggler {
    position: absolute;
    top: 23px;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px;
    height: 12px;
    background-image: url("/resources/assets/images/ui/arrow-dropdown-white.png");
    background-size: 100% auto;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #ffffff;
    filter: "alpha(opacity=1)";
    -khtml-opacity: 0.01;
    -moz-opacity: 0.01;
    opacity: 0.01;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status.opened .toggler {
    background-position: 0 -12px;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status.opened .active-choice {
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .active-choice {
    position: absolute;
    height: 46px;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    padding-left: 15px;
    padding-right: 46px;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-select-choices {
    display: none;
    position: relative;
    top: 100%;
    margin-top: 1px;
    border: 1px solid;
    z-index: 9999;
    overflow: hidden;
    background-color: #ffffff;
    border-color: #ececec;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-select-choices.open {
    display: block;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-select-choices .choice {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    padding: 5px 15px;
    clear: both;
    cursor: pointer;
    text-align: left;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-select-choices .choice.default {
    display: none;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-select-choices .choice.selected, .applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status .skinme-select-choices .choice:hover {
    color: #333333;
    background-color: #d3d8d8;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn .select.application-status:hover {
    background-color: #d3d8d8;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn select {
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .application-status-dropdown.skinMe .skinme-select-ctn select.native {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .presentation-letter {
    margin-top: 65px;
    padding-top: 15px;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .presentation-letter p {
    font-weight: 600;
}

.applications-listing .wrapper .row .overflow-container .status-wrapper .presentation-letter p a {
    line-height: 1.5;
}

.applications-listing .wrapper .row .overflow-container .application-date-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 13.74359%;
    float: left;
    margin-right: 4.10256%;
}

.applications-listing .wrapper .row .overflow-container .application-date-wrapper .application-date {
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.applications-listing .wrapper .row .overflow-container .application-date-wrapper .applicant-resume {
    padding-top: 15px;
}

.applications-listing .wrapper .row .overflow-container .application-date-wrapper .applicant-resume p {
    font-weight: 600;
}

.applications-listing .wrapper .row .overflow-container .application-date-wrapper .applicant-resume p a {
    line-height: 1.5;
}

.applications-listing .wrapper .row .overflow-container .delete-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 7.79487%;
    float: right;
    margin-right: 0;
}

.applications-listing .wrapper .row .overflow-container .delete-wrapper .delete {
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #9B9B9B;
    text-transform: uppercase;
    font-size: 14px;
}

.applications-listing .wrapper .row .overflow-container .delete-wrapper .delete:hover {
    color: #ed1d24;
}

.applications-listing .wrapper .row .overflow-container .extra-infos {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding-top: 15px;
}

.applications-listing .wrapper .row .overflow-container .extra-infos .applicant-social-media {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 25.64103%;
    float: left;
    margin-right: 4.10256%;
    padding-left: 98px;
}

.applications-listing .wrapper .row .overflow-container .extra-infos .applicant-social-media p {
    font-weight: 600;
}

.applications-listing .wrapper .row .overflow-container .extra-infos .applicant-social-media a {
    line-height: 1.5;
}

.applications-listing .wrapper .row .overflow-container .extra-infos .applicant-message {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 55.38462%;
    float: left;
    margin-right: 4.10256%;
    padding-bottom: 20px;
}

.applications-listing .wrapper .row .overflow-container .extra-infos .applicant-message p {
    font-weight: 600;
}

.applications-listing .wrapper .row .overflow-container .extra-infos .applicant-message span {
    line-height: 1.5;
    font-weight: 300;
}

@media (min-width: 0) and (max-width: 1439px) {
    .applications-listing .wrapper {
        margin-left: 0%;
        margin-right: 0%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    .applications-listing .wrapper .row .overflow-container p, .applications-listing .wrapper .row .overflow-container span, .applications-listing .wrapper .row .overflow-container a {
        font-size: 14px;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone svg {
        margin-left: 30px;
    }
    .applications-listing .wrapper .row .overflow-container .extra-infos .applicant-social-media {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 26.90058%;
        float: left;
        margin-right: 2.33918%;
        padding-left: 58px;
    }
}

@media (min-width: 0) and (max-width: 1023px) {
    .applications-listing .wrapper {
        margin-left: 0%;
        margin-right: 0%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    .applications-listing .wrapper .row.title {
        font-size: 26px;
    }
    .applications-listing .wrapper .row .overflow-container .delete-wrapper .delete {
        font-size: 12px;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .applications-listing {
        margin: 25px 0;
    }
    .applications-listing .wrapper {
        margin-left: 0%;
        margin-right: 0%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    .applications-listing .wrapper .row.title {
        display: none;
    }
    .applications-listing .wrapper .row .mobile-only {
        display: block;
    }
    .applications-listing .wrapper .row .overflow-container {
        height: auto;
        overflow: visible;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 0 15px 15px;
    }
    .applications-listing .wrapper .row .overflow-container p, .applications-listing .wrapper .row .overflow-container span, .applications-listing .wrapper .row .overflow-container a {
        word-break: normal;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: left;
        margin-right: 9.09091%;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        padding-bottom: 15px;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-name {
        padding: 15px 0 0;
        height: auto;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-name a {
        pointer-events: none;
        font-size: 20px;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-name svg {
        display: none;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone svg {
        margin-left: 0;
        display: none;
    }
    .applications-listing .wrapper .row .overflow-container .applicant-wrapper .applicant-phone p {
        padding-left: 0;
    }
    .applications-listing .wrapper .row .overflow-container .post-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: right;
        margin-right: 0;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        padding-bottom: 15px;
    }
    .applications-listing .wrapper .row .overflow-container .post-wrapper .post-name {
        padding: 15px 0 0;
        height: auto;
    }
    .applications-listing .wrapper .row .overflow-container .post-wrapper .email-value {
        word-break: break-all;
    }
    .applications-listing .wrapper .row .overflow-container .status-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: left;
        margin-right: 9.09091%;
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .applications-listing .wrapper .row .overflow-container .status-wrapper .form-status {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        position: relative;
    }
    .applications-listing .wrapper .row .overflow-container .status-wrapper .presentation-letter {
        margin-top: 0;
        padding-top: 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }
    .applications-listing .wrapper .row .overflow-container .status-wrapper .title-mobile {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
    .applications-listing .wrapper .row .overflow-container .application-date-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: right;
        margin-right: 0;
        -webkit-box-ordinal-group: 6;
            -ms-flex-order: 5;
                order: 5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .applications-listing .wrapper .row .overflow-container .application-date-wrapper .application-date {
        padding: 15px 0 0;
        height: auto;
    }
    .applications-listing .wrapper .row .overflow-container .application-date-wrapper .applicant-resume {
        padding-top: 0;
    }
    .applications-listing .wrapper .row .overflow-container .delete-wrapper {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-ordinal-group: 7;
            -ms-flex-order: 6;
                order: 6;
    }
    .applications-listing .wrapper .row .overflow-container .delete-wrapper .delete {
        height: auto;
        padding-top: 50px;
        font-size: 14px;
    }
    .applications-listing .wrapper .row .overflow-container .extra-infos {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        padding: 0 0 15px;
    }
    .applications-listing .wrapper .row .overflow-container .extra-infos .applicant-social-media {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: left;
        margin-right: 9.09091%;
        padding: 0 0 15px;
    }
    .applications-listing .wrapper .row .overflow-container .extra-infos .applicant-social-media.no-message {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: left;
        margin-right: 9.09091%;
    }
    .applications-listing .wrapper .row .overflow-container .extra-infos .applicant-message {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 100%;
        float: right;
        margin-right: 0;
        padding-right: 0;
    }
    .applications-listing .wrapper .row .overflow-container .extra-infos .applicant-message.no-message {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        width: 45.45455%;
        float: right;
        margin-right: 0;
    }
}

/*# sourceMappingURL=listing.css.map */
