.instrument__downloads {
	background-color: #f6f9ff;
	border-radius: 8px;
	box-shadow: 0 0 8px 0 rgba(35, 37, 39, 0.16);
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 18px 24px 28px;
}

.instrument__downloads-title {
	color: #000;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: normal;
}

.instrument__downloads-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.instrument__downloads-item {
	align-items: center;
	background-color: #fff;
	border: 1px solid #c1cad1;
	border-radius: 8px;
	display: flex;
	gap: 20px;
	padding: 7px 19px;
}

.instrument__downloads-icon {
	align-items: center;
	background-color: #0e6aed;
	border-radius: 10px;
	box-shadow:
		0 10px 15px 0 rgba(0, 0, 0, 0.1),
		0 4px 6px 0 rgba(0, 0, 0, 0.1);
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 40px;
	justify-content: center;
	transition: all 0.35s ease-out;
	width: 40px;
	border: none;
	outline: none;
}

.instrument__downloads-icon img {
	display: block;
	height: 20px;
	width: 20px;
}

.instrument__downloads-icon svg {
	display: block;
	height: 20px;
	width: 20px;
}

@media (hover: hover) {
	.instrument__downloads-icon:hover {
		background-color: #1a5ade;
	}
}

.instrument__downloads-icon:active {
	background-color: #1a5ade;
}

.instrument__downloads-name {
	align-items: center;
	color: #092c47;
	display: flex;
	flex: 1;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.5;
	min-height: 48px;
}

.instrument__downloads-btn {
	align-items: center;
	background-color: #fff;
	border: 1px solid #0e6aed;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 36px;
	justify-content: center;
	padding: 8px;
	transition: all 0.35s ease-out;
	width: 36px;
}

.instrument__downloads-btn img {
	display: block;
	height: 20px;
	width: 20px;
}

.instrument__downloads-btn svg {
	display: block;
	height: 20px;
	width: 20px;
}

@media (hover: hover) {
	.instrument__downloads-btn:hover {
		background-color: #f6f9ff;
	}
}

.instrument__downloads-btn:active {
	background-color: #f6f9ff;
}

.tools-downloads-modal {
	display: none;
	align-items: center;
	inset: 0;
	justify-content: center;
	position: fixed;
	z-index: 1000;
}

.tools-downloads-modal--open {
	display: flex;
}

.tools-downloads-modal__overlay {
	background-color: rgba(0, 0, 0, 0.55);
	cursor: pointer;
	inset: 0;
	position: absolute;
}

.tools-downloads-modal__box {
	background-color: #fff;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	max-height: 88vh;
	max-width: 92vw;
	overflow: hidden;
	position: relative;
	width: 900px;
	z-index: 1;
}

.tools-downloads-modal__head {
	align-items: center;
	border-bottom: 1px solid #c1cad1;
	display: flex;
	flex-shrink: 0;
	justify-content: space-between;
	padding: 20px 24px;
}

.tools-downloads-modal__title {
	color: #092c47;
	font-size: 1.125rem;
	font-weight: 700;
}

.tools-downloads-modal__close {
	align-items: center;
	border: 1px solid #c1cad1;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	height: 32px;
	justify-content: center;
	transition: all 0.35s ease-out;
	width: 32px;
}

.tools-downloads-modal__close img {
	display: block;
	height: 16px;
	width: 16px;
}

@media (hover: hover) {
	.tools-downloads-modal__close:hover {
		background-color: #f6f9ff;
	}
}

.tools-downloads-modal__close:active {
	background-color: #f6f9ff;
}

.tools-downloads-modal__body {
	overflow-x: hidden;
	overflow-y: auto;
	padding: 24px;
}

.tools-downloads-modal__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 20px;
}

.tools-downloads-modal__tab {
	border: 1px solid #c1cad1;
	border-radius: 4px;
	color: #092c47;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 8px 16px;
	transition: all 0.35s ease-out;
	background-color: #fff;
}

.tools-downloads-modal__tab.is-active {
	background-color: #1a5ade;
	border-color: #1a5ade;
	color: #fff;
}

@media (hover: hover) {
	.tools-downloads-modal__tab:hover:not(.is-active) {
		border-color: #1a5ade;
	}
}

.tools-downloads-modal__panels {
	display: block;
}

.tools-downloads-modal__panel {
	display: none;
}

.tools-downloads-modal__panel.is-active {
	display: block;
}

.tools-downloads-modal__note {
	color: #092c47;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-top: 16px;
}

.tools-downloads-modal__content {
	overflow-x: auto;
}
.tools-downloads-modal__content tbody tr {
	background-color: #f6f9ff;
}
.tools-downloads-modal__scroll {
	overflow-x: auto;
}

.tools-downloads-modal__content table,
.tools-downloads-modal__table {
	border-collapse: collapse;
	font-size: 0.875rem;
	width: 100%;
}

.tools-downloads-modal__content caption,
.tools-downloads-modal__table caption {
	color: #092c47;
	font-weight: 600;
	margin-bottom: 12px;
	text-align: left;
}

.tools-downloads-modal__content thead tr th,
.tools-downloads-modal__table thead tr th {
	background-color: #0e6aed;
	padding: 10px 16px;
	text-align: left;
	white-space: nowrap;
	color: #fff !important;
	font-weight: 600 !important;
}
.tools-downloads-modal__table thead tr th *,
.tools-downloads-modal__content thead tr th * {
	color: #fff !important;
	font-weight: 600 !important;
}

.tools-downloads-modal__content tbody tr td,
.tools-downloads-modal__table tbody tr td {
	border-bottom: 1px solid #f6f9ff;
	color: #092c47;
	padding: 10px 16px;
	white-space: nowrap;
}

.tools-downloads-modal__content tbody tr:nth-child(2n) td,
.tools-downloads-modal__table tbody tr:nth-child(2n) td {
	background-color: #f6f9ff;
}

@media (max-width: 767px) {
	.tools-downloads-modal__box {
		max-width: calc(100vw - 16px);
		width: 100%;
	}

	.tools-downloads-modal__head,
	.tools-downloads-modal__body {
		padding: 16px;
	}
	.instrument__downloads {
		padding: 18px 12px 28px;
	}
}
@media (max-width: 576px) {
	.instrument__downloads-name {
		font-size: 14px;
		line-height: 130%;
	}
	.instrument__downloads-item {
		padding: 8px 12px;
	}
	.instrument__downloads-item {
		gap: 8px;
	}
	.instrument__downloads-list {
		gap: 16px;
	}
}
