*
{
  font-family: Raleway;
}

html
{
  margin: 0;
  height: 100%;
}

body
{
    margin: 0;
    height: 100%;
    background: ghostwhite;
}

.center_horizontally
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.center
{
    margin: auto;
    left: 47.5%;
    top: 46%;
}

.lds-spinner {
    color: official;
    display: flex;
    position: absolute;
    width: 80px;
    height: 80px;
  }
  .lds-spinner div {
    transform-origin: 40px 40px;
    animation: lds-spinner 1.2s linear infinite;
  }
  .lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #fff;
  }
  .lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
  }
  .lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
  }
  .lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
  }
  .lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
  }
  .lds-spinner div:nth-child(5) {
    transform: rotate(120deg);
    animation-delay: -0.7s;
  }
  .lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
  }
  .lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
  }
  .lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
  }
  .lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
  }
  .lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
  }
  .lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
  }
  .lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
  }
  @keyframes lds-spinner {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

#loading_screen
{
    background: gray;
    opacity: .7;
    height: 100%;
    width: 100%;
    position: fixed;
    /* display: none; */
    z-index: 998;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*****************************************************/
/************************ DropDown Search *****************************/

#dropDownInput
{
    box-sizing: border-box;
    background-image: url('/src/img/img_548871.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
    width: 100%;
}

#filterDropDownDiv
{
    width: 25%;
}

#dropDownInput:focus {outline: 3px solid #ddd;}

.filterDropDownClass
{
    margin-left: 35%;
    margin-bottom: 3%;
}

.filterDropDownClassContent
{
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    overflow: auto;
    border: 1px solid #ddd;
    z-index: 1;
}

.filterDropDownClassContent div
{
    display: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    cursor: pointer;
}

/*****************************************************/
/************************ Checkbox *****************************/

.checkbox_1 
{
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 12px;
    color: hsl(210,8%,65%);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox_1 input
{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark_1
{
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

.checkbox_1:hover input ~ .checkmark_1
{
    background-color: #ccc;
}

.checkbox_1 input:checked ~ .checkmark_1
{
    background-color: #2196F3;
}

.checkmark_1:after
{
    content: "";
    position: absolute;
    display: none;
}

.checkbox_1 input:checked ~ .checkmark_1:after
{
    display: block;
}

.checkbox_1 .checkmark_1:after
{
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*****************************************************/
/************************ Select *****************************/

.list-choice
{
    display: inline-block;
    width:300px;
    margin:1em auto;
    position: relative;
    cursor: pointer;
    z-index: 1;
}
.list-choice input[type="radio"]
{
    position:absolute;
    left:-9999px;
}

.list-choice-title
{
    width: 100%;
    display: block;
    background: hsl(216, 9%, 55%);
    text-align: center;
    padding: 0.55em 1em;
    box-sizing: border-box;
    color: #FFF;
    border-radius: 0.2em;
}

.list-choice:hover .list-choice-title
{
    border-radius:0.2em 0.2em 0 0;
}

.list-choice-objects label:nth-last-of-type(1) span
{
    border-radius:0 0 0.2em 0.2em;
}

.list-choice input[type="radio"] + span
{
    color: #FFF;
    background: hsl(216, 9%, 55%);
    padding: 0.55em 1em;
    display: block;
    text-align: center;
    box-sizing: border-box;
    cursor: pointer;
    width: 100%;
}

.list-choice-objects
{
    position: absolute;
    top: 0;
    padding-top: 2.1em;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: all 250ms ease;
}

.list-choice-objects:hover
{
  overflow: unset;
}

.list-choice:hover .list-choice-objects  input[type="radio"] + span
{
    position: relative;
    top: 0;
    transition: all 250ms ease-in-out;
}

.list-choice:hover input[type="radio"] + span:hover
{
    background:#BBB;
}

.list-choice:hover input[type="radio"]:checked + span:hover
{
    background:#74D68E;
}

.list-choice input[type="radio"]:checked + span
{
    background: #74D68E;
    position: absolute;
    top: 0em;
    border-radius: 0.2em;
}

.list-choice:hover input[type="radio"]:checked + span
{
    border-radius: 0;
}
.list-choice:hover .list-choice-objects label:nth-last-of-type(1) input[type="radio"]:checked + span
{
    border-radius:0 0 0.2em 0.2em;
}

.list-choice:hover .list-choice-objects
{
    max-height: 540px;
}

/*****************************************************/

/************************ Inputs *****************************/


.input1
{
    padding: 8px;
    border: none;
    border-bottom: 1px solid #ccc;
}

.inputhoverlightgray:hover
{
  background-color: #F3F3F3;
}

.inputfocuslightgray:focus
{
    background-color: white;
}

.date_input
{
    border-top: 0;
    text-align: center;
    font-size: 1.5em;
    width: 5.5em;
    font-family: Raleway;
}

.date_input:focus
{
    outline: none;
}

/*****************************************************/

/************************ Fonts *****************************/

/* Raleway */

@font-face
{
    font-family: Raleway;
    src: url("https://cms.deimos-group.de/src/fonts/raleway/Raleway-Regular.ttf");
}

@font-face
{
    font-family: RalewayBold;
    src: url("https://cms.deimos-group.de/src/fonts/raleway/Raleway-ExtraBold.ttf");
}

/**/

/* Headers */

.header1
{
   color: #3F3844;
   font-family: RalewayBold;
}

/**/

/* Regular Text */

.regtext1
{
   color: #3F3844;
   font-family: Raleway;
}

/**/

/* Autocomplete taken from W3Schools */

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

.autocompleteInput {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
}

.autocompleteInput[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}

.autocompleteInput[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

/*****************************************************/