/** Base class for all tiles */
/*from style.css*/
div.tile {
	float: left;
	background-color: var(--tile-background-color);
	box-shadow: 0 1px 2px 0 #00000033, 0 2px 5px 0 rgba(0, 0, 0, 0.19);
	margin: 10px;
	padding: 20px;
    border-radius: 5px;
}

a.tile {
	float: left;
	background-color: var(--tile-background-color);
	box-shadow: 0 1px 2px 0 #00000033, 0 2px 5px 0 rgba(0, 0, 0, 0.19);
	margin: 10px;
	padding: 20px;
    border-radius: 5px;
}

div.tile-grid {
    display: grid;
}

div.tile-block {
    display: block;
}

div.tile-left {
    float: left;
    height: 100%;
}

div.tile-right {
    float: right;
    width: 70%;
}
div.tile-title {
    font-family: 'Roboto', sans-serif;
    color: var(--tile-title-text-color);
    margin-bottom: 5px;
    margin-bottom: 20px;
    width: 100%;
}
div.tile_title {
    font-family: 'Roboto', sans-serif;
    color: var(--tile-title-text-color);
    margin-bottom: 5px;
    width: 100%;
}

div.tile-number {
    font-family: 'Roboto', sans-serif;
    float: right;
    height: 25px;
    margin-right: 6px;
    font-size: 1.5em;
    align-self: flex-end;
}

div.tile-text {
    font-family: 'Roboto Condensed', sans-serif;
    float: right;
    padding-top: 8px;
    margin-right: 10px;
    height: 25px;
    color: var(--tile-text-color);
    align-self: flex-end;
}

div.tile-question {
    padding-top: 8px;
    margin-right: 10px;
    margin-bottom: 20px;
    height: 25px;
}

div.network_tabs_tile {
	float: left;
	background-color: var(--tile-background-color);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2), 0 2px 5px 0 rgba(0, 0, 0, 0.19);
	width: 1000px;
	height: 400px;
	margin: 10px;
}


div.single-description-tile {
    flex: 1 0 30%;
    flex-grow: 1;
    flex-basis: auto;
    min-width: 200px;
    width: 30%;

    margin: 5px;
    min-height: 30px;
    vertical-align: center;
    font-size: 18px;
    display: unset;
    float: left;
    padding: 5px;
}

.tile-title-big {
    padding: 5px;
    font-size: 20px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    margin-bottom: 10px;
}

div.tile-content-row {
    display: flex;
    justify-content: flex-end;
}

div.tile-content-column {
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}


.single-tile-information {
    float: right;
}


.collapsible {
  background-color: var(--tile-background-color);
  box-shadow: 0 1px 2px 0 #00000033, 0 2px 5px 0 rgba(0, 0, 0, 0.19);
  margin: 10px;
  padding: 20px;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  z-index: 1;
}

.collapsible:hover {
  background-color: var(--active-color);
}

.active {
    background-color: var(--table-even-row-background-color);
}

.collapsible:before {
  content: '\002B';
  color: white;
  font-weight: bold;
  float: left;
  margin-right: 20px;
}

.active:before {
  content: "\2212";
}

div.collapsible-tile {
  max-height: 0;
  padding-top: 0px!important;
  padding-bottom: 0px!important;
  overflow: clip;
  transition: max-height 0.2s ease-out;
  margin-top: -15px!important;
  overflow-x: auto;
  max-width: calc(100vw - 300px);
}


div.tile-panel {
	background-color: var(--tile-panel-background-color);
	box-shadow: 0 1px 2px 0 #00000033, 0 2px 5px 0 rgba(0, 0, 0, 0.19);
	margin: 0px;
	padding: 20px 20px 20px 20px;
    border-radius: 5px;
    display: grid;
}

legend {
    margin-left: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

fieldset {
	padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    border:1px solid #8b641d;
}
