#oou-form-wrapper h2 {
    text-transform: uppercase;
}
#oou-form-wrapper .form-submit {
    clear: both;
    text-align: right;
    padding-right: 15px;
    padding-left: 15px;
}
#oou-form-wrapper .oou-form-notices {
    list-style: none;
    border: 2px solid #e0f8c8;
    border-radius: 5px;
    background: #f4f8e0;
    padding: 5px 10px;
    font-size: 16px;
    color: #333;
}
#oou-form-wrapper .oou-form-notices.error {
    border: 2px solid #f19999;
    background: #fef8f8;
}
#oou-form {
    margin-right: -15px;
    margin-left: -15px;
    font-family: 'Open Sans', sans-serif;
    color: #ffffff;
}
#oou-form:before,
#oou-form:after {
    content: '';
    display: table;
    clear: both;
}
#oou-form section {
    float: left;
    width: 33.33%;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 30px;
}
#oou-form section header {
    background-color: #000000;
    text-align: center;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px;
}
#oou-form section footer {
    height: 25px;
    background-color: #000000;
    text-align: center;
}
#oou-form section footer .circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-weight: 800;
    font-size: 35px;
    display: inline-block;
    background-color: #000;
    margin-top: -17.5px;
    border-radius: 50%;
}
#oou-form section fieldset {
    padding: 20px 15px 30px;
    margin: 0;
    border: none;
}
#oou-form #box-infos fieldset {
    background-color: #01aef0;
}
#oou-form #box-files fieldset {
    background-color: #c60481;
}
#oou-form #box-options fieldset {
    background-color: #d3ac13;
}
#oou-form section fieldset p {
    position: relative;
    margin-bottom: 25px;
}
#oou-form section fieldset label > span {
    font-size: 14px;
}
#oou-form section fieldset input[type="text"] {
    height: 35px;
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    border: 1px #999999 solid;
}
#oou-form section fieldset .oou-field-error {
    position: absolute;
    font-size: 14px;
    font-style: italic;
}
#oou-form .oou-file-uploader-container {
    height: 45px;
    margin-bottom: 10px;
}
#oou-form .oou-file-uploader-container .oou-file-uploader {
    position: relative;
    height: 100%;
}
#oou-form .oou-file-uploader-container .oou-file-uploader:before,
#oou-form .oou-file-uploader-container .oou-file-uploader input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    cursor: pointer;
}
#oou-form .oou-file-uploader-container .oou-file-uploader input[type="file"] {
    opacity: 0;
}
#oou-form .oou-file-uploader-container .oou-file-uploader:before {
    content: '';
    opacity: 1;
    background: url('../images/upload2.png') no-repeat center left;
}
#oou-form .oou-file-uploader-container.uploaded {
    height: auto;
    font-size: 14px;
    position: relative;
}
#oou-form .oou-file-uploader-container.uploaded progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    display: inline-block;
    width: 80%;
    height: 8px;
}
#oou-form .oou-file-uploader-container.uploaded .progress-percentage {
    display: inline-block;
    text-align: center;
    width: 20%;
}
#oou-form .oou-file-uploader-container.uploaded progress[value]::-webkit-progress-bar {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
#oou-form .oou-file-uploader-container.uploaded progress[value]::-webkit-progress-value {
    background-color: #000;
    border-radius: 5px;
}
#oou-form .oou-file-uploader-container.uploaded progress[value].completed::-webkit-progress-value {
    background-color: #5ca401;
    border-radius: 5px;
}
#oou-form .oou-file-uploader-container.uploaded .oou-file-name {
    padding-left: 20px;
    display: inline-block;
    line-height: 16px;
}
#oou-form .oou-file-uploader-container.uploaded .oou-file-remove {
    position: absolute;
    top: 1px;
    left: 2px;
    color: #000000;
    cursor: pointer;
    font-weight: 600;
}
#oou-form .oou-add-more-upload {
    float: right;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    background: #000;
    padding: 0 5px;
    border-radius: 2px;
    cursor: pointer;
}
#oou-form-wrapper input[type="submit"] {
    background: url('../images/buttonupload.png') #000000 no-repeat center;
    width: 170px;
    height: 47px;
    cursor: pointer;
    color: transparent;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    #oou-form section {
        float: none;
        width: 100%;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
    #oou-form section {
        float: left;
        width: 50%;
    }
    #oou-form section:nth-child(3n) {
        clear: left;
    }
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    #oou-form section {
        float: left;
        width: 33.33%;
        clear: none !important;
    }
}