/* START MAP.SCSS */
.map__title {
    text-align: center;
}

.map__title h1 {
    margin: 16px 0 44px 0;
    font-weight: 600;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .map__title h1 {
        margin: 24px 0 64px 0;
    }
}

.map__title h1 span {
    font-weight: 300;
}

.map__title h2 {
    font-family: "Roboto";
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    text-align: left;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .map__title h2 {
        margin-bottom: 24px;
        justify-content: flex-start;
    }
}

.map__filters {
    height: 100%;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    transition: height 0.2s ease-in-out, opacity 0.3s ease-in-out;
}

@media screen and (min-width: 992px) {
    .map__filters {
        display: flex;
        height: 100%;
        opacity: 100%;
    }
}

@media screen and (min-width: 1438px) {
    .map__filters {
        flex-direction: row;
        margin-bottom: 40px;
        align-items: flex-end;
        flex-wrap: wrap;
    }
}

.map__filters .filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media screen and (min-width: 768px) {
    .map__filters .filters {
        flex-direction: row;
    }
}

.map__filters .filters .dropdown {
    width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 1400px) {
    .map__filters .filters .dropdown {
        min-width: 226px;
        max-width: 226px;
    }
}

.map__filters .filters .dropdown__container {
    cursor: pointer;
}

.map__filters .filters .dropdown label {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #646363;
}

.map__filters .filters .dropdown label .asterisk {
    color: #d8b465;
}

.map__filters .filters .dropdown input,
.map__filters .filters .dropdown select {
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    background: #f8f8f7;
    border: 1px solid #dfdbd6;
    border-radius: 4px;
    padding: 12px 10px;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 150%;
    color: #1b1b1b;
    margin-top: 8px;
}

.map__filters .filters .dropdown.filters-maisons--item {
    position: relative;
}

.map__filters .filters .dropdown.filters-maisons--item button {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    border: 1px solid #DFDBD6;
    border-radius: 4px;
    padding: 12px 10px;
    width: 100%;
    background: #F8F8F7;
    transition: all .4s ease;
    cursor: pointer;
    height: 45px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.map__filters .filters .dropdown.filters-maisons--item .filters-maisons--child {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 16px);
    background: #fff;
    padding: 32px 24px;
    box-shadow: 6px 6px 30px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    border: .5px solid #666;
    border-radius: 5px;
    transition: all .2s ease;
    z-index: 2;
    padding: 16px;
    padding-bottom: 16px;
    padding-bottom: 0;
    max-height: 408px;
    overflow: auto;
}

@media screen and (min-width: 992px) {
    .map__filters .filters .dropdown.filters-maisons--item .filters-maisons--child {
        width: max-content;
    }

}

.map__filters .filters .dropdown.filters-maisons--item .filters-maisons--child.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 999;
}

.map__filters .filters .dropdown.filters-maisons--item .filters-maisons--child .filters-job--child-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

@media screen and (min-width: 992px) {
    .map__filters .filters .dropdown.filters-maisons--item .filters-maisons--child .filters-job--child-child {
        flex-wrap: wrap;
        gap: 16px;
        margin-bottom: 32px;
    }
}

.map__filters .filters .filters-job--child-child>div {
    display: flex;
    gap: 8px;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .map__filters .filters .filters-job--child-child>div {
        align-items: flex-start;
    }
}

.map__filters .filters .dropdown input[type=checkbox] {
    all: unset;
    height: 16px;
    width: 16px;
    border-radius: 2px;
    border: 1px solid #999;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.map__filters .filters .dropdown input[type=checkbox]:checked:after {
    opacity: 1;
}

.map__filters .filters .dropdown input[type=checkbox]::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #1b1b1b;
    opacity: 0;
    transition: all .4s ease;
}

.map__filters .filters .dropdown input[type=checkbox]+label {
    all: unset;
    font-style: unset;
    font-weight: unset;
    font-size: unset;
    line-height: unset;
    cursor: unset;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
}

.map__filters .input-search {
    position: relative;
    width: max-content;
    margin: auto;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .map__filters .input-search {
        margin: initial;
    }
}

.map__filters .input-search::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-mask: url(../images/icon-reload.svg);
    -webkit-mask-size: cover;
    background-color: #fff;
    height: 24px;
    min-width: 24px;
    pointer-events: none;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.map__filters .input-search:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

