/* styles.css */

/*
Rainbow Doughnuts

-Coral
#ff5765

-Yellow
#ffdb15

-Violet
#8a6fdf

-Kelly Green
#a8e10c
*/

:root {
    --active-link: #f8f9fa;

    --blackness: #101014 !important;
    --orange-dark: #ffc229 !important;

    --primary: #a8e10c !important;
    --secondary: #ffdb15 !important;
    --tertiary: #ff5765 !important;
    --tertiary-prime: #ff7055 !important;
    --last: #8a6fdf !important;
    --black: #1b1b1b !important;
    --degrade-color-1: rgb(26, 33, 68);

    --white: var(--white);
    --light: #f8f9fa;

    --black-opacity: #1b1b1b23 !important;
    --form-label: #cacaca !important;
    --huge-title: clamp(3rem, 2.1795rem + 4.1026vw, 5rem);
    --big-title: clamp(2rem, 1.5897rem + 2.0513vw, 3rem);
    --med-title: clamp(1.5rem, 1.2949rem + 1.0256vw, 2rem);
    --lil-title: clamp(1.2rem, 1.14rem + 0.3vw, 1.5rem);
    --plain-text: clamp(0.875rem, 0.8237rem + 0.2564vw, 1rem);
    --boot-secondary: #6c757d;

    --hover-bg: #231919b7;

    /* --bs-navbar-toggler-icon-bg-site:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") */
    --bs-navbar-toggler-icon-bg-site: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28 255, 112, 85, 0.55 %29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

    /* --bs-accordion-btn-icon-plus: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='2' y1='8' x2='14' y2='8'/%3e%3cline x1='8' y1='2' x2='8' y2='14'/%3e%3c/svg%3e") !important; */
    /* --bs-accordion-btn-icon-moins: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='2' y1='8' x2='14' y2='8'/%3e%3c/svg%3e"); */

    --bs-accordion-btn-icon-plus: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='2' y1='8' x2='14' y2='8'/%3e%3cline x1='8' y1='2' x2='8' y2='14'/%3e%3c/svg%3e") !important;
    --bs-accordion-btn-icon-moins: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='2' y1='8' x2='14' y2='8'/%3e%3c/svg%3e");
    --box-shadow-card: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}

#offline-message {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 10px;
    width: 50%;
    height: 100px;
    min-width: 300px;
    border-radius: 10px/10px;
    background-color: white;
    color: black;
    text-align: center;
    padding: 40px 0;
    z-index: 9999999999;
}

.none {
    display: none !important;
}

/* body {
    background-color: var(--light);
} */

#site {
    font-family: Netflix Sans, Helvetica Neue, Segoe UI, Roboto, Ubuntu, sans-serif;
    /* background: var(--blackness); */
}

.active-link {
    color: var(--last);
    font-weight: bold;
}

/*
h1 {
    color: var(--orange-dark);
}

.site-title {
    color: var(--orange-dark);
} 
*/

#home-brand {
    /* background: url('../../img/micro-dark.jpg') center center no-repeat; */
    background: url('../../img/showilink-bg-2.jpg') center center no-repeat fixed;
    background-size: cover;
    /* ou contain selon ton besoin */
}

#home-brand-body {
    background-color: var(--hover-bg);
    height: 100%;
    width: 100%;
}

.brand {
    background: url('../../img/showilink-bg-2.jpg') center center no-repeat fixed;
    background-size: cover;
    height: 250px;
    width: 100%;
}

.brand-head {
    background-color: var(--hover-bg);
    height: 100%;
    width: 100%;
}

/* #home-brand-head {
    background-color: #10101446;
} */

/* Couleur pour chaque état */
.status-en-attente {
    color: #ffcc00;
    /* Jaune pour "en attente" */
}

.status-confirme {
    color: #28a745;
    /* Vert pour "confirmé" */
}

.status-termine {
    color: #17a2b8;
    /* Bleu pour "terminé" */
}

.status-annule {
    color: #dc3545;
    /* Rouge pour "annulé" */
}

/* Style général */

.label-style {
    color: #cacaca;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-control::placeholder {
    color: #cacaca !important;
}

.form-control:disabled {
    background-color: transparent !important;
}

.status {
    padding: 5px 10px;
}

.close {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    padding: .375rem .75rem;
}

.offcanvas-header .btn-close {
    background-color: #cacaca !important;
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}

.offcanvas-header {
    border-bottom: 1px solid #e9ecef;
}

.infos-naotice {
    font-size: small;
}

