/* Fabian Roos */
/* 16-08-26 */
/* Overview page for different theses, each in one thesis box */
/* Ribbon style by: http://www.cssportal.com/css-ribbon-generator/ */

/* thesis box setup */

.thesis-box {
	display: block;
	background-color: #eaeaea;
	min-height: 300px;
	line-height: 1.3em;
	margin-bottom: 1em;
	position: relative;
	/* max-width: 300px; */
	background-color: #eaeaea;
	cursor: pointer;
}

.thesis-box span {
	display: block;
	color: #333;
	/* position: relative; */
}

.thesis-box-content {
	min-height: 240px;
	padding: 20px;
	position: relative;
}

.thesis-box-img {
	overflow: hidden;
	height: 150px;
}


.thesis-box-content a {
	text-decoration: none;
}


.thesis-box-title {
	font-weight: bold;
	font-size: 1.125em;
	min-height: 100px;
	margin-top: 10px;
}

.thesis-box-title a {
	color: #333;
}

.thesis-box-start-date {
	margin-top: 10px;
}


.thesis-box-supervisor {
	margin-top: 10px;
}

/* ribbon thesis: START */
/* taken from: http://www.cssportal.com/css-ribbon-generator/ */

.thesis_ribbon {
	position: absolute;
	left: -4px; top: -5px; /* left -5px */
	z-index: 1;
	overflow: hidden;
	width: 229px; height: 232px;
	text-align: right;
	pointer-events: none;
}

.thesis_ribbon span {
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-transform: uppercase;
	text-align: center;
	line-height: 30px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	width: 200px;
	display: block;
	/* background: #79A70A;
	background: linear-gradient(#2989d8 0%, #1e5799 100%);*/
    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
    position: absolute;
    top: 46px;
    left: -40px;
}

.thesis_ribbon span::before {
	content: "";
	position: absolute; left: 0px; top: 100%;
	z-index: -1;
	border-left: 3px solid #1e5799;
	border-right: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #1e5799;
}

.thesis_ribbon span::after {
	content: "";
	position: absolute; right: 0px; top: 100%;
	z-index: -1;
	border-left: 3px solid transparent;
	border-right: 3px solid #1e5799;
	border-bottom: 3px solid transparent;
	border-top: 3px solid #1e5799;
}

.thesis_ma div span {
	background-color: #4497dd;
}

.thesis_ba div span {
	background-color: #9BC90D;
}

.thesis_bama div span {
  background-color:none;
  background-image: linear-gradient(90deg, #9BC90D  25%, #4497dd 75%)
}

html:lang(de) content_en {
	display: none;
}

html:lang(en) content_de {
	display: none;
}

.thesis_ma .thesis_ribbon_ba,
.thesis_ma .thesis_ribbon_bama {
	display: none;
}

.thesis_ba .thesis_ribbon_ma,
.thesis_ba .thesis_ribbon_bama {
	display: none;
}

.thesis_bama .thesis_ribbon_ma,
.thesis_bama .thesis_ribbon_ba {
	display: none;
}

/* Philipp Box zoom tester tester */  

.thesis-box {
	-webkit-transition: all .15s ease-in-out;
	-moz-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	-ms-transition: all .15s ease-in-out;
}

.thesis-box:hover {
	box-shadow: 4px 4px 4px rgba(0,0,0, .2);
}  

