/*button,*/
/*a.btn {*/
/*    color: white;*/
/*    padding: 10px 15px;*/
/*    border-radius: 3px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.5);*/
/*    font-size: 16px;*/
/*    cursor: pointer;*/
/*    text-decoration: none;*/
/*    text-shadow: none;*/
/*    display: inline-block;*/
/*}*/

input[type="file"] {
    cursor: pointer;
}

button:focus {
    outline: 0;
}

.file-btn {
    position: relative;
}
.file-btn input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.actions {
    padding: 5px 0;
}

.actions button {
    margin-right: 5px;
}

.upload-demo .upload-demo-wrap,
.upload-demo .upload-result,
.upload-demo.ready .upload-msg {
    display: none;
}
.upload-demo.ready .upload-demo-wrap {
    display: block;
}
.upload-demo.ready .upload-result {
    display: inline-block;    
}

.upload-demo-wrap {
    width: 300px;
    height: 300px;
    margin: 0;
}

.upload-msg {
    text-align: center;
    padding: 50px;
    font-size: 22px;
    color: #aaa;
    width: 260px;
    margin: 50px auto;
    border: 1px solid #aaa;
}