    .file_dropbox {
    	width: 100%;
    	height: auto;
    	border: 1px dashed #CCC;
    	text-align: center;
    	background: var(--form-background-color);
    	box-sizing: border-box;
    	padding: 70px 10px 50px 10px;
    	transition: 0.8s;
    	border-radius: var(--border-radius);
    	display: inline-block;
    }

    .file_dropbox_active {
    	background: #e0e0e0;
    }

    .file_dropbox_selected_files {
    	border: 1px solid #cccccc;
    	color: #636363;
    	padding: 6px 12px;
    	float: left;
    	margin-right: 5px;
    	line-height: initial;
    	cursor: pointer;
    	border-radius: var(--border-radius);
    	margin-bottom: -37px;
    }

    .file_dropbox_selected_files button {
    	background: none;
    	border: none;
    	padding: 0;
    	cursor: pointer;
    }

    .file_dropbox_selected_files i:nth-child(2) {
    	display: none;
    	float: left;
    	margin-top: 2px;
    	margin-left: -2px;
    }

    .file_dropbox_selected_files:hover i:nth-child(1) {
    	display: none;
    }

    .file_dropbox_selected_files:hover i:nth-child(2) {
    	display: block;
    }

    .file_dropbox_selected_files i {
    	font-size: 1rem;
    }

    .file_block {
    	margin-left: 10px;
    	border: 1px solid #ccc;
    	padding: 6px 12px;
    	border-radius: var(--border-radius);
    }

    .file_block i {
    	margin-right: 10px;
    }