/*

# Show rules based on screensize:

.someClass{
	width: 100px;
	.screen-xs({ // Make it 50px on mobile.
		width: 50px;
	})
}

// ------------------------------------------- */
/* -------------------------------------------

# Generate margins based on screensize.

.someClass{
	.xs-margin() = margin: 6px on Mobile;
	.sm-margin(1) = margin: 12px on Tablets;
}

// ------------------------------------------- */
/* -------------------------------------------

# Generate paddings based on screensize.

.someClass{
	.xs-padding() = padding: 6px on Mobile;
	.sm-padding(1) = padding: 12px on Tablets;
}

// ------------------------------------------- */
/* -------------------------------------------

# Complicated mixin / loop for generating all css for margins / paddings.

// ------------------------------------------- */
/* This should be removed, force to use -xs, -md etc instead. */
/**/
/* From Bootstrap 3.3.2 */
:root {
  --bottom-sheet-header-image-height: 140px;
  --bottom-sheet-content-padding-bottom: 0;
  --bottom-sheet-content-scrollbar-bottom: 0;
  --bottom-sheet-header-height: 24px;
  --bottom-sheet-header-height-image: 72px;
}
.bottom-sheet {
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0 -8px 10px -5px rgba(0, 0, 0, 0.2), 0 -16px 24px 2px rgba(0, 0, 0, 0.14), 0 -6px 30px 5px rgba(0, 0, 0, 0.12);
}
.bottom-sheet-neutral,
.bottom-sheet-tur {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.bottom-sheet-neutral .bottom-sheet-close,
.bottom-sheet-tur .bottom-sheet-close,
.bottom-sheet-neutral .bottom-sheet-collapse,
.bottom-sheet-tur .bottom-sheet-collapse {
  border-top-right-radius: 12px;
}
.bottom-sheet-neutral .bottom-sheet-title,
.bottom-sheet-tur .bottom-sheet-title {
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.bottom-sheet-sport {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.bottom-sheet-default {
  background: #ffffff;
}
.bottom-sheet-inverted {
  background: #001932;
  color: #ffffff;
}
.bottom-sheet-inverted .icon-default.bottom-sheet-control-icon {
  color: #ffffff;
}
.bottom-sheet-inverted .bottom-sheet-drag-handle {
  background-color: #ffffff;
}
.bottom-sheet-transparent.bottom-sheet-inverted,
.bottom-sheet-transparent.bottom-sheet-default {
  background: transparent;
}
.sheet-transparent {
  background: transparent;
}
.bottom-sheet-header-control {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--bottom-sheet-header-height);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: inherit;
  z-index: 4;
}
@supports (background: -webkit-named-image(i)) {
  .bottom-sheet-header-control {
    left: 0;
  }
}
.bottom-sheet-title {
  text-align: center;
  margin: 0 60px !important;
  padding: 15px 0 0 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  background-color: inherit;
  transition: color 200ms ease-in-out;
}
.bottom-sheet-header {
  text-align: center;
  padding: 0 48px;
}
.bottom-sheet-header-dock-to-top {
  position: relative;
  margin-top: -var(--bottom-sheet-header-height);
}
.bottom-sheet-collapse,
.bottom-sheet-close {
  position: absolute;
  top: 0;
  right: 0;
  background-color: transparent;
  transition: all 200ms ease-in-out;
}
.bottom-sheet-title-is-sticky {
  color: #ffffff;
}
.bottom-sheet-action-icon {
  padding: 20px 12px 10px 24px!important;
}
@media only screen and (min-width: 1024px) {
  .bottom-sheet-action-icon {
    padding-right: 24px!important;
  }
}
.bottom-sheet-close-hide {
  display: none;
}
.bottom-sheet-draggable {
  position: absolute;
  top: 0;
  padding: 0 25% 24px 25%;
  cursor: pointer;
  text-align: center;
}
.bottom-sheet-content {
  padding-bottom: var(--bottom-sheet-content-padding-bottom);
  background-color: inherit;
  transition: max-height 500ms ease;
  scrollbar-width: none;
  overflow: scroll;
}
.bottom-sheet-content:has(.bottom-sheet-title) {
  --bottom-sheet-header-height: 54px;
}
.bottom-sheet-content:has(.bottom-sheet-title) .bottom-sheet-header-control {
  background-color: inherit;
}
.bottom-sheet-content .bottom-sheet-children {
  padding-top: var(--bottom-sheet-header-height);
}
@media (hover: hover) {
  .bottom-sheet-content {
    scrollbar-gutter: stable both-edges;
    scrollbar-width: auto!important;
    overflow: hidden;
  }
  .bottom-sheet-content:hover,
  .bottom-sheet-content:active,
  .bottom-sheet-content:focus {
    overflow: auto;
  }
  @supports (background: -webkit-named-image(i)) {
    .bottom-sheet-content {
      overflow: hidden;
    }
    .bottom-sheet-content:hover,
    .bottom-sheet-content:active,
    .bottom-sheet-content:focus {
      overflow: auto;
    }
    .bottom-sheet-content > * {
      margin: 0 0;
    }
  }
}
.bottom-sheet-content.bottom-sheet-content-has-image {
  position: relative;
  padding-top: 0;
}
.bottom-sheet-content.bottom-sheet-content-has-image .bottom-sheet-children {
  padding-top: 12px;
}
.bottom-sheet-fixed {
  --bottom-sheet-header-height: 0;
}
.bottom-sheet-content::-webkit-scrollbar {
  position: absolute;
  right: 6px;
  width: 6px;
}
.bottom-sheet-content::-webkit-scrollbar-track {
  margin-top: var(--bottom-sheet-header-height);
  margin-bottom: var(--bottom-sheet-content-scrollbar-bottom);
  box-shadow: none;
  background-color: transparent;
}
.bottom-sheet-content::-webkit-scrollbar-thumb {
  background-color: #afafb3;
  border-radius: 0;
  outline: none;
}
.bottom-sheet-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: inherit;
  z-index: 2;
}
.bottom-sheet-preview {
  overflow: auto;
  max-height: 0;
}
.bottom-sheet-full {
  overflow: auto;
  max-height: 100vh;
}
.bottom-sheet-watcher-start {
  height: 1px;
  margin-top: 0;
}
.bottom-sheet-watcher {
  height: 1px;
  margin-top: -1px;
}
.bottom-sheet-drag-handle {
  display: inline-block;
  position: relative;
  top: 2px;
  height: 3px;
  width: 30px;
  border-radius: 2px;
  background-color: #001932;
}
.bottom-sheet-header-image {
  height: var(--bottom-sheet-header-image-height);
  overflow: hidden;
  position: sticky;
  top: calc(0px - (var(--bottom-sheet-header-image-height) - var(--bottom-sheet-header-height-image)));
}
.bottom-sheet-header-image .bottom-sheet-header-control {
  --bottom-sheet-header-height: var(--bottom-sheet-header-height-image);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.8) 100%);
  color: #ffffff;
}
.bottom-sheet-header-image .bottom-sheet-header-control .bottom-sheet-title {
  background-color: transparent;
}
.bottom-sheet-header-image .bottom-sheet-header-control .bottom-sheet-drag-handle {
  background-color: #ffffff;
}
.bottom-sheet-header-image .bottom-sheet-header-control .icon-default {
  color: #ffffff;
}
.bottom-sheet-header-image .bottom-sheet-collapse,
.bottom-sheet-header-image .bottom-sheet-close {
  top: 7px;
}
.bottom-sheet-header-image:has(+ .bottom-sheet-title-is-sticky) {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.4), 0 1px 1px rgba(0, 0, 0, 0.4);
}
.bottom-sheet-header-title-has-image {
  position: sticky;
  top: 15px;
  z-index: 1;
  background-color: transparent;
}
.bottom-sheet-header-image-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.bottom-sheet-responsive {
  width: auto;
  max-width: 90vw;
  min-width: 21em;
}

