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

.mastodon-box {
	/*overwrite default row style*/
	background-color: transparent;
}

/*basics*/
.mastodon-box div.section {
	display: flex;
}

.mastodon-box div.col {
	margin: 0px auto 40px;
	padding: 0;
	min-height: auto;
	background-image:
		url("/img/mastodon-box_backgr.svg"),
		linear-gradient(130deg, rgba(99, 100, 255, 1) 0%, rgba(86, 58, 204, 1) 100%);
	background-repeat: no-repeat, no-repeat;
	background-position: -40px 0px, 0 0;
	background-size: 100%, 100%;
	border-radius: 6px;
	box-shadow: 4px 4px 10px rgb(0 0 0 / 0.2);
	transition: box-shadow 0.2s ease-in-out;
}
.mastodon-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) {
	.mastodon-box div.col {
		width: 100%;
		margin-left: 10px;
		margin-right: 10px;
	}
}

/*text elements*/
.mastodon-box div.col span.phrase {
	font-size: 24px;
	font-weight: 600;
	line-height: 36px;
	color: #e6d9ff;
}
.mastodon-box div.col span.product {
	font-size: 42px;
	font-weight: 800;
	line-height: 36px;
	color: #e5e5fe;
}

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


/*logo box*/
.mastodon-box span.icon-logo {
	display: block;
	float: left;
	width: 80px;
	height: 80px;
	margin-right: 15px;
	background: url("/img/icon_mastodon.svg") no-repeat center ;
	background-size: 100px;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

/*link box*/
.mastodon-box span.link-box {
	display: inline-block;
	margin-top: 15px;
	float: right;
	width: 230px;
	height: 48px;
	text-align: center;
	line-height: 44px;
	font-size: 22px;
	border-radius: 8px;
	border: 1px solid #00000035;
	background-color: #00000035;
}

/*link box*/
/*release column grid for box*/
@media only screen and (max-width: 620px) {
	.mastodon-box span.link-box {
		display: none;
	}
}


















