#oci_panel {
    input:not([type="file"]) {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
        box-sizing: border-box;
    }
    progress {
        position:relative;
        width: 100%;
        height: 50px;
        margin-top: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f3f3f3;
        appearance: none;
        &:before {
            content: attr(data-label);
            font-size: 1.5rem;
            position: absolute;
            text-align: center;
            top: 5px;
            left: 0;
            right: 0;
            color: #fff;
        }        
    }
}