#site button:focus {
    box-shadow: none;
}

/* .navbar-nav a {
    color: white;
}

.navbar-nav a:hover {
    color: white;
} */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffc229'   class='bi bi-grid-1x2-fill' viewBox='0 0 16 16'%3e%3cpath d='M0 1a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1zm9 0a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1zm0 9a1 1 0 0 1 1-1h5a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1h-5a1 1 0 0 1-1-1z'/%3e%3c/svg%3e");
}

#nav-option {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    justify-content: flex-start;
    align-items: start;
    padding: 0;
}

/*
Featurings
*/

.msg-header {
    margin-top: 2%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.featuring-lists {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
}

#ajax-message {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.lists {
    display: flex;
    flex-direction: column;
}

.lists-msg {
    justify-content: flex-start;
    align-items: flex-start;
}

.lists-info {
    justify-content: flex-end;
    align-items: flex-end;
}


#featuring-lists img {
    width: 30px;
    height: 30px;
    border-radius: 30px/30px;
    background-color: white;
}

.feats-users {
    display: flex;
    flex-direction: column;
}

.ft-user {
    display: flex;
    flex-direction: row;
}

.ft-user img {
    margin-left: 2px;
    width: 32px;
    height: 32px;
    border: 1px solid whitesmoke;
    border-radius: 40px;
    background-color: whitesmoke;
}

/*Tailwind*/
.scrollbar-w-2::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
}

.scrollbar-track-blue-lighter::-webkit-scrollbar-track {
    --bg-opacity: 1;
    background-color: #f7fafc;
    background-color: rgba(247, 250, 252, var(--bg-opacity));
}

.scrollbar-thumb-blue::-webkit-scrollbar-thumb {
    --bg-opacity: 1;
    background-color: #edf2f7;
    background-color: rgba(237, 242, 247, var(--bg-opacity));
}

.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
    border-radius: 0.25rem;
}

/*
Wallet
*/
.wallet-animation {
    width: 80px;
    height: 80px;
}

.btn-wallet {
    color: var(--tertiary) !important;
}

/*
Datatable
*/
table.dataTable thead th, table.dataTable tfoot th {
    font-weight: normal !important;
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
    border: none;
}

/*
.user {
    color: var(--secondary-site) !important;
}
*/

.guest-contact-artiste {
    z-index: 9;
    position: fixed;
    bottom: 5%;
    left: 50%;
    /* Centrer horizontalement */
    transform: translateX(-50%);
    /* Ajuster pour centrer */
}

/* Masquer le contenu pendant le chargement */
body {
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
}

#progress-bar-container {
    width: 100%;
    height: 4px;
    background-color: #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--last);
    transition: width 0.3s ease;
}

.bg-warning {
    background: var(--primary) !important;
}

.bg-black {
    background: var(--black) !important;
}

.bg-site {
    background: var(--primary);
}

.bg-blackness {
    background-color: var(--blackness) !important;
}

.bg-primary-site {
    background: var(--primary) !important;
}

.bg-secondary-site {
    background-color: var(--secondary) !important;
}

.bg-tertiary-site {
    background-color: var(--tertiary) !important;
}

.bg-last-site {
    background-color: var(--last) !important;
}

.bg-orange-dark {
    background: var(--orange-dark) !important;
}

.text-warning-site {
    color: var(--primary);
}

.text-secondary-site {
    color: var(--secondary);
}

.text-tertiary-site {
    color: var(--tertiary);
}

.text-last-site {
    color: var(--last);
}

.text-orange-dark-site {
    color: var(--orange-dark) !important;
}

.text-info {
    color: var(--last) !important;
}

.btn-danger {
    background: var(--orange-dark) !important;
    /* background: var(--tertiary-prime)  !important; */
    color: black !important;
    /* font-weight: bold; */
}

.btn {
    border: none !important;
}

.btn:hover {
    cursor: pointer;
}

h3 {
    font-weight: bold;
}

a {
    text-decoration: none;
    /* color: black; */
    color: var(--last);
}

a:hover {
    text-decoration: none;
}

#user-profil-img {
    object-fit: cover;
    border: 3px solid white;
}

/*
* Emoticone
*/

.emoji-picker__wrapper {
    z-index: 1060 !important;
}

.modal-header {
    text-align: center;
    border-bottom: none;
}

