        .file-upload {
            width: 100px;
            height: 100px;
            border-radius: 12px;
        }

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

        .custom-drop-zone {
            width: 100%;
            /*height: 100%*/
            height: calc(100% - 45px);
            /*title space*/
        }

        .file-upload .filethumbnail img.img {
            width: 100%;
            /*height: 100%;*/
            height: 100%;
            object-fit: contain;
        }

        #browserIE.sizedUploadImage .file-upload .filethumbnail img.img {
            width: 100%;
            height: auto;
        }

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

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

        .file-upload .info .name {
            display: inline-block;
            font-size: 12px;
        }

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

        .file-upload .filethumbnail {
            width: 100%;
            height: 100%;
            position: relative;
            /* z-index: -1;*/
        }

        .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;
            margin-top: 12%;
            font-size: 24px;
        }

        .file-upload:hover .message {
            color: rgba(195, 195, 195, .6);
            display: none;
        }

        @media screen and (max-width: 1024px) {
            .file-upload .message {
                margin-top: 15%;
            }
        }