@media (max-width: 600px) {
  /* CSS that should be displayed if width is equal to or less than 400px goes here */
.clsSearchBar {
  font-size: 22px;
  position: fixed;
  top: 60%;
  width: 300px;
  margin-top: auto;
  left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%) ;
}
.clsSearchBarSubtext {
  font-size: 14px;
  width: 300px;
  text-align: center;
}
.clsTiredText{
  font-size: 16px;
}
.clsTiredSubText{
  font-size: 14px;
}
}
@media (min-width: 601px) {
  /* CSS that should be displayed if width is greater than or equal to 401px goes here */
.clsSearchBar {
  font-size: 30px;
  position: fixed;
  top: 60%;
  width: 600px;
  margin-top: auto;
  left: 50%;
  margin-right: 50%;
  transform: translate(-50%, -50%) ;
}
.clsSearchBarSubtext {
  font-size: 16px;
  width: 300px;
  text-align: center;
}
.clsTiredText{
  font-size: 32px;
}
.clsTiredSubText{
  font-size: 16px;
  line-height: 1.4;
}
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}
input {
  font-size: 14px;
  border-radius: 8px;
    padding: 5px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}
.clsTiredLink{
  color: #FFFFFF;
}
.clsBodyDark {
  background-color: #000000;
  color: #DDDDDD;
}
.clsBodyLight {
  background-color: #EEEEEE;
  color: #000000;
}
.clsButtonDark {
  background-color: #333333;
  color: white;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
}
.clsButtonLight {
  background-color: #EEEEEE;
  color: black;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
}
.clsButtonGoLight {
  background-color: #EEEEEE;
  color: #000000;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.clsButtonGoDark {
  background-color: #000000;
  color: #DDDDDD;
  padding: 5px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.clsSearchTimeRange {
  position: fixed;
  top: 12px;
  left: 10px;  
}
.clsSettingsIcon {
  position: fixed;
  top: 10px;
  right: 10px;  
}
.clsSettingsIconClose {
  position: absolute;
  top: 10px;
  right: 10px;  
}
.clsSettings {
  display: none;	
  font-size: 18px;
  color: black;
  background-color: #DDDDDD;
  padding: 5px;
  position: fixed;
  top: 40%;
  left: 50%;
  width: 200px;
  height: 90px;
  margin-top: -50px;
  margin-left: -150px;
  border-radius: 8px;
  border-style: solid;
}
.clsHR {
  color: #FFFFFF;
  background-color: #888888;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 1px;
}
.clsTimeRangeDark{
  color: #DDDDDD;
  background: #000000;
  appearance: auto;
  height: 20px;
  width: 120px;
  border: none;
}
.clsTimeRangeDark:focus{
  background: #333333;
  appearance: auto;
}
.clsTimeRangeDark:hover{
  cursor:hand;
  appearance: auto;
}
.clsTimeRangeLight{
  color: #000000;
  background: #EEEEEE;
  appearance: auto;
  height: 20px;
  width: 120px;
  border: none;
}
.clsTimeRangeLight:focus{
  background: #FFFFFF;
  appearance: auto;
}
.clsTimeRangeLight:hover{
  cursor:hand;
  appearance: auto;
}
/*Cookie Consent Begin*/
.clsCookieConsent {
    background-color: #333333;
    min-height: 26px;
    font-size: 14px;
    color: #ccc;
    text-align: center;
    line-height: 26px;
    padding: 8px 0 8px 30px;
    font-family: Arial,Helvetica,sans-serif;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
	display: none;
    z-index: 9999;
}
/*Cookie Consent End*/