
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #263a31; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #102035; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2f43c4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background: #f6f9ff;
  color: #24b416;
}

body::-webkit-scrollbar {
  display: none;
}


a {
  color: #2bb636;
  text-decoration: none;
}

a:hover {
  color: #63e975;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}


form .form-floating input[type=text],
form .form-floating input[type=email],
form .form-floating input[type=tel],
form .form-floating input[type=date],
form .form-floating input[type=number],
form .form-floating select,
form .form-floating textarea {
  color: #04063b;
  border: 2px solid #1ea500c4;
}

form .form-floating input[type=text]:focus,
form .form-floating input[type=email]:focus,
form .form-floating input[type=tel]:focus,
form .form-floating input[type=date]:focus,
form .form-floating input[type=number]:focus,
form .form-floating select:focus,
form .form-floating textarea:focus {
  border: 2px solid #09d01a;
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, #09d01a, transparent 80%);
  outline: none;
}

form .form-floating textarea{
  resize: none;
}


/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/
#main {
  margin-bottom: 60px;
  padding: 20px 30px;
  transition: all 0.3s;
}

@media (max-width: 1198px) {
  #main {
    padding: 20px;
  }
}

@media (min-width: 1199px) {
  #main {
    padding: 20px 100px;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
  margin-bottom: 10px;
}

.pagetitle h1 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: 600;
  color: #1aa531;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #3ba831;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/
