html, body {
  width: 100%;
  height: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 13px;
  color: var(--text-color);
  font-family: fira-sans, helvetica, sans-serif !important;
  background-color: var(--background-color);
  background-image: url("/static/images/asm-loading.gif");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: auto;
}

select, button {
  font-family: fira-sans, helvetica, sans-serif !important;
}

.ieonly {
  display: none;
}

@font-face {
  font-family: fira-sans;
  src: url('./fonts/FiraSans-Regular.ttf');
}

@font-face {
  font-family: fira-sans;
  src: url('./fonts/FiraSans-Bold.ttf');
  font-weight: bold;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.3);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.3);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0,0,0,0.5);
}
::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.sketch-picker .flexbox-fix div:first-child div:first-child input:first-child {
  width: 55px !important;
}

@media only screen and (max-device-width: 980px) {
/* mobile phone overrides here */

  body {
    background-color: var(--background-color);
    background-image: url("/static/images/asm-loading-small.gif");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: auto;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* IE10+ CSS here */
  body {
    background: #ffffff;
  }

  .ieonly {
    display: inline;
  }
}
