.container2 {
    width: 40%;
}

#errorText {
    background-color: red;
    color           : white;
    font-size       : 15px;
    margin          : 7px;
    padding         : 3px;
    border-radius   : 3px;
    text-align      : center;
}

#ErrorTrack {
    background-color: rgb(240, 86, 86);
    color           : white;
    padding         : 7px;
    border-radius   : 9px;
    text-align      : center;
}

.file-upload {
    background-color: #ffffff;
    width           : 800px;
    margin          : 0 auto;
    padding         : 20px;
    border-radius   : 10px;
    height          : 95vh;
    max-height      : 95vh;

    -webkit-box-shadow: 4px 6px 13px 10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow   : 4px 6px 13px 10px rgba(0, 0, 0, 0.75);
    box-shadow        : 4px 6px 13px 10px rgba(0, 0, 0, 0.75);
}

.file-upload-btn {
    width         : 100%;
    margin        : 0;
    color         : #fff;
    background    : #f47a10;
    border        : none;
    margin-right  : 20px;
    border-radius : 4px;
    border-bottom : 4px solid #edcda9;
    transition    : all .2s ease;
    outline       : none;
    text-transform: uppercase;
    font-weight   : 700;
}

.file-upload-btn:hover {
    background: #ff4400;
    color     : #ffffff;
    transition: all .2s ease;
    cursor    : pointer;
}

.file-upload-btn:active {
    border    : 0;
    transition: all .2s ease;
}

.file-upload-content {
    display   : none;
    text-align: center;
}

.image-upload-wrap {
    margin-top: 20px;
    border    : 4px dashed #ff6200;
    position  : relative;
}

.file-upload-input {
    position: absolute;
    top     : 0;
    left    : 0;
    margin  : 0;
    padding : 0;
    width   : 100%;
    height  : 100%;
    outline : none;
    opacity : 0;
    cursor  : pointer;
}


.image-dropping,
.image-upload-wrap:hover {
    background-color: #f4cdb4;
    border          : 4px dashed #ffffff;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color  : #222;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight   : 100;
    text-transform: uppercase;
    color         : #ff4400;
    padding       : 60px 0;
}