@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700&display=swap');

:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Montserrat';
  background-color: #ecedef;
}

body a {
  display: contents;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

textarea,
input[type='time' i],
pre {
  font-family: 'Montserrat';
}

*::-webkit-scrollbar {
  max-width: 5px;
  max-height: 5px;
  position: fixed;
}

pre {
  font-family: 'Montserrat';
}

*::-webkit-scrollbar-track {
  background: #ecedef;
}

*::-webkit-scrollbar-thumb {
  background-color: #aaaeb3;
  border-radius: 8px;
}

*::-webkit-scrollbar-button {
  display: none;
}

#tooltips {
  position: absolute;
  top: 0;
  left: 0;
}

#toast {
  z-index: 3500;
  position: fixed;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  animation: all 0.5 ease;
}

#toastContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
