/* ==========================================================================
SECTION FERIADOS
========================================================================== */
.sectionFeriados{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    font-family: "Heebo";
}

.news-side.--intern figure, .news-side.--intern img {
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 5px;
    object-position: top;
}

.sectionFeriados .card{
    display: flex;
    flex-direction: row;
    width: 100%;
    min-width: 230px;
    padding: 5px;
    height: inherit;
    padding: 0;
    border: 0;
    margin-bottom: 10px;
}
@media screen and (min-width: 530px){
    .sectionFeriados .card{
        max-width: calc(50% - 10px);
    }
}
@media screen and (min-width: 680px){
    .sectionFeriados .card{
        max-width: 100%;
    }
}
@media screen and (min-width: 800px){
    .sectionFeriados .card{
        max-width: calc(50% - 10px);
    }
}
.sectionFeriados .card div{
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
}
.sectionFeriados .card .date{
    background-color: rgba(1,75,140, .1);
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    width: 60px;
    padding: 9px 11px;
}
.sectionFeriados .card .date span:nth-of-type(1){
    margin-bottom: 2px;
    color: rgba(1,75,140, 1);
}
.sectionFeriados .card .date span:nth-of-type(2){
    color: rgba(90,90,90, 1);
    text-transform: uppercase;
}
.sectionFeriados .card .description span{
    padding: 0 0 5px 0;
}
.sectionFeriados .card .description span:nth-of-type(1){
    color: rgba(1,75,140, 1);
    font-weight: 500;
}
.sectionFeriados .card .description span:nth-of-type(2){
    color: rgba(90,90,90, 1);
}

.containerVacidata .bannerRight .rightTitle > h1:nth-child(1){
    margin: 0;
    color: #fff;
    line-height: 118%;
    position: relative;
    font-style: normal;
    font-weight: normal;
    font-size: 34.4623px;
    letter-spacing: 0.05em;
}


/*IDX SEARCH*/
.idx_search p {
    padding-bottom: 5px;
    font-family: 'Open Sans'!important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 14px;
    color: var(--color_alternate);
}

.idx_search h2 {
    padding-bottom: 15px;
    margin: 0;
    font-family: 'Open Sans'!important;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: #00923D;
}

.idx_search__form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 22px 0;
}

.idx_search__form form {
    position: relative;
}

.idx_search__form input {
    padding: 0 71px 0 30px;
    width: 310px;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #00AD48;
}

.idx_search__form input::placeholder {
    font-family: "Open Sans", sans-serif!important;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
}

.idx_search__form i {
    position: absolute;
    left: 10px;
    top: 10px;
}

.idx_search__form button {
    position: absolute;
    right: 10px;
    top: 5px;
    height: 22.14px;
    width: 58.54px;
    background-color: #00AD48;

    font-family: 'Open Sans', sans-serif!important;
    font-size: .8rem;
    font-weight: 700;
    line-height: 11px;
    color: #FFF;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: all ease 0.3s;
}

.idx_search__form button:hover {
    background-color: var(--color_alternate);
}

@media (min-width: 768px){

    .idx_search__img {
        display: none;
    }

    .idx_search__form {
        height: 266px;
        background: #00923D;
        background-position: bottom;
    }

    .idx_search__form input {
        width: 100%;
        height: 55px;
        border-radius: 10px;
        padding: 0 71px 0 46px;
    }

    .idx_search p {
        font-size: 1.6rem;
        color: #FFF;
    }
    
    .idx_search h2 {
        font-size: 3.2rem;
        color: #FFF;
    }

    .idx_search__form form {
        width: 650px;
    }

    .idx_search__form button {
        height: 45px;
        width: 119px;
        font-size: 1.4rem;
        font-weight: 700;
        right: 5px;
        border-radius: 10px;
    }
    
    .idx_search__form i {
        top: 16px;
        left: 15px;
        color: #00AD48;
        font-size: 2rem;
        font-weight: 700;
    }
    
}


/*CONTRATE*/
.idx_search.contrast.active h2,
.idx_search.contrast.active p
{
    color: #FFF;
}

.idx_search.contrast.active .idx_search__form input {
    border-color: #000;
}

.idx_search.contrast.active .idx_search__form i {
    color: #000;
}

.idx_search.contrast.active .idx_search__form button {
    background-color: #000;
    transition: all ease 0.3s;
}

.idx_search.contrast.active .idx_search__form button:hover {
    text-decoration: underline;
    text-decoration-color: #fff333;
    color: #fff333;
}