* {
	box-sizing: border-box;
}

/*
.scroll{
  max-height:100px;
  overflow-y:auto;
  width:150px;
}
*/

.container-wrapper {
	font-size: 14px;
	line-height: 1.6;
}




/* Dies wird verwendet um die Grösse zu bestimmen aller nachkommenden cards (grid-items). Bei masonry-layout
wird mit Hilfe des ersten Elements die Grösse bestimmt oder ähnlich */
.grid-sizer, 
.grid-item {
	width: 100%;
	margin: 0 0 7px 0;
}



.card-title a {
	color: #100de8;
}

.rubrik {
	position: relative;
  	display: inline-block;
	text-decoration:underline;
	font-style: italic;
	cursor: pointer;
}
	
/* Dropdown Content (Hidden by Default) */
.rubrik-list {
  	display: none;
  	position: absolute;
  	background-color: #f1f1f1;
  	min-width: 160px;
 	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  	z-index: 1;
  	border: 1px solid rgb(0 126 255);
  	font-style: normal;
  	max-height:300px; 
  	overflow-y:auto;
  	width:150px;
}


/* Links inside the dropdown */
.rubrik-list a {
   	color: black;
    text-decoration: none;
    display: block;
    background-color: white;
	padding: 0 5px;
}



.rubrik-list a:first-child {
	padding-top: 5px;
}

.rubrik-list a:last-child {
	padding-bottom: 5px;
}

/* Change color of dropdown links on hover */
.rubrik-list a:hover {
	background-color:#CCC;
}

/* Show the dropdown menu on hover */
.rubrik:hover  .rubrik-list {
	display: block;
	display: block;
    padding: 5px;
    background-color: rgb(204 230 255);
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.rubrik-link:hover {
	background-color: #CCC;
}

a:not(.rubrik-list > a) {
	margin-bottom: 0px !important;
	padding-bottom: 0px !important;
	box-sizing: border-box;
	vertical-align: bottom;
}

@media only screen and (min-width: 662px) {
	
	/* Dies wird verwendet um die Grösse zu bestimmen aller nachkommenden cards (grid-items). Bei masonry-layout
	wird mit Hilfe des ersten Elements die Grösse bestimmt oder ähnlich */
	.grid-sizer, 
	.grid-item {
		width: calc(50% - 8px);
		margin: 0 0 7px 0;
	}

	.grid-item {
		/* margin: 4px 4px 4px 4px; */
	}
}

@media only screen and (min-width: 980px) {
	
	/* Dies wird verwendet um die Grösse zu bestimmen aller nachkommenden cards (grid-items). Bei masonry-layout
	wird mit Hilfe des ersten Elements die Grösse bestimmt oder ähnlich */
	.grid-sizer, 
	.grid-item {
		width: calc(33% - 8px);
		margin: 0 0 7px 0;
	}

	.grid-item {
		/* margin: 4px 4px 4px 4px; */
	}
}

.card {
	margin-bottom: 10px;
}