html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a {
    word-break: break-all;
}
.column {
    float: left;
    width: 50%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.columnhalf {
    float: left;
    width: 50%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.columnquarter {
    float: left;
    width: 25%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.columnthird {
    float: left;
    width: 33.33%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.columnthirdthree {
    float: left;
    width: 33.33%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.columnfourth {
    float: left;
    width: 25%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.columnfifth {
    float: left;
    width: 20%;
    margin-bottom: 16px;
    padding: 0 8px;
}

.img-fit {
    height: 33%;
    width: 100%;
    object-position: 100% 0;
    object-fit: cover;
}

.img-fill {
    height: 33%;
    width: 100%;
    object-position: 100% 0;
    object-fit: cover;
}

.img-fit-media {
    height: 25%;
    width: 100%;
    object-position: 100% 0;
    object-fit: cover;
}

.img-fill-media {
    height: 25%;
    width: 100%;
    object-position: 100% 0;
    object-fit: fill;
}

@media screen and (max-width: 670px) {
    .column {
        width: 100%;
        display: block;
    }
    .columnhalf {
        width: 100%;
        display: block;
    }
    .columnquarter {
        width: 100%;
        display: block;
    }
    .columnthird {
        width: 100%;
        display: block;
    }
    .columnfifth {
        width: 50%;
        display: block;
    }
    .columnfourth {
        width: 50%;
        display: block;
    }
    .img-fit {
        height: 40%;
        width: 100%;
        object-position: 100% 0;
        object-fit: cover;
    }
	.img-fill {
		height: 40%;
		width: 100%;
		object-position: 100% 0;
		object-fit: cover;
	}
}

.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-with-border {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-style: groove;
}

.container {
    padding: 0 16px;
}

.container::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

.title {
    color: grey;
}

.groupbar {
    box-shadow: 2px -2px 4px 4px rgba(0, 0, 0, 0.1);
    display: block;
    color: black;
    background-color: #edecef;
    text-align: center;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0px;
}

.subgroupbar {
    box-shadow: 2px -2px 4px 4px rgba(0, 0, 0, 0.1);
    display: block;
    color: black;
    background-color: #edecef;
    text-align: center;
    cursor: pointer;
    width: 60%;
    margin-bottom: 0px;
}

.button {
    border: none;
    outline: 0;
    display: inline-block;
    background-color: black;
    padding: 8px;
    color: white;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

.button:hover {
    background-color: #555;
}

.topbutton {
    display:inline-block;
    padding: 4px;
    border:0.16em solid;
    border-radius:0.3em;
    box-sizing: border-box;
    text-decoration:none;
    border-color:#222222;
    background-color: #EEEEEE;
    color:#000;
    text-align:center;
    transition: all 0.15s;
    width: 100%;
    height: 2em;
}

.topbutton:hover{
    background-color: #DDDDDD;
}
.topbutton:active{
    background-color: #BBBBBB;
}

.inlinebutton {
	text-decoration: none; 
	border:0.1em solid; 
	padding: 4px; 
	background-color: #EEEEEE; 
	color:#000;
}

.inlinebutton:hover{
    background-color: #DDDDDD;
}
.inlinebutton:active{
    background-color: #BBBBBB;
}

.headline{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    border:0.00em solid;
    border-radius:0.0em;
    box-sizing: border-box;
    text-decoration:none;
    border-color:#222222;
    background-color: #EEEEEE;
    color:#DDDDDD;
    text-align:center;
    transition: all 0.15s;
    width: 100%;
    height: 2.4em;
}

.headline:hover{
    background-color: #DDDDDD;
}
.headline:active{
    background-color: #CCCCCC;
}
