.ue-file .ue-input-field::file-selector-button{
    display: none;
}

.ue-file{
    display: flex;
    align-items: center;
    background: #fff url(https://seroba.agence-komaxis.com/wp-content/uploads/2025/12/upload.svg) no-repeat center right 15px;
    height: 54px;
    border-radius: 4px;
    //padding: 14px 30px;
  position: relative;
}

.ue-file-label-wrapper {
    display: none;
}

.ue-file input[type="file"] {
  width: 100%;
  padding: 10px 40px 10px 12px;
  color: transparent;
  cursor: pointer;
}

.ue-file .file-placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 48px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding: 0 0 0 15px;
    border-style: none;
    border-radius: 0px 0px 0px 0px;
    color: #858a8d;
    font-weight: 400;
    font-size:  var(--e-global-typography-ec446a5-font-size);
    font-family : "Bricolage Grotesque";
}

/*custom acc*/
.ue-accordion-header {
    width: 100%;
    padding: 14px 0 !important;
    background: transparent !important;
    color: #000 !important;
    text-align: left;
    font-size: 16px !important;
    display: block;
    position: relative;
    cursor: pointer;
}

.ue-accordion-header::after {
    content: "+";
    position: absolute;
    right: 18px;
    font-size: 35px;
    font-weight: 100;
    color: #EE7203;
    transition: transform 0.3s ease;
}

.ue-accordion-item.open .ue-accordion-header::after {
    content: "–";
}

/* -------- Animation -------- */

.ue-accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        max-height 0.45s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.ue-accordion-content ul {
    margin: 0;
    padding-left: 20px;
}

.ue-accordion-item.open .ue-accordion-content {
    max-height: 500px; /* valeur safe */
    opacity: 1;
    transform: translateY(0);
}


.ue-form-error {
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 15px;
}

