﻿       .editor {
            overflow: scroll;
            min-height: 200px;
            border: 1px solid #c0c0c0;
            width: 100%;
        }


        .filedrag {
            border: 2px dashed #AAA;
            border-radius: 7px;
            cursor: default;
            padding: 15px;
            margin-bottom: 20px;

        }


        .drag-label {
            text-align: center;
            padding-left: 65px;
        }

        .filedrag .drag-label {
            font-weight: bold;
            text-align: center;
            display: block;
            color: #AAA;
            margin-top: 10px;
        }

        .filedrag.hover {
            border-color: #1e90ff;
            border-style: solid;
            border-width: 2px;
        }

        .filedrag.hover .drag-label {
            color: #1e90ff;
        }

        .custom-file-input-wrapper {
            position: relative;
        }

        .custom-file-input-wrapper .custom-file-input-button {
            position: relative;
            overflow: hidden;
        }

        .custom-file-input-wrapper .custom-file-input-button * {
            cursor: pointer;
        }

        .custom-file-input-wrapper .custom-file-input-button input[type="file"] {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            cursor: pointer;
            opacity: 0;
        }


        .border-bottom {
            border-bottom: 1px solid #ccc;
        }