.map__filters .input-search input[type="submit"] {
    background: #1b1b1b;
    color: white;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    width: max-content;
    padding: 12px 54px 12px 20px;
    border: 1px solid #1b1b1b;
    border-radius: 50px;
    cursor: pointer;
}

.map__filters .reinit-filters.btn-with-text .reinit:not(.cta) {
    padding-right: 24px;
}

.map__filters .reinit-filters.btn-with-text .reinit span {
    pointer-events: none;
}

.map__filters .reinit-filters.btn-with-text {
    color: black;
}

.map__filters .reinit-filters.btn-with-text:hover .cta {
    background-color: black;
}

.map__filters .reinit-filters.btn-with-text .cta {
    width: 32px;
    height: 32px;
    border-width: 3px;
    border-color: #1b1b1b;
}

.map__filters .reinit-filters.btn-with-text .cta::before {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    border-color: #1b1b1b;
}

.map__filters .reinit-filters.btn-with-text .cta:hover::before {
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
}

.map__results {
    height: initial;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: gap 1s ease-in-out;
}

@media screen and (min-width: 992px) {
    .map__results {
        height: 836px;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

@media screen and (min-width: 992px) {
    .map__results.-launched {
        gap: 32px;
    }
}

@media screen and (min-width: 992px) {
    .map__results.-launched .results-image {
        width: 74%;
    }
}

.map__results.-launched .results-list {
    height: 100%;
    max-width: 416px;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .map__results.-launched .results-list {
        opacity: 1;
    }
}

.map__results.-launched .results-list .small-btn {
    display: flex;
}

.map__results .-desktop h3,
.map__results .-desktop h4 {
    display: none;
    text-align: left;
}

@media screen and (min-width: 992px) {

    .map__results .-desktop h3,
    .map__results .-desktop h4 {
        display: block;
    }
}

.map__results .-mobile,
.map__results .-mobile {
    display: block;
}

@media screen and (min-width: 992px) {

    .map__results .-mobile,
    .map__results .-mobile {
        display: none;
    }
}

.map__results h3 {
    font-family: "Roboto";
    font-size: 16px;
    line-height: 19px;
    text-align: center;
}

.map__results h4 {
    font-family: "Roboto";
    font-size: 24px;
    line-height: 150%;
    margin-top: 18px;
    text-align: center;
}

.map__results h4 span {
    color: #d8b465;
}

.map__results .title {
    display: flex;
    gap: 17px;
    font-family: "Roboto Slab";
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
}

.map__results .title::after {
    content: url("../images/icon-plus-black.svg");
    border: 1px solid #1b1b1b;
    max-width: 24px;
    width: 100%;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .map__results .title::after {
        display: none;
    }
}

.map__results .title .number {
    font-family: "Roboto Slab";
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    width: 100%;
    max-width: 22px;
    height: 22px;
    margin-top: 2px;
    position: relative;
}

.map__results .title .number::after {
    content: url("../images/icon-map-ocre.svg");
    filter: brightness(0);
    position: absolute;
    z-index: -1;
}

.map__results .title .text {
    display: flex;
    gap: 17px;
    width: 100%;
    align-items: center;
}

.map__results .title .text div {
    font-family: var(--robotoSlab);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.map__results .results-image {
    position: relative;
    border: 1px solid #dfdbd6;
    border-radius: 8px;
    overflow: hidden;
    height: 480px;
    width: 100%;
    margin: 32px 0;
    transition: width 1s ease-in-out;
}

@media screen and (min-width: 992px) {
    .map__results .results-image {
        height: initial;
        margin: 0;
    }
}

.map__results .results-image #map {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    z-index: 98;
}

.map__results .result_list_mfr ::-webkit-scrollbar {
    width: 6px;
    height: 0;
}

.map__results .result_list_mfr ::-webkit-scrollbar-track {
    background: #dfdbd6;
    border-radius: 10px;
}

.map__results .result_list_mfr ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #1b1b1b;
}

.map__results .results-list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 0;
    transition: height 3s ease-in-out, width 1s ease-in-out, opacity 1.3s ease-in-out;
}

@media screen and (min-width: 992px) {
    .map__results .results-list {
        height: 100%;
        width: 0%;
        opacity: 0;
    }
}

.map__results .results-list ::-webkit-scrollbar {
    width: 6px;
    height: 0;
}