.modal-title {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modal-footer {
    border-top: none;
}

.title-search {
    font-size: 10vh;
    font-weight: 700;
    /* text-align: start !important; */
    color: white !important;
}

.brand-search {
    /* font-family: barlow; */
    font-size: 100%;
    font-size: 25px;
}

.svg-inline--fa {
    height: auto !important;
}

/* accordion*/
.accordion {
    /* background-color: #212529 !important; */
    /* background-color: #1b1b1b !important; */
    --bs-accordion-bg: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    border: 1px solid white;
}

.accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon-moins) !important;
    transform: rotate(0deg);
    /* Icône moins */
}

.accordion-button::after {
    background-image: var(--bs-accordion-btn-icon-plus) !important;
    transform: rotate(0deg);
    /* Icône par défaut (plus) */
}

/* .accordion-button {
    color: white;
} */

.accordion-button:focus {
    box-shadow: none;
    /* Enlève l'effet de focus */
}

/* Cookie  */

/* Styles par défaut pour petits écrans */
#cookie-card {
    display: none;
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 99;
}

/* Pour écrans moyens (tablettes) */
@media (min-width: 768px) and (max-width: 991px) {
    #cookie-card {
        bottom: 10px;
        left: 10px;
    }
}

/* Pour grands écrans (ordinateurs de bureau) */
@media (min-width: 992px) {
    #cookie-card {
        bottom: 10px;
        left: 10px;
    }
}

/* noUI */
/* Couleur de la barre connectée entre les poignées */
.noUi-connect {
    background-color: var(--secondary) !important;
}

/* Couleur des poignées */
/* .noUi-handle {} */

/* Couleur de la piste non sélectionnée */
/* .noUi-base {} */

/* Couleur des tooltips (valeurs) */
/* .noUi-tooltip {
    color: var(--secondary) !important;
} */

/* end noUI  */

.opacity {
    background-color: var(--black-opacity) !important;
    width: 100%;
    height: 250px;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: -1;
}

.search-brand {
    /* margin: ; */
    /* position: absolute; */
    /* top: 50px; */
    /* background: url('../../img/live.jpg') no-repeat center center; */
    /* background: url('../../img/micro-dark.jpg') no-repeat center center fixed; */
    background: url('../../img/showilink-bg-1.jpg') center center no-repeat fixed;

    background-size: cover;
    height: 250px;
    z-index: 1;
}

.search-brand-head {
    /* background-color: #896fdf7e; */
    /* background-color: #10101446; */
    background-color: var(--hover-bg);
    height: 100%;
    width: 100%;

}

.breadcrumb {
    --bs-breadcrumb-item-active-color: white !important;
    --bs-breadcrumb-divider-color: white !important;
}

.breadcrumb-item a {
    color: white !important;
}

.search-brand-para {
    z-index: 10;
    font-size: var(--big-title);
    line-height: calc(var(--big-title) + 5px);
    letter-spacing: -2px;
    font-weight: 700;
    color: #fff;
    margin: 10vh 15px 4vh;
    -webkit-filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .5));
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, .5));
}

/* .breadcrumb {
    background-color: #e9ecef6a;
} */


.brand-illustration {
    position: absolute;
    right: 0;
    /* top: 64px; */
    top: 30%;
}

@media (max-width: 768px) {

    #form-search {
        padding: 45px 30px;
         bottom: -80px;
    }
}

.form-search {
    background: #fff;
    /* background: var(--last); */
    /* padding: 5%; */
    padding: 45px 65px;
    /* border-radius: 10px; */
    box-sizing: border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    position: relative;
    bottom: -100px;
}

.label-h2 {
    color: var(--tertiary);
    align-self: center;
}

.title {
    font-weight: bold;
    color: var(--orange-dark);
}

/* 
.title-main {
    font-size: 40px;
    margin-bottom: 80px;
} */

.title-second {
    font-size: 40px;
    /* margin-bottom: 80px; */
}

.communaute img {
    width: 20px;
    margin: 0 10px;
}

.communaute-elt {
    display: flex;
    flex-direction: column;
}

.communaute-elt span {
    font-size: 25px;

}

.row.discover {
    margin: 0px;
    padding: 0px;
}


/* #container-discover-cat {
    background: var(--degrade-color-1);
    background: linear-gradient(90deg, var(--orange-dark) 0%, rgba(29,24,46,1) 35%, rgba(32,16,28,1) 100%); 
    background: linear-gradient(130deg,rgba(29,24,46,1)  10%, var(--orange-dark)  35%, rgba(32,16,28,1) 100%); 
}  */

