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

    display: flex;
    align-items: center;
    justify-content: center;
}
.details-title-content {
    width: calc(100% - 20px);
    max-width: 1360px;

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

    background-color: var(--main-blue);
}
.details-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;
}
.details-title span {
    color: var(--variant-blue-02);
    font-weight: bold;
}

.media-links-container {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 170px;
}
.media-links {
    width: 240px;
    height: fit-content;

    margin-top: 60px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.media-links .media-link {
    height: 40px;
}

/* Retour button */
.retour-container {
    width: fit-content;

    margin-left: 100px;
    margin-bottom: 50px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}
.retour-container a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;

    text-decoration: none;
}
.retour-container img {
    height: 20px;
    transform: rotate(180deg);

    margin: 0 10px;
}
.retour-container span {
    color: #2B5C73;
    font-size: 30px;
    font-weight: bold;
    font-family: "Source Sans Pro";
    text-transform: uppercase;
}

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

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

.details-item-container {
    width: 95%;
    max-width: 1365px;
    height: 587px;

    margin: 43px 0;

    background-color: #2B5C730D;

    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1300px) {
    .details-item-container {
        width: 100%;
        height: auto;

        flex-wrap: wrap;
    }
}

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

    background-color: var(--main-blue);

    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (max-width: 900px) {
    .details-item-container .left-section .red-title {
        height: 50px;
    }
}
.details-item-container .left-section .red-title p {
    font-family: "Source Sans Pro";
    font-size: 40px;
    color: white;
    text-transform: uppercase;

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

    position: relative;

    overflow: hidden;
}
.details-item-container .left-section .image-section .white-square {
    width: 200px;
    height: 80px;

    background-color: var(--white-trans);

    position: absolute;
    top: 0;
    left: 0;

    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
}
.white-square img {
    width: 150px;
}
@media screen and (max-width: 1300px) {
    .details-item-container .left-section .image-section {
        height: 50vw;
        max-height: 440px;
        min-height: 230px;
    }
}
.details-item-container .left-section .image-section img {
    height: 110%;

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

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

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

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

        padding-top: 80px;
        padding-bottom: 35px;
    }
}
.details-item-container .right-section > * {
    margin-left: 30px;
}
.details-item-container .right-section > span.info {
    font-family: "Source Sans Pro";
    color: #2B5C73;
    font-size: 25px;

    display: block;
}
@media screen and (max-width: 1300px) {
    .details-item-container .right-section > span.info {
        width: 100%;

        text-align: center;

        margin-left: 0;
    }
}
@media screen and (max-width: 900px) {
    .details-item-container .right-section > span.info {
        font-size: 20px;
    }
}
.details-item-container .right-section > span.info.first {
    margin-top: 15px;
}
.details-item-container .right-section > span.prix {
    font-family: "Source Sans Pro";
    color: var(--variant-blue-02);
    font-size: 40px;
    font-weight: bold;

    position: absolute;
    top: 60px;
    right: 30px;
}
@media screen and (max-width: 1300px) {
    .details-item-container .right-section > span.prix {
        width: 100%;

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

        text-align: center;

        margin-left: 0;
    }
}
@media screen and (max-width: 900px) {
    .details-item-container .right-section > span.prix {
        font-size: 40px;
    }
}
.indice-container {
    height: 217px;
    width: 230px;

    margin-top: 20px;
    margin-bottom: 10px;
}
@media screen and (max-width: 1300px) {
    .indice-container {
        margin-left: 50px!important;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 400px) {
    .indice-container {
        margin-left: 30px!important;
    }
}
.indice-item {
    height: calc(100% / 9);

    position: relative;
}
.indice-item * {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);
}
.indice-item .indice-letter {
    font-family: "Source Sans Pro";
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;

    top: calc(50% - 1px);
}
.indice-item > .indice-letter {
    right: 5px;
}
.indicator {
    right: -30px;
}
.indicator img {
    height: 22px;

    z-index: 1;
}
.indicator .indice-letter {
    left: 30px;

    z-index: 2;
}
.bg-1 {
    background-color: #128134;
}
.bg-2 {
    background-color: #50A243;
}
.bg-3 {
    background-color: #88B440;
}
.bg-4 {
    background-color: #DEDD3B;
}
.bg-5 {
    background-color: #FFF539;
}
.bg-6 {
    background-color: #FEB436;
}
.bg-7 {
    background-color: #FD732B;
}
.bg-8 {
    background-color: #F03D23;
}
.bg-9 {
    background-color: #C51326;
}
.colored {
    padding-right: 1px;
    margin-left: 25px;

    color: white;
    font-weight: bold;

    background-color: #BB82EC;
}

/* Description */

/* Liste d'images (Adapter pour la techno de visualisation) */

.images-list-container {
    width: 100%;

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

    margin: 100px 0;
}
.images-list {
    width: 90%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.image-visu-container {
    width: 400px;
    height: 265px;

    margin: 10px;

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

    overflow: hidden;
}
.image-visu-container img {
    width: 150%;
}

#images-id img {
    width: 200px;
}
