/****** Refont *******/
.all {
    padding: 50px;
}

.fiche-pro {
    display: block;
    margin-top: 5vh;
}

.toggle-update {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 5px;

}


.toogle-btn {
    left: 0;
    float: right;
    padding: 15px;
    border: orange 1px solid;
    color: orangered;
    border-radius: 10px;
    font-weight: 500;
}

.toogle-btn:hover {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: orange;
    color: white;

}

.clicked-btn {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: orange;
    color: white;
}

.update-fiche {
    display: none;
    flex-direction: column;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px 0 #ee7800;
    box-shadow: 0 0 10px 0#ee7800;
    border: 1px solid #ee7800;
    border-radius: 10px;
}


.mon-abonnement {
    display: none;
    flex-direction: column;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px 0 #ee7800;
    box-shadow: 0 0 10px blue;
    border: 1px solid blue;
    border-radius: 10px;
}


.mes-documents {
    display: none;
    flex-direction: column;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px 0 grey;
    box-shadow: 0 0 10px grey;
    border: 1px solid grey;
    border-radius: 10px;
}

.fiche-header {
    display: flex;
    flex-direction: row;
    padding: 20px;

}

/*md*/
@media (max-width: 767px) {
    .fiche-header {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 20px;

    }
}

.presta-description {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 20px;
}

.img-profile {
    border-radius: 10px;
    /* Ajustez le rayon de bordure selon vos besoins */
    box-shadow: 0 10px 20px rgba(0, 0, 15, 0.953) inset;
    max-width: 250px;
    max-height: 265px;
}

.img-approuved {
    max-width: 150px;
    max-height: 150px;
    margin: auto;
    margin-bottom: 10px;
}


.margin-bottom-30 {
    margin-bottom: 10px !important;
    padding: 20px;

}


.presta-name {
    color: grey;
    padding: 10px;
    ;
}

.apropos-container {
    display: flex;
    flex-direction: column;

    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.apropos-presta {
    float: right;
    margin-left: auto;
}

.presta-information {
    display: flex;
}

.presta-information h6 {
    margin-right: 10px;
    /* Ajustez la valeur selon vos besoins */
}

.presta-certificats {

    padding: 0;
    margin: 0;

}

.flash {
    background-color: green;
    padding: 10px;
    color: white;
    border-radius: 5px;
    margin-left: 25px;
    margin-bottom: 20px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    text-align: center;
}

.services-title {
    padding: 10px;
    margin: 30px;
}

.services-liste {
    width: min(60rem, 100%);
    margin-inline: auto;
    display: grid;
    grid-gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    justify-content: center;
    list-style: none;
    width: 80%;
}

.services-liste li {
    min-width: 3rem;
    justify-self: center;
    display: grid;
    grid-template:
        "icon"
        "line"
        "dot"
        "title"
        "descr" 1fr;
    justify-items: center;
    align-items: flex-start;
    text-align: center;
    margin-right: 10px;
}

.services-liste li .icon {
    grid-area: icon;
    width: 6rem;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: white;
    font-size: 2.5rem;
    border: 0.4rem solid var(--bgColor);
    border-radius: 50%;
    background: white;
    /* box-shadow: -0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.45),
        inset -0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.45); */
}

.services-liste li::before {
    content: "";
    grid-area: line;
    height: 2rem;
    border-right: 2px dotted currentColor;
}

.services-liste li::after {
    content: "";
    grid-area: dot;
    width: 1rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--accent-color);
    justify-self: center;
    margin-bottom: 0.5rem;

}

.services-liste li .title {
    grid-area: title;
    margin-block: 1rem;
    font-size: 2rem;
    font-weight: 400;
    text-align: center;

}


.img-certificat {
    max-width: 250px;
    max-height: 180px;
    margin: 20px;
}


/** Gallery **/

.full {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80%;
    z-index: 9999;
}

.full .content {
    background-color: rgba(0, 0, 0, 0.75) !important;
    height: 100%;
    width: 100%;
    display: grid;
}

.full .content img {
    left: 50%;
    transform: translate3d(0, 0, 0);
    animation: zoomin 1s ease;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
}

.byebye {
    opacity: 0;
}

.byebye:hover {
    transform: scale(0.2) !important;
}

.gallery {
    display: grid;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-rows: 8px;
}

.gallery img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 16px #333;
    transition: all 1.5s ease;
}

.gallery img:hover {
    box-shadow: 0 0 32px #333;
}

.gallery .content {
    padding: 4px;
}

.gallery .gallery-item {
    transition: grid-row-start 300ms linear;
    transition: transform 300ms ease;
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery .gallery-item:hover {
    transform: scale(1.025);
}

@media (max-width: 600px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    }
}

@media (max-width: 400px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
    }
}