#discover-cat {
    display: flex;
    flex-direction: column;
    /* padding: 45px 65px; */
    /* border-radius: 10px; */
    box-sizing: border-box;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, .1); */
    /* margin: 50px; */
}



.discover-elt {
    padding: 0;
    margin: 5px;
    cursor: pointer;
}

#home-artiste .discover-elt {
  width: 40%;
  min-width: 300px;
}

.discover-elt-under {
    padding: 0;
    margin: 5px;
}

#discover-cat img:hover {
    box-shadow: var(--box-shadow-card);
}

#discover-cat img {
    width: 100%;
    height: 185.1px;
    /* border-radius: 10px/10px; */
    object-fit: cover;
    /* position: absolute; */
    border-radius: 15px/15px;
    border: 1px solid var(--orange-dark);
}

#discover-cat p {
    color: #747474;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 5px;
    transition: .2s ease-in;
    line-height: 18px;
    text-align: center;
    font-size: 18px;
}

#why {
    z-index: -1;
    /* background-color: var(--secondary); */
    background-color: rgb(27, 26, 25);
    /* -webkit-clip-path: polygon(0 20%, 100% 0, 100% 95%, 0 90%); */
    /* clip-path: polygon(0 20%, 100% 0, 100% 95%, 0 90%); */
}

#why img {
    width: 50px;
    height: 50px;
}

#why h3 {
    font-size: 100%;
}

.why-txt {
    text-align: justify;
}

/* index */

.none {
    display: none;
}

.d-flex {
    display: flex;
}

/* owl */
#partners .item {
    margin: 3px;
}

#partners .item img {
    display: block;
    width: 80px;
    height: auto;
}

.owl-pagination {
    display: none;
}

/* 
.search-results {
    width: 300px !important;
} 
*/

/*
.suggestions {
    overflow-y: auto;
    background: #fff;
    position: fixed;
    top: 0;
    z-index: 99;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
    color: black;
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}
*/
/* Container de la suggestion */

#suggestions-ft {
    display: flex;
    flex-direction: column;
}

#suggestions-ft a {
    padding: 3px 0;
}

#suggestions-ft a:hover {
    background-color: whitesmoke;
}

.suggestions {
    position: absolute;
    /* Permet de placer les suggestions sous l'input */
    top: 100%;
    /* Place les suggestions juste en dessous de l'input */
    left: 0;
    right: 0;
    z-index: 99;
    /* Assure que les suggestions soient toujours au-dessus des autres éléments */
    background-color: white;
    /* Couleur de fond pour que les suggestions soient lisibles */
    /* border: 1px solid #ccc; //Ajoute une bordure autour des suggestions */
    border-radius: 4px;
    /* Arrondi les bords */
    max-height: 200px;
    /* Limite la hauteur pour éviter qu'elle dépasse trop */
    overflow-y: auto;
    /* Ajoute un scroll si la liste est trop longue */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Ajoute une légère ombre pour l'effet flottant */
}

/* Style des items de suggestion */
.suggestions .suggestion-item {
    padding: 10px;
    cursor: pointer;
}

.suggestions .suggestion-item:hover {
    background-color: #f0f0f0;
    /* Change la couleur d'arrière-plan au survol */
}

/* Assurer que l'input de recherche et la suggestion ne se chevauchent pas */
.search-results {
    position: relative;
}

/* Gérer l'affichage lorsqu'il y a du contenu sous l'input */
.form-control.mt-2 {
    position: relative;
}

.form-control-vendor {
    display: block;
    width: 100%;
    /* padding: .375rem .75rem; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    /* border: 1px solid #ced4da; */
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

    height: auto;
    z-index: 9;
}

.form-control-vendor:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .25);
}

.form-group {
    margin-bottom: 1rem;
    display: flex !important;
    flex-direction: column !important;
}

.content {
    padding-top: 50px;
    margin-top: 50px;
}


/* Left filter */
/* 
.filters {
    position: relative;
    top: 10%;
}

#filters {
    width: 30%;
    left: 0px;
}

#filters-results {
    width: 70%;
    right: 0px;
} */

.filters-options-head {
    /* background: var(--last); */
    position: sticky;
    top: 0;
    z-index: 9;
}

.filters-options-head button {
    font-weight: bold;
}

.filters-options {
    /* position: -webkit-sticky; */
    /* position: sticky; */
    /* top: 100px; */
    overflow-y: auto;
    height: calc(100vh - 125px);
    padding-left: 2%;
    padding-right: 2%;
    /* width: 25%; */
    min-width: 256px;
    max-width: 300px;
    margin: 20px 0;
    /* direction: rtl; */
}