.map__results .results-list ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--ocre-100);
}

.map__results .results-list ::-webkit-scrollbar-track {
    background: var(--ocre-40);
    border-radius: 10px;
}

.map__results .results-list ul.result_list_mfr {
    overflow-y: scroll;
    border: 1px solid var(--neutre-20);
}

.map__results .results-list ul.result_list_mfr::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.map__results .results-list ul .result-title {
    flex-direction: column;
    background: white;
    padding: 16px;
    margin: 0;
    border-top: 1px solid #dfdbd6;
    gap: 17px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .map__results .results-list ul .result-title {
        padding: 16px;
        border-top: 0;
        border-bottom: 1px solid #dfdbd6;
    }
}

.map__results .results-list ul .result-title::before {
    display: none;
}

.map__results .results-list ul .result-title:first-child {
    border-top: 0px;
}

.map__results .results-list ul .result-title:last-child {
    border-bottom: 1px solid #dfdbd6;
}

.map__results .results-list ul .result-title.-active {
    background-color: #fffbf3;
    transition: background-color 0.2s ease-in-out;
}

.map__results .results-list ul .result-title.-active .title::after {
    content: url("../images/icon-moins.svg");
    background: #1b1b1b;
}

.map__results .results-list ul .result-title.-active .number {
    color: black;
}

.map__results .results-list ul .result-title.-active .number::after {
    transition: all 0.2s ease-in-out;
    filter: none;
}

.map__results .results-list ul .result-title span:not(.number) {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #646363;
}

.map__results .results-list ul .result-title.-active .result-details {
    opacity: 1;
    margin-top: 16px;
}

.map__results .results-list ul .result-details {
    display: none;
    height: 0;
    opacity: 0;
    cursor: initial;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    overflow-y: hidden;
    background: #fffbf3;
}

@media screen and (min-width: 992px) {
    .map__results .results-list ul .result-details {
        overflow: hidden;
        position: relative;
        height: calc(100% - 32px);
        width: 100%;
    }
}

.map__results .results-list ul .result-details img {
    display: none;
}

@media screen and (min-width: 992px) {
    .map__results .results-list ul .result-details img {
        height: 150px;
        border-radius: 4px;
        display: block;
        width: 100%;
        object-fit: cover;
    }
}

.map__results .results-list ul .result-details .result-infos {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map__results .results-list ul .result-details .title {
    display: none;
}

@media screen and (min-width: 992px) {
    .map__results .results-list ul .result-details .title {
        display: flex;
        font-weight: 700;
        font-size: 16px;
        line-height: 150%;
        margin-bottom: 8px;
        padding-bottom: 8px;
        position: sticky;
        top: 0;
        background-color: #fffbf3;
    }

    .map__results .results-list ul .result-details .title .number {
        color: black;
    }

    .map__results .results-list ul .result-details .title .number::after {
        content: url("../images/icon-map-ocre.svg");
        filter: none;
    }
}

.map__results .results-list ul .result-details.-display {
    height: 100%;
    opacity: 1;
    pointer-events: initial;
    padding: 8px 16px 24px 16px;
    overflow: hidden;
    z-index: 99;
}

#geocoder_result {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #cccccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
}

#geocoder_result.show {
    display: block;
    width: auto;
    padding: 5px;
}

#geocoder_result .list-group-item {
    width: 100%;
    padding: 10px;
    border: 0px;
    text-align: left;
    font-family: var(--roboto);
}

#geocoder_result .list-group-item:hover {
    color: #333;
    cursor: pointer;
    background-color: #e6e6e6;
    border-color: #adadad;
    text-decoration: none;
}

@media screen and (min-width: 992px) {
    .map__results .results-list ul .result-details.-display {
        height: calc(100% - 32px);
        padding: 0;
    }
}

.map__results .results-list ul .result-details .btn {
    padding: 0;
    font-family: var(--roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--ocre-100);
    border-radius: 50px;
    border: 0.5px solid var(--ocre-100);
    width: 100%;
    padding: 12px 20px;

}

.map__results .results-list ul .result-details .btn::after {
    content: "";
    mask: url("../images/Icon-right.svg") no-repeat center;
    mask-size: contain;
    background-color: var(--ocre-100);
    height: 20px;
    width: 20px;
    position: relative;
}

