:root {
  --background: #FFF;
}

.preload::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--background);
  z-index: 9999;
}

.preload--transitions * {
  transition: 0s !important;
}

.preload--hidden::before {
  /* visibility: hidden; */
  display: none;
}

.loaded:before {
  animation: fadeout .3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@font-face {
  font-family: 'TWKContinental';
  src: local('TWKContinental-Regular'),
    url('/build/assets/hsorka/fonts/TWKContinental-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
  unicode-range: U+000-5FF;
}

@font-face {
  font-family: 'TWKContinental';
  src: local('TWKContinental-Medium'),
    url('/build/assets/hsorka/fonts/TWKContinental-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: block;
  unicode-range: U+000-5FF;
}

@font-face {
  font-family: 'TWKContinental';
  src: local('TWKContinental-Italic'),
    url('/build/assets/hsorka/fonts/TWKContinental-Italic.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: block;
  unicode-range: U+000-5FF;
}

@font-face {
  font-family: 'TWKContinental';
  src: local('TWKContinental-Bold'),
    url('/build/assets/hsorka/fonts/TWKContinental-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: block;
  unicode-range: U+000-5FF;
}