.license_block * {
	box-sizing: border-box;
}
.license_block {
	padding: 30px 0 55px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 30px;
	justify-content: space-between;
}
.license_block .license-block--item {
	text-align: center;
	height: auto;
	width: calc(50% - 15px);
	padding: 20px;
	background-color: #01363D;
	display: flex;
}

.license-block--item-left {
	width: 47%;
	padding: 20px;
	background-color: #013C44;
}

.license-block--item-right {
	width: 53%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-left: 30px;
}

.license-block--item-name {
	color: #fff;
	text-align: left;
}

.license-block--item-btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.license-block--item-btn span {
	color: #fff;
	font-size: 14px;
}

.license_block img {
	max-height: 100%;
}

.license-download-btn {
	display: flex;
	align-items: center;
}

.license-download-btn:hover {
	text-decoration: none;
}

.license-download-btn-icon {
	display: block;
	width: 60px;
	height: 60px;
	background-color: #D1F42A;
	background-image: url("/local/templates/gersa/img/file.svg");
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
}

.license-download-btn span {
	display: block;
	color: #D1F42A;
	font-size: 20px;
	margin-left: 10px;
}

@media screen and (max-width: 1100px) {
	.license_block .license-block--item {
		width: 100%;
		margin-bottom: 30px;
	}
	.license_block {
		gap: 0;
	}
}

@media screen and (max-width: 570px) {
	.license_block .license-block--item {
		flex-wrap: wrap;
	}
	.license-block--item-left,
	.license-block--item-right {
		width: 100%;
	}
	.license-block--item-left {
		margin-bottom: 30px;
	}
	.license-block--item-right {
		padding: 0;
	}
	.license-block--item-name {
		margin-bottom: 30px;
	}
}