/* Banner / Picture CSS / Text in Images */
.banner_h{
    display: block;
//    height: 450px;
//    height: 250px;
    height: 150px;
    width: 100%;
    min-width: 900px;
    overflow: hidden;
}
.banner_h img{
    width: 100%;
//    margin-bottom: -300px;
//    margin-bottom: -100px;
    margin-bottom: 0px;
}
.banner_text{
    height: 150px;
    width: 100%;
    min-width: 900px;
    font-size: 48.0pt;
    line-height: 1.06;
    font-weight: 700;
    color: white;
    position: absolute;
//    top: 10%;
    top: 90px;
//    left: 0%;
    left: 20px;
    transform: translate(0%, -50%);
}
.crop {
    width: 200px;
    height: 150px;
    overflow: hidden;
}
.crop img {
//    width: 400px;
//    width: 200px;
    width: 100px;
    height: 300px;
    margin: -75px 0 0 -100px;
}


/* Dotted border */
hr.dotted {
  border-top: 3px dotted #bbb;
}

/* Rounded border */
hr.rounded {
  border-top: 8px solid #bbb;
  border-radius: 5px;
}


/* Create two equal columns that sits next to each other */
.row {
  display: flex;
}
.column {
  flex-grow: 1;
}
.column:after {
  content: '';
  flex-grow: 4;
}




.container_ad {
	border: 3px solid blue;
	max-width: 900px;
	&__image {
		float: left;
	}
	&__text {
		display: block;
	}
}














/* tooltips: https://stackoverflow.com/questions/40531029/how-to-create-a-pure-css-tooltip-with-html-content-for-inline-elements */
tooltip {
  position: relative;
  display: inline-block;
}
tooltip > .tooltip-tooltip {
  display: none;
}
tooltip:hover > .tooltip-tooltip {
  display: block;
  position: absolute; 
  top: calc(1em + 5px);
  max-width: 20em;
}










/* https://www.w3schools.com/css/css_table.asp */
#results {
  //font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}
#results td, #results th {
  border: 1px solid #ddd;
  padding: 8px;
}
#results tr:nth-child(even){background-color: #f2f2f2;}
#results tr:hover {background-color: #ddd;}
#results th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #4CAF50;
  color: white;
}


form {
  /* Center the form on the page */
  margin: 0 auto;
  width: 470px;
  /* Form outline */
  padding: 1em;
  border: 1px solid #CCC;
  border-radius: 1em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

form li + li {
  margin-top: 1em;
}

label {
  /* Uniform size & alignment */
  display: inline-block;
  width: 200px;
  text-align: right;
}

input,
textarea {
  /* To make sure that all text fields have the same font settings. By default, textareas have a monospace font */
  //font: 1em sans-serif;

  /* Uniform text field size */
  width: 200px;
  box-sizing: border-box;

  /* Match form field borders */
  border: 1px solid #999;
}

input:focus,
textarea:focus {
  /* Additional highlight for focused elements */
  border-color: #000;
}

textarea {
  /* Align multiline text fields with their labels */
  vertical-align: top;

  /* Provide space to type some text */
  height: 5em;
}

.button {
  /* Align buttons with the text fields */
  padding-left: 90px; /* same size as the label elements */
}

button {
  /* This extra margin represent roughly the same space as the space
 *      between the labels and their text fields */
  margin-left: .5em;
}

/* https://www.w3schools.com/howto/howto_js_collapsible.asp */
.collapsible {
  background-color: #777;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #555;
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}
