/*Additional css for install-box@homepage*/

.installsc-box {
	/*Overwrite default row style*/
	background-color: transparent;
}


/*Basics*/
.installsc-box div.section {
	display: flex;
}

.installsc-box div.col {
	margin: -60px auto 40px;
	padding: 0;
	min-height: auto;
	background-image:
		url("/img/installsc-box/seiscomp-logo.svg"),
		linear-gradient(130deg,rgba(0, 151, 165, 1) 0%, rgba(0, 126, 162, 1) 64%, rgba(0, 91, 156, 1) 100%);
	background-repeat: no-repeat;
	background-position: -40px 0px, 0 0;
	background-size: 300px, 100%;
	border-radius: 6px;
	box-shadow: 4px 4px 10px rgb(0 0 0 / 0.2);
	transition: box-shadow 0.2s ease-in-out;
}
.installsc-box div.col:hover {
	box-shadow: 4px 8px 15px rgb(0 0 0 / 0.3);
}

/*Release column grid for box*/
@media only screen and (max-width: 840px) {
	.installsc-box div.col {
		width: 100%;
		margin-left: 10px;
		margin-right: 10px;
	}
}

/*Text elements*/
.installsc-box div.col span.phrase {
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
}
.installsc-box div.col span.product {
	font-size: 42px;
	font-weight: 800;
	line-height: 36px;
}

/*Link box*/
.installsc-box div.col a {
	display: block;
	padding: 20px 20px 20px 40px;
	min-height: 80px;
	border-radius: 6px;
	background-color: transparent;
	color: #ffffff;
	transition: background-color 0.2s ease-in-out;
}
.installsc-box div.col a:hover {
	opacity: 1;
	background-color: rgba(255,255,255,.1);
}

/*Icon + text boxes*/
.installsc-box span.icon-box {
	display: inline-block;
	float: right;
	width: 80px;
	height: 80px;
	text-align: center;
	line-height: 130px;
	font-size: 12px;
	background: no-repeat center 5px;
	background-size: 42px;
}
.installsc-box a span:nth-child(3) {background-image: url("/img/installsc-box/icon_instruction.svg");}
.installsc-box a span:nth-child(2) {background-image: url("/img/installsc-box/icon_download.svg");}
.installsc-box a span:nth-child(1) {background-image: url("/img/installsc-box/icon_video.svg");}

/*Link box*/
/*Release column grid for box*/
@media only screen and (max-width: 570px) {
	.installsc-box span.icon-box {
		display: none;
	}
}


















