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: var(--font-family, fira-sans, helvetica, sans-serif) !important;
  background-color: var(--background-color);
  background-image:
    var(--loader-gradient, linear-gradient(135deg, rgba(215, 64, 34, 0.12) 0%, rgba(152, 43, 43, 0.12) 50%, rgba(30, 30, 30, 0.08) 100%)),
    var(--loader-image, url("/TSM-Loadin-Transparent.gif"));
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, 480px;
}

select, button {
  font-family: var(--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:
      var(--loader-gradient, linear-gradient(135deg, rgba(215, 64, 34, 0.12) 0%, rgba(152, 43, 43, 0.12) 50%, rgba(30, 30, 30, 0.08) 100%)),
      var(--loader-image, url("/TSM-Loadin-Transparent.gif"));
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, 240px;
  }
}

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

  .ieonly {
    display: inline;
  }
}
