
.sc-container {
    width: 100%;
    max-width: 100vw;
    display: flex;
    gap: 15px;
    overflow-x: scroll;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 10px; /* Assure que le premier élément est bien visible */
    scrollbar-width: none; /* Cache la barre de défilement sur Firefox */
    -ms-overflow-style: none; /* Cache la barre de défilement sur IE et Edge */
}

.sc-container::-webkit-scrollbar {
    display: none; /* Cache la barre de défilement sur Chrome, Safari et Edge Chromium */
}
.sc-item {
    flex: 0 0 auto;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    scroll-snap-align: unset; /* Désactive l’alignement automatique */
    text-decoration: none;


}
.sc-item:first-child {
    background-color:#008081 !important;
    color: white;
    text-decoration: none;
}
.sc-item:not(:first-child) {
    background-color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #1b1e21;
}
.sc-item:hover {
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}
.sc-item:hover i{
color:#008081 !important;
}
.sc-item>p{
    font-weight: bold;
}
.btnOpen{
    background-color: white;
    border-radius: 100px;
}
.btnOpen:hover{
    border: none !important;
    background-color:#008081 !important;
    color:white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ajoute une ombre pour un effet relief */
    transform: scale(1.05); /* Agrandit légèrement le bouton */
}
.hover-zoom {
    overflow: hidden;
    position: relative;
}

.hover-zoom img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.hover-zoom:hover img {
    transform: scale(1.2);
}


.container-scroll {
    padding: 10px;
}
.item {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}
.item:first-child {
    background: url("../images/pricing-bg-02.jpg") no-repeat center;
    background-size: cover;
}
.item:not(:first-child) {
    background-color: white;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    color: #1b1e21;
}
.item:hover {
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
.item>p{
    font-weight: bold;
}

.content{
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    display: flex;
}
.item-logement{
    width:92%;
    height: 280px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.18), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    color: #1b1e21;margin: 0 auto;
    padding: 20px;
}
.item-logement:hover {
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}
.item-logement>.h1{
    font-size: 1.5em;
    font-weight: bold;;
}
.item-logement>i{
    margin-top: 20px;
    font-size: 3em;
}
.item-img{
    height: 350px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: center;
    color: #1b1e21;margin: 0 auto;
}



.c {
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
}
.c-img {
    width: 100%;

}
.c-img img{
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.c-body p {
    margin-bottom: 15px;
    padding: 15px;
}
.btnVis{
    border: 2px solid#008081 !important;
    background: transparent;
    color:#008081 !important;
    font-weight: bold;
    width: 100%;
}
.btnVis:hover{
    color: white;
    width: 100%;
    background:#008081;
    font-weight: bold;
}
.c-container {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.c-container::-webkit-scrollbar {
    display: none;
}
.c {
    margin: 0 auto;
    justify-content: center;
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
}
.text-muted{
    font-size: 0.6em;
}
.text-muted a{
    text-decoration: none;
    color:#008081 !important;
    font-weight: bold;
}
.text-muted a:focus{
    text-decoration: solid;
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s;
}
.modal.show {
    visibility: visible;
    opacity: 1;
}
.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: justify;
}
.modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.modal-buttons button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
}
.accept {
    background:#008081 !important;
    border-radius: 100px;
    color: white;
}
.decline {

    background: transparent;
    border-radius: 100px;
    border: 2px solid#008081 !important;
    color:#008081 !important;
}


.btn-Download {
   border: 2px solid white !important;
    border-radius: 50px; /* Arrondi du bouton */
    color:white !important;
    padding: 10px 20px; /* Ajuste le padding pour un meilleur rendu */
    font-weight: bold;
    transition: all 0.3s ease-in-out; /* Ajoute une transition fluide */
}

