* {
	margin: 0px;
	padding: 0;
}	  

*,
*::before,
*::after {
 	box-sizing: inherit;
}

html {
 	box-sizing: border-box;
}


.section {
/*border-bottom:  1px dotted red;*/
width: 100%;
/* max-width: 1000px; */
float: left;
}


.container {
 	margin: 0 auto;
/*  	max-width: 1000px; */
}


.container::after {
  	content: "";
  	clear: both;
  	display: block;
}

.row {
 	float: left;
 	width: 100%;
}  

.row::after {
  	content: "";
  	clear: both;
  	display: block;
}


.col {
 	float: left;
 	overflow: hidden;
}

.col:last-child {
 	float: right;
 	display: block
} 


/* For mobile phones: */
[class*="width-"] {
  	width: 100%;
}
/* For mobile phones */
.width-s-0 {width: 0%;}
.width-s-1 {width: 8.3333333333%;}
.width-s-2 {width: 16.6666666666%;}
.width-s-3 {width: 25%;}
.width-s-4 {width: 33.3333333333%;}
.width-s-5 {width: 41.6666666666%;}
.width-s-6 {width: 50%;}
.width-s-7 {width: 58.3333333333%;}
.width-s-8 {width: 66.6666666666%;}
.width-s-9 {width: 75%;}
.width-s-10 {width: 83.3333333333%;}
.width-s-11 {width: 91.6666666666%;}
.width-s-12 {width: 100%;}

@media only screen and (min-width: 750px) {
/* For tablets: */
.width-m-0 {width: 0%;}
.width-m-1 {width: 8.3333333333%;}
.width-m-2 {width: 16.6666666666%;}
.width-m-3 {width: 25%;}
.width-m-4 {width: 33.3333333333%;}
.width-m-5 {width: 41.6666666666%;}
.width-m-6 {width: 50%;}
.width-m-7 {width: 58.3333333333%;}
.width-m-8 {width: 66.6666666666%;}
.width-m-9 {width: 75%;}
.width-m-10 {width: 83.3333333333%;}
.width-m-11 {width: 91.6666666666%;}
.width-m-12 {width: 100%;}
}

@media only screen and (min-width: 990px) {
/* For desktop: alternativ 768px */
.width-l-0 {width: 0%;}
.width-l-1 {width: 8.3333333333%;}
.width-l-2 {width: 16.6666666666%;}
.width-l-3 {width: 25%;}
.width-l-4 {width: 33.3333333333%;}
.width-l-5 {width: 41.6666666666%;}
.width-l-6 {width: 50%;}
.width-l-7 {width: 58.3333333333%;}
.width-l-8 {width: 66.6666666666%;}
.width-l-9 {width: 75%;}
.width-l-10 {width: 83.3333333333%;}
.width-l-11 {width: 91.6666666666%;}
.width-l-12 {width: 100%;}
}



