/**
 * Input elements
 */
.ds-button-search {
	display: inline-block;
	width: 36px;
	height: 36px;
	border: 0;
	background: transparent;
	text-align: center;
	cursor: pointer;
}

.ds-button-search:before {
	content: '';
	display: inline-block;
	margin-top: 10px;
	width: 12px;
	height: 12px;
	border: solid 2px #333;
	border-radius: 50%;
	box-sizing: border-box;
}

.ds-button-search:after {
	content: '';
	display: inline-block;
	margin-left: -4px;
	margin-bottom: -1px;
	width: 8px;
	height: 2px;
	border-radius: 2px;
	background: #333;
	transform: rotate(45deg);
}


/**
 * Search area
 * Drop down lists are using the selectric library.
 * Note that to control width of selectric element you must wrap it with div.
 */
.ds-list-search-area {
	font-size: 0;
}
.ds-list-search-area.ds-align-right {
	text-align: right;
}

.ds-list-search-area > * {
	display: inline-block;
	margin-right: 16px;
	font-size: 16px;
	vertical-align: top;
}

.ds-list-search-area > .ds-no-right-margin {
	margin-right: 0;
}

.ds-list-search-area > :last-child {
	margin-right: 0;
}

.ds-list-search-area .selectric {
	display: block;
	position: relative;
	height: 36px;
	line-height: 36px;
	padding: 0 20px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.ds-list-search-area .selectric,
.ds-list-search-area .selectric-items {
	text-align: left;
}

.ds-list-search-area .selectric:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 8px;
	width: 0;
	height: 0;
	margin-top: -2px;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	border-top: 7px solid #000;
}


/**
 * Table related
 */
.ds-list-table-area {
	margin-top: 24px;
}

table.ds-list-table {
	width: 100%;
	text-align: center;
	border-top: 2px solid #444;
	border-bottom: 1px solid #444;
}

table.ds-list-table caption {
	display: none;
}

table.ds-list-table thead {
	background: #f0f0f0;
}

table.ds-list-table thead th {
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	vertical-align: middle;
	padding: 16px 12px;
}

table.ds-list-table tbody tr {
	border-top: 1px solid #e1e1e1;
}

table.ds-list-table tbody td {
	font-size: 16px;
	line-height: 28px;
	vertical-align: middle;
	padding: 20px 12px;
	color: #444;
}

table.ds-list-table tbody td:first-child {
	padding-left: 24px;
}

table.ds-list-table tbody td:last-child {
	padding-right: 24px;
}

table.ds-list-table tbody td.ds-list-title {
	font-size: 18px;
	text-align: left;
}


/**
 * Content area
 */
.ds-download-area {
	padding: 30px;
	margin-bottom: 24px;
	background: #f0f0f0;
	font-size: 0;
}

.ds-download-area > span {
	display: inline-block;
	width: 128px;
	margin-right: 12px;
	font-size: 18px;
	vertical-align: top;
}

.ds-download-area > ul {
	display: inline-block;
	width: calc(100% - 140px);
	font-size: 18px;
}

.ds-download-area > ul li {
	margin-bottom: 8px;
}

.ds-download-area > ul li:last-child {
	margin-bottom: 0;
}

.ds-download-area > ul li a {
	display: inline-block;
    height: 24px;
}

.ds-download-area > ul li a span {
	vertical-align: middle;
	color: #0088ce;
}

.ds-download-area > ul li a::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	background: url(../image/ico_download.png) no-repeat;
	background-size: cover;
}

@media (max-width: 1080px) {
	.ds-download-area {
		padding: 18px 12px;
	}

	.ds-download-area > span {
		width: 80px;
		font-size: 16px;
	}
	.ds-download-area > ul {
		display: inline-block;
		width: calc(100% - 92px);
		font-size: 16px;
	}
}

/**
 * Paging area
 */
.ds-paging {
	margin-top: 36px;
	text-align: center;
	font-size: 0;
}

.ds-paging > * {
	vertical-align: middle;
}

.ds-paging .ds-paging-page {
	position: relative;
	display: inline-block;
	height: 20px;
	padding: 0 4px;
	margin: 0 4px;
	font-size: 16px;
}

.ds-paging .ds-paging-page.ds-paging-current::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -3px;
	left: 0;
	right: 0;
	background: #1634db;
}

.ds-paging .ds-paging-prev, .ds-paging .ds-paging-next {
	display: inline-block;
	width: 10px;
	height: 16px;
	margin-bottom: 4px;
	background: url(../image/ico-arrow-black-right.png) no-repeat;
	background-size: contain;
}

.ds-paging .ds-paging-prev {
	margin-right: 24px;
	transform: rotate(180deg);
}

.ds-paging .ds-paging-next {
	margin-left: 24px;
}

/**
 * Dialog
 */
.ds-dialog p {
	font-size: 14px;
	line-height: 1.2em;
}

.ds-dialog .ds-list-table {
	margin: 8px 0;
}

.ds-dialog table.ds-list-table thead th,
.ds-dialog table.ds-list-table tbody td {
	font-size: 12px;
	padding: 8px 4px;
	line-height: 1.2em;
}

.ds-dialog ul li {
	margin-bottom: 0.6em;
}

/**
 * UL
 */
ul.ds-list-middle-dot {
	list-style-type: disc;
	padding-left: 12px;
	text-align: left;
}