@media (hover:hover) {
    .map__results .results-list ul .result-details .btn:hover {
        color: var(--neutre-100);
    }

    .map__results .results-list ul .result-details .btn:hover::after {
        top: unset;
        bottom: unset;
        left: unset;
        right: unset;
        background-color: var(--neutre-100);
    }
}

.map__results .results-list ul .result-details p,
.map__results .results-list ul .result-details li {
    font-family: "Roboto";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.map__results .results-list ul .result-details p.sub-title,
.map__results .results-list ul .result-details li.sub-title {
    font-family: "Roboto";
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    margin: 32px 0 16px 0;
}

.map__results .results-list ul .result-details p.sub-title span,
.map__results .results-list ul .result-details li.sub-title span {
    color: #d8b465;
}

.map__results .results-list ul .result-details .formation--other {
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    list-style: disc;
    color: var(--black);
}

.map__results .results-list ul .result-details .formation--match {
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    list-style: disc;
    color: var(--ocre-100);
}

.map__results .results-list ul .result-details img {
    margin: 8px 0;
}

.map__results .results-list ul .result-details .address {
    display: flex;
    gap: 12px;
    align-items: center;
}

.map__results .results-list ul .result-details .address::before {
    content: "";
    mask: url(../images/maps-and-flags.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--ocre-100);
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.map__results .results-list ul .result-details .phone {
    display: flex;
    gap: 12px;
    align-items: center;
}

.map__results .results-list ul .result-details .phone::before {
    content: "";
    mask: url(../images/telephone.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--ocre-100);
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.map__results .results-list ul .result-details .mail {
    display: flex;
    gap: 12px;
    align-items: center;
}

.map__results .results-list ul .result-details .mail::before {
    content: "";
    mask: url(../images/enveloppe.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--ocre-100);
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}
.map__results .results-list ul .result-details .formations {
    display: flex;
    gap: 12px;
    align-items: center;
}

.map__results .results-list ul .result-details .formations::before {
    content: "";
    mask: url(../images/ecole.svg) no-repeat center;
    mask-size: contain;
    background-color: var(--ocre-100);
    height: 24px;
    width: 24px;
    flex-shrink: 0;
}

.map__results .results-list ul .result-details .sub-result {
    max-height: 256px;
    overflow: scroll;
    margin: 16px 0 24px 0;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    padding-right: 16px;
    padding-left: 36px;
}

.map__results .results-list .small-btn {
    display: none;
    justify-content: initial;
}

.map__results .results-list .small-btn .cta::after {
    background: url("../images/icon-download.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.map__results .results-list .small-btn p {
    font-weight: 600;
    font-size: 16px;
}

.map__results .results-list .small-btn p span {
    font-size: 14px;
    font-weight: 400;
    color: #646363;
}

.btn-pagination {
    text-align: center;
    font-family: 'Roboto Slab', sans-serif;
    color: white;
    padding: 5px;
    margin: 2px;
    width: 35px;
    border: 1px solid #D8B465;
    background-color: black;
}

.btn-pagination:hover {
    border: 1px solid black;
    color: black;
    background-color: white;
    cursor: pointer;
}

.btn-pagination-active {
    background-color: #D8B465;
    color: black;
    border: 1px solid black;
}

/* END MAP.SCSS */

.loader {
    border: 16px solid #f3f3f3;
    border-top-width: 16px;
    border-top-style: solid;
    border-top-color: rgb(243, 243, 243);
    border-radius: 50%;
    border-top: 16px solid #d8b465;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    background: white;
    z-index: 100;
    right: calc(50% - 120px / 2);
    top: calc(50% - 120px / 2);
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.map .marker-cluster-small {
    background-color: rgba(255, 211, 124, 0.5);
}

.map .marker-cluster-small div {
    background-color: rgba(255, 211, 124, 0.7);
}

.map .marker-cluster-medium {
    background-color: rgba(255, 193, 69, 0.5);
}

.map .marker-cluster-medium div {
    background-color: rgba(255, 193, 69, 0.7);
}

.map .marker-cluster-large {
    background-color: rgba(218, 161, 49, 0.6);
}

.map .marker-cluster-large div {
    background-color: rgba(218, 161, 49, 0.6);
}


.leaflet-marker-icon .number {
    position: relative;
    top: -28px;
    left: 1px;
    width: 25px;
    text-align: center;
    font-family: 'Roboto Slab';
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 500;
    max-width: 22px;
    height: 22px;
    margin-top: 2px;
    color: white;
}

.modal-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal-links.open {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-links.open .modal-dialog {
    width: 600px;
    margin: 30px auto;
}

.modal-links.open .modal-content {
    position: relative;
    background-color: #ffffff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-links .modal-content .modal-body {
    position: relative;
    padding: 15px;
}

.modal-links .modal-content .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-overylay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000000;
    display: none;
}

.modal-overylay.in {
    opacity: 0.5;
    display: block;
}


.custom-btn {
    font-family: 'Work Sans';
    border-radius: 50px;
    padding: 14px 20px;
    font-weight: 500;
    display: inline-block;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    max-width: 400px;
    color: black;
    border: 1px solid black;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border 0.3s ease-in-out;
    cursor: pointer;
}

.result-details .sub-result strong {
    font-weight: 700;
}


.map .search-module {
    color: var(--neutre-100);
    margin-bottom: 32px;
}

@media screen and (min-width:768px) {
    .map .search-module {
        margin-bottom: 64px;
    }
}

.map .search-module--container {
    background: var(--ocre-20);
    border-radius: 20px;
    padding: 32px 20px;
}
@media screen and (min-width: 992px) {
    .map .search-module--container {
        padding: 48px;
    }
}
.th-dark .map .search-module--container {
    background: var(--ocre-100);
}
.th-light .map .search-module--container {
    background: var(--ocre-40);
}
.map .search-module--title {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 24px auto;
    column-gap: 16px;
    row-gap: 8px;
}
.map .search-module--title h2 {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    grid-column: 2/3;
}
@media screen and (min-width: 768px) {
    .map .search-module--title h2 {
        font-size: 24px;
    }
}
.map .search-module--title span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--ocre-100);
    border-radius: 50%;
    flex-shrink: 0;
    grid-column: 1/2;
}
.th-light .map .search-module--title span,
.th-dark .map .search-module--title span {
    background: var(--white);
}
.map .search-module--title span::before {
    content: "";
    width: 15px;
    height: 15px;
    -webkit-mask: url("../images/icon-search.svg") no-repeat center;
    mask: url("../images/icon-search.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: var(--white);
}
.th-light .map .search-module--title span::before,
.th-dark .map .search-module--title span::before {
    background-color: var(--neutre-100);
}
.map .search-module--title p {
    grid-column: 1 / -1;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}
@media screen and (min-width: 768px) {
    .map .search-module--title p {
        font-size: 16px;
        grid-column: 2/3;
    }
}
.map .search-module--filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.map .search-module--filters-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 992px) {
    .map .search-module--filters-wrapper {
        flex-direction: row;
        align-items: flex-end;
    }
}
.map .search-module--filters button {
    width: 100%;
    flex: auto;
    cursor: pointer;
}
@media screen and (min-width: 992px) {
    .map .search-module--filters button {
        width: max-content;
        flex: 0 0 max-content;
        height: 38px;
        align-self: self-end;
    }
}
.map .search-module--filters button span {
    width: 14px !important;
    height: 14px !important;
}
.map .search-module--filters .search-reset {
    font-family: var(--roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 16px;
}
.map .search-module--filters .search-reset::before {
    content: "";
    mask: url(../images/rafraichir.svg) no-repeat center;
    mask-size: contain;
    background-color: black;
    height: 14px;
    width: 14px;
}
.map .search-module .select-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media screen and (min-width: 992px) {
    .map .search-module .select-container {
        flex: 0 1 287px;
    }
}
.map .search-module .select-container label {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    font-family: var(--roboto);
}
.map .search-module .select-container .select-wrapper {
    width: 100%;
    position: relative;
}
.map .search-module .select-container .select-wrapper::after {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../../../../../../themes/apo/resources/images/icons/chevron-bottom.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    right: 12px;
    top: calc(50% - 12px);
    pointer-events: none;
}
.map .search-module .select-container select,
.map .search-module .select-container input {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--ocre-100);
    border-radius: 10px;
    padding: 12px;
    color: var(--neutre-60);
    font-family: var(--roboto);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
}
.th-dark .map .search-module .select-container select {
    border-color: var(--white);
}
.th-light .map .search-module .select-container select {
    border-color: var(--neutre-100);
}