

@font-face {
    font-family: 'AsapMedium'; /*a name to be used later*/
    src: url('Asap-Medium.ttf');
}

.classname {
    font-family: 'AsapMedium';
}

body{
    font-family: 'AsapMedium';
    color: #706f6f;
	overflow: auto;   /* Hide both scrollbars */
	
	/* 	overflow-y: hidden; /* Hide vertical scrollbar */ */
	/* 	overflow-x: hidden; /* Hide horizontal scrollbar */ 	*/

}

.clustericon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 0px;
    color: black;
    font-family: 'AsapMedium';
    margin-left: -16px;
    margin-top: -16px;
    background-size: 32px 32px;
    background-color: transparent;
}

/* Images für die verschiedenen Clustericon-Typen */
.ci_Aktiv_HG {background-image: url('ci_aktiv_HG.png');}
.ci_Aktiv_LG {background-image: url('ci_aktiv_LG.png');}
.ci_Aktiv_H2 {background-image: url('ci_aktiv_H2.png');}
.ci_Aktiv_HLG {background-image: url('ci_aktiv_HLG.png');}
.ci_Aktiv_HGH {background-image: url('ci_aktiv_HGH.png');}
.ci_Aktiv_LGH {background-image: url('ci_aktiv_LGH.png');}
.ci_Aktiv_HLH {background-image: url('ci_aktiv_HLH.png');}
.ci_Aktiv_all {background-image: url('ci_aktiv_all.png');}
.ci_Aktiv {background-image: url('ci_aktiv.png');}

.ci_Inaktiv {
    background-image: url('ci_inaktiv.png');
    color: white;
    }


///Dropdown menus



/* input box */
.Select-control {
    background-color: #E2E2E2;

}


/* changes the text color of input box */
.Select-value-label {
    color: #706f6f;
    background-color: #E2E2E2; 
}

.Select--single > .Select-control .Select-value, .Select-placeholder {
    border: 1px solid grey;
    border-radius: 10px;
}


/* dropdown menu options */
.VirtualizedSelectOption {
    background-color: #E2E2E2;
    color:  #706f6f;
 }


/* dropdown menu hover effect */
.VirtualizedSelectFocusedOption {
    background-color: #52ae32;
	color: white;
    opacity: 1;
}

/* border on focus - default is blue
 * shadow box around input box.  default is blue
 */
.is-focused:not(.is-open) > .Select-control {
  border-color: var(--primary);
  box-shadow: none;
}



/* this colors the input box text and x  of multi dropdown*/
.Select--multi .Select-value  {
  background-color: #E2E2E2;
  border-color: #52ae32;
  /*border: 5px solid yellow; */
  color: #706f6f;	
}



button {
  background-color: #E2E2E2;

  border: 1px solid grey;
  border-color: #52ae32; /* INES green */
  border-radius: 3px;
  
  color: #706f6f;  /* font color */
  font-family: 'AsapMedium';
  text-align: center;
  display: inline-block;
  padding: 1px 32px;

  /*text-decoration: none;*/
   /*font-size: 16px;*/
}

