/*Write your custom css in this file.*/

/* Style file input */

.message-error {
    width:100%;
    margin-bottom:10px;
}

.btn-add-input-file {
    width: 100%;
    margin-top:25px;
    text-align: right;
}

.btn-add-input-file > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

    cursor: pointer;
}
.btn-add-input-file > div:hover {
    background: #eceef0;
}
.btn-add-input-file > div > i {
    color:#777;
}

.box-single-input {
    display: flex;
    align-items: center;
    margin-top:5px;
}
.box-single-input > i {
    padding:10px 15px;
    margin-left:5px;
    color: #FFF;
    background: #da8181;

    cursor: pointer;
    border-radius: 2px;
    transition:all .5s;
}
.box-single-input > i:hover {
    background: #c46666;
}