@-moz-keyframes zoomin {
    0% {
        max-width: 100%;

        filter: blur(4px);
    }

    30% {
        filter: blur(4px);

    }

    70% {
        max-width: 100%;

    }

    100% {
        max-width: 100%;
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zoomin {
    0% {
        max-width: 100%;

        filter: blur(4px);
    }

    30% {
        filter: blur(4px);

    }

    70% {
        max-width: 100%;

    }

    100% {
        max-width: 100%;
        transform: rotate(0deg);
    }
}

@-o-keyframes zoomin {

    0% {
        max-width: 100%;

        filter: blur(4px);
    }

    30% {
        filter: blur(4px);

    }

    70% {
        max-width: 100%;

    }

    100% {
        max-width: 100%;
        transform: rotate(0deg);
    }
}

@keyframes zoomin {
    0% {
        max-width: 100%;

        filter: blur(4px);
    }

    30% {
        filter: blur(4px);

    }

    70% {
        max-width: 100%;

    }

    100% {
        max-width: 100%;
        transform: rotate(0deg);
    }
}

/** Fin Gallery **/



/********  UPDATE ********/

.edit-menu {
    display: flex;
    flex-wrap: wrap;
    left: 0;
    justify-content: flex-end;
}

/*md*/
@media (max-width: 767px) {
    .edit-menu {
        display: flex;
        flex-wrap: wrap;
        left: 0;
        justify-content: center;
    }

    .toogle-btn {
        margin-top: 20px;
    }

    .overflow-auto {
        overflow-wrap: break-word;


    }
}

.menu-toggler {
    margin-right: 10px
}

.grid-section {
    display: flex;
    flex-wrap: wrap;
}

.btn {
    margin-top: 10px;
}

.update-logo-section {
    margin-bottom: 30px;
    float: center;
    padding: 10px;
}

.update-logo-form {
    display: flex;
    margin-top: 10px;
}

.update-title {
    padding: 10px;
    background-color: #CCC;
    margin-bottom: 10px;
}

.box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    margin: 0 10px;
    padding: 10px 5px;
    background-color: #ffffff;
    color: #555089;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 10px !important;
}

.box .img-box {
    max-width: 50px;
    height: 50px;
}

.box .img-box svg {
    width: 100%;
    height: auto;
    max-height: 100%;

    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.box .name {
    margin-top: 20px;
    font-family: 'Merriweather Sans', sans-serif;
    margin-bottom: 0;
}

.feature_section .feature_container .box .img-box svg path {
    fill: #726dae;
}

.btn-add-img {
    margin-bottom: 20px;
}

/*************   Fin Update   ***********/




/****** Fin refont ***/




/***** Facture *****/
.facture-list-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.action-facture {
    justify-content: space-between;

}

.facture-list-name {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
}

.facture-list-date {
    font-size: 10px;
    font-weight: bold;
}

.facture-list-validate {
    font-size: 10px;
    margin: auto;
}

.facture-list-download {
    font-size: 10px;
    margin: 5px;
}

.validation {
    color: orange;
}

.paye {
    color: green;
}

.facture-modal-title {
    color: orange;
}

@media(min-width: 500px) {
    .facture-list-name {
        display: flex;
        flex-direction: column;
        font-size: 1.5rem;
    }

    .facture-list-date {
        font-size: 15px;
    }

    .facture-list-validate {
        font-size: 15px;
        margin: auto;
    }

    .facture-list-download {
        font-size: 15px;
        margin: 5px;
    }
}

/***** end Facture  *****/
ul.devis-list,
ul.projet-list {
    list-style: none;
    padding: 0;
    max-height: 800px;
    overflow-y: scroll;
    overflow-x: hidden;
}

ul.devis-list li {
    background: #fafdfd;
    border: 2px solid orange;
    padding: 20px 8px;
    margin: 5px 0;
    box-shadow: 1px 2px 50px #aaa;
}

ul.projet-list li {
    background: #fafdfd;
    border: 2px solid blue;
    padding: 20px 8px;
    margin: 5px 0;
    box-shadow: 1px 2px 50px #aaa;
}

.devis-title {
    font-weight: bold;
}

.bloc778 {
    margin-top: 1px;
    border: 1px solid #CCC;
    overflow: hidden;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 13px;
}

.bloc778 a {
    width: 100%
}

.modalcatalogueprice .modal-title {
    color: #f59231;
    font-weight: 500;
    font-size: 1.1em;
}

.modalcatalogueprice .form-control {
    font-size: 0.8em;
    padding-left: 18px;
    border-radius: 50px;
    color: #8095A0;
    border: 1px solid #ced4da;
    box-shadow: none;

}


.modalcatalogueprice h4 {
    font-size: 14px;
    line-height: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    color: gray;
    padding-left: 17px;
}

.modalcatalogueprice .btn-outline-grey {
    background-color: transparent !important;
    border: 1px solid #8095A0;
    color: #f69231;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 30px;

}

.modalcatalogueprice .btn-outline-grey:hover {
    background-color: #0404ff !important;
    color: #FFF
}

.modalcatalogueprice .alert-success {
    color: #ee7800;
    font-size: 14px;
    background-color: #F2F4F5;
    border-color: #ee7800;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    padding: 15px 30px;
}

.modalcatalogueprice input.form-control-file {
    display: none !important;
}

.modalcatalogueprice .modal-body {
    height: 400px;
    overflow: auto;
}

.infooffrecomprend p {
    background: url('/uploads/images/validation_orange.svg') no-repeat;
    background-position: left top;
    background-size: 25px;
    padding-left: 35px;
    text-align: left;
    margin-bottom: 5px;
}

.infooffrecomprend p span {
    font-size: 14px
}