@charset "UTF-8";

/* File download */
a.file-download-stripe {
	display: flex;
	margin-bottom: 15px;
	border-radius: 5px;
	padding: 5px;
	border: 1px solid rgba(0,0,0,0.1);
	background: #fff;
	transition: all ease 0.25s;
}
a.file-download-stripe:hover, a.file-download-stripe:active, a.file-download-stripe:focus {
	text-decoration: none;
	box-shadow: 0 0 10px rgba(0,0,0,0.07);
	border-color: rgba(0,0,0,0.15);
}
.fds-thumbnail {
	display: block;
	width: 100px;
	height: 100px;
	flex-grow: 0;
	flex-shrink: 0;
	border: 1px solid rgba(0,0,0,0.05);
}
.fds-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}
.fds-meta {
	display: flex;
	gap: 10px;
	flex-direction: column;
	justify-content: center;
	margin-left: 15px;
	overflow: hidden;
	width: 100%;
}
.fds-title {
	display: block;
	font-weight: bold;
	color: #333;
}
.fds-description {
	display: block;
	font-size: 90%;
	color: #666;
}

.file-download-boxes {
	margin: -10px;
}
.file-download-boxes:after {
	content: "";
	display: table;
	clear: both;
}
.file-download-box {
	display: block;
	float: left;
	width: 16.65%;
	overflow: hidden;
	padding: 10px;
}
.file-download-box .fdb-anchor {
	display: block;
	border: 1px solid #ddd;
	border-radius: 5px;
	overflow: hidden;
	transition: all ease 0.25s;
}
.file-download-box .fdb-anchor:hover, .file-download-box .fdb-anchor:active, .file-download-box .fdb-anchor:focus {
	text-decoration: none;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.file-download-box .fdb-thumbnail-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 100%;
}
.file-download-box .fdb-thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.file-download-box .fdb-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
}
.file-download-box .fdb-title {
	height: 50px;
	padding-top: 5px;
	text-align: center;
	font-size: 13px;
	line-height: 15px;
	background: none;
}
@media (max-width: 1023px) {
	.file-download-box {
		width: 20%;
	}
}
@media (max-width: 767px) {
	.file-download-box {
		width: 25%;
	}
}
@media (max-width: 639px) {
	.file-download-box {
		width: 33.32%;
	}
}
@media (max-width: 479px) {
	.file-download-box {
		width: 50%;
	}
}

.image-preview-stripe {
	display: block;
	clear: both;
	margin-bottom: 15px;
	display: table;
}
.image-preview-stripe:after {
	content: '';
	display: table;
	clear: both;
}
.ips-image {
	display: table-cell;
	width: 100px;
	height: 100px;
	border: 1px solid #eee;
	vertical-align: top;
}
.ips-image img {
	display: block;
	width: 100%;
	height: auto;
}
.ips-image a {
	display: block;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.ips-image a:hover {
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.ips-info {
	display: table-cell;
	padding-left: 15px;
	vertical-align: middle;
}
.ips-heading {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-size: 100%;
	font-weight: normal;
	color: inherit;
}
.ips-body {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-size: 85%;
	font-weight: normal;
	color: inherit;
}

.file-iconized-link {
	display: flex;
	width: fit-content;
	padding: 1px;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	transition: all ease 0.25s;
	text-decoration: none;
	border-radius: 4px;
}
.file-iconized-link:hover, .file-iconized-link:active, .file-iconized-link:focus  {
	background: rgba(0,0,0,0.05);
	text-decoration: none;
}
.file-iconized-link-image {
	display: block;
	width: 40px;
	border-radius: 5px;
	overflow: hidden;
	flex-shrink: 0;
	flex-grow: 0;
}
.file-iconized-link-image img {
	display: block;
	width: 100%;
	height: auto;
}
.file-iconized-link-text {
	display: block;
	padding: 0 10px;
}
