/* FILTERS */

.filter-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #838383;
    padding: 5px 20px;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.filter-title i {
    margin-left: 8px;
    margin-top: 2px;
}

.filter-modal {
    z-index: 20;
    display: none;
    position: absolute;
    padding: 10px;
    background: white;
    border-radius: 2px;
    font-size: 15px;
    background-color: #006384;
    color: white;
    top: 40px;
    width: 100%;
}

.label-filterjobs {
    padding-left: 10px;
    text-align: left;
}


div.job-box:hover {
    background-color: #E4E4E4;
}

a.job-text {
    color: #006384;
}

a.job-text:hover {
    background: #E4E4E4;
    color: #006384;
}

a.job-subtext {
    padding: 10px;
    color: #006384;
    font-size: 15px;
}

a.job-subtext:hover {
    background: #E4E4E4;
    color: #006384;
    text-decoration: none;
}

.img-job {
    background-image: url(./../assets/images/icono-ofertas.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.job-box>a {
    transition: opacity .5s ease-out, margin .5s ease-out;
    -moz-transition: opacity .5s ease-out, margin .5s ease-out;
    -webkit-transition: opacity .5s ease-out, margin .5s ease-out;
    -o-transition: opacity .5s ease-out, margin .5s ease-out;
    color: white;
    font-size: 16px;
}

.job-box:hover>a {
    opacity: 1 !important;
    transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
    -moz-transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
    -webkit-transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
    -o-transition: opacity 0.1s 0.3s linear, margin .5s ease-out;
    margin-bottom: 20px;
}

.job-box {
    transition: max-height 1s ease-out;
    -moz-transition: max-height 1s ease-out;
    -webkit-transition: max-height 1s ease-out;
    -o-transition: max-height 1s ease-out;
}

.job-box:hover {
    transition: max-height 1s linear;
    -moz-transition: max-height 1s linear;
    -webkit-transition: max-height 1s linear;
    -o-transition: max-height 1s linear;
    max-height: 900px;
}

.job-text {
    max-width: 260px;
}

.response-container {
    justify-content: space-evenly;
}

label.filters-container {
    padding-left: 10px;
}

.landing-button a {
    color: #006384 !important;
}


.filters-container {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-flow: row wrap;
    margin-bottom: 25px;
}

.jobs-container {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 50px;
    padding-bottom: 40px;
}

div.job-box {
    font-size: 22px;
    background-color: #ffffff;
    border: white;
    font-weight: 900;
    z-index: 10;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    align-items: center;
    display: flex;
    flex-flow: column;
    color: #006384;
    margin: 10px;
    padding: 30px 20px 0;
    width: 300px;
    min-height: 200px;
    margin-top: 10px;
    text-align: center;
    line-height: 35px;
    border: 1px solid white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.position-row-filter {
    justify-content: center;
}

@media (max-width: 700px) {
    .position-row-filter {
        flex-direction: column;
        flex-wrap: nowrap !important;
        margin-bottom: 5%;
    }

    .filter-title {
        margin-bottom: 5%;
    }
}