.btn-Download:hover {
    background:white !important; /* Change la couleur de fond au survol */
    color: #008081 !important; /* Change la couleur du texte */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Ajoute une ombre pour un effet relief */
    transform: scale(1.05); /* Agrandit légèrement le bouton */
}
.app-col{
    padding-left: 20px;
}
.app{
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.app-row {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alignement en haut */
    margin: 0 auto;
    width: 90%;
    padding: 20px 20px 0 20px;
    border-radius: 40px;
    background: url("../images/back_app.jpg") no-repeat center;
    background-size: cover;
    height: auto; /* Ajuste la hauteur en fonction du contenu */
    min-height: unset; /* Désactive la hauteur minimale */
}

.iphone img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 100%;
}

.app-row::after {
    content: "";
    display: block;
    height: 100%; /* Hauteur égale à l'image iPhone */
    min-height: 0; /* Suppression des hauteurs minimales */
}

/*Page personal credit online*/
.d-flex {
    display: flex;
    align-items: center;
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent; /* Couleur du cercle */
    border: 1px solid rgba(18,235,115,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -20px; /* Ajuste la position de l'icône */
    margin-right: 5px;
}
.rounded-circle{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent; /* Couleur du cercle */
    border: 1px solid rgba(18,235,115,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: -20px; /* Ajuste la position de l'icône */
    margin-right: 5px;
}

.icon-circle i {

    color:#008081 !important;
    font-size: 0.8em;
}

.rounded-circle i {

    color:#008081 !important;
    font-size: 0.8em;
}

.ms-3 a{
    font-weight: bold;
    color:#008081;
    text-decoration: none;
}

/*personal credit css*/
.backGrd{
    background: rgba(18,115,235,0.1);
    padding: 10px;
}
.carre-circle{
    width: 80px;
    height: 80px;
    background-color: white; /* Couleur du cercle */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.18), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.carre-circle i {

    color:#008081 !important;
    font-size: 1.7em;
}
.credit-color{
    background:#008081 !important;
    padding: 70px;
    color: white;
}
.credit-div{
    color: white;
    margin:0 auto;
    text-align: justify;
}
.credit-img{
    background: url(../images/credi-person.jpg) no-repeat;
}
.btn-credit{
    border: 2px solid white;
    padding: 10px;
}
.btn-compte{
    padding: 10px 15px 10px 15px  !important;
    border-radius: 50px!important;
    color: white!important;
    font-weight: 500!important;
    background:#008081 !important;
}

/*MODAL OUVRIR UN COMPTE*/
.modal-dialog {
    display: flex;
    align-items: center;
    min-height: 100vh;
}
.modal-content {
    min-width: 800px !important;
    border-radius: 12px;
    padding: 20px;
}
.qr-code {
    width: 150px;
    height: 150px;
}
.step-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.step-list li img {
    width: 24px;
    margin-right: 10px;
}
.app-side{
    background: rgba(0,0,100,0.1);
    border-radius: 12px;
    height: 100%;
    padding-top: 10px;
}
.text-section ul .li {
    margin-bottom: -10px !important;
}
.icon-img img {
    padding-left: 7px !important;
    justify-content: center;
    width: 35px;
    height: auto;
}
.icon-img{
    background: rgba(200,203,207,0.2) !important;
    border-radius: 7px;
    padding:5px !important;
}
.li .titre{
    font-size: 1.3em !important;
    font-weight: bold !important;
}
.vertical-bar{
    margin-top: 30px !important;
    left: 40px;
    position: absolute !important;
    height: 250px;
    width: 2px;
    background: rgba(200,203,207,0.1) !important;
}
.btn-close{
    color:#008081 !important;
}
.custom-btn-close {
    filter: invert(14%) sepia(99%) saturate(7485%) hue-rotate(239deg) brightness(98%) contrast(119%);
}
.info-side .fw-bol{
    font-size: 1.1em !important;
}
@media (max-width: 991px) {
    .qr-code {
        width: 90% !important;
        height: 90% !important;
    }
    .app-side {
        width: 100% !important;
        height: auto;
        padding-top: 10px;
    }
    .modal-content {
        min-width: 90% !important;
    }
    .modal-body{
        min-width: 90% !important;
    }
}