html {
  height: 100%;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 13.5px;
  color: rgba(0, 0, 0, .87);
  background: white;
  margin: 0;
  min-height: 100%;
}

.fullScreen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.smash > img {
  width: 12px;
  height: 18px;
  margin-right: 3px;
  cursor: pointer;
}

.smash {
  font-size: 10px;
  line-height: 10px;
  display: flex;
  align-items: flex-end;
  padding-right: 15px;
}

.smash > span {
  padding-bottom: 3px;
}

.smash:link, .smash:visited {
  color: #ff7f0eeb !important;
  text-decoration: none;
}

.smash:link:active, .smash:visited:active {
  color: #ff7f0eeb !important;
}

.logo {
  opacity: 0.85;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.version {
  position: absolute;
  bottom: 1px;
  right: 23px;
  font-size: 4px;
}

img.info {
  display: none;
  width: 16px;
  height: 16px;
  animation: blinker 1s linear infinite;
  margin-bottom: 2px;
}

@keyframes blinker {
  50% {
      opacity: 0;
  }
}

#error {
  display: none;
  justify-content: center;
  align-items: center;
}

#error-backdrop {
  background: rgba(0, 0, 0, .32);
}

#error-dialog {
  display: flex;
  flex-direction: column;
  width: 550px;
  /*height: 60%;*/
  max-width: 80%;
  max-height: 80%;
  background-color: #fff;
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
  z-index: 1;
}

h4 {
  font-size: 22px;
  margin: 0;
  padding: 24px;
  border-bottom: 1px solid #D8D8D8;
}

#error-content {
  height: 100%;
  overflow: auto;
  padding: 24px;
  box-sizing: border-box;
}

pre {
  margin: 0;
}

#connection-error {
  color: rgba(0, 0, 0, .87);
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  bottom: 16px;
}

.Select-control {
  border: none !important;
}

.Select-clear-zone {
  display: none !important;
}

.react-datepicker__input-container > input {
  outline: none;
}


.react-datepicker__input-container > input{
  font-size: 14px;
  outline: none;
  border: none;
  line-height: 24px;
  padding-left: 15px;
  width: 100px;
}

.react-datepicker__day:hover {
  border-radius: 50%;
  background-color: #f0f0f0;
}

.react-datepicker__day--selected, .react-datepicker__day--in-range {
  border-radius: 50%;
  background-color: rgb(16, 108, 200);
  color: #fff;
}

.react-datepicker__day--selected:hover, .react-datepicker__day--in-range:hover {
  background-color: #1d5d90;
}

.react-datepicker__current-month {
  margin-top: 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 25px;
}

.react-datepicker-popper[data-placement^="bottom"] .react-datepicker__triangle {
  margin-top: 0 !important;
}