.file-upload {
    width: 100%;
    height: 360px;
    background: #ffffff url("../logo/add-photo.png") no-repeat top;
    background-size: cover;
    display: inline-block;
}

.round {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    width: 120px;
    height: 120px;
}

.file-upload:hover {
    cursor: pointer;
}

.file-upload .filethumbnail img.img {
    width: 100%;
    height: 100%;
}

.file-upload .file-input {
    display: none;
}

.file-upload .drop-click-zone {
    width: 100%;
    height: 100%;
}

.file-upload .info {
    display: none;
}

.file-upload .filethumbnail {
    width: 100%;
    height: 100%;
    position: relative;
}

.qtip-file-message span {
    display: block;
}

.file-upload .message {
    position: relative;
    top: -100%;
    color: rgba(245, 245, 245, 0);
    height: 100%;
    display: none;
    text-align: center;
}

.file-upload:hover .message {
    color: whitesmoke;
    display: block;
}

/*Bootstrap file styling*/

.btn-file {
    position: relative;
    overflow: hidden;
}

.btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 100%;
    min-height: 100%;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: inherit;
    display: block;
}