/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 06.04.2020, 12:18:29
    Author     : einhornimmond
*/

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  white-space: nowrap;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.button-red {
  background-color:red;
  border-color: red;
}
.button-red:hover {
  background-color:darkred;
  border-color: darkred;
}

.no-list-style {
  list-style-type: none;
}

/* 
overwrite milligram style
*/

.container {
  max-width:none;
}