.property-details .property-hero .hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-wrapper {
  height: auto !important;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px;
  z-index: 5;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.for-rent {
  background: #28a745;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .featured-badge {
  background: #ff6b35;
  color: var(--contrast-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn i {
  font-size: 20px;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn:hover {
  background: var(--surface-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  margin-top: -22.5px;
  z-index: 10;
  color: var(--accent-color);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 700;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:hover,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:hover {
  transform: scale(1.1);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
  right: 20px;
  transition: 0.3s;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
  left: 20px;
  transition: 0.3s;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-wrapper {
  height: auto !important;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
  height: 70px;
  margin: 20px 0;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img:hover {
  transform: scale(1.05);
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide {
  position: relative;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active .thumbnail-img {
  border-color: #1884d1;
}


.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide .photo-count {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--contrast-color);
  padding: 8px 12px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}

.property-details .property-info .property-header .property-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.property-details .property-info .property-header .property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.property-details .property-info .property-header .property-meta .address {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
}

.property-details .property-info .property-header .property-meta .address i {
  color: var(--accent-color);
  margin-right: 8px;
}

.property-details .property-info .property-header .property-meta .listing-id {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
}

.property-details .property-info .pricing-section {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
  padding: 25px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.property-details .property-info .pricing-section .main-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 10px;
}

.property-details .property-info .pricing-section .main-price .period {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.9;
}

.property-details .property-info .pricing-section .price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.property-details .property-info .pricing-section .price-breakdown span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.property-details .property-info .pricing-section .price-breakdown .available {
  font-weight: 600;
}

.property-details .property-info .quick-stats .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card {
  background: var(--surface-color);
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.property-details .property-info .quick-stats .stat-grid .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon {
  margin-bottom: 10px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-number {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}


.property-details .property-details h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.property-details .property-details p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-details .features-grid h5 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.property-details .property-details .features-grid .feature-list {
  list-style: none;
  padding: 0;
}

.property-details .property-details .features-grid .feature-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .property-details .features-grid .feature-list li:last-child {
  border-bottom: none;
}

.property-details .property-details .features-grid .feature-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.property-details .floor-plan-section h3 {
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.property-details .floor-plan-section .floor-plan-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.property-details .floor-plan-section .floor-plan-card .plan-details {
  padding: 25px;
}

.property-details .floor-plan-section .floor-plan-card .plan-details h5 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card .plan-details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.property-details .sticky-sidebar{
  position: sticky;
  top: 90px;
}


.property-details .sticky-sidebar .agent-card {

  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .agent-card .agent-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar .online-status {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  background: #28a745;
  border: 3px solid var(--surface-color);
  border-radius: 50%;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-role {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 10px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars {
  margin-bottom: 5px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars i {
  color: #ffc107;
  margin-right: 2px;
  font-size: 14px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .rating-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.property-details .sticky-sidebar .agent-card .agent-contact {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-top: 15px;
  margin-bottom: 15px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 16px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item span {
  font-size: 14px;
  color: var(--default-color);
}

.property-details .sticky-sidebar .agent-actions{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.property-details .sticky-sidebar .agent-actions button{
  width: 70%;
  max-width: 220px;
  border-radius: 6px;
  border: 2px solid;
}

.property-details .sticky-sidebar .agent-card .btn {
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 20px;
  transition: all 0.4s ease;
}

.property-details .sticky-sidebar .agent-card .btn i {
  margin-right: 8px;
}

.property-details .sticky-sidebar .agent-card .btn.message {
  color: #ffffff;
  background: #28a745;
  border-color: #28a745;
}

.property-details .sticky-sidebar .agent-card .btn.message:hover{
  color: #ffffff;
  background: #048121;
  border-color: #048121;
}

.property-details .sticky-sidebar .agent-card .btn.appel {
  border-color: #1463ec;
  color: #1463ec;
}

.property-details .sticky-sidebar .agent-card .btn.appel:hover{
  background-color: #1463ec;
  color: #ffffff;

}

.property-details .sticky-sidebar .contact-form-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .contact-form-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .sticky-sidebar .contact-form-card .form-control,
.property-details .sticky-sidebar .contact-form-card .form-select {
  color: var(--default-color);
  background-color: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  padding: 15px;
}

.property-details .sticky-sidebar .contact-form-card .form-control:focus,
.property-details .sticky-sidebar .contact-form-card .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.property-details .sticky-sidebar .contact-form-card .form-control::placeholder,
.property-details .sticky-sidebar .contact-form-card .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.property-details .sticky-sidebar .contact-form-card .btn {
  background: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 600;
  border-radius: 12px;
  padding: 15px 20px;
}

.property-details .sticky-sidebar .calculator-card {
  background: var(--surface-color);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .calculator-card h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .sticky-sidebar .calculator-card .cost-item:last-of-type {
  border-bottom: none;
}

.property-details .sticky-sidebar .calculator-card .cost-item .cost-label {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}

.property-details .sticky-sidebar .calculator-card .cost-item .cost-value {
  color: var(--heading-color);
  font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .total-cost {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 12px;
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-details .sticky-sidebar .calculator-card .total-cost .total-label {
  color: var(--heading-color);
  font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .total-cost .total-value {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
}

.property-details .sticky-sidebar .similar-properties h4 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.property-details .sticky-sidebar .similar-properties .similar-property-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 15px;
  flex-shrink: 0;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info h6 {
  color: var(--heading-color);
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-price {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 3px;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-specs {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 12px;
  margin: 0;
}

.property-details .location-section h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-weight: 600;
}

.property-details .location-section .map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-details .location-section .map-wrapper iframe {
  filter: grayscale(10%);
}

.property-details .location-section .neighborhood-info h5 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.property-details .location-section .neighborhood-info .poi-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .location-section .neighborhood-info .poi-item:last-child {
  border-bottom: none;
}

.property-details .location-section .neighborhood-info .poi-item i {
  color: var(--accent-color);
  margin-right: 15px;
  width: 20px;
  text-align: center;
  font-size: 18px;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content {
  display: flex;
  flex-direction: column;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content .poi-name {
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 3px;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content .poi-distance {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 13px;
}

@media (max-width: 992px) {
  .property-details .sticky-sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
    font-size: 14px;
  }

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
    right: 10px;
  }

  .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    left: 10px;
  }

  .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
    height: 60px;
  }

  .property-details .property-info .property-header .property-title {
    font-size: 28px;
  }

  .property-details .property-info .property-header .property-meta {
    flex-direction: column;
    gap: 10px;
  }

  .property-details .property-info .pricing-section .main-price {
    font-size: 36px;
  }

  .property-details .property-info .quick-stats .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .property-details .property-info .quick-stats .stat-grid .stat-card {
    padding: 15px 10px;
  }

  .property-details .similar-properties .similar-property-item {
    flex-direction: column;
    text-align: center;
  }

  .property-details .similar-properties .similar-property-item img {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
    height: 120px;
  }
}


/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
  border-radius: 4px;
  padding: 10px 0;
  animation-name: dropdown-animate;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

.dropdown-menu .dropdown-header,
.dropdown-menu .dropdown-footer {
  text-align: center;
  font-size: 15px;
  padding: 10px 25px;
}

.dropdown-menu .dropdown-footer a {
  color: #444444;
  text-decoration: underline;
}

.dropdown-menu .dropdown-footer a:hover {
  text-decoration: none;
}

.dropdown-menu .dropdown-divider {
  color: #a5c5fe;
  margin: 0;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-menu .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f6f9ff;
}

@media (min-width: 768px) {
  .dropdown-menu-arrow::before {
    content: "";
    width: 13px;
    height: 13px;
    background: #fff;
    position: absolute;
    top: -7px;
    right: 20px;
    transform: rotate(45deg);
    border-top: 1px solid #eaedf1;
    border-left: 1px solid #eaedf1;
  }
}

@keyframes dropdown-animate {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

  0% {
    opacity: 0;
  }
}

/* Light Backgrounds */
.bg-primary-light {
  background-color: #cfe2ff;
  border-color: #cfe2ff;
}

.bg-secondary-light {
  background-color: #e2e3e5;
  border-color: #e2e3e5;
}

.bg-success-light {
  background-color: #d1e7dd;
  border-color: #d1e7dd;
}

.bg-danger-light {
  background-color: #f8d7da;
  border-color: #f8d7da;
}

.bg-warning-light {
  background-color: #fff3cd;
  border-color: #fff3cd;
}

.bg-info-light {
  background-color: #cff4fc;
  border-color: #cff4fc;
}

.bg-dark-light {
  background-color: #d3d3d4;
  border-color: #d3d3d4;
}

/* Card */
.card {
  margin-bottom: 30px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
  border-color: #ebeef4;
  background-color: #fff;
  color: #798eb3;
  padding: 15px;
}

.card-title {
  padding: 20px 0 15px 0;
  font-size: 18px;
  font-weight: 500;
  color: #012970;
  font-family: "Poppins", sans-serif;
}

.card-title span {
  color: #899bbd;
  font-size: 14px;
  font-weight: 400;
}

.card-body {
  padding: 0 20px 20px 20px;
}


.card-img-overlay {
  background-color: rgba(255, 255, 255, 0.6);
}

.card-body .kontent{

  width: 100%;
  background-color: #18d26e;
  padding: 20px 0;
}

/* Alerts */
.alert-heading {
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

/* Close Button */
.btn-close {
  background-size: 25%;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

/* Accordion */
.accordion-item {
  border: 1px solid #ebeef4;
}

.accordion-button:focus {
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #012970;
  background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
  padding: 15px 0;
  background: none;
  border: 0;
}

.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #4154f1;
}

.accordion-flush .accordion-body {
  padding: 0 0 15px 0;
  color: #3e4f6f;
  font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  color: #899bbd;
  font-weight: 600;
}

.breadcrumb a {
  color: #899bbd;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #51678f;
}

.breadcrumb .breadcrumb-item::before {
  color: #899bbd;
}

.breadcrumb .active {
  color: #51678f;
  font-weight: 600;
}

/* Bordered Tabs */
.nav-tabs-bordered {
  border-bottom: 2px solid #ebeef4;
}

.nav-tabs-bordered .nav-link {
  margin-bottom: -2px;
  border: none;
  color: #2c384e;
}

.nav-tabs-bordered .nav-link:hover,
.nav-tabs-bordered .nav-link:focus {
  color: #4154f1;
}

.nav-tabs-bordered .nav-link.active {
  background-color: #fff;
  color: #4154f1;
  border-bottom: 2px solid #4154f1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
  line-height: 1;
}

@media (min-width: 1200px) {
  .logo {
    width: 280px;
  }
}

.logo img {
  max-height: 26px;
  margin-right: 6px;
}

.logo span {
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  font-family: "Nunito", sans-serif;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 60px;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
  background-color: #fff;
  padding-left: 20px;
  /* Toggle Sidebar Button */
  /* Search Bar */
}

.header .toggle-sidebar-btn {
  font-size: 32px;
  padding-left: 10px;
  cursor: pointer;
  color: #012970;
}

.header .search-bar {
  min-width: 360px;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .header .search-bar {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    padding: 20px;
    box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
    background: white;
    z-index: 9999;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  .header .search-bar-show {
    top: 60px;
    visibility: visible;
    opacity: 1;
  }
}

.header .search-form {
  width: 100%;
}

.header .search-form input {
  border: 0;
  font-size: 14px;
  color: #012970;
  border: 1px solid rgba(1, 41, 112, 0.2);
  padding: 7px 38px 7px 8px;
  border-radius: 3px;
  transition: 0.3s;
  width: 100%;
}

.header .search-form input:focus,
.header .search-form input:hover {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

.header .search-form button {
  border: 0;
  padding: 0;
  margin-left: -30px;
  background: none;
}

.header .search-form button i {
  color: #012970;
}



/*--------------------------------------------------------------
# Géo Cart
--------------------------------------------------------------*/

.explore-card{

  position: relative;
  width: 100%;
  height: 70vh;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}

.map-card{

  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}


/* --- Bouton d’ouverture --- */
.open-categories-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #0972f2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  z-index: 900;
}

.open-categories-btn:hover {
  transform: translateY(-2px);
}

/* --- Panneau des catégories --- */

/* --- STYLE DU FILTRE --- */
.map-filter{
  position: absolute;
  top: 95px;
  width: 95%;
  max-width: 280px;
  background: #010a1bb2;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.296);
  padding: 15px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  z-index: 9999;
  transition: all 0.4s ease;
  opacity: 1;

}

.map-filter.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.filter-header h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #ffffff;
}

.filter-header button {
  border: none;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: #f4f4f4;
}

.filter-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}

.filter-option input {
  accent-color: #2563eb;
  transform: scale(1.2);
}

.filter-category,
.filter-radius {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

select,
input[type="range"] {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 6px;
  font-size: 14px;
}

.filter-category select{
  outline: none;
  padding: 10px;
  border: 2px solid #babdc1;
  transition: all 0.3s ease;
}

.filter-category select:focus{
  border: 2px solid #2a67b7;
}

#radiusValue {
  text-align: right;
  font-size: 13px;
  color: #555;
}

/* --- BOUTON FLOTTANT --- */
.floating-filter-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1053d9;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(31, 30, 30, 0.514);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
}

.floating-filter-btn:hover {
  transform: scale(1.05);
  background: #283f89;
}


/* --- BOUTON MA POSITION --- */
.floating-locate-btn {
  position: absolute;
  bottom: 85px; /* juste au-dessus du bouton filtre */
  right: 20px;
  background: #22c55e;
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
}

.floating-locate-btn:hover {
  transform: scale(1.05);
  background: #15803d;
}

/* FIN */


/* --- Mobile --- */
@media (max-width: 528px) {

  .explore-card{
    height: 85%;
  }

  /* --- BOUTON FLOTTANT --- */
  .floating-filter-btn {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 10px;
    font-size: 18px;
  }

  /* --- BOUTON MA POSITION --- */
  .floating-locate-btn {
    width: 45px;
    height: 45px;
    right: 10px;
    bottom: 70px;
    font-size: 18px;
  }

}


/* Desktop */
@media (min-width: 428px) {

  .map-filter{
    left: 20px;
  }

}

/* Marqeur utilisateur */

.user-location-icon {
  position: relative;
}

.pulse {
  width: 16px;
  height: 16px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(59,130,246,0.4);
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59,130,246,0.4);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(59,130,246,0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(59,130,246,0);
  }
}


/* --- Marqueur produit --- */

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}


.marker-cluster-small{
  background-color: rgba(186, 13, 148, 0.293);
}

.explore-card .custom-school-marker{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  pad: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* === STYLES CLUSTERS === */
.custom-cluster{
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #faf200;
  background: #e9dc78;

  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.custom-school-marker img {
  width: 100%;
  height: 100%;
  object-fit: contain;

}

.popup-etab {
  width: 220px;
  text-align: left;
}
.popup-etab img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 6px;
}
.popup-etab h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: #111;
}
.popup-etab p {
  font-size: 13px;
  margin: 0;
  color: #555;
}
.popup-actions{

  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.popup-actions a.btn.see{

  width: 100%;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 15px;
  background: #09c037;
  transition: all 0.4s ease;
}

.popup-actions a.btn.see:hover{

  background: #05a520;
}



/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
  list-style: none;
}

.header-nav>ul {
  margin: 0;
  padding: 0;
}

.header-nav .nav-icon {
  font-size: 22px;
  color: #012970;
  margin-right: 25px;
  position: relative;
}

.header-nav .nav-profile {
  color: #012970;
}

.header-nav .nav-profile img {
  max-height: 36px;
}

.header-nav .nav-profile span {
  font-size: 14px;
  font-weight: 600;
}

.header-nav .badge-number {
  position: absolute;
  inset: -2px -5px auto auto;
  font-weight: normal;
  font-size: 12px;
  padding: 3px 6px;
}

.header-nav .notifications {
  inset: 8px -15px auto auto !important;
}

.header-nav .notifications .notification-item {
  display: flex;
  align-items: center;
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .notifications .notification-item i {
  margin: 0 20px 0 10px;
  font-size: 24px;
}

.header-nav .notifications .notification-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.header-nav .notifications .notification-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .notifications .notification-item:hover {
  background-color: #f6f9ff;
}

.header-nav .messages {
  inset: 8px -15px auto auto !important;
}

.header-nav .messages .message-item {
  padding: 15px 10px;
  transition: 0.3s;
}

.header-nav .messages .message-item a {
  display: flex;
}

.header-nav .messages .message-item img {
  margin: 0 20px 0 10px;
  max-height: 40px;
}

.header-nav .messages .message-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #444444;
}

.header-nav .messages .message-item p {
  font-size: 13px;
  margin-bottom: 3px;
  color: #919191;
}

.header-nav .messages .message-item:hover {
  background-color: #f6f9ff;
}

.header-nav .profile {
  min-width: 240px;
  padding-bottom: 0;
  top: 8px !important;
}

.header-nav .profile .dropdown-header h6 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
  color: #444444;
}

.header-nav .profile .dropdown-header span {
  font-size: 14px;
}

.header-nav .profile .dropdown-item {
  font-size: 14px;
  padding: 10px 15px;
  transition: 0.3s;
}

.header-nav .profile .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
  line-height: 0;
}

.header-nav .profile .dropdown-item:hover {
  background-color: #f6f9ff;
}

/*--------------------------------------------------------------
# footer-nav
--------------------------------------------------------------*/


/* ----- STYLE DE BASE ----- */
footer.footer-nav {
  position: fixed;
  bottom: -80px; /* cachée au départ pour l'animation */
  left: 0;
  width: 100%;
  z-index: 99999;
  opacity: 0;
  transition: all 0.8s ease;
  display: flex;
  justify-content: center;
}

footer.footer-nav.show {
  bottom: 0;
  opacity: 1;
}

footer.footer-nav .footer-container {

  width: 98%;
  max-width: 600px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
  border-radius: 10px;
  margin-bottom: 10px;
  background: rgba(1, 9, 32, 0.873);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);

}

footer.footer-nav .nav-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  gap: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

footer.footer-nav .nav-btn i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Bouton central flottant */
footer.footer-nav .center-btn {
  position: relative;
  background: linear-gradient(135deg, #4a90e2, #007aff);
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,122,255,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-15px);
  font-size: 22px;
  transition: all 0.3s ease;
}

footer.footer-nav .center-btn:hover {
  transform: translateY(-20px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,122,255,0.7);
}

/* Survol */
footer.footer-nav .nav-btn:hover i {
  transform: translateY(-3px) scale(1.1);
  color: #fff;
}

.nav-btn:hover span {
  color: #fff;
}

/* Actif */
footer.footer-nav .nav-btn.active {
  color: #fff;
}

footer.footer-nav .nav-btn.active i {
  color: #007aff;
  transform: scale(1.2);
}

footer.footer-nav .center-btn.active{
  transform: translateY(-20px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,122,255,0.7);
}

footer.footer-nav .center-btn.active i{
  color: #ffffff;
}

/* Adaptation mobile */
@media (max-width: 768px) {
  footer.footer-nav .footer-container {
    gap: 0;
  }

  footer.footer-nav .nav-btn span {
    font-size: 11px;
  }
}

/* Adaptation mobile */
@media (max-width: 450px) {
  
  footer.footer-nav .nav-btn span {
    display: none;
  }
}


/*--------------------------------------------------------------
# Form schoolForm
--------------------------------------------------------------*/

.sector .formulaire{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.sector .formulaire .form-floating input,
.sector .formulaire .form-floating select,
.sector .formulaire .form-floating textarea{
  background-color: transparent;
}

.sector .formulaire .form-floating option{
  color: #29292a;
}

.sector .formulaire .form-floating label{
  color: #535252;
  background-color: transparent;
}


.sector .formulaire form#adForm {
  width: 100%;
  max-width: 800px;
  margin: 0;
  font-family: var(--default-font);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}


.sector .formulaire #progressBar {
  width: 100%;
  max-width: 300px;
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  margin: 20px 0 10px 0;
}

.sector .formulaire #progressBar div {
  flex:1;
  text-align:center;
  position:relative;
  color:#999;
  font-size:0.9rem;
}
.sector .formulaire #progressBar div::before {
  content: counter(step);
  counter-increment: step;
  display:block;
  width:30px;
  height:30px;
  line-height:30px;
  margin:0 auto 8px;
  border-radius:50%;
  background:#ddd; color:#ddd;
}
.sector .formulaire #progressBar div.active::before {
  background:#09e622;
  color: #ffffff;
}


/* --- Animation fluide entre les étapes --- */
.sector .formulaire .steps-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sector .step {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  min-height: 300px;
}

.sector .step.active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.sector .step.prev {
  transform: translateX(-30px);
  opacity: 0;
}

.sector .formulaire .images-upload{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.sector .formulaire .images-upload .btn.btn-image{
  height: max-content;
  padding: 14px 25px;
  color: #236ee7;
  background-color: #dde7e0;
}

.sector .formulaire .images-upload p{
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin: 10px 0;
  color: #fefefe;
}

.sector .formulaire .controls {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
}

.sector .formulaire .controls button {
  min-width: 45%;
  padding:12px 16px;
  border:none;
  border-radius:6px;
}

.sector .formulaire button.nextBtn{
  color: #ffffff;
  background:#2066bc;
}

.sector .formulaire button.prevBtn{
  color: #ffffff;
  background:#5b6b5b;
}

.sector .formulaire button.submitBtn{
  color: #ffffff;
  background:#21d350;
}

.sector .formulaire #fileCount{
  margin-top:6px;
  color:#fdfdfd;
  font-size:0.9rem;
}

.sector .formulaire #geoStatus{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top:4px;
  font-size:0.9rem;
}

@media (max-width:520px){
  .sector .formulaire #adForm{ padding:16px; }

  .sector .formulaire button{
    font-size: 14px;
  }
}

.sector .formulaire .file-preview img{
  max-width: 100px;
  height: 100px;
  object-fit: content;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

#alerte-retour {
  position: fixed;
  width: 90%;
  max-width: 400px;
  overflow: hidden;
  top: 110px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.5s ease;
  text-align: center;
}

#alerte-retour.active {
  height: auto;
  z-index: 997;
  opacity: 1;
  transform: translateY(0);
}

#alerte-retour p {
  display: inline-block;
  background: #ed1459;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px #ffffff2c;
  transition: background 0.3s ease;
}

#alerte-retour p.success {
  background: #28a745; /* vert */
}
#alerte-retour p.error {
  background: #dc3545; /* rouge */
}
#alerte-retour p.info {
  background: #0d6efd; /* bleu */
}


/*--------------------------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
  position: absolute;
  right: 0px;
  top: 15px;
}

.dashboard .filter .icon {
  color: #aab7cf;
  padding-right: 20px;
  padding-bottom: 5px;
  transition: 0.3s;
  font-size: 16px;
}

.dashboard .filter .icon:hover,
.dashboard .filter .icon:focus {
  color: #4154f1;
}

.dashboard .filter .dropdown-header {
  padding: 8px 15px;
}

.dashboard .filter .dropdown-header h6 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #aab7cf;
  margin-bottom: 0;
  padding: 0;
}

.dashboard .filter .dropdown-item {
  padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
  padding-bottom: 10px;
}

.dashboard .info-card h6 {
  font-size: 16px;
  color: #1d9b2e;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.dashboard .card-icon {
  font-size: 32px;
  line-height: 0;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  flex-grow: 0;
}

.dashboard .sales-card .card-icon {
  color: #4154f1;
  background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
  color: #2eca6a;
  background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
  color: #ff771d;
  background: #ffecdf;
}

/* Activity */
.dashboard .activity {
  font-size: 14px;
}

.dashboard .activity .activity-item .activite-label {
  color: #888;
  position: relative;
  flex-shrink: 0;
  flex-grow: 0;
  min-width: 64px;
}

.dashboard .activity .activity-item .activite-label::before {
  content: "";
  position: absolute;
  right: -11px;
  width: 4px;
  top: 0;
  bottom: 0;
  background-color: #eceefe;
}

.dashboard .activity .activity-item .activity-badge {
  margin-top: 3px;
  z-index: 1;
  font-size: 11px;
  line-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid #fff;
  flex-grow: 0;
}

.dashboard .activity .activity-item .activity-content {
  padding-left: 10px;
  padding-bottom: 20px;
}

.dashboard .activity .activity-item:first-child .activite-label::before {
  top: 5px;
}

.dashboard .activity .activity-item:last-child .activity-content {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Main Dashboard
--------------------------------------------------------------*/


.dashboard .card.prov{
  margin-bottom: 0;
  transition: all 0.5s ease;
}

.dashboard .card.prov:hover{
  cursor: pointer;
  background-color: #dae9f3;
}


.card .contenu{
  
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.contenu h2{
   
  width: 95%;
  text-align: center;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 15px;
  color: #0cc40c;

}

.contenu .syst{
  
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

}
.contenu .syst p{

  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #3b3d3f;
  transition: all 0.5s ease;

}

.dashboard .card.prov:hover p{
  color: #0f7bef;
}

.syst img{
  
  width: 50px;
  max-height: 50px;
  object-fit: contain;

}

.contenu .accordion {
  width: 90%;
  border-radius: 5px;
}

.contenu .accordion-btn{
  
  background-color: transparent;
  color: #626b62;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;

}

.accordion-btn i{
  
  font-size: 18px;
  margin: 0 0 0 10px;
  padding: 0;

}

.accordion-icon {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg); /* Retourner l'icône de 180 degrés */
}


.contenu .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #f9f9f9;
  padding: 0 10px;
}

.contenu .accordion-content form {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.contenu .accordion-content input {
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.contenu .accordion-content button {
  padding: 8px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

.contenu .accordion-content button:hover {
  background-color: #218838;
}



/* News & Updates */
.dashboard .news .post-item+.post-item {
  margin-top: 15px;
}

.dashboard .news img {
  width: 80px;
  float: left;
  border-radius: 5px;
}

.dashboard .news h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
  margin-bottom: 5px;
}

.dashboard .news h4 a {
  color: #012970;
  transition: 0.3s;
}

.dashboard .news h4 a:hover {
  color: #4154f1;
}

.dashboard .news p {
  font-size: 14px;
  color: #777777;
  margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
  font-size: 14px;
}

.dashboard .recent-sales .table thead {
  background: #f6f6fe;
}

.dashboard .recent-sales .table thead th {
  border: 0;
}

.dashboard .recent-sales .dataTable-top {
  padding: 0 0 10px 0;
}

.dashboard .recent-sales .dataTable-bottom {
  padding: 10px 0 0 0;
}

/* Top Selling */
.dashboard .top-selling {
  font-size: 14px;
}

.dashboard .top-selling .table thead {
  background: #f6f6fe;
}

.dashboard .top-selling .table thead th {
  border: 0;
}

.dashboard .top-selling .table tbody td {
  vertical-align: middle;
}

.dashboard .top-selling img {
  border-radius: 5px;
  max-width: 60px;
}

.dashboard .card.details .contenu{
  width: 100%;
  height: 200px;

}


/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  padding-top: 15px;
}

.iconslist .icon {
  background-color: #fff;
  border-radius: 0.25rem;
  text-align: center;
  color: #012970;
  padding: 15px 0;
}

.iconslist i {
  margin: 0.25rem;
  font-size: 2.5rem;
}

.iconslist .label {
  font-family: var(--bs-font-monospace);
  display: inline-block;
  width: 100%;
  overflow: hidden;
  padding: 0.25rem;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #666;
}

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
  max-width: 120px;
}

.profile .profile-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c384e;
  margin: 10px 0 0 0;
}

.profile .profile-card h3 {
  font-size: 18px;
}

.profile .profile-card .social-links a {
  font-size: 20px;
  display: inline-block;
  color: rgba(1, 41, 112, 0.5);
  line-height: 0;
  margin-right: 10px;
  transition: 0.3s;
}

.profile .profile-card .social-links a:hover {
  color: #012970;
}

.profile .profile-overview .row {
  margin-bottom: 20px;
  font-size: 15px;
}

.profile .profile-overview .card-title {
  color: #012970;
}

.profile .profile-overview .label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
  font-weight: 600;
  color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
  max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
  font-size: 18px;
  font-weight: 600;
  color: #4154f1;
}

.faq .basic p {
  color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  padding: 28px 30px;
}

.contact .info-box i {
  font-size: 38px;
  line-height: 0;
  color: #4154f1;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #012970;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #4154f1;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #4154f1;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #5969f3;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  padding: 30px;
}

.error-404 h1 {
  font-size: 180px;
  font-weight: 700;
  color: #4154f1;
  margin-bottom: 0;
  line-height: 150px;
}

.error-404 h2 {
  font-size: 24px;
  font-weight: 700;
  color: #012970;
  margin-bottom: 30px;
}

.error-404 .btn {
  background: #51678f;
  color: #fff;
  padding: 8px 30px;
}

.error-404 .btn:hover {
  background: #3e4f6f;
}

@media (min-width: 992px) {
  .error-404 img {
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}