html,
body {
  height: 100%;
  background-color: #323232;
  color: white;
}

@media only screen and (min-width: 600px) {
  body {
    width: calc(100vw - 17px); /* prevent sudden shift when scrollbar appears */
  }
}

html {
  overflow-y: auto;
}

#svelte {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.is-vertical-center {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.is-center {
  text-align: center;
}

a.is-fullwidth {
  display: flex;
  width: 100%;
}

button.is-fullwidth {
  display: flex;
  width: 100%;
}

.title {
  color: white;
}

.loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  z-index: 1;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

.is-dimmed {
  background-color: rgba(255, 255, 255, 0.13);
}

.is-strong {
  font-weight: bold;
}

.loader-wrapper .loader {
  height: 80px;
  width: 80px;
}

.is-small-margin-bottom {
  margin-bottom: 1.25rem;
}

.checkbox:hover,
.radio:hover {
  color: inherit;
}

.list {
  background-color: transparent;
  box-shadow: 0 2px 3px rgba(200, 200, 200, 0.1), 0 0 0 1px rgba(200, 200, 200, 0.1);
}

.list .list-item {
  color: white;
}

.list .list-item:not(:last-child) {
  border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.button .centered-button-icon.icon:first-child:last-child {
  margin: 0;
}

.modal-card {
  max-width: calc(100vw - 40px);
}

.list-item {
  padding: 0.5em 1em;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff')
    format('woff');
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2')
    format('woff2');
}