.icon-button,
.btn-clean {
  position: relative;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  z-index: 1;
  cursor: pointer;
}
.icon-button .icon,
.btn-clean .icon,
.icon-button .icon-default,
.btn-clean .icon-default {
  position: relative;
}
.icon-button .icon:after,
.btn-clean .icon:after,
.icon-button .icon-default:after,
.btn-clean .icon-default:after {
  content: "";
  position: absolute;
  top: -75%;
  left: -75%;
  width: 250%;
  height: 250%;
  border-radius: 50%;
  background: #000000;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition-property: visibility, opacity, transform;
  -moz-transition-property: visibility, opacity, transform;
  -o-transition-property: visibility, opacity, transform;
  transition-property: visibility, opacity, transform;
  -webkit-transition-duration: 800ms;
  -moz-transition-duration: 800ms;
  -o-transition-duration: 800ms;
  transition-duration: 800ms;
  -webkit-transition-delay: 0ms, 0ms, 800ms;
  -moz-transition-delay: 0ms, 0ms, 800ms;
  -o-transition-delay: 0ms, 0ms, 800ms;
  transition-delay: 0ms, 0ms, 800ms;
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -o-transform: scale(0.4);
  transform: scale(0.4);
}
.icon-button .icon-inverted:after,
.btn-clean .icon-inverted:after {
  background: #ffffff;
}
.icon-button[disabled] .icon-default,
.btn-clean[disabled] .icon-default,
.icon-button.disabled .icon-default,
.btn-clean.disabled .icon-default {
  color: rgba(0, 0, 0, 0.2);
}
.icon-button[disabled] .icon-default:after,
.btn-clean[disabled] .icon-default:after,
.icon-button.disabled .icon-default:after,
.btn-clean.disabled .icon-default:after {
  display: none;
}
.icon-button[disabled] .icon-inverted,
.btn-clean[disabled] .icon-inverted,
.icon-button.disabled .icon-inverted,
.btn-clean.disabled .icon-inverted {
  color: rgba(255, 255, 255, 0.2);
}
.icon-button[disabled] .icon-inverted:after,
.btn-clean[disabled] .icon-inverted:after,
.icon-button.disabled .icon-inverted:after,
.btn-clean.disabled .icon-inverted:after {
  display: none;
}
/* stylelint-disable selector-max-specificity */
.icon-button:active .icon-default:after,
.icon-button:active .icon:after,
.btn-clean:active .icon:after,
.btn-clean:active .icon-default:after {
  visibility: visible;
  opacity: 0.12;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  -o-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  -o-transition-delay: 0ms;
  transition-delay: 0ms;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.icon-button:active .icon-inverted:after,
.btn-clean:active .icon-inverted:after {
  opacity: 0.2;
}
/* stylelint-enable */

@font-face {
  font-family: 'ui-icon';
  src: url(/_next/static/media/ui-icon-7kp9db1w.70fa21ce.woff2) format("woff2"), url(/_next/static/media/ui-icon-7kp9db1w.ec523d4e.woff) format("woff"), url(/_next/static/media/ui-icon-7kp9db1w.4b58e598.eot) format("eot"), url(/_next/static/media/ui-icon-7kp9db1w.30e1536a.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
.icon,
.icon-default {
  font-family: 'ui-icon';
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-accessibility:before {
  content: '\ea01';
}
.icon-allsvenskan:before {
  content: '\ea06';
}
.icon-alphabetic:before {
  content: '\ea07';
}
.icon-arrow-down:before {
  content: '\ea0b';
}
.icon-arrow-left:before {
  content: '\ea0c';
}
.icon-arrow-right:before {
  content: '\ea0d';
}
.icon-arrow-up:before {
  content: '\ea0e';
}
.icon-balance:before {
  content: '\ea15';
}
.icon-bank-account:before {
  content: '\ea16';
}
.icon-bingo:before {
  content: '\ea18';
}
.icon-brand-spelansvar:before {
  content: '\ea1d';
}
.icon-business-travel:before {
  content: '\ea1f';
}
.icon-calendar:before {
  content: '\ea20';
}
.icon-caret-down:before {
  content: '\ea25';
}
.icon-caret-left:before {
  content: '\ea26';
}
.icon-caret-right:before {
  content: '\ea27';
}
.icon-caret-up:before {
  content: '\ea28';
}
.icon-charity:before {
  content: '\ea2a';
}
.icon-chat-filled:before {
  content: '\ea2c';
}
.icon-chat-host:before {
  content: '\ea2d';
}
.icon-chat-robot:before {
  content: '\ea2e';
}
.icon-chat:before {
  content: '\ea2b';
}
.icon-checkmark-thin:before {
  content: '\ea30';
}
.icon-checkmark:before {
  content: '\ea2f';
}
.icon-clock-simple:before {
  content: '\ea35';
}
.icon-clock-solid:before {
  content: '\ea36';
}
.icon-clock:before {
  content: '\ea34';
}
.icon-close:before {
  content: '\ea37';
}
.icon-collapse:before {
  content: '\ea39';
}
.icon-communication:before {
  content: '\ea3a';
}
.icon-compare:before {
  content: '\ea3b';
}
.icon-contact-us:before {
  content: '\ea40';
}
.icon-copy-properties:before {
  content: '\ea43';
}
.icon-copy:before {
  content: '\ea42';
}
.icon-coverage-active:before {
  content: '\ea45';
}
.icon-coverage:before {
  content: '\ea44';
}
.icon-creditcard:before {
  content: '\ea46';
}
.icon-crown:before {
  content: '\ea47';
}
.icon-curiosity:before {
  content: '\ea48';
}
.icon-customer-service:before {
  content: '\ea49';
}
.icon-customized-content:before {
  content: '\ea4a';
}
.icon-deposit-coin:before {
  content: '\ea4c';
}
.icon-deposit-limits:before {
  content: '\ea4d';
}
.icon-deposit:before {
  content: '\ea4b';
}
.icon-document:before {
  content: '\ea50';
}
.icon-drag-and-drop:before {
  content: '\ea51';
}
.icon-dustbin:before {
  content: '\ea53';
}
.icon-e-post:before {
  content: '\ea54';
}
.icon-edit:before {
  content: '\ea56';
}
.icon-enkelrader-tur:before {
  content: '\ea58';
}
.icon-enkelrader:before {
  content: '\ea57';
}
.icon-expand:before {
  content: '\ea5a';
}
.icon-extend-game:before {
  content: '\ea5b';
}
.icon-external-system-games:before {
  content: '\ea5c';
}
.icon-eye-closed:before {
  content: '\ea5e';
}
.icon-eye:before {
  content: '\ea5d';
}
.icon-favourite-leagues:before {
  content: '\ea63';
}
.icon-filter:before {
  content: '\ea65';
}
.icon-finish-flag:before {
  content: '\ea66';
}
.icon-focus:before {
  content: '\ea67';
}
.icon-form-down:before {
  content: '\ea68';
}
.icon-form-negative:before {
  content: '\ea69';
}
.icon-form-neutral:before {
  content: '\ea6a';
}
.icon-form-positive:before {
  content: '\ea6b';
}
.icon-form-up:before {
  content: '\ea6c';
}
.icon-free-reduce:before {
  content: '\ea6e';
}
.icon-game-bandy:before {
  content: '\ea6f';
}
.icon-game-basketball:before {
  content: '\ea70';
}
.icon-game-floorball:before {
  content: '\ea71';
}
.icon-game-handball:before {
  content: '\ea72';
}
.icon-game-history:before {
  content: '\ea73';
}
.icon-game-hockey:before {
  content: '\ea74';
}
.icon-game-package:before {
  content: '\ea75';
}
.icon-game-soccer:before {
  content: '\ea76';
}
.icon-game-sport:before {
  content: '\ea77';
}
.icon-game-tennis:before {
  content: '\ea78';
}
.icon-game-track:before {
  content: '\ea79';
}
.icon-game-winter:before {
  content: '\ea7a';
}
.icon-games:before {
  content: '\ea7b';
}
.icon-head:before {
  content: '\ea87';
}
.icon-health:before {
  content: '\ea88';
}
.icon-hedge-full:before {
  content: '\ea89';
}
.icon-hedge-half:before {
  content: '\ea8a';
}
.icon-help-2:before {
  content: '\ea8c';
}
.icon-help-outline:before {
  content: '\ea8d';
}
.icon-help:before {
  content: '\ea8b';
}
.icon-history-win:before {
  content: '\ea8f';
}
.icon-history:before {
  content: '\ea8e';
}
.icon-horse:before {
  content: '\ea90';
}
.icon-hot:before {
  content: '\ea93';
}
.icon-icecream:before {
  content: '\ea94';
}
.icon-infinity:before,
.icon-infinity-icon:before {
  content: '\ea96';
}
.icon-info:before {
  content: '\ea97';
}
.icon-information:before {
  content: '\ea98';
}
.icon-ladder-down:before {
  content: '\ea9c';
}
.icon-ladder-up:before {
  content: '\ea9d';
}
.icon-latest-games:before {
  content: '\ea9f';
}
.icon-external_link:before,
.icon-link-external:before {
  content: '\eaa1';
}
.icon-link:before {
  content: '\eaa0';
}
.icon-login:before {
  content: '\eaa8';
}
.icon-loose:before {
  content: '\eaa9';
}
.icon-mail-outline:before {
  content: '\eaac';
}
.icon-mail:before {
  content: '\eaab';
}
.icon-marker:before {
  content: '\eaae';
}
.icon-minus:before {
  content: '\eab8';
}
.icon-money-laundry:before {
  content: '\eabe';
}
.icon-my-limits:before {
  content: '\eac6';
}
.icon-my-settings:before {
  content: '\eac7';
}
.icon-notifications:before {
  content: '\ead8';
}
.icon-odds:before {
  content: '\ead9';
}
.icon-olympics:before {
  content: '\eada';
}
.icon-one-to-two:before {
  content: '\eadb';
}
.icon-optional-copy:before {
  content: '\eadc';
}
.icon-pause:before {
  content: '\eae0';
}
.icon-person:before {
  content: '\eae3';
}
.icon-pie-chart:before {
  content: '\eae5';
}
.icon-pin:before {
  content: '\eae6';
}
.icon-pix:before {
  content: '\eae8';
}
.icon-play-circle:before {
  content: '\eaea';
}
.icon-plus:before {
  content: '\eaec';
}
.icon-qr:before {
  content: '\eaf1';
}
.icon-r-system:before {
  content: '\eaf2';
}
.icon-rectify-correct:before {
  content: '\eaf4';
}
.icon-rectify-error:before {
  content: '\eaf5';
}
.icon-refresh-pix:before {
  content: '\eaf7';
}
.icon-refresh:before {
  content: '\eaf6';
}
.icon-remove-sign:before {
  content: '\eaf8';
}
.icon-rensa-app:before {
  content: '\eaf9';
}
.icon-reorder:before {
  content: '\eafa';
}
.icon-rest:before {
  content: '\eafb';
}
.icon-rows-one:before {
  content: '\eaff';
}
.icon-rows-three:before {
  content: '\eb00';
}
.icon-rows-two:before {
  content: '\eb01';
}
.icon-rows:before {
  content: '\eafe';
}
.icon-scroll-down:before {
  content: '\eb04';
}
.icon-search:before {
  content: '\eb05';
}
.icon-self-test:before {
  content: '\eb06';
}
.icon-send:before {
  content: '\eb0e';
}
.icon-settings:before {
  content: '\eb0f';
}
.icon-simplicity:before {
  content: '\eb11';
}
.icon-slider:before {
  content: '\eb13';
}
.icon-sound-off:before {
  content: '\eb14';
}
.icon-sound-on:before {
  content: '\eb15';
}
.icon-spela-lagom:before {
  content: '\eb17';
}
.icon-spela-tillsammans:before {
  content: '\eb18';
}
.icon-spelguide:before {
  content: '\eb19';
}
.icon-spelpaus:before {
  content: '\eb1a';
}
.icon-star-empty:before {
  content: '\eb1c';
}
.icon-star:before {
  content: '\eb1b';
}
.icon-statistics:before {
  content: '\eb1d';
}
.icon-sub-menu:before {
  content: '\eb1f';
}
.icon-subscription:before {
  content: '\eb20';
}
.icon-superettan:before {
  content: '\eb24';
}
.icon-systemspel:before {
  content: '\eb27';
}
.icon-team:before {
  content: '\eb2a';
}
.icon-ten-papers:before {
  content: '\eb2c';
}
.icon-thumbs-up:before {
  content: '\eb2e';
}
.icon-tips:before {
  content: '\eb30';
}
.icon-tipsinfo:before {
  content: '\eb31';
}
.icon-trade-in-progress:before {
  content: '\eb32';
}
.icon-transaction-history:before {
  content: '\eb33';
}
.icon-triss-biltriss-tesla-y:before {
  content: '\eb35';
}
.icon-triss-biltriss-tesla:before {
  content: '\eb34';
}
.icon-triss-klover-2020:before {
  content: '\eb37';
}
.icon-triss-klover:before {
  content: '\eb36';
}
.icon-triss-stjarna:before {
  content: '\eb38';
}
.icon-triss-tv-2020:before {
  content: '\eb3a';
}
.icon-triss-tv:before {
  content: '\eb39';
}
.icon-triss-win-for-life:before {
  content: '\eb3b';
}
.icon-tv:before {
  content: '\eb3e';
}
.icon-update:before {
  content: '\eb41';
}
.icon-upload:before {
  content: '\eb42';
}
.icon-user:before {
  content: '\eb43';
}
.icon-viewsummary:before {
  content: '\eb47';
}
.icon-win:before {
  content: '\eb53';
}
.icon-withdrawal:before {
  content: '\eb54';
}
.icon-xperten:before {
  content: '\eb56';
}
.icon-exclamation-sign:before {
  content: '\ea59';
}
.icon-adventure:before {
  content: '\ea02';
}
.icon-all-card-games:before {
  content: '\ea03';
}
.icon-all-games:before {
  content: '\ea04';
}
.icon-animals:before {
  content: '\ea09';
}
.icon-asian:before {
  content: '\ea0f';
}
.icon-baccarat:before {
  content: '\ea10';
}
.icon-blackjack:before {
  content: '\ea19';
}
.icon-calendar-day:before {
  content: '\ea21';
}
.icon-calendar-month:before {
  content: '\ea22';
}
.icon-calendar-week:before {
  content: '\ea23';
}
.icon-casino:before {
  content: '\ea29';
}
.icon-christmas:before {
  content: '\ea31';
}
.icon-classic-slots:before {
  content: '\ea32';
}
.icon-classics:before {
  content: '\ea33';
}
.icon-cluster-games:before {
  content: '\ea38';
}
.icon-dice:before {
  content: '\ea4f';
}
.icon-dragons:before {
  content: '\ea52';
}
.icon-easter:before {
  content: '\ea55';
}
.icon-favorites-filled:before {
  content: '\ea62';
}
.icon-favorites:before {
  content: '\ea61';
}
.icon-golden:before {
  content: '\ea84';
}
.icon-halloween:before {
  content: '\ea86';
}
.icon-jackpot:before {
  content: '\ea9a';
}
.icon-jungle:before {
  content: '\ea9b';
}
.icon-last-played:before {
  content: '\ea9e';
}
.icon-live-casino:before {
  content: '\eaa4';
}
.icon-loss-limit:before {
  content: '\eaaa';
}
.icon-manga:before {
  content: '\eaad';
}
.icon-megaways:before {
  content: '\eab0';
}
.icon-mitt-casino:before {
  content: '\eab9';
}
.icon-money:before {
  content: '\eabd';
}
.icon-moneywheel:before {
  content: '\eabf';
}
.icon-monster:before {
  content: '\eac0';
}
.icon-musik:before {
  content: '\eac3';
}
.icon-new-games:before {
  content: '\ead6';
}
.icon-news:before {
  content: '\ead7';
}
.icon-paylines:before {
  content: '\eae1';
}
.icon-pirates:before {
  content: '\eae7';
}
.icon-players:before {
  content: '\eaeb';
}
.icon-poker:before {
  content: '\eaee';
}
.icon-prehistoric:before {
  content: '\eaef';
}
.icon-roulette:before {
  content: '\eafd';
}
.icon-rtp:before {
  content: '\eb02';
}
.icon-sci-fi:before {
  content: '\eb03';
}
.icon-space:before {
  content: '\eb16';
}
.icon-studio:before {
  content: '\eb1e';
}
.icon-summer:before {
  content: '\eb23';
}
.icon-superhero:before {
  content: '\eb25';
}
.icon-supplier:before {
  content: '\eb26';
}
.icon-table-games:before {
  content: '\eb28';
}
.icon-time-limit:before {
  content: '\eb2f';
}
.icon-video-poker:before {
  content: '\eb45';
}
.icon-video-slots:before {
  content: '\eb46';
}
.icon-virtualsports:before {
  content: '\eb4a';
}
.icon-gdpr-cookies:before {
  content: '\ea7e';
}
.icon-gdpr-custom-content:before {
  content: '\ea7f';
}
.icon-gdpr-information:before {
  content: '\ea80';
}
.icon-gdpr-offers:before {
  content: '\ea81';
}
.icon-gdpr-terms-changes:before {
  content: '\ea82';
}
.icon-gdpr-welcome:before {
  content: '\ea83';
}
.icon-mobile-verified:before {
  content: '\eabc';
}
.icon-mobile:before {
  content: '\eabb';
}
.icon-vinnare-inverted:before {
  content: '\eb49';
}
.icon-vinnare:before {
  content: '\eb48';
}
.icon-andelsspel:before {
  content: '\ea08';
}
.icon-badge-arrow-down:before {
  content: '\ea11';
}
.icon-badge-arrow-left:before {
  content: '\ea12';
}
.icon-badge-arrow-right:before {
  content: '\ea13';
}
.icon-badge-arrow-up:before {
  content: '\ea14';
}
.icon-beta:before {
  content: '\ea17';
}
.icon-bli-kund:before {
  content: '\ea1a';
}
.icon-brands:before {
  content: '\ea1e';
}
.icon-competitions-offers:before {
  content: '\ea3c';
}
.icon-components:before {
  content: '\ea3d';
}
.icon-content:before {
  content: '\ea41';
}
.icon-foundation:before {
  content: '\ea6d';
}
.icon-grassroots:before {
  content: '\ea85';
}
.icon-icon-horse:before {
  content: '\ea95';
}
.icon-maximize:before {
  content: '\eaaf';
}
.icon-menu-down:before {
  content: '\eab2';
}
.icon-menu-left:before {
  content: '\eab3';
}
.icon-menu-right:before {
  content: '\eab4';
}
.icon-menu-up:before {
  content: '\eab5';
}
.icon-menu:before {
  content: '\eab1';
}
.icon-min-spelkoll:before {
  content: '\eab6';
}
.icon-minimize:before {
  content: '\eab7';
}
.icon-nav-arena:before {
  content: '\eac8';
}
.icon-nav-bets:before {
  content: '\eac9';
}
.icon-nav-games:before {
  content: '\eaca';
}
.icon-nav-home:before {
  content: '\eacb';
}
.icon-nav-more-vertical:before {
  content: '\eacd';
}
.icon-nav-more:before {
  content: '\eacc';
}
.icon-nav-my-bets:before {
  content: '\eace';
}
.icon-nav-my-games:before {
  content: '\eacf';
}
.icon-nav-new-customer:before {
  content: '\ead0';
}
.icon-nav-ready-games:before {
  content: '\ead1';
}
.icon-nav-results:before {
  content: '\ead2';
}
.icon-nav-singlerows:before {
  content: '\ead3';
}
.icon-nav-spela-tillsammans:before {
  content: '\ead4';
}
.icon-nav-sportservice:before {
  content: '\ead5';
}
.icon-order-home:before {
  content: '\eadd';
}
.icon-patterns:before {
  content: '\eadf';
}
.icon-shortcut:before {
  content: '\eb10';
}
.icon-terms-conditions:before {
  content: '\eb2d';
}
.icon-var-spelkoll:before {
  content: '\eb44';
}
.icon-card:before {
  content: '\ea24';
}
.icon-connection-live:before {
  content: '\ea3e';
}
.icon-connection-lost:before {
  content: '\ea3f';
}
.icon-diamond:before {
  content: '\ea4e';
}
.icon-mixar:before {
  content: '\eaba';
}
.icon-my-choice:before {
  content: '\eac4';
}
.icon-my-habits:before {
  content: '\eac5';
}
.icon-overview:before {
  content: '\eade';
}
.icon-penalty:before {
  content: '\eae2';
}
.icon-points:before {
  content: '\eaed';
}
.icon-substitution-in:before {
  content: '\eb21';
}
.icon-substitution-out:before {
  content: '\eb22';
}
.icon-target:before {
  content: '\eb29';
}
.icon-team-captain:before {
  content: '\eb2b';
}
.icon-trophy-tips-sm:before {
  content: '\eb3d';
}
.icon-trophy:before {
  content: '\eb3c';
}
.icon-umbrella:before {
  content: '\eb40';
}
.icon-all-meetings:before {
  content: '\ea05';
}
.icon-blinkers-australian:before {
  content: '\ea1c';
}
.icon-blinkers:before {
  content: '\ea1b';
}
.icon-fast-forward:before {
  content: '\ea60';
}
.icon-horseshoe-off:before {
  content: '\ea91';
}
.icon-horseshoe-on:before {
  content: '\ea92';
}
.icon-live-betting:before {
  content: '\eaa3';
}
.icon-livestream:before {
  content: '\eaa5';
}
.icon-lock-closed:before {
  content: '\eaa6';
}
.icon-lock-open:before {
  content: '\eaa7';
}
.icon-most-played:before {
  content: '\eac1';
}
.icon-picture-in-picture:before {
  content: '\eae4';
}
.icon-play:before {
  content: '\eae9';
}
.icon-rectangle-pause:before {
  content: '\eaf3';
}
.icon-rewind:before {
  content: '\eafc';
}
.icon-u-system:before {
  content: '\eb3f';
}
.icon-volume-low:before {
  content: '\eb4b';
}
.icon-volume-medium:before {
  content: '\eb4c';
}
.icon-volyme-off:before {
  content: '\eb4d';
}
.icon-volyme-on:before {
  content: '\eb4e';
}
.icon-weather-cloudy:before {
  content: '\eb4f';
}
.icon-weather-partly-cloudy:before {
  content: '\eb50';
}
.icon-weather-rainy:before {
  content: '\eb51';
}
.icon-weather-sunny:before {
  content: '\eb52';
}
.icon-selfservice-arrow-left:before {
  content: '\eb07';
}
.icon-selfservice-cart:before {
  content: '\eb08';
}
.icon-selfservice-fail:before {
  content: '\eb09';
}
.icon-selfservice-live:before {
  content: '\eb0a';
}
.icon-selfservice-loading:before {
  content: '\eb0b';
}
.icon-selfservice-pay:before {
  content: '\eb0c';
}
.icon-selfservice-success:before {
  content: '\eb0d';
}
.icon-arena:before {
  content: '\ea0a';
}
.icon-facebook:before {
  content: '\ea5f';
}
.icon-few-members:before {
  content: '\ea64';
}
.icon-games-corporation:before {
  content: '\ea7c';
}
.icon-games-share:before {
  content: '\ea7d';
}
.icon-instagram:before {
  content: '\ea99';
}
.icon-linkedin:before {
  content: '\eaa2';
}
.icon-multiplayer:before {
  content: '\eac2';
}
.icon-profits:before {
  content: '\eaf0';
}
.icon-singleplayer:before {
  content: '\eb12';
}
.icon-twitter:before,
.icon-x:before {
  content: '\eb55';
}
.icon-youtube:before {
  content: '\eb57';
}
.icon,
.icon-default {
  font-size: 14px;
}
.icon-100 {
  font-size: 16px;
}
.icon-200 {
  font-size: 20px;
}
.icon-300 {
  font-size: 24px;
}
.icon-400 {
  font-size: 28px;
}
.icon-500 {
  font-size: 32px;
}
.icon-600 {
  font-size: 40px;
}
.icon-700 {
  font-size: 48px;
}
.icon-800 {
  font-size: 50px;
}
.icon-900 {
  font-size: 60px;
}
.icon-950 {
  font-size: 78px;
}
.icon-1000 {
  font-size: 116px;
}
.icon-1100 {
  font-size: 200px;
}
.icon.icon-default {
  color: #001932;
}
.icon-inverted {
  color: #ffffff;
}

/**
*
* Use this file to add custom icon overrides
*
*/

