.text_sota_dissenyar, .text_upload_ready_file, .div_btn_saltar_paso{
    margin-top: 5px;
    font-style: italic;
    color: #7A7A85;
    text-align: center;
    font-size: var(--cml-body-sub-size);
}

#popup_upload_options .informacio{
    margin-top: 15px;
}

#btn_upload_ready_file{
    background-color: #fff;
    border: 1px solid #00bd7e;
    text-shadow: none;
    border-radius: 3px;
    height: 43px;
    font-weight: 600;
    width: 497px;
    color: #00bd7e;
    font-size: 20px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    transition: 0.5s;
    font-family: 'Museo Sans Rounded', sans-serif;
    cursor: pointer;
}

#btn_upload_ready_file:hover {
    background-color: #fff;
    color: #00bd7e;
    opacity: 0.7;
}

.div_btn_upload_ready_file{
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#popup_upload_ready_file #popup2{
    z-index: 13;
}

#popup_upload_ready_file #butt_continue{
    font-family: 'Museo Sans Rounded', sans-serif;
}

.tanca_butt_upload_ready_file{
    border: medium none;
    float: right;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    right: 7px;
    top: 5px;
    background-color: transparent; 
    color: #eee;
    z-index: 10;
    cursor: pointer;
    height: 20px;
}

.tanca_butt_upload_ready_file::before{
    position: relative;
    content: "\00d7";
    font-size: 48px;
    bottom: 5px;
    font-weight: 100;
    font-family: 'Source Sans Pro', sans-serif;
}

.tanca_butt_upload_ready_file:hover:before {
    color: grey;
}

#popup_upload_ready_file .titol_popup_cml{
    margin-top: 0px;
}

.div_btn_saltar_paso{
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
}

#btn_saltar_paso{
    font-style: italic;
    color: #7A7A85;
    text-align: center;
    font-size: var(--cml-body-sub-size);
    text-decoration: underline;
    border: none;
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    font-family: 'Museo Sans Rounded', sans-serif;
    font-style: normal;
}

/* ICONO "i" */
.saltar_paso_info {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #646676;
    font-size: 12px;
    color: #646676;
    cursor: pointer;
    margin-left: 5px;
    font-style: normal;
}

/* PANEL DE TEXTO DEL TOOLTIP */
.saltar_paso_info .hint-panel {
    position: absolute;
    bottom: 28px;                     /* ▶️ Tooltip ENCIMA */
    left: 50%;
    transform: translateX(-50%);
    background: #3d3c54;              /* MISMO color Camaloon */
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;              /* ▶️ Una sola línea */
    font-size: 13px;
    font-weight: 400;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    z-index: 999;

    opacity: 0;
    visibility: hidden;
    transition: opacity .15s ease;
}

/* FLECHITA (copiada de Camaloon) */
.saltar_paso_info .hint-panel::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #3d3c54;        /* MISMO color que el fondo */
    filter: drop-shadow(0 2px 1px rgba(0, 0, 0, .12));
}

/* MOSTRAR TOOLTIP */
.saltar_paso_info:hover .hint-panel {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 990px){
    #btn_upload_ready_file, #popup_upload_ready_file #butt_continue{
       width: 328px;
    }
    
    #popup_upload_options .txt_submit{
        width: 328px !important;
    }
    
    #popup_upload_options .tanca_butt{
        display: block;
    }
    
    .saltar_paso_info .hint-panel {
        white-space: normal;
        max-width: 240px;
        line-height: 1.3;
        width: max-content;
    }
    
    #popup_upload_options{
        width: 75%;
    }
    
    .div_btn_saltar_paso {
        display: block;
        flex-wrap: wrap;
        align-items: center;
    }
    .text_saltar_paso {
        white-space: normal;
    }
    
    .text_sota_dissenyar, .text_upload_ready_file, .div_btn_saltar_paso,#btn_saltar_paso{
        font-size: var(--cml-body-size);
    }
}

@media (max-width: 400px) {
    #popup_upload_options .tanca_butt{
        right: 3px !important;
    }
    .saltar_paso_info .hint-panel {
        max-width: 203px;
    }

}


@media (min-width: 990px){
    .text_saltar_paso{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}