.links nav .text-muted {
    display: none !important;
}

.links nav div:last-child {
    margin-top: 5%;
    display: flex;
    flex-direction: column;
}

#site .page-link {
    border: 0;
    border-radius: 60px;
}

/* 
#site .page-link:focus {
    background: var(--text-primary-site);
} 
*/


/* DataPicker */
/*
.datepicker table tr td.available.day {
    background-color: #f76767;
    color: white;
    border-radius: 50%;
}

.datepicker table tr td.unavailable.day {
    background-color: #f5f5f5;
    color: #d9534f;
    border-radius: 50%;
}

.datepicker table tr td.day:hover {
    background-color: #ff7f7f;
    color: white;
    border-radius: 50%;
}

.datepicker table tr td.today {
    background-color: #ddd !important;
    border-radius: 50%;
}
*/

/* 
div.dt-container .dt-paging .dt-paging-button.disabled, div.dt-container .dt-paging .dt-paging-button.disabled:hover, div.dt-container .dt-paging .dt-paging-button.disabled:active {
    color: white !important;
} 
*/

div.dt-container .dt-input {
    border-radius: 5px/5px !important;
}

.dt-info {
    display: none !important;
}

.legend-indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 50%;
}

.available {
    background-color: #f76767;
}

.unavailable {
    background-color: #f5f5f5;
}

#datepicker-available .datepicker-inline {
    width: 100% !important;
}

#datepicker-available .datepicker table {
    box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
    width: 100%;
}

#datepicker-available table tr td.highlighted-date {
    background-color: #f76767;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    line-height: 2.1rem;
    text-align: center;
}

#datepicker-available table tr td.highlighted-date:hover {
    background-color: #ff7f7f;
    color: white;
    border-radius: 50%;
}

#datepicker-available table tr td.unavailable-date {
    background-color: white;
    color: black;
}

/* Card artist */

#card-booking {
    position: relative;
    top: -50px;
}

.card .text-start {
    text-align: start !important;
}

/* Actu Event */

.addMoreImages {
    display: none;
}

.card-actu-event .actu-images {
    display: flex;
    /* gap: 10px;  */
    flex-wrap: wrap;
}

.card-actu-event .actu-image {
    width: 100%;
    /* Par défaut, l'image prend 100% de la largeur */
}

.card-actu-event .actu-images img:nth-child(2) {
    width: 50%;
}

/* Si vous voulez gérer les cas avec exactement deux images */
.card-actu-event .actu-images img:nth-child(1):nth-last-child(2),
.card-actu-event .actu-images img:nth-child(2):nth-last-child(1) {
    width: 50%;
    /* Pour deux images */
}

.message-content-hide {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Propriété avec préfixe pour Webkit (Chrome, Safari) */
    line-clamp: 2;
    /* Propriété standard */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.message-content-show {
    -webkit-line-clamp: unset;
    /* Retirer la limitation des lignes */
    line-clamp: unset;
    /* Retirer la limitation des lignes */
}

.read-more {
    color: blue;
    cursor: pointer;
    display: none;
    /* Par défaut masqué, apparaîtra seulement si nécessaire */
}

.badge {
    color: white;
}

.card-footer {
    border: none !important;
}

.card-footer a, .card-footer button {
    /* color: var(--last); */
    color: black;
}

.card-footer a:hover, .card-footer button:hover {
    /* color: var(--tertiary); */
    color: black;
}

#site .card-artist {
    border-radius: 10px;
    border: 1px solid var(--orange-dark);
    padding: 0px;
    height: 412px !important;
}

#site .card-artist:hover {
    box-shadow: var(--box-shadow-card);
}

#site .card-artist .card-img-top {
    background: #e6e7e5;
    object-fit: cover;
}

#site .card-info {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
}

.info {
    display: flex;
    flex-direction: column;
}

#site .card-info img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 40px;
    border: 3px solid white;
    background: #e6e7e5;
    position: relative;
    top: -50px;
}

#site .card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

/* Sidebar */
.sidebar {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    top: -50px;
}

