body {
  margin: 0;
}

/* logo loader */
#smd-loader-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}
.smd-logo {
  width: 50%;
}
@media (min-width: 768px) {
  .smd-logo {
    width: 25%;
  }
}
@media (min-width: 1024px) {
  .smd-logo {
    width: 16.666667%;
  }
}

/* browser not supported alert */
body {
  background-color/*\**/: #a7a5a5\9;
}
#not-supported-container {
  display: none;
  display/*\**/: inline-block\9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  text-align: center;
  width: 620px;
  height: 370px;
  vertical-align: middle;
  font-size: 16px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  font-family: Open Sans, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans',
    sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
}
#not-supported-container #header {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}
#not-supported-container #info {
  margin-bottom: 16px;
}
#not-supported-container span {
  font-weight: 700;
}
#not-supported-container #footer {
  margin-top: 16px;
}
#not-supported-container #image-container img {
  display: inline-block;
  width: 66px;
  height: 66px;
  margin: 12px;
}
@media screen and (min-width: 0\0) {
  #not-supported-container {
    display: inline-block;
  }
  body {
    background-color: #a7a5a5;
  }
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #not-supported-container {
    display: none;
  }
  body {
    background-color: unset;
  }
}

/* scrollbar */
@media (pointer: fine) {
  /*Firefox*/
  * {
    scrollbar-color: var(--smd-primary-dark) white;
    scrollbar-width: thin;
  }
  /*webkit browser*/
  ::-webkit-scrollbar {
    width: 16px;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #a7a5a5;
    border: 4px solid transparent;
    background-clip: content-box;
    border-radius: 8px;
    height: 32px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background-color: var(--smd-primary);
  }
}
