/**
 * @package   DPAttachments
 * @copyright Copyright (C) 2018 Digital Peak GmbH. <https://www.digital-peak.com>
 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
 */
.com-dpattachments-layout-attachments {
	/**
	 * @package   DPAttachments
	 * @copyright Copyright (C) 2018 Digital Peak GmbH. <https://www.digital-peak.com>
	 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
	 */
	/**
	 * @package   DPAttachments
	 * @copyright Copyright (C) 2018 Digital Peak GmbH. <https://www.digital-peak.com>
	 * @license   https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL
	 */
}
.com-dpattachments-layout-attachments .dp-button-bar {
	margin-bottom: 10px;
}
.com-dpattachments-layout-attachments .dp-button {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	user-select: none;
	border: 1px solid #c0c0c0;
	border-radius: 0.1rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	padding: 4px 10px;
	margin: 3px 0;
	color: #212529;
	background-color: #fefefe;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.com-dpattachments-layout-attachments .dp-button:disabled,
.com-dpattachments-layout-attachments .dp-button[disabled] {
	background-color: #ccc;
	color: #666;
}
.com-dpattachments-layout-attachments .dp-icon svg {
	fill: currentcolor;
	width: 1em;
	height: 1em;
	vertical-align: -2px;
}
.com-dpattachments-layout-attachments_empty {
	display: none;
}
.com-dpattachments-layout-attachments__header {
	font-weight: bold;
}
.com-dpattachments-layout-attachments__attachments {
	display: flex;
	flex-wrap: wrap;
}
@supports (display: grid) {
	.com-dpattachments-layout-attachments__attachments {
		display: grid;
		grid-gap: 10px;
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	@media (width <= 400px) {
		.com-dpattachments-layout-attachments__attachments {
			display: block;
		}
	}
}
.com-dpattachments-layout-attachments__attachments .dp-attachment {
	flex: 1 0 40%;
	padding: 10px;
	border: 1px solid #cbcbcb;
	overflow-wrap: break-word;
	word-wrap: break-word;
}
@media (width <= 400px) {
	.com-dpattachments-layout-attachments__attachments .dp-attachment {
		margin: 5px 0;
	}
}

.dp-attachment-modal__content {
	zoom: 0.6;
	width: 99.6%;
	height: 90vh;
	min-height: 500px;
	border: none;
}

.dp-attachment-modal {
	z-index: 10000 !important;
}
.dp-attachment-modal .tingle-modal-box__content {
	padding: 1rem;
}

/*# sourceMappingURL=render.css.map */