.calendar input {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

.list-group-item.active {
    background-color: var(--active-link) !important;
    color: var(--last) !important;
}

.list-group-item {
    border: 0 !important;
}

/* Profil */
.form-container {
    /* background: white !important; */
    padding: 10px;
}

.user-brand {
    background: url('../../img/showilink-bg-1.jpg') center center no-repeat fixed;
    background-size: cover;
    width: 100%;
    height: 250px;
}

.user-brand-head {
    background-color: var(--hover-bg);
    width: 100%;
    height: 100%;
}

.cover-profil-upload {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 40px;
    border: 3px solid white;
    background: #e6e7e5;
}

.form-control:focus {
    border-color: var(--warning) !important;
    box-shadow: 0 0 0 .2rem var(--warning) !important;
}

/* Cacher le champ de fichier réel */
input[type="file"] {
    display: none;
}

.flex {
    display: flex;
}

/* Slide icon */
#logCarousel .carousel-item {
    padding: 20px 0;
}

#logoCarousel .carousel-item img {
    max-height: 80px;
    margin: 0 15px;
}


#devis-img {
    object-fit: cover;
    height: 100%;
}

.splide__list li {
    margin: 2px;
}

/* .splide__arrow svg {} */

.splide__slide:hover {
    cursor: pointer;
}

.splide__arrow {
    background-color: var(--orange-dark) !important;
}

/* ERROR PAGE */
.error-page .col {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 10%;
}

.error-page .brand {
    font-size: 50px;
    font-weight: bolder;
    color: #ff6f54;
    /* word-break: break-all; */
}


/* navbar */

#dropdown-menu_user .dropdown-item {
    padding: 10px !important;
    /* background-color: #1b1b1b; */
}

.dropdown-item img {
    padding-right: 10px !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: transparent !important;
    color: black !important;
}

#navbarNav .link-body-emphasis {
    color: #f76767;
}

/* Redirect */

#redirect {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    margin-top: 10%;
}

#redirect .first {
    font-size: 60px;
    font-weight: bolder;
    /* color: var(--tertiary); */
    color: var(--orange-dark);
    word-break: break-word;
}

#redirect .second {
    font-weight: bolder;
    font-size: 20px;
}

/* Alert */
.alert-brand {
    position: fixed;
    top: 5px;
    right: -300px;
    /* Position initiale en dehors de l'écran */
    width: 300px;
    z-index: 1061;
    transition: right 0.5s ease-in-out;
    /* Animation de déplacement */
}

.alert-brand.show {
    right: 5px;
    /* Position finale visible */
}


/* profil */

.profil-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

/* Datatable */
/* 
#datatableTicket {
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
} 
*/

#datatableTicket tbody tr .featuring-lists_div:hover {
    background-color: whitesmoke !important;
}

/* Message */

@media (min-width: 768px) {
    .showbox-msg-content {
        right: 3rem !important;
    }
}

.showbox-msg-content {
    z-index: 1031;
    background-color: white;
    position: fixed;
    right: 0px;
    bottom: -300px;
    /* Position initiale en dehors de l'écran */
    /* width: 300px; */
    /* height: 500px; */
    transition: bottom 0.5s ease-in-out;
    /* Animation de déplacement */
}

.showbox-msg-content.active {
    bottom: 0;
    /* Position visible à l'écran */
}

.any-msg {
    color: #cacaca;
}

.ajax-only-feats {
    height: 400px;
    height: 60%;
}

#ajax-only-feats-none {
    height: 500px;
    overflow-y: scroll;
    /* position: relative; */
    /* Nécessaire pour que position: absolute fonctionne dans les enfants */
}

.messages-box {
    height: 400px;
    overflow-y: scroll;
}

#msg-form {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 10px;
}

/* Home */
#container-discover {
    z-index: -1;
    background-color: var(--secondary);
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 95%, 0 90%);
    clip-path: polygon(0 50%, 100% 0, 100% 95%, 0 90%);
    /* content: " "; */
    width: 100%;
    height: 1200px;
    position: absolute;
}

.annexe-page h3 {
    margin-top: 50px;
}

/* Faq */
.faq-use ul li {
    display: flex;
    flex-direction: column;
    flex-direction: row;
    margin: 25px 0;
}

.faq-use img {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

/* footer */

#section-communaute {
    background: url('../../img/showilink-micro.jpg') center center no-repeat fixed;
    background-size: cover;
}

.section-communaute-col {
    background-color: var(--hover-bg);
}

footer {
    background: url('../../img/showilink-micro.jpg') center center no-repeat fixed;
    background-size: cover;
    height: 100px;
}

.footer-head {
    background-color: var(--hover-bg);
    height: 100%;
    width: 100%;
}

footer a {
    color: white;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    background: transparent;
}

.list-group-item {
    background-color: transparent !important;
}