.recherche-title-container {
    width: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width: 500px) {
    .recherche-title-container {
        min-height: auto;

        margin: 40px 0;
    }
}
.recherche-title-content {
    width: calc(100% - 20px);
    max-width: 1360px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.recherche-line {
    height: 2px;
    min-width: 20px;
    width: 40%;
    max-width: 250px;

    background-color: #CA4E4E;
}
.recherche-title {
    font-family: "Source Sans Pro";
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 63px;
    text-align: center;
    color: #2B5C73;
    text-transform: uppercase;

    margin: 0;
}
@media screen and (max-width: 500px) {
    .recherche-title {
        font-size: 40px;
        line-height: 50px;
    }
}
.recherche-title span {
    color: #7C6FC8;
    font-weight: bold;
}

.number-result {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;

    margin-left: 50px;
    margin-bottom: 100px;
}
@media screen and (max-width: 500px) {
    .number-result {
        display: none;
    }
}
.number-result p {
    font-family: "Source Sans Pro";
    font-size: 40px;
    font-weight: lighter;
    color: #2B5C73;
    text-transform: uppercase;

    margin: 0;
}
.number-result .line {
    height: 2px;
    width: 75px;

    margin-left: 20px;

    background-color: #CA4E4E;
}

/* Resultat de la recherche */
.resultat-recherche-container {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.resultat-item-container {
    width: 95%;
    max-width: 1365px;
    height: 525px;

    margin: 43px 0;

    background-color: #2B5C730D;

    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 900px) {
    .resultat-item-container {
        height: auto;

        flex-wrap: wrap;
    }
}
@media screen and (max-width: 500px) {
    .resultat-item-container {
        width: 100%;
    }
}

.resultat-item-container .left-section {
    width: 49%;
    height: 100%;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .left-section {
        width: 100%;
    }
}
.resultat-item-container .left-section .red-title {
    width: 100%;
    height: 75px;

    background-color: #CA4E4E;

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .left-section .red-title {
        height: 50px;
    }
}
.resultat-item-container .left-section .red-title p {
    width: 100%;

    font-family: "Source Sans Pro";
    font-size: 40px;
    color: white;
    text-transform: uppercase;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    margin: 0;
    margin-left: 25px;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .left-section .red-title p {
        font-size: 30px;
    }
}
.resultat-item-container .left-section .image-section {
    width: 100%;
    height: calc(100% - 75px);

    position: relative;

    overflow: hidden;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .left-section .image-section {
        height: 50vw;
        max-height: 440px;
        min-height: 230px;
    }
}
.resultat-item-container .left-section .image-section img {
    height: 110%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);

    transition: height 0.5s;
}
.resultat-item-container .left-section .image-section:hover img {
    height: 115%;
}

.resultat-item-container .right-section {
    width: 51%;
    height: 100%;

    position: relative;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section {
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-bottom: 75px;
    }
}
.resultat-item-container .right-section > * {
    margin-left: 20px;
}
.resultat-item-container .right-section > p {
    max-height: 170px;
    max-width: 90%;

    font-family: "Source Sans Pro";
    color: #2B5C73;
    font-size: 25px;

    margin-top: 100px;
    margin-bottom: 70px;

    /* Truncate */
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section > p {
        max-height: 135px;

        font-size: 20px;
        text-align: center;

        margin-top: 80px;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 20px;
    }
}
.resultat-item-container .right-section > span.prix {
    font-family: "Source Sans Pro";
    color: #7C6FC8;
    font-size: 60px;
    font-weight: bold;

    position: absolute;
    top: 0;
    right: 40px;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section > span.prix {
        width: 100%;

        top: 20px;
        left: 50%;
        transform: translateX(-50%);

        font-size: 40px;
        text-align: center;

        margin-left: 0;
    }
}
.resultat-item-container .right-section > span.info {
    font-family: "Source Sans Pro";
    color: #2B5C73;
    font-size: 35px;
    font-weight: bold;
    display: block;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section > span.info {
        font-size: 30px;
    }
}
.resultat-item-container .right-section .button {
    height: 70px;
    width: 70px;

    background-color: #CA4E4E;

    position: absolute;
    bottom: 0;
    right: 0;

    cursor: pointer;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section .button {
        height: 40px;
        width: 40px;
    }
}
.resultat-item-container .right-section .button .white-line {
    height: 2px;
    width: 42px;

    background-color: white;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);

    transition: width 0.2s;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section .button .white-line {
        width: 25px;
    }
}
.resultat-item-container .right-section .button .white-line.vertical {
    transform: translateY(-50%) translateX(-50%) rotate(90deg);
}
.resultat-item-container .right-section .button:hover .white-line {
    width: 50px;
}
@media screen and (max-width: 900px) {
    .resultat-item-container .right-section .button:hover .white-line {
        width: 30px;
    }
}

/* Pagination */
.resultat-recherche-pagination-container {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.resultat-recherche-pagination {
    width: 95%;
    max-width: 1365px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}
.resultat-recherche-pagination a {
    text-decoration: none;

    margin: 0 3px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.resultat-recherche-pagination span {
    color: #2B5C73;
    font-size: 25px;
    font-family: "Source Sans Pro";
}
.resultat-recherche-pagination span.active {
    font-weight: bold;
}
.resultat-recherche-pagination .pagination-arrow img {
    height: 20px;
}
.resultat-recherche-pagination .pagination-arrow.left {
    margin-left: 10px;
    margin-right: 5px;
}
.resultat-recherche-pagination .pagination-arrow.left img {
    transform: rotate(180deg);
}
