.ripple {
  position: relative;
  overflow: hidden;
}
.ripple-effect {
  width: 2px;
  height: 2px;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  clip-path: inset(0 0 round 50%);
}
.ripple-inverted .ripple-effect {
  background-color: rgba(0, 0, 0, 0.3);
}

@keyframes spinner-line-fade-more {
  0%, 100% {
    opacity: 0; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

@keyframes spinner-line-fade-quick {
  0%, 39%, 100% {
    opacity: 0.25; /* minimum opacity */
  }
  40% {
    opacity: 1;
  }
}

@keyframes spinner-line-fade-default {
  0%, 100% {
    opacity: 0.22; /* minimum opacity */
  }
  1% {
    opacity: 1;
  }
}

@keyframes spinner-line-shrink {
  0%, 25%, 100% {
    /* minimum scale and opacity */
    transform: scale(0.5);
    opacity: 0.25;
  }
  26% {
    transform: scale(1);
    opacity: 1;
  }
}

.loader-container {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2800;
  background-color: rgba(0, 0, 0, 0.4);
}
.loader-placeholder {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.dialog-popup-items.dialog-items-closed {
  pointer-events: none;
}
.dialog-popup-items {
  z-index: 10;
  position: relative;
  overflow: hidden;
  background: white;
  width: 100%;
  max-width: 560px;
  margin: 12px 12px;
  border-radius: 2px;
}
.dialog-popup-items:has(.dialog-item:first-child > .dialog-header) {
  border-radius: 12px;
}
@media only screen and (min-width: 480px) {
  .dialog-popup-items {
    min-width: 480px;
    margin: 0 auto;
  }
}
.dialog-popup-item {
  display: flex;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dialog-popup-item .dialog-header {
  height: 44px;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: #ffffff;
  gap: 12px;
  font-weight: 500;
  padding-left: 12px;
  border-bottom: 1px solid #d4d4d9;
}
.dialog-popup-item .dialog-header .dialog-header-icon {
  height: 24px;
  width: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background-color: #ed0000;
}
.dialog-popup-item .dialog-header .dialog-header-close-icon-button {
  align-self: stretch;
  width: 44px;
  background: none;
  margin-left: auto;
  cursor: pointer;
  border: none;
}
.dialog-popup-item .dialog-content {
  padding-bottom: 12px;
}
@media only screen and (min-width: 480px) {
  .dialog-popup-item .dialog-content {
    padding-bottom: 24px;
  }
}
.dialog-popup-item .dialog-content-scrollable {
  overflow-y: auto;
  overflow-x: hidden;
}
.dialog-popup-item .dialog-text-left .dialog-text {
  text-align: left;
}
.dialog-popup-item .dialog-text-left {
  text-align: left;
}
.dialog-popup-item .dialog-text-center {
  text-align: center;
}
.dialog-popup-item .dialog-text-right {
  text-align: right;
}
.dialog-popup-item .dialog-text {
  text-align: center;
  margin: 24px;
  margin-bottom: 0;
}
@media only screen and (min-width: 480px) {
  .dialog-popup-item .dialog-text {
    margin: 36px;
    margin-bottom: 0;
  }
}
.dialog-popup-item .dialog-message {
  margin-top: 12px;
}
@media only screen and (min-width: 480px) {
  .dialog-popup-item .dialog-message {
    margin-top: 24px;
  }
}
.dialog-popup-item .dialog-message-row {
  padding-bottom: 12px;
}
@media only screen and (min-width: 480px) {
  .dialog-popup-item .dialog-message-row {
    padding-bottom: 24px;
  }
}
.dialog-popup-item .dialog-message-row:last-child {
  padding-bottom: 12px;
}
.dialog-popup-item .dialog-message-checkbox {
  display: inline-block;
}
.dialog-popup-item .dialog-message-checkbox-block {
  display: block;
}
.dialog-popup-item .dialog-icon {
  text-align: center;
  padding: 36px 36px 0;
}
.dialog-popup-item .dialog-title {
  text-align: center;
}
.dialog-popup-item .dialog-button-container {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.dialog-popup-item .dialog-button-scrollable {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.dialog-popup-item .dialog-buttons {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.dialog-popup-item .dialog-buttons .dialog-button {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 50px;
  white-space: nowrap;
}
.dialog-popup-item .dialog-buttons .dialog-button-cancel,
.dialog-popup-item .dialog-buttons .dialog-button-secondary {
  border-top: 1px solid #d4d4d9;
}

.dialog-toaster-items {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  vertical-align: middle;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: auto;
  -moz-box-flex: auto;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-direction: normal;
  -moz-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.dialog-item.dialog-toaster-item {
  visibility: visible;
}
.dialog-toaster-item {
  min-height: 100px;
  position: absolute;
  overflow: hidden;
  width: 100%;
  top: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 698px) {
  .dialog-toaster-item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.dialog-toaster-item:not(:last-child) {
  border-bottom: 1px solid #d4d4d9;
}
.dialog-toaster-item .dialog-content {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin: 12px;
}
@media only screen and (min-width: 480px) {
  .dialog-toaster-item .dialog-content {
    margin: 24px;
  }
}
.dialog-toaster-item .dialog-icon {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: 12px;
}
@media only screen and (min-width: 480px) {
  .dialog-toaster-item .dialog-icon {
    margin-right: 24px;
  }
}
.dialog-toaster-item .dialog-message-row {
  margin-top: 6px;
}
@media only screen and (min-width: 480px) {
  .dialog-toaster-item .dialog-message-row {
    margin-top: 12px;
  }
}
.dialog-toaster-item .dialog-button-container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 698px) {
  .dialog-toaster-item .dialog-button-container {
    margin-left: auto;
    width: auto;
  }
}
.dialog-toaster-item .dialog-buttons {
  width: 100%;
}
@media screen and (max-width: 698px) {
  .dialog-toaster-item .dialog-buttons {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #d4d4d9;
  }
}
.dialog-toaster-item .dialog-button {
  min-height: 50px;
  margin: 0;
  border: 0;
  padding: 0 12px;
}
@media screen and (max-width: 698px) {
  .dialog-toaster-item .dialog-button {
    -webkit-box-flex: 50;
    -moz-box-flex: 50;
    -webkit-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    height: 50px;
  }
}
@media screen and (min-width: 698px) {
  .dialog-toaster-item .dialog-button {
    width: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .dialog-toaster-item .dialog-button {
    width: 210px;
  }
}
@media screen and (min-width: 698px) {
  .dialog-toaster-item .dialog-button-secondary {
    border-left: 1px solid #d4d4d9;
  }
}

.dialog {
  position: fixed;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2000;
  pointer-events: none;
}
.dialog-dimmed {
  pointer-events: inherit;
}
.dialog-close-outside-click {
  pointer-events: initial;
}
.dialog-items-closed {
  pointer-events: none;
}
.dialog-items {
  pointer-events: initial;
}
.dialog-items:focus.svs-keyboard-focus.focus-inverted {
  text-decoration: inherit;
}
.dialog-item {
  visibility: hidden;
  background: #ffffff;
}
.dialog-item:first-child {
  visibility: visible;
}
.dialog-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
.dialog-title:empty {
  display: none;
}
@media only screen and (min-width: 480px) {
  .dialog-title {
    font-size: 24px;
    line-height: 30px;
  }
}
.dialog-message:empty {
  display: none;
}
@media only screen and (max-width: 480px) {
  .dialog-message {
    font-size: 14px;
  }
}
.dialog-icon .icon {
  font-size: 48px;
}
@media only screen and (min-width: 480px) {
  .dialog-icon .icon {
    font-size: 60px;
  }
}
.dialog-buttons {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: auto;
  -moz-box-flex: auto;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
}
.dialog-button {
  border: none;
  padding: 12px;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  height: 100%;
  min-height: 50px;
  font-size: 16px;
  letter-spacing: 0.01875em;
  text-align: center;
  outline: none;
  user-select: none;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-box-flex: auto;
  -moz-box-flex: auto;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
}
@media only screen and (min-width: 480px) {
  .dialog-button {
    font-size: 18px;
    letter-spacing: 0.01666667em;
  }
}
.dialog-button:disabled {
  pointer-events: none;
}
.focus-inverted .dialog-button:focus.svs-keyboard-focus {
  outline-offset: -2px;
}
.dialog-button-primary {
  background: #323233;
}
.dialog-button-primary:hover {
  background: #3f3f40;
}
.dialog-button-scrollable {
  display: none;
}
.dialog-button-secondary {
  background: #ffffff;
  color: #000000;
}
.dialog-button-secondary:disabled {
  color: #e1e1e5;
}
.dialog-button-secondary:hover {
  background: #ededf2;
}
.dialog-button.svs-keyboard-focus {
  /* stylelint-disable-next-line */
  /* stylelint-disable-next-line  declaration-no-important */
  border: 1px solid #afafb3 !important;
}
.dialog-branding-sport .dialog-button-primary {
  background: #00befa;
}
.dialog-branding-sport .dialog-button-primary:hover {
  opacity: 0.95;
}
.dialog-branding-sport .dialog-icon .icon {
  color: #001932;
}
.dialog-branding-tur .dialog-button-primary {
  background: #008912;
}
.dialog-branding-tur .dialog-button-primary:hover {
  opacity: 0.95;
}
.dialog-branding-tur .dialog-icon .icon {
  color: #001932;
}
.dialog-branding-momang .dialog-button-primary {
  background: linear-gradient(284.67deg, #9E29FF 0%, #6E14EB 100%);
}
.dialog-branding-momang .dialog-button-primary:hover {
  opacity: 0.95;
}
.dialog-branding-momang .dialog-icon .icon {
  color: #001932;
}
.dialog-branding-neutral .dialog-button-primary {
  background: #001932;
}
.dialog-branding-neutral .dialog-button-primary:hover {
  opacity: 0.95;
}
.dialog-branding-neutral .dialog-icon .icon {
  color: #001932;
}
.dialog-branding-error .dialog-button-primary {
  background: #ed0000;
}
.dialog-branding-error .dialog-button-primary:hover {
  opacity: 0.95;
}
.dialog-branding-error .dialog-icon .icon {
  color: #ed0000;
}

.brand {
  white-space: nowrap;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin: 0;
  vertical-align: middle;
  animation-name: brands;
  animation-delay: 0.1s;
  animation-duration: 2s;
}
@keyframes brands {
  0% {
    opacity: 0.999;
  }
  100% {
    opacity: 1;
  }
}

.brand {
  height: 50px;
  overflow: hidden;
  padding-right: 1px;
}
.brand .brand-emblem {
  height: 31.7px;
  width: 31.7px;
}
.brand .brand-emblem {
  margin-right: 6px;
  align-self: center;
  background-color: #ff0000;
}
.brand .brand-emblem.brand-emblem-outline {
  border: 2px solid white;
}
.brand-500 {
  height: 80px;
}
.brand-500 .brand-emblem {
  height: 50.72px;
  width: 50.72px;
}
.brand-500 .brand-emblem {
  background: #ff0000;
  margin-right: 10px;
}
.brand-500 .brand-emblem.brand-emblem-outline {
  border: 1px solid white;
}
.brand-300 {
  height: 60px;
}
.brand-300 .brand-emblem {
  height: 38.04px;
  width: 38.04px;
}
.brand-300 .brand-emblem {
  background: #ff0000;
  margin-right: 10px;
}
.brand-300 .brand-emblem.brand-emblem-outline {
  border: 1px solid white;
}
.brand-150 {
  height: 32px;
}
.brand-150 .brand-emblem {
  height: 20.288px;
  width: 20.288px;
}
.brand-150 .brand-emblem {
  margin-right: 3px;
}
.brand-150 .brand-emblem.brand-emblem-outline {
  border: 1px solid white;
}
.brand-100 {
  height: 24px;
}
.brand-100 .brand-emblem {
  height: 15.216px;
  width: 15.216px;
}
.brand-100 .brand-emblem {
  margin-right: 3px;
}
.brand-100 .brand-emblem.brand-emblem-outline {
  border: 1px solid white;
}
.brand-30 {
  height: 18px;
}
.brand-30 .brand-emblem {
  height: 11.412px;
  width: 11.412px;
}
.brand-30 .brand-emblem {
  margin-right: 3px;
}
.brand-30 .brand-emblem.brand-emblem-outline {
  border: 1px solid white;
}
.brand-img {
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.brand-square {
  width: 50px;
  height: 50px;
  overflow: hidden;
  position: relative;
}
.brand-square .brand-img {
  position: relative;
  left: 3px;
  top: 50%;
  height: 80%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: inherit;
}
.brand-square.brand-100 {
  width: 30px;
  height: 30px;
}
.brand-square.brand-300 {
  width: 60px;
  height: 60px;
}
.brand-square.brand-500 {
  width: 80px;
  height: 80px;
}
.brand-rectangle {
  display: inline-block;
  padding: 0 12px;
  text-align: center;
  line-height: 0;
}
.brand-square.brand-kenoxpress {
  background-color: #ffdd00;
}
.brand-square.brand-kenoxpress .brands-img {
  left: -90%;
}
.brand-square.brand-lordagsgodis-red,
.brand-rectangle.brand-lordagsgodis-red,
.brand-square.brand-lordagsgodis-oneline-red,
.brand-rectangle.brand-lordagsgodis-oneline-red {
  background: #ffffff;
}
.brand-square.brand-fulltraff .brand-img,
.brand-rectangle.brand-fulltraff .brand-img {
  height: 100%;
  padding-left: 6px;
}
.brand-square.brand-fulltraff.brand-100 .brand-img,
.brand-rectangle.brand-fulltraff.brand-100 .brand-img {
  padding-left: 1px;
}
.brand-square.brand-kenoxpress,
.brand-rectangle.brand-kenoxpress,
.brand-square.brand-xpress,
.brand-rectangle.brand-xpress {
  background-color: #ffdd00;
}
.brand-square.brand-grasroten,
.brand-rectangle.brand-grasroten,
.brand-square.brand-lordagsgodis,
.brand-rectangle.brand-lordagsgodis,
.brand-square.brand-lordagsgodis-oneline,
.brand-rectangle.brand-lordagsgodis-oneline,
.brand-square.brand-rubbet,
.brand-rectangle.brand-rubbet,
.brand-square.brand-rubbetcom,
.brand-rectangle.brand-rubbetcom,
.brand-square.brand-mixar,
.brand-rectangle.brand-mixar {
  background-color: #ed0000;
}
.brand-square.brand-svenskaspel,
.brand-rectangle.brand-svenskaspel {
  background-color: #ff0000;
}
.brand-square.brand-bomben,
.brand-rectangle.brand-bomben,
.brand-square.brand-challenge,
.brand-rectangle.brand-challenge,
.brand-square.brand-oddset,
.brand-rectangle.brand-oddset,
.brand-square.brand-langen,
.brand-rectangle.brand-langen,
.brand-square.brand-langenxl,
.brand-rectangle.brand-langenxl,
.brand-square.brand-live,
.brand-rectangle.brand-live,
.brand-square.brand-matchen,
.brand-rectangle.brand-matchen,
.brand-square.brand-mixen,
.brand-rectangle.brand-mixen,
.brand-square.brand-mixenxl,
.brand-rectangle.brand-mixenxl,
.brand-square.brand-powerplay,
.brand-rectangle.brand-powerplay,
.brand-square.brand-langenxl,
.brand-rectangle.brand-langenxl {
  background-color: #a00813;
}
.brand-square.brand-bingo,
.brand-rectangle.brand-bingo {
  background-color: #c91485;
}
.brand-square.brand-hastar,
.brand-rectangle.brand-hastar,
.brand-square.brand-trav-galopp,
.brand-rectangle.brand-trav-galopp {
  background-color: #00a88b;
}
.brand-square.brand-skrapspel,
.brand-rectangle.brand-skrapspel,
.brand-square.brand-skrap-pacman,
.brand-rectangle.brand-skrap-pacman {
  background-color: #000000;
}
.brand-square.brand-skrap-bingo,
.brand-rectangle.brand-skrap-bingo {
  background-color: #ABD8E8;
}
.brand-square.brand-skrap-matcha,
.brand-rectangle.brand-skrap-matcha {
  background-color: #DEADD0;
}
.brand-square.brand-skrap-kryss,
.brand-rectangle.brand-skrap-kryss {
  background-color: #E8C6AB;
}
.brand-square.brand-skrap7an,
.brand-rectangle.brand-skrap7an {
  background-color: #00AB96;
}
.brand-square.brand-poker,
.brand-rectangle.brand-poker {
  background: linear-gradient(45.39deg, #100f10 -0.01%, #23585f 85.64%);
}
.brand-square.brand-extratipset,
.brand-rectangle.brand-extratipset,
.brand-square.brand-em-tipset,
.brand-rectangle.brand-em-tipset,
.brand-square.brand-vm-tipset,
.brand-rectangle.brand-vm-tipset {
  background-color: #0069a9;
}
.brand-square.brand-em-tipset-europa,
.brand-rectangle.brand-em-tipset-europa,
.brand-square.brand-vm-tipset-europa,
.brand-rectangle.brand-vm-tipset-europa {
  background-color: #008733;
}
.brand-square.brand-casino,
.brand-rectangle.brand-casino,
.brand-square.brand-live-casino,
.brand-rectangle.brand-live-casino {
  background-color: #FF80A4;
}
.brand-square.brand-3irad,
.brand-rectangle.brand-3irad {
  background-color: #377b8f;
}
.brand-square.brand-17ellermer,
.brand-rectangle.brand-17ellermer {
  background-color: #b31472;
}
.brand-square.brand-mittemellan,
.brand-rectangle.brand-mittemellan {
  background-color: #b91212;
}
.brand-square.brand-bil-triss,
.brand-rectangle.brand-bil-triss,
.brand-square.brand-dubbel-triss,
.brand-rectangle.brand-dubbel-triss,
.brand-square.brand-mini-triss,
.brand-rectangle.brand-mini-triss {
  background-color: #ffed00;
}
.brand-square.brand-bomben .brand-img,
.brand-square.brand-challenge .brand-img,
.brand-square.brand-oddset .brand-img,
.brand-square.brand-langen .brand-img,
.brand-square.brand-langenxl .brand-img,
.brand-square.brand-live .brand-img,
.brand-square.brand-matchen .brand-img,
.brand-square.brand-mixen .brand-img,
.brand-square.brand-mixenxl .brand-img,
.brand-square.brand-powerplay .brand-img,
.brand-square.brand-langenxl .brand-img {
  height: 75%;
}
.brand-square.brand-bingo .brand-img,
.brand-square.brand-keno .brand-img,
.brand-square.brand-eurojackpot .brand-img,
.brand-square.brand-vikinglotto .brand-img,
.brand-square.brand-lyckoplatsen .brand-img {
  height: 90%;
}
.brand-square.brand-rubbet .brand-img {
  height: 68%;
}
.brand-square.brand-em-tipset-europa .brand-img,
.brand-square.brand-em-tipset .brand-img {
  height: 85%;
  left: 5px;
}
.brand-square.brand-lotto .brand-img {
  height: 74%;
}
.brand-square.brand-hastar .brand-img,
.brand-square.brand-trav-galopp .brand-img {
  height: 100%;
  left: -2px;
}
.brand-square.brand-hastar.brand-100 .brand-img,
.brand-square.brand-trav-galopp.brand-100 .brand-img {
  left: 1px;
}
.brand-vinnare {
  background-color: #ff0000;
}

