/* module fiche */


#sliderSplide {
    height: 500px;
}

#sliderSplide .splide__slide img {
    display: block;
    margin: 0 auto;
    border-radius: 0 70px 0 0 !important;
	height: 500px;
    object-fit: cover;
    width: 100%;
}

.custom-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.custom-arrow {
    pointer-events: all;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
}

.splide__arrow--prev {
    left: 1em !important;
}

.splide__arrow--next {
    right: 1em !important;
}

.splide__arrow--prev.custom-arrow::before {
    transform: rotate(45deg) !important;
}

.splide__arrow--next.custom-arrow::before {
    transform: rotate(-135deg) !important;
}

.splide__arrow--custom {
	height: 2.5em !important;
	width: 2.5em !important;
	background: #ffffff !important;
	opacity: 1 !important;
}

.splide__arrow--custom:hover {
	color: white;
	background: #a4c407 !important;
	opacity: .9 !important;
}

.splide__track--nav>.splide__list>.splide__slide--border.is-active {
    border: 3px solid var(--primary-color) !important;
}

.description-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description {
    margin-bottom: 20px;
}

.description h2 {
    font-size: 28px;
    margin-bottom: 10px;
	font-weight: bold;
}

.description-title {
    font-size: 2em;
    margin: 0;
    color: #333; 
}

.description-subtitle {
    font-size: 1.5em;
    margin: 10px 0;
    color: #555;
}

.description-comment {
    font-size: 1em;
    line-height: 1.6;
    margin: 20px 0;
    color: #666;
}

.description-details {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.description-details li {
    margin: 5px 0;
    font-size: 1em;
    display: flex;
    align-items: center;
}

.description-details i {
    margin-right: 10px;
    color: #01236a;
}

.description-details strong {
    margin-right: 5px;
}

.btn-description {
	color: white;
	padding: 10px;
	background-color: #01236a;
}

.btn-description-outline {
	padding: 10px;
	border: 2px solid var(--red-color);
	color: var(--red-color);
}

.action-buttons {
    margin-top: 20px;
	display: flex;
	gap: 15px;
	align-items: center;
}


.property-thumb-info-label {
	position: absolute;
	bottom: 0;
}

.label-fiche {
    background-color: #333;
    display: inline-block;
    font-size: 1em;
    margin-right: -4px;
    padding: 12px 20px;
	color: white;
	font-weight: 700;
	font-family: "Lato", sans-serif;
}

.label-fiche a:focus,
.label-fiche a:hover {
    color: #41b99b
}

.price {
    background-color: #093569
}


.collapse-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid rgba(51, 51, 51, 0.3);
    color: #333;
    cursor: pointer;
    transition: border-bottom 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.collapse-bar:hover {
    background-color: rgba(68, 68, 68, 0.25)
}

.collapse-title {
    font-size: 18px;
}

.collapse-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.collapse-content {
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
    padding: 0 10px;
    border: 1px solid #333;
    color: #333;
    transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    overflow: hidden;
}

.collapse-content.show {
    opacity: 1;
    transform: scaleY(1);
    padding: 10px;
}


.collapse-content p {
    margin: 0;
}

.collapse-bar.collapsed {
	color: white;
    background-color: #01236a;
    border-bottom: none;
    transition: background-color 0.4s ease;
}

.collapse-bar.collapsed .collapse-icon {
    transform: rotate(180deg);
}

.collapse-content ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    margin: 0;
}

.collapse-content li {
    flex: 1 1 50%;
    box-sizing: border-box;
    padding: 10px 15px;
    margin: 5px 0;
}

@media (max-width: 550px) {
	#sliderSplide .splide__slide img {
		border-radius: 0 !important;
	}
	#fiche_splide_container,
	#fiche_details_container,
	#fiche_splide_container > .description-section {
		padding: 0;
	}
	.description-details {
        grid-template-columns: 1fr;
    }
}