/*
 Inputfile: Style inputfile plugin
*/
.inputfile {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}
.inputfile .inputfile-button {
    color: #5e6d80;
    background-color: #f3f4f6 !important;
    font-size: 1rem !important;
    padding: 8px 15px;
    outline: none;
    height: unset;
    min-height: 45px;
    width: 100% !important;
    max-width: 200px;
    position: relative;
    text-shadow: none !important;
    border: 1px solid #b5bec5 !important;
    border-radius: 3px;
    cursor: pointer;
    transition: 0.2s ease all;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.inputfile .inputfile-button:hover {
    background-color: #e7e9ed !important;
    border-color: #aab4bc !important;
    transition: 0.2s ease all;
}
.inputfile .inputfile-label {
    color: var(--color-blue-uhe) !important;
    font-weight: normal;
    font-size: 1rem;
    margin: 0 0 0 15px !important;
    padding: 0 !important;
    width: auto;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.inputfile .inputfile-label div.input-border {
    color: var(--color-blue-uhe) !important;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0 !important;
    padding: 8px 15px !important;
    width: 100%;
    min-height: 45px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    border-radius: 3px 0 0 3px;
    border: 1px solid rgba(102,204,255,1) !important;
    background: rgba(102,204,255,0.1);
    border-right: none !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
}
.inputfile .btn-close {
    width: 45px;
    min-height: 45px;
    color: #cc0000;
    cursor: pointer;
    margin-left: 0 !important;
    border-radius: 0 3px 3px 0;
    border: 1px solid rgba(102,204,255,1) !important;
    background: rgba(102,204,255,0.1);
    border-left: none !important;
    text-align: center;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.inputfile .btn-close::before {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.inputfile .inputfile-button::before,
.inputfile .inputfile-label::before {
    font-size: 1.2em;
}
/*MAX-WIDTH: 480px*/
@media (max-width: 30em) {
    .inputfile {
        flex-direction: column;
    }
    .inputfile .inputfile-button {
        width: 100% !important;
        max-width: unset;
        display: block;
    }
    .inputfile .inputfile-label{
        margin: 15px 0 0 0 !important;
        display: block;
        width: 100% !important;
    }
}