@import url(https://fonts.googleapis.com/css?family=Inter:400,500,600,700,800);
@charset "UTF-8";
:root {
  --primary-rgb: 255, 109, 67;
  --esport-rgb: 255, 76, 79;
  --esport: rgb(var(--esport-rgb));
  --gold-rgb: 252, 204, 4;
  --gold: rgb(var(--gold-rgb));
  --gold-dark-rgb: 249, 175, 0;
  --gold-dark: rgb(var(--gold-dark-rgb));
  --gold-very-dark-rgb: 69, 40, 1;
  --gold-very-dark: rgb(var(--gold-very-dark-rgb));
  --header-height: 56px;
  --sticky-top: calc(56px + 1rem);
  --twitter-rgb: 29, 161, 242;
  --prisguiden-rgb: 106, 8, 185;
  --prisguiden: rgb(var(--prisguiden-rgb));
  --prisguiden-badge: #FF5E7D;
  --prisguiden-border: #6a08b9;
  --telialigaen-rgb: 153, 10, 227;
  --telialigaen: rgb(var(--telialigaen));
  --ads-rgb: 255, 237, 74;
  --scrims-primary-rgb: 255, 0, 0;
  --scrims-secondary-rgb: 255, 168, 0;
  --scrims-primary: rgb(var(--scrims-primary-rgb));
  --scrims-secondary: rgb(var(--scrims-secondary-rgb));
  --scrims-frame: #10233f;
  --scrims-text: #10233f;
  --terrorists: #ffba00;
  --counter-terrorists: #1ba8f0;
}

@media (prefers-color-scheme: dark) {
  .automode {
    --header: #202124;
    --contrast-rgb: 106, 120, 136;
    --contrast: rgb(var(--contrast-rgb));
    --body-rgb: 21, 32, 43;
    --body: rgb(var(--body-rgb));
    --text: #ddd;
    --text-dark: #fff;
    --input-bg: var(--body);
    --gray-light: #1d2a35;
    --gray-dark: #999;
    --border-dark: #38444d;
    --border-light: #29353e;
    --secondary: #3a2924;
    --secondary-hover: #171312;
    --light-rgb: 13, 23, 33;
    --light: rgb(var(--light-rgb));
    --dark-rgb: 177, 190, 207;
    --dark: rgb(var(--dark-rgb));
    --prisguiden-rgb: 255, 255, 255;
    --prisguiden: rgb(var(--prisguiden-rgb));
    --scrims-text: #fff;
    --bg-light-hover: #182938;
    --foreground: 41, 52, 63;
    --foreground-rgb: rgb(var(--foreground));
    --invert-light: invert(0);
    --invert-dark: invert(1);
  }
}
@media (prefers-color-scheme: light) {
  .automode {
    --header: #fff;
    --contrast-rgb: 52, 58, 64;
    --contrast: rgb(var(--contrast-rgb));
    --body-rgb: 255, 255, 255;
    --body: rgb(var(--body-rgb));
    --text: #000000;
    --text-dark: #000000;
    --input-bg: #fff;
    --gray-light: #f5f5f5;
    --border-dark: #000000;
    --border-light: #eaeaea;
    --light-rgb: 247, 249, 249;
    --light: rgb(var(--light-rgb));
    --dark-rgb: 52, 58, 64;
    --dark: rgb(var(--dark-rgb));
    --prisguiden-rgb: 106, 8, 185;
    --prisguiden: rgb(var(--prisguiden-rgb));
    --bg-light-hover: #f1f1f1;
    --foreground: 225, 230, 230;
    --foreground-rgb: rgb(var(--foreground));
    --invert-light: invert(1);
    --invert-dark: invert(0);
  }
}

.darkmode {
  --header: #202124;
  --contrast-rgb: 106, 120, 136;
  --contrast: rgb(var(--contrast-rgb));
  --body-rgb: 21, 32, 43;
  --body: rgb(var(--body-rgb));
  --text: #ddd;
  --text-dark: #fff;
  --input-bg: var(--body);
  --gray-light: #1d2a35;
  --gray-dark: #999;
  --border-dark: #38444d;
  --border-light: #29353e;
  --secondary: #3a2924;
  --secondary-hover: #171312;
  --light-rgb: 13, 23, 33;
  --light: rgb(var(--light-rgb));
  --dark-rgb: 177, 190, 207;
  --dark: rgb(var(--dark-rgb));
  --prisguiden-rgb: 255, 255, 255;
  --prisguiden: rgb(var(--prisguiden-rgb));
  --scrims-text: #fff;
  --bg-light-hover: #182938;
  --foreground: 41, 52, 63;
  --foreground-rgb: rgb(var(--foreground));
  --invert-light: invert(0);
  --invert-dark: invert(1);
}

.lightmode {
  --header: #fff;
  --contrast-rgb: 52, 58, 64;
  --contrast: rgb(var(--contrast-rgb));
  --body-rgb: 255, 255, 255;
  --body: rgb(var(--body-rgb));
  --text: #000000;
  --text-dark: #000000;
  --input-bg: #fff;
  --gray-light: #f5f5f5;
  --border-dark: #000000;
  --border-light: #eaeaea;
  --light-rgb: 247, 249, 249;
  --light: rgb(var(--light-rgb));
  --dark-rgb: 52, 58, 64;
  --dark: rgb(var(--dark-rgb));
  --prisguiden-rgb: 106, 8, 185;
  --prisguiden: rgb(var(--prisguiden-rgb));
  --bg-light-hover: #f1f1f1;
  --foreground: 225, 230, 230;
  --foreground-rgb: rgb(var(--foreground));
  --invert-light: invert(1);
  --invert-dark: invert(0);
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%, to {
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    transform: translateY(-25%);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transform: none;
  }
}
@keyframes bounce {
  0%, to {
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    transform: translateY(-25%);
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    transform: none;
  }
}
@-webkit-keyframes bouncein {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes bouncein {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes bounceleft {
  from {
    transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  to {
    transform: translateX(-25%);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes bounceleft {
  from {
    transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  to {
    transform: translateX(-25%);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@-webkit-keyframes bounceright {
  from {
    transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  to {
    transform: translateX(25%);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@keyframes bounceright {
  from {
    transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  to {
    transform: translateX(25%);
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@-webkit-keyframes slideup {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
@keyframes slideup {
  from {
    bottom: -100%;
  }
  to {
    bottom: 0;
  }
}
@-webkit-keyframes slidedown {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@keyframes slidedown {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}
@-webkit-keyframes translatedown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes translatedown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes accordion {
  0% {
    display: grid;
    grid-template-rows: 0fr;
  }
  100% {
    display: grid;
    grid-template-rows: 1fr;
  }
}
@keyframes accordion {
  0% {
    display: grid;
    grid-template-rows: 0fr;
  }
  100% {
    display: grid;
    grid-template-rows: 1fr;
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@-webkit-keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@-webkit-keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slide {
  0% {
    transform: translateX(-100%);
  }
  20% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@-webkit-keyframes remove-background {
  to {
    background: transparent;
  }
}
@keyframes remove-background {
  to {
    background: transparent;
  }
}
@-webkit-keyframes shadowpulse-primary {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(var(--primary-rgb), 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0);
  }
}
@keyframes shadowpulse-primary {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(var(--primary-rgb), 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0);
  }
}
@-webkit-keyframes shadowpulse-green {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(51, 217, 178, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0);
  }
}
@keyframes shadowpulse-green {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(51, 217, 178, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0);
  }
}
@-webkit-keyframes shadowpulse-red {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(227, 52, 47, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0);
  }
}
@keyframes shadowpulse-red {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(227, 52, 47, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0);
  }
}
@-webkit-keyframes shadowpulse-dark {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0);
  }
}
@keyframes shadowpulse-dark {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(0, 0, 0, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0);
  }
}
@-webkit-keyframes shadowpulse-ggligaen {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(255, 160, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(255, 160, 0, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(255, 160, 0, 0);
  }
}
@keyframes shadowpulse-ggligaen {
  0% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(255, 160, 0, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 5px RGBA(255, 160, 0, 0);
  }
  100% {
    transform: scale(0.99);
    box-shadow: 0 0 0 0 RGBA(255, 160, 0, 0);
  }
}
@-webkit-keyframes glow-primary {
  0% {
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(var(--primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0);
  }
}
@keyframes glow-primary {
  0% {
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(var(--primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(var(--primary-rgb), 0);
  }
}
@-webkit-keyframes glow-green {
  0% {
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(51, 217, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0);
  }
}
@keyframes glow-green {
  0% {
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(51, 217, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(51, 217, 178, 0);
  }
}
@-webkit-keyframes glow-red {
  0% {
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(227, 52, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0);
  }
}
@keyframes glow-red {
  0% {
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(227, 52, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(227, 52, 47, 0);
  }
}
@-webkit-keyframes glow-dark {
  0% {
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0);
  }
}
@keyframes glow-dark {
  0% {
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 15px 5px RGBA(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(0, 0, 0, 0);
  }
}
/*!
 * Bootstrap v4.6.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #3490dc;
  --indigo: #6574cd;
  --purple: #9561e2;
  --pink: #f66d9b;
  --red: #e3342f;
  --orange: #FF5A00;
  --yellow: #ffed4a;
  --green: #40b3a1;
  --teal: #84cdca;
  --cyan: #6cb2eb;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #FF5A00;
  --secondary: #ffdad0;
  --success: #40b3a1;
  --info: #6cb2eb;
  --warning: #ffed4a;
  --danger: #e3342f;
  --light: #f8f9fa;
  --dark: #343a40;
  --secondary-hover: #ffc2b1;
  --tertiary: #ce4c25;
  --quaternary: #ffcbbb;
  --esport: #da2b42;
  --esport2: #ffdfea;
  --ads: #fff7b3;
  --buy: #f8dd1c;
  --betting: #3490dc;
  --discord: #7289da;
  --microsoft: #3d8527;
  --twitter: #1da1f2;
  --facebook: #1877f2;
  --instagram: #f30302;
  --telialigaen: #990ae3;
  --ggligaen: #ffa000;
  --ggligaen2: #1f1c29;
  --bedriftsligaen: #e60c43;
  --bedriftsligaen2: #0c0c13;
  --terminalgreen: #00fb4f;
  --twitch: #6441a5;
  --godpris: #170132;
  --godpris2: #9b56ff;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1640px;
  --font-family-sans-serif: "Inter", Helvetica, Arial, sans-serif;
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #FF5A00;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #b33f00;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.25rem;
}

h2, .h2 {
  font-size: 1.8rem;
}

h3, .h3 {
  font-size: 1.575rem;
}

h4, .h4 {
  font-size: 1.35rem;
}

h5, .h5 {
  font-size: 1.125rem;
}

h6, .h6 {
  font-size: 0.9rem;
}

.lead {
  font-size: 1.125rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.3rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #f66d9b;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
  box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  box-shadow: none;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container, .container--wide,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container, .container--wide {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .container--wide {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .container--wide {
    max-width: 1000px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .container--wide {
    max-width: 1030px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1640px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--text);
}
.table th,
.table td {
  padding: 0.5rem;
  vertical-align: top;
  border-top: 1px solid var(--border-light);
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid var(--border-light);
}
.table tbody + tbody {
  border-top: 2px solid var(--border-light);
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid var(--border-light);
}
.table-bordered th,
.table-bordered td {
  border: 1px solid var(--border-light);
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: var(--text);
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #ffd1b8;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #ffa97a;
}

.table-hover .table-primary:hover {
  background-color: #ffc09f;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #ffc09f;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #fff5f2;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #ffece7;
}

.table-hover .table-secondary:hover {
  background-color: #ffe1d9;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #ffe1d9;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #caeae5;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #9cd7ce;
}

.table-hover .table-success:hover {
  background-color: #b8e3dc;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b8e3dc;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #d6e9f9;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #b3d7f5;
}

.table-hover .table-info:hover {
  background-color: #c0ddf6;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c0ddf6;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #fffacc;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #fff6a1;
}

.table-hover .table-warning:hover {
  background-color: #fff8b3;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #fff8b3;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f7c6c5;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f09593;
}

.table-hover .table-danger:hover {
  background-color: #f4b0af;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f4b0af;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-secondary-hover,
.table-secondary-hover > th,
.table-secondary-hover > td {
  background-color: #ffeee9;
}
.table-secondary-hover th,
.table-secondary-hover td,
.table-secondary-hover thead th,
.table-secondary-hover tbody + tbody {
  border-color: #ffdfd6;
}

.table-hover .table-secondary-hover:hover {
  background-color: #ffdad0;
}
.table-hover .table-secondary-hover:hover > td,
.table-hover .table-secondary-hover:hover > th {
  background-color: #ffdad0;
}

.table-tertiary,
.table-tertiary > th,
.table-tertiary > td {
  background-color: #f1cdc2;
}
.table-tertiary th,
.table-tertiary td,
.table-tertiary thead th,
.table-tertiary tbody + tbody {
  border-color: #e6a28e;
}

.table-hover .table-tertiary:hover {
  background-color: #ecbcad;
}
.table-hover .table-tertiary:hover > td,
.table-hover .table-tertiary:hover > th {
  background-color: #ecbcad;
}

.table-quaternary,
.table-quaternary > th,
.table-quaternary > td {
  background-color: #fff0ec;
}
.table-quaternary th,
.table-quaternary td,
.table-quaternary thead th,
.table-quaternary tbody + tbody {
  border-color: #ffe4dc;
}

.table-hover .table-quaternary:hover {
  background-color: #ffdcd3;
}
.table-hover .table-quaternary:hover > td,
.table-hover .table-quaternary:hover > th {
  background-color: #ffdcd3;
}

.table-esport,
.table-esport > th,
.table-esport > td {
  background-color: #f5c4ca;
}
.table-esport th,
.table-esport td,
.table-esport thead th,
.table-esport tbody + tbody {
  border-color: #ec919d;
}

.table-hover .table-esport:hover {
  background-color: #f1aeb6;
}
.table-hover .table-esport:hover > td,
.table-hover .table-esport:hover > th {
  background-color: #f1aeb6;
}

.table-esport2,
.table-esport2 > th,
.table-esport2 > td {
  background-color: #fff6f9;
}
.table-esport2 th,
.table-esport2 td,
.table-esport2 thead th,
.table-esport2 tbody + tbody {
  border-color: #ffeef4;
}

.table-hover .table-esport2:hover {
  background-color: #ffdde8;
}
.table-hover .table-esport2:hover > td,
.table-hover .table-esport2:hover > th {
  background-color: #ffdde8;
}

.table-ads,
.table-ads > th,
.table-ads > td {
  background-color: #fffdea;
}
.table-ads th,
.table-ads td,
.table-ads thead th,
.table-ads tbody + tbody {
  border-color: #fffbd7;
}

.table-hover .table-ads:hover {
  background-color: #fffbd1;
}
.table-hover .table-ads:hover > td,
.table-hover .table-ads:hover > th {
  background-color: #fffbd1;
}

.table-buy,
.table-buy > th,
.table-buy > td {
  background-color: #fdf5bf;
}
.table-buy th,
.table-buy td,
.table-buy thead th,
.table-buy tbody + tbody {
  border-color: #fbed89;
}

.table-hover .table-buy:hover {
  background-color: #fcf1a6;
}
.table-hover .table-buy:hover > td,
.table-hover .table-buy:hover > th {
  background-color: #fcf1a6;
}

.table-betting,
.table-betting > th,
.table-betting > td {
  background-color: #c6e0f5;
}
.table-betting th,
.table-betting td,
.table-betting thead th,
.table-betting tbody + tbody {
  border-color: #95c5ed;
}

.table-hover .table-betting:hover {
  background-color: #b0d4f1;
}
.table-hover .table-betting:hover > td,
.table-hover .table-betting:hover > th {
  background-color: #b0d4f1;
}

.table-discord,
.table-discord > th,
.table-discord > td {
  background-color: #d8def5;
}
.table-discord th,
.table-discord td,
.table-discord thead th,
.table-discord tbody + tbody {
  border-color: #b6c2ec;
}

.table-hover .table-discord:hover {
  background-color: #c4cdf0;
}
.table-hover .table-discord:hover > td,
.table-hover .table-discord:hover > th {
  background-color: #c4cdf0;
}

.table-microsoft,
.table-microsoft > th,
.table-microsoft > td {
  background-color: #c9ddc3;
}
.table-microsoft th,
.table-microsoft td,
.table-microsoft thead th,
.table-microsoft tbody + tbody {
  border-color: #9ac08f;
}

.table-hover .table-microsoft:hover {
  background-color: #bad4b3;
}
.table-hover .table-microsoft:hover > td,
.table-hover .table-microsoft:hover > th {
  background-color: #bad4b3;
}

.table-twitter,
.table-twitter > th,
.table-twitter > td {
  background-color: #c0e5fb;
}
.table-twitter th,
.table-twitter td,
.table-twitter thead th,
.table-twitter tbody + tbody {
  border-color: #89cef8;
}

.table-hover .table-twitter:hover {
  background-color: #a8dbf9;
}
.table-hover .table-twitter:hover > td,
.table-hover .table-twitter:hover > th {
  background-color: #a8dbf9;
}

.table-facebook,
.table-facebook > th,
.table-facebook > td {
  background-color: #bed9fb;
}
.table-facebook th,
.table-facebook td,
.table-facebook thead th,
.table-facebook tbody + tbody {
  border-color: #87b8f8;
}

.table-hover .table-facebook:hover {
  background-color: #a6cbfa;
}
.table-hover .table-facebook:hover > td,
.table-hover .table-facebook:hover > th {
  background-color: #a6cbfa;
}

.table-instagram,
.table-instagram > th,
.table-instagram > td {
  background-color: #fcb8b8;
}
.table-instagram th,
.table-instagram td,
.table-instagram thead th,
.table-instagram tbody + tbody {
  border-color: #f97c7b;
}

.table-hover .table-instagram:hover {
  background-color: #fba0a0;
}
.table-hover .table-instagram:hover > td,
.table-hover .table-instagram:hover > th {
  background-color: #fba0a0;
}

.table-telialigaen,
.table-telialigaen > th,
.table-telialigaen > td {
  background-color: #e2baf7;
}
.table-telialigaen th,
.table-telialigaen td,
.table-telialigaen thead th,
.table-telialigaen tbody + tbody {
  border-color: #ca80f0;
}

.table-hover .table-telialigaen:hover {
  background-color: #d8a3f4;
}
.table-hover .table-telialigaen:hover > td,
.table-hover .table-telialigaen:hover > th {
  background-color: #d8a3f4;
}

.table-ggligaen,
.table-ggligaen > th,
.table-ggligaen > td {
  background-color: #ffe4b8;
}
.table-ggligaen th,
.table-ggligaen td,
.table-ggligaen thead th,
.table-ggligaen tbody + tbody {
  border-color: #ffce7a;
}

.table-hover .table-ggligaen:hover {
  background-color: #ffda9f;
}
.table-hover .table-ggligaen:hover > td,
.table-hover .table-ggligaen:hover > th {
  background-color: #ffda9f;
}

.table-ggligaen2,
.table-ggligaen2 > th,
.table-ggligaen2 > td {
  background-color: #c0bfc3;
}
.table-ggligaen2 th,
.table-ggligaen2 td,
.table-ggligaen2 thead th,
.table-ggligaen2 tbody + tbody {
  border-color: #8b8990;
}

.table-hover .table-ggligaen2:hover {
  background-color: #b3b2b7;
}
.table-hover .table-ggligaen2:hover > td,
.table-hover .table-ggligaen2:hover > th {
  background-color: #b3b2b7;
}

.table-bedriftsligaen,
.table-bedriftsligaen > th,
.table-bedriftsligaen > td {
  background-color: #f8bbca;
}
.table-bedriftsligaen th,
.table-bedriftsligaen td,
.table-bedriftsligaen thead th,
.table-bedriftsligaen tbody + tbody {
  border-color: #f2819d;
}

.table-hover .table-bedriftsligaen:hover {
  background-color: #f6a4b8;
}
.table-hover .table-bedriftsligaen:hover > td,
.table-hover .table-bedriftsligaen:hover > th {
  background-color: #f6a4b8;
}

.table-bedriftsligaen2,
.table-bedriftsligaen2 > th,
.table-bedriftsligaen2 > td {
  background-color: #bbbbbd;
}
.table-bedriftsligaen2 th,
.table-bedriftsligaen2 td,
.table-bedriftsligaen2 thead th,
.table-bedriftsligaen2 tbody + tbody {
  border-color: #818184;
}

.table-hover .table-bedriftsligaen2:hover {
  background-color: #aeaeb0;
}
.table-hover .table-bedriftsligaen2:hover > td,
.table-hover .table-bedriftsligaen2:hover > th {
  background-color: #aeaeb0;
}

.table-terminalgreen,
.table-terminalgreen > th,
.table-terminalgreen > td {
  background-color: #b8fece;
}
.table-terminalgreen th,
.table-terminalgreen td,
.table-terminalgreen thead th,
.table-terminalgreen tbody + tbody {
  border-color: #7afda3;
}

.table-hover .table-terminalgreen:hover {
  background-color: #9ffebd;
}
.table-hover .table-terminalgreen:hover > td,
.table-hover .table-terminalgreen:hover > th {
  background-color: #9ffebd;
}

.table-twitch,
.table-twitch > th,
.table-twitch > td {
  background-color: #d4cae6;
}
.table-twitch th,
.table-twitch td,
.table-twitch thead th,
.table-twitch tbody + tbody {
  border-color: #ae9cd0;
}

.table-hover .table-twitch:hover {
  background-color: #c6b9de;
}
.table-hover .table-twitch:hover > td,
.table-hover .table-twitch:hover > th {
  background-color: #c6b9de;
}

.table-godpris,
.table-godpris > th,
.table-godpris > td {
  background-color: #beb8c6;
}
.table-godpris th,
.table-godpris td,
.table-godpris thead th,
.table-godpris tbody + tbody {
  border-color: #867b94;
}

.table-hover .table-godpris:hover {
  background-color: #b1aabb;
}
.table-hover .table-godpris:hover > td,
.table-hover .table-godpris:hover > th {
  background-color: #b1aabb;
}

.table-godpris2,
.table-godpris2 > th,
.table-godpris2 > td {
  background-color: #e3d0ff;
}
.table-godpris2 th,
.table-godpris2 td,
.table-godpris2 thead th,
.table-godpris2 tbody + tbody {
  border-color: #cba7ff;
}

.table-hover .table-godpris2:hover {
  background-color: #d4b7ff;
}
.table-hover .table-godpris2:hover > td,
.table-hover .table-godpris2:hover > th {
  background-color: #d4b7ff;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: var(--border-light);
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1639.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.6em + 1rem + 2px);
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--input-bg);
  background-clip: padding-box;
  border: 1px solid var(--border-light);
  border-radius: 0.3rem;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: var(--text);
  background-color: var(--input-bg);
  border-color: var(--border-light);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--text);
}
select.form-control:focus::-ms-value {
  color: var(--text);
  background-color: var(--input-bg);
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.125rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.7875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #40b3a1;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(64, 179, 161, 0.9);
  border-radius: 0.3rem;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #40b3a1;
  padding-right: calc(1.6em + 1rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2340b3a1' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.25rem) center;
  background-size: calc(0.8em + 0.5rem) calc(0.8em + 0.5rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #40b3a1;
  box-shadow: 0 0 0 0.2rem rgba(64, 179, 161, 0.25);
}

.was-validated select.form-control:valid, select.form-control.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.6em + 1rem);
  background-position: top calc(0.4em + 0.25rem) right calc(0.4em + 0.25rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #40b3a1;
  padding-right: calc(0.75em + 2.5rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, var(--input-bg) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2340b3a1' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.5rem) calc(0.8em + 0.5rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #40b3a1;
  box-shadow: 0 0 0 0.2rem rgba(64, 179, 161, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #40b3a1;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #40b3a1;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #40b3a1;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #60c6b6;
  background-color: #60c6b6;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(64, 179, 161, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #40b3a1;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #40b3a1;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #40b3a1;
  box-shadow: 0 0 0 0.2rem rgba(64, 179, 161, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #e3342f;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.7875rem;
  line-height: 1.6;
  color: #fff;
  background-color: rgba(227, 52, 47, 0.9);
  border-radius: 0.3rem;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #e3342f;
  padding-right: calc(1.6em + 1rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.25rem) center;
  background-size: calc(0.8em + 0.5rem) calc(0.8em + 0.5rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated select.form-control:invalid, select.form-control.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.6em + 1rem);
  background-position: top calc(0.4em + 0.25rem) right calc(0.4em + 0.25rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #e3342f;
  padding-right: calc(0.75em + 2.5rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, var(--input-bg) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.8em + 0.5rem) calc(0.8em + 0.5rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #e3342f;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #e3342f;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #e3342f;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e9605c;
  background-color: #e9605c;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #e3342f;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #e3342f;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #e3342f;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, .article__content a[role=button] {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 2px solid transparent;
  padding: 0.5rem 2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  border-radius: 50px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn, .article__content a[role=button] {
    transition: none;
  }
}
.btn:hover, .article__content a[role=button]:hover {
  color: #212529;
  text-decoration: none;
}
.btn:focus, .article__content a[role=button]:focus, .btn.focus, .article__content a.focus[role=button] {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.btn.disabled, .article__content a.disabled[role=button], .btn:disabled, .article__content a[role=button]:disabled {
  opacity: 0.65;
  box-shadow: none;
}
.btn:not(:disabled):not(.disabled), .article__content a[role=button]:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .article__content a[role=button]:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, .article__content a[role=button]:not(:disabled):not(.disabled).active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:not(:disabled):not(.disabled):active:focus, .article__content a[role=button]:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled).active:focus, .article__content a[role=button]:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.25), inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

a.btn.disabled, .article__content a.disabled[role=button],
fieldset:disabled a.btn,
fieldset:disabled .article__content a[role=button],
.article__content fieldset:disabled a[role=button] {
  pointer-events: none;
}

.btn-primary, .article__content a[role=button] {
  color: #fff;
  background-color: #FF5A00;
  border-color: #FF5A00;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-primary:hover, .article__content a[role=button]:hover {
  color: #fff;
  background-color: #d94d00;
  border-color: #cc4800;
}
.btn-primary:focus, .article__content a[role=button]:focus, .btn-primary.focus, .article__content a.focus[role=button] {
  color: #fff;
  background-color: #d94d00;
  border-color: #cc4800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(255, 115, 38, 0.5);
}
.btn-primary.disabled, .article__content a.disabled[role=button], .btn-primary:disabled, .article__content a[role=button]:disabled {
  color: #fff;
  background-color: #FF5A00;
  border-color: #FF5A00;
}
.btn-primary:not(:disabled):not(.disabled):active, .article__content a[role=button]:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .article__content a[role=button]:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, .article__content .show > a.dropdown-toggle[role=button] {
  color: #fff;
  background-color: #cc4800;
  border-color: #bf4400;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .article__content a[role=button]:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .article__content a[role=button]:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus, .article__content .show > a.dropdown-toggle[role=button]:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 115, 38, 0.5);
}

.btn-secondary {
  color: #212529;
  background-color: #ffdad0;
  border-color: #ffdad0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-secondary:hover {
  color: #212529;
  background-color: #ffbcaa;
  border-color: #ffb29d;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #212529;
  background-color: #ffbcaa;
  border-color: #ffb29d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 191, 183, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #212529;
  background-color: #ffdad0;
  border-color: #ffdad0;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #ffb29d;
  border-color: #ffa890;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 191, 183, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #40b3a1;
  border-color: #40b3a1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-success:hover {
  color: #fff;
  background-color: #369788;
  border-color: #338d7f;
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #369788;
  border-color: #338d7f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(93, 190, 175, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #40b3a1;
  border-color: #40b3a1;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #338d7f;
  border-color: #2f8477;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(93, 190, 175, 0.5);
}

.btn-info {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-info:hover {
  color: #fff;
  background-color: #4aa0e6;
  border-color: #3f9ae5;
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #4aa0e6;
  border-color: #3f9ae5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #3f9ae5;
  border-color: #3495e3;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-warning:hover {
  color: #212529;
  background-color: #ffe924;
  border-color: #ffe817;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #ffe924;
  border-color: #ffe817;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffe817;
  border-color: #ffe70a;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-danger:hover {
  color: #fff;
  background-color: #d0211c;
  border-color: #c51f1a;
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #d0211c;
  border-color: #c51f1a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c51f1a;
  border-color: #b91d19;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-secondary-hover {
  color: #212529;
  background-color: #ffc2b1;
  border-color: #ffc2b1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-secondary-hover:hover {
  color: #212529;
  background-color: #ffa48b;
  border-color: #ff9a7e;
}
.btn-secondary-hover:focus, .btn-secondary-hover.focus {
  color: #212529;
  background-color: #ffa48b;
  border-color: #ff9a7e;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 170, 157, 0.5);
}
.btn-secondary-hover.disabled, .btn-secondary-hover:disabled {
  color: #212529;
  background-color: #ffc2b1;
  border-color: #ffc2b1;
}
.btn-secondary-hover:not(:disabled):not(.disabled):active, .btn-secondary-hover:not(:disabled):not(.disabled).active, .show > .btn-secondary-hover.dropdown-toggle {
  color: #212529;
  background-color: #ff9a7e;
  border-color: #ff9071;
}
.btn-secondary-hover:not(:disabled):not(.disabled):active:focus, .btn-secondary-hover:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary-hover.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 170, 157, 0.5);
}

.btn-tertiary {
  color: #fff;
  background-color: #ce4c25;
  border-color: #ce4c25;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-tertiary:hover {
  color: #fff;
  background-color: #ae401f;
  border-color: #a33c1d;
}
.btn-tertiary:focus, .btn-tertiary.focus {
  color: #fff;
  background-color: #ae401f;
  border-color: #a33c1d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(213, 103, 70, 0.5);
}
.btn-tertiary.disabled, .btn-tertiary:disabled {
  color: #fff;
  background-color: #ce4c25;
  border-color: #ce4c25;
}
.btn-tertiary:not(:disabled):not(.disabled):active, .btn-tertiary:not(:disabled):not(.disabled).active, .show > .btn-tertiary.dropdown-toggle {
  color: #fff;
  background-color: #a33c1d;
  border-color: #98381b;
}
.btn-tertiary:not(:disabled):not(.disabled):active:focus, .btn-tertiary:not(:disabled):not(.disabled).active:focus, .show > .btn-tertiary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(213, 103, 70, 0.5);
}

.btn-quaternary {
  color: #212529;
  background-color: #ffcbbb;
  border-color: #ffcbbb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-quaternary:hover {
  color: #212529;
  background-color: #ffae95;
  border-color: #ffa488;
}
.btn-quaternary:focus, .btn-quaternary.focus {
  color: #212529;
  background-color: #ffae95;
  border-color: #ffa488;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 178, 165, 0.5);
}
.btn-quaternary.disabled, .btn-quaternary:disabled {
  color: #212529;
  background-color: #ffcbbb;
  border-color: #ffcbbb;
}
.btn-quaternary:not(:disabled):not(.disabled):active, .btn-quaternary:not(:disabled):not(.disabled).active, .show > .btn-quaternary.dropdown-toggle {
  color: #212529;
  background-color: #ffa488;
  border-color: #ff9a7b;
}
.btn-quaternary:not(:disabled):not(.disabled):active:focus, .btn-quaternary:not(:disabled):not(.disabled).active:focus, .show > .btn-quaternary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 178, 165, 0.5);
}

.btn-esport {
  color: #fff;
  background-color: #da2b42;
  border-color: #da2b42;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-esport:hover {
  color: #fff;
  background-color: #be2136;
  border-color: #b31f33;
}
.btn-esport:focus, .btn-esport.focus {
  color: #fff;
  background-color: #be2136;
  border-color: #b31f33;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(224, 75, 94, 0.5);
}
.btn-esport.disabled, .btn-esport:disabled {
  color: #fff;
  background-color: #da2b42;
  border-color: #da2b42;
}
.btn-esport:not(:disabled):not(.disabled):active, .btn-esport:not(:disabled):not(.disabled).active, .show > .btn-esport.dropdown-toggle {
  color: #fff;
  background-color: #b31f33;
  border-color: #a81d30;
}
.btn-esport:not(:disabled):not(.disabled):active:focus, .btn-esport:not(:disabled):not(.disabled).active:focus, .show > .btn-esport.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(224, 75, 94, 0.5);
}

.btn-esport2 {
  color: #212529;
  background-color: #ffdfea;
  border-color: #ffdfea;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-esport2:hover {
  color: #212529;
  background-color: #ffb9d1;
  border-color: #ffacc9;
}
.btn-esport2:focus, .btn-esport2.focus {
  color: #212529;
  background-color: #ffb9d1;
  border-color: #ffacc9;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 195, 205, 0.5);
}
.btn-esport2.disabled, .btn-esport2:disabled {
  color: #212529;
  background-color: #ffdfea;
  border-color: #ffdfea;
}
.btn-esport2:not(:disabled):not(.disabled):active, .btn-esport2:not(:disabled):not(.disabled).active, .show > .btn-esport2.dropdown-toggle {
  color: #212529;
  background-color: #ffacc9;
  border-color: #ff9fc0;
}
.btn-esport2:not(:disabled):not(.disabled):active:focus, .btn-esport2:not(:disabled):not(.disabled).active:focus, .show > .btn-esport2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 195, 205, 0.5);
}

.btn-ads {
  color: #212529;
  background-color: #fff7b3;
  border-color: #fff7b3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-ads:hover {
  color: #212529;
  background-color: #fff38d;
  border-color: #fff280;
}
.btn-ads:focus, .btn-ads.focus {
  color: #212529;
  background-color: #fff38d;
  border-color: #fff280;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 216, 158, 0.5);
}
.btn-ads.disabled, .btn-ads:disabled {
  color: #212529;
  background-color: #fff7b3;
  border-color: #fff7b3;
}
.btn-ads:not(:disabled):not(.disabled):active, .btn-ads:not(:disabled):not(.disabled).active, .show > .btn-ads.dropdown-toggle {
  color: #212529;
  background-color: #fff280;
  border-color: #fff073;
}
.btn-ads:not(:disabled):not(.disabled):active:focus, .btn-ads:not(:disabled):not(.disabled).active:focus, .show > .btn-ads.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 216, 158, 0.5);
}

.btn-buy {
  color: #212529;
  background-color: #f8dd1c;
  border-color: #f8dd1c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-buy:hover {
  color: #212529;
  background-color: #e7cb07;
  border-color: #dac007;
}
.btn-buy:focus, .btn-buy.focus {
  color: #212529;
  background-color: #e7cb07;
  border-color: #dac007;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(216, 193, 30, 0.5);
}
.btn-buy.disabled, .btn-buy:disabled {
  color: #212529;
  background-color: #f8dd1c;
  border-color: #f8dd1c;
}
.btn-buy:not(:disabled):not(.disabled):active, .btn-buy:not(:disabled):not(.disabled).active, .show > .btn-buy.dropdown-toggle {
  color: #212529;
  background-color: #dac007;
  border-color: #ceb506;
}
.btn-buy:not(:disabled):not(.disabled):active:focus, .btn-buy:not(:disabled):not(.disabled).active:focus, .show > .btn-buy.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(216, 193, 30, 0.5);
}

.btn-betting {
  color: #fff;
  background-color: #3490dc;
  border-color: #3490dc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-betting:hover {
  color: #fff;
  background-color: #227dc7;
  border-color: #2176bd;
}
.btn-betting:focus, .btn-betting.focus {
  color: #fff;
  background-color: #227dc7;
  border-color: #2176bd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
}
.btn-betting.disabled, .btn-betting:disabled {
  color: #fff;
  background-color: #3490dc;
  border-color: #3490dc;
}
.btn-betting:not(:disabled):not(.disabled):active, .btn-betting:not(:disabled):not(.disabled).active, .show > .btn-betting.dropdown-toggle {
  color: #fff;
  background-color: #2176bd;
  border-color: #1f6fb2;
}
.btn-betting:not(:disabled):not(.disabled):active:focus, .btn-betting:not(:disabled):not(.disabled).active:focus, .show > .btn-betting.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
}

.btn-discord {
  color: #fff;
  background-color: #7289da;
  border-color: #7289da;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-discord:hover {
  color: #fff;
  background-color: #5470d2;
  border-color: #4a67cf;
}
.btn-discord:focus, .btn-discord.focus {
  color: #fff;
  background-color: #5470d2;
  border-color: #4a67cf;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(135, 155, 224, 0.5);
}
.btn-discord.disabled, .btn-discord:disabled {
  color: #fff;
  background-color: #7289da;
  border-color: #7289da;
}
.btn-discord:not(:disabled):not(.disabled):active, .btn-discord:not(:disabled):not(.disabled).active, .show > .btn-discord.dropdown-toggle {
  color: #fff;
  background-color: #4a67cf;
  border-color: #405fcd;
}
.btn-discord:not(:disabled):not(.disabled):active:focus, .btn-discord:not(:disabled):not(.disabled).active:focus, .show > .btn-discord.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(135, 155, 224, 0.5);
}

.btn-microsoft {
  color: #fff;
  background-color: #3d8527;
  border-color: #3d8527;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-microsoft:hover {
  color: #fff;
  background-color: #2f671e;
  border-color: #2b5e1b;
}
.btn-microsoft:focus, .btn-microsoft.focus {
  color: #fff;
  background-color: #2f671e;
  border-color: #2b5e1b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(90, 151, 71, 0.5);
}
.btn-microsoft.disabled, .btn-microsoft:disabled {
  color: #fff;
  background-color: #3d8527;
  border-color: #3d8527;
}
.btn-microsoft:not(:disabled):not(.disabled):active, .btn-microsoft:not(:disabled):not(.disabled).active, .show > .btn-microsoft.dropdown-toggle {
  color: #fff;
  background-color: #2b5e1b;
  border-color: #265419;
}
.btn-microsoft:not(:disabled):not(.disabled):active:focus, .btn-microsoft:not(:disabled):not(.disabled).active:focus, .show > .btn-microsoft.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(90, 151, 71, 0.5);
}

.btn-twitter {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-twitter:hover {
  color: #fff;
  background-color: #0d8ddc;
  border-color: #0c85d0;
}
.btn-twitter:focus, .btn-twitter.focus {
  color: #fff;
  background-color: #0d8ddc;
  border-color: #0c85d0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(63, 175, 244, 0.5);
}
.btn-twitter.disabled, .btn-twitter:disabled {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active, .show > .btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #0c85d0;
  border-color: #0b7ec4;
}
.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-twitter.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(63, 175, 244, 0.5);
}

.btn-facebook {
  color: #fff;
  background-color: #1877f2;
  border-color: #1877f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-facebook:hover {
  color: #fff;
  background-color: #0c65d8;
  border-color: #0b5fcc;
}
.btn-facebook:focus, .btn-facebook.focus {
  color: #fff;
  background-color: #0c65d8;
  border-color: #0b5fcc;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(59, 139, 244, 0.5);
}
.btn-facebook.disabled, .btn-facebook:disabled {
  color: #fff;
  background-color: #1877f2;
  border-color: #1877f2;
}
.btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active, .show > .btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #0b5fcc;
  border-color: #0b5abf;
}
.btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-facebook.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(59, 139, 244, 0.5);
}

.btn-instagram {
  color: #fff;
  background-color: #f30302;
  border-color: #f30302;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-instagram:hover {
  color: #fff;
  background-color: #cd0302;
  border-color: #c00202;
}
.btn-instagram:focus, .btn-instagram.focus {
  color: #fff;
  background-color: #cd0302;
  border-color: #c00202;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(245, 41, 40, 0.5);
}
.btn-instagram.disabled, .btn-instagram:disabled {
  color: #fff;
  background-color: #f30302;
  border-color: #f30302;
}
.btn-instagram:not(:disabled):not(.disabled):active, .btn-instagram:not(:disabled):not(.disabled).active, .show > .btn-instagram.dropdown-toggle {
  color: #fff;
  background-color: #c00202;
  border-color: #b40201;
}
.btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, .show > .btn-instagram.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(245, 41, 40, 0.5);
}

.btn-telialigaen {
  color: #fff;
  background-color: #990ae3;
  border-color: #990ae3;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-telialigaen:hover {
  color: #fff;
  background-color: #8008be;
  border-color: #7808b2;
}
.btn-telialigaen:focus, .btn-telialigaen.focus {
  color: #fff;
  background-color: #8008be;
  border-color: #7808b2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(168, 47, 231, 0.5);
}
.btn-telialigaen.disabled, .btn-telialigaen:disabled {
  color: #fff;
  background-color: #990ae3;
  border-color: #990ae3;
}
.btn-telialigaen:not(:disabled):not(.disabled):active, .btn-telialigaen:not(:disabled):not(.disabled).active, .show > .btn-telialigaen.dropdown-toggle {
  color: #fff;
  background-color: #7808b2;
  border-color: #7007a6;
}
.btn-telialigaen:not(:disabled):not(.disabled):active:focus, .btn-telialigaen:not(:disabled):not(.disabled).active:focus, .show > .btn-telialigaen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(168, 47, 231, 0.5);
}

.btn-ggligaen {
  color: #212529;
  background-color: #ffa000;
  border-color: #ffa000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-ggligaen:hover {
  color: #fff;
  background-color: #d98800;
  border-color: #cc8000;
}
.btn-ggligaen:focus, .btn-ggligaen.focus {
  color: #fff;
  background-color: #d98800;
  border-color: #cc8000;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(222, 142, 6, 0.5);
}
.btn-ggligaen.disabled, .btn-ggligaen:disabled {
  color: #212529;
  background-color: #ffa000;
  border-color: #ffa000;
}
.btn-ggligaen:not(:disabled):not(.disabled):active, .btn-ggligaen:not(:disabled):not(.disabled).active, .show > .btn-ggligaen.dropdown-toggle {
  color: #fff;
  background-color: #cc8000;
  border-color: #bf7800;
}
.btn-ggligaen:not(:disabled):not(.disabled):active:focus, .btn-ggligaen:not(:disabled):not(.disabled).active:focus, .show > .btn-ggligaen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(222, 142, 6, 0.5);
}

.btn-ggligaen2 {
  color: #fff;
  background-color: #1f1c29;
  border-color: #1f1c29;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-ggligaen2:hover {
  color: #fff;
  background-color: #0e0c12;
  border-color: #08070b;
}
.btn-ggligaen2:focus, .btn-ggligaen2.focus {
  color: #fff;
  background-color: #0e0c12;
  border-color: #08070b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(65, 62, 73, 0.5);
}
.btn-ggligaen2.disabled, .btn-ggligaen2:disabled {
  color: #fff;
  background-color: #1f1c29;
  border-color: #1f1c29;
}
.btn-ggligaen2:not(:disabled):not(.disabled):active, .btn-ggligaen2:not(:disabled):not(.disabled).active, .show > .btn-ggligaen2.dropdown-toggle {
  color: #fff;
  background-color: #08070b;
  border-color: #020203;
}
.btn-ggligaen2:not(:disabled):not(.disabled):active:focus, .btn-ggligaen2:not(:disabled):not(.disabled).active:focus, .show > .btn-ggligaen2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(65, 62, 73, 0.5);
}

.btn-bedriftsligaen {
  color: #fff;
  background-color: #e60c43;
  border-color: #e60c43;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-bedriftsligaen:hover {
  color: #fff;
  background-color: #c20a38;
  border-color: #b60935;
}
.btn-bedriftsligaen:focus, .btn-bedriftsligaen.focus {
  color: #fff;
  background-color: #c20a38;
  border-color: #b60935;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(234, 48, 95, 0.5);
}
.btn-bedriftsligaen.disabled, .btn-bedriftsligaen:disabled {
  color: #fff;
  background-color: #e60c43;
  border-color: #e60c43;
}
.btn-bedriftsligaen:not(:disabled):not(.disabled):active, .btn-bedriftsligaen:not(:disabled):not(.disabled).active, .show > .btn-bedriftsligaen.dropdown-toggle {
  color: #fff;
  background-color: #b60935;
  border-color: #a90931;
}
.btn-bedriftsligaen:not(:disabled):not(.disabled):active:focus, .btn-bedriftsligaen:not(:disabled):not(.disabled).active:focus, .show > .btn-bedriftsligaen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(234, 48, 95, 0.5);
}

.btn-bedriftsligaen2 {
  color: #fff;
  background-color: #0c0c13;
  border-color: #0c0c13;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-bedriftsligaen2:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-bedriftsligaen2:focus, .btn-bedriftsligaen2.focus {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(48, 48, 54, 0.5);
}
.btn-bedriftsligaen2.disabled, .btn-bedriftsligaen2:disabled {
  color: #fff;
  background-color: #0c0c13;
  border-color: #0c0c13;
}
.btn-bedriftsligaen2:not(:disabled):not(.disabled):active, .btn-bedriftsligaen2:not(:disabled):not(.disabled).active, .show > .btn-bedriftsligaen2.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-bedriftsligaen2:not(:disabled):not(.disabled):active:focus, .btn-bedriftsligaen2:not(:disabled):not(.disabled).active:focus, .show > .btn-bedriftsligaen2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(48, 48, 54, 0.5);
}

.btn-terminalgreen {
  color: #212529;
  background-color: #00fb4f;
  border-color: #00fb4f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-terminalgreen:hover {
  color: #fff;
  background-color: #00d543;
  border-color: #00c83f;
}
.btn-terminalgreen:focus, .btn-terminalgreen.focus {
  color: #fff;
  background-color: #00d543;
  border-color: #00c83f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(5, 219, 73, 0.5);
}
.btn-terminalgreen.disabled, .btn-terminalgreen:disabled {
  color: #212529;
  background-color: #00fb4f;
  border-color: #00fb4f;
}
.btn-terminalgreen:not(:disabled):not(.disabled):active, .btn-terminalgreen:not(:disabled):not(.disabled).active, .show > .btn-terminalgreen.dropdown-toggle {
  color: #fff;
  background-color: #00c83f;
  border-color: #00bb3b;
}
.btn-terminalgreen:not(:disabled):not(.disabled):active:focus, .btn-terminalgreen:not(:disabled):not(.disabled).active:focus, .show > .btn-terminalgreen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(5, 219, 73, 0.5);
}

.btn-twitch {
  color: #fff;
  background-color: #6441a5;
  border-color: #6441a5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-twitch:hover {
  color: #fff;
  background-color: #53368a;
  border-color: #4e3380;
}
.btn-twitch:focus, .btn-twitch.focus {
  color: #fff;
  background-color: #53368a;
  border-color: #4e3380;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(123, 94, 179, 0.5);
}
.btn-twitch.disabled, .btn-twitch:disabled {
  color: #fff;
  background-color: #6441a5;
  border-color: #6441a5;
}
.btn-twitch:not(:disabled):not(.disabled):active, .btn-twitch:not(:disabled):not(.disabled).active, .show > .btn-twitch.dropdown-toggle {
  color: #fff;
  background-color: #4e3380;
  border-color: #482f77;
}
.btn-twitch:not(:disabled):not(.disabled):active:focus, .btn-twitch:not(:disabled):not(.disabled).active:focus, .show > .btn-twitch.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(123, 94, 179, 0.5);
}

.btn-godpris {
  color: #fff;
  background-color: #170132;
  border-color: #170132;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-godpris:hover {
  color: #fff;
  background-color: #06000d;
  border-color: black;
}
.btn-godpris:focus, .btn-godpris.focus {
  color: #fff;
  background-color: #06000d;
  border-color: black;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(58, 39, 81, 0.5);
}
.btn-godpris.disabled, .btn-godpris:disabled {
  color: #fff;
  background-color: #170132;
  border-color: #170132;
}
.btn-godpris:not(:disabled):not(.disabled):active, .btn-godpris:not(:disabled):not(.disabled).active, .show > .btn-godpris.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.btn-godpris:not(:disabled):not(.disabled):active:focus, .btn-godpris:not(:disabled):not(.disabled).active:focus, .show > .btn-godpris.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(58, 39, 81, 0.5);
}

.btn-godpris2 {
  color: #fff;
  background-color: #9b56ff;
  border-color: #9b56ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-godpris2:hover {
  color: #fff;
  background-color: #8430ff;
  border-color: #7d23ff;
}
.btn-godpris2:focus, .btn-godpris2.focus {
  color: #fff;
  background-color: #8430ff;
  border-color: #7d23ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(170, 111, 255, 0.5);
}
.btn-godpris2.disabled, .btn-godpris2:disabled {
  color: #fff;
  background-color: #9b56ff;
  border-color: #9b56ff;
}
.btn-godpris2:not(:disabled):not(.disabled):active, .btn-godpris2:not(:disabled):not(.disabled).active, .show > .btn-godpris2.dropdown-toggle {
  color: #fff;
  background-color: #7d23ff;
  border-color: #7516ff;
}
.btn-godpris2:not(:disabled):not(.disabled):active:focus, .btn-godpris2:not(:disabled):not(.disabled).active:focus, .show > .btn-godpris2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(170, 111, 255, 0.5);
}

.btn-outline-primary {
  color: #FF5A00;
  border-color: #FF5A00;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #FF5A00;
  border-color: #FF5A00;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #FF5A00;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #FF5A00;
  border-color: #FF5A00;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 90, 0, 0.5);
}

.btn-outline-secondary {
  color: #ffdad0;
  border-color: #ffdad0;
}
.btn-outline-secondary:hover {
  color: #212529;
  background-color: #ffdad0;
  border-color: #ffdad0;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 218, 208, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #ffdad0;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #ffdad0;
  border-color: #ffdad0;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 218, 208, 0.5);
}

.btn-outline-success {
  color: #40b3a1;
  border-color: #40b3a1;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #40b3a1;
  border-color: #40b3a1;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(64, 179, 161, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #40b3a1;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #40b3a1;
  border-color: #40b3a1;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(64, 179, 161, 0.5);
}

.btn-outline-info {
  color: #6cb2eb;
  border-color: #6cb2eb;
}
.btn-outline-info:hover {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #6cb2eb;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #212529;
  background-color: #6cb2eb;
  border-color: #6cb2eb;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}

.btn-outline-warning {
  color: #ffed4a;
  border-color: #ffed4a;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffed4a;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffed4a;
  border-color: #ffed4a;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}

.btn-outline-danger {
  color: #e3342f;
  border-color: #e3342f;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #e3342f;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #e3342f;
  border-color: #e3342f;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-secondary-hover {
  color: #ffc2b1;
  border-color: #ffc2b1;
}
.btn-outline-secondary-hover:hover {
  color: #212529;
  background-color: #ffc2b1;
  border-color: #ffc2b1;
}
.btn-outline-secondary-hover:focus, .btn-outline-secondary-hover.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 194, 177, 0.5);
}
.btn-outline-secondary-hover.disabled, .btn-outline-secondary-hover:disabled {
  color: #ffc2b1;
  background-color: transparent;
}
.btn-outline-secondary-hover:not(:disabled):not(.disabled):active, .btn-outline-secondary-hover:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary-hover.dropdown-toggle {
  color: #212529;
  background-color: #ffc2b1;
  border-color: #ffc2b1;
}
.btn-outline-secondary-hover:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary-hover:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary-hover.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 194, 177, 0.5);
}

.btn-outline-tertiary {
  color: #ce4c25;
  border-color: #ce4c25;
}
.btn-outline-tertiary:hover {
  color: #fff;
  background-color: #ce4c25;
  border-color: #ce4c25;
}
.btn-outline-tertiary:focus, .btn-outline-tertiary.focus {
  box-shadow: 0 0 0 0.2rem rgba(206, 76, 37, 0.5);
}
.btn-outline-tertiary.disabled, .btn-outline-tertiary:disabled {
  color: #ce4c25;
  background-color: transparent;
}
.btn-outline-tertiary:not(:disabled):not(.disabled):active, .btn-outline-tertiary:not(:disabled):not(.disabled).active, .show > .btn-outline-tertiary.dropdown-toggle {
  color: #fff;
  background-color: #ce4c25;
  border-color: #ce4c25;
}
.btn-outline-tertiary:not(:disabled):not(.disabled):active:focus, .btn-outline-tertiary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-tertiary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(206, 76, 37, 0.5);
}

.btn-outline-quaternary {
  color: #ffcbbb;
  border-color: #ffcbbb;
}
.btn-outline-quaternary:hover {
  color: #212529;
  background-color: #ffcbbb;
  border-color: #ffcbbb;
}
.btn-outline-quaternary:focus, .btn-outline-quaternary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 203, 187, 0.5);
}
.btn-outline-quaternary.disabled, .btn-outline-quaternary:disabled {
  color: #ffcbbb;
  background-color: transparent;
}
.btn-outline-quaternary:not(:disabled):not(.disabled):active, .btn-outline-quaternary:not(:disabled):not(.disabled).active, .show > .btn-outline-quaternary.dropdown-toggle {
  color: #212529;
  background-color: #ffcbbb;
  border-color: #ffcbbb;
}
.btn-outline-quaternary:not(:disabled):not(.disabled):active:focus, .btn-outline-quaternary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-quaternary.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 203, 187, 0.5);
}

.btn-outline-esport {
  color: #da2b42;
  border-color: #da2b42;
}
.btn-outline-esport:hover {
  color: #fff;
  background-color: #da2b42;
  border-color: #da2b42;
}
.btn-outline-esport:focus, .btn-outline-esport.focus {
  box-shadow: 0 0 0 0.2rem rgba(218, 43, 66, 0.5);
}
.btn-outline-esport.disabled, .btn-outline-esport:disabled {
  color: #da2b42;
  background-color: transparent;
}
.btn-outline-esport:not(:disabled):not(.disabled):active, .btn-outline-esport:not(:disabled):not(.disabled).active, .show > .btn-outline-esport.dropdown-toggle {
  color: #fff;
  background-color: #da2b42;
  border-color: #da2b42;
}
.btn-outline-esport:not(:disabled):not(.disabled):active:focus, .btn-outline-esport:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-esport.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(218, 43, 66, 0.5);
}

.btn-outline-esport2 {
  color: #ffdfea;
  border-color: #ffdfea;
}
.btn-outline-esport2:hover {
  color: #212529;
  background-color: #ffdfea;
  border-color: #ffdfea;
}
.btn-outline-esport2:focus, .btn-outline-esport2.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 223, 234, 0.5);
}
.btn-outline-esport2.disabled, .btn-outline-esport2:disabled {
  color: #ffdfea;
  background-color: transparent;
}
.btn-outline-esport2:not(:disabled):not(.disabled):active, .btn-outline-esport2:not(:disabled):not(.disabled).active, .show > .btn-outline-esport2.dropdown-toggle {
  color: #212529;
  background-color: #ffdfea;
  border-color: #ffdfea;
}
.btn-outline-esport2:not(:disabled):not(.disabled):active:focus, .btn-outline-esport2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-esport2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 223, 234, 0.5);
}

.btn-outline-ads {
  color: #fff7b3;
  border-color: #fff7b3;
}
.btn-outline-ads:hover {
  color: #212529;
  background-color: #fff7b3;
  border-color: #fff7b3;
}
.btn-outline-ads:focus, .btn-outline-ads.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 247, 179, 0.5);
}
.btn-outline-ads.disabled, .btn-outline-ads:disabled {
  color: #fff7b3;
  background-color: transparent;
}
.btn-outline-ads:not(:disabled):not(.disabled):active, .btn-outline-ads:not(:disabled):not(.disabled).active, .show > .btn-outline-ads.dropdown-toggle {
  color: #212529;
  background-color: #fff7b3;
  border-color: #fff7b3;
}
.btn-outline-ads:not(:disabled):not(.disabled):active:focus, .btn-outline-ads:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-ads.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 247, 179, 0.5);
}

.btn-outline-buy {
  color: #f8dd1c;
  border-color: #f8dd1c;
}
.btn-outline-buy:hover {
  color: #212529;
  background-color: #f8dd1c;
  border-color: #f8dd1c;
}
.btn-outline-buy:focus, .btn-outline-buy.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 221, 28, 0.5);
}
.btn-outline-buy.disabled, .btn-outline-buy:disabled {
  color: #f8dd1c;
  background-color: transparent;
}
.btn-outline-buy:not(:disabled):not(.disabled):active, .btn-outline-buy:not(:disabled):not(.disabled).active, .show > .btn-outline-buy.dropdown-toggle {
  color: #212529;
  background-color: #f8dd1c;
  border-color: #f8dd1c;
}
.btn-outline-buy:not(:disabled):not(.disabled):active:focus, .btn-outline-buy:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-buy.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(248, 221, 28, 0.5);
}

.btn-outline-betting {
  color: #3490dc;
  border-color: #3490dc;
}
.btn-outline-betting:hover {
  color: #fff;
  background-color: #3490dc;
  border-color: #3490dc;
}
.btn-outline-betting:focus, .btn-outline-betting.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
}
.btn-outline-betting.disabled, .btn-outline-betting:disabled {
  color: #3490dc;
  background-color: transparent;
}
.btn-outline-betting:not(:disabled):not(.disabled):active, .btn-outline-betting:not(:disabled):not(.disabled).active, .show > .btn-outline-betting.dropdown-toggle {
  color: #fff;
  background-color: #3490dc;
  border-color: #3490dc;
}
.btn-outline-betting:not(:disabled):not(.disabled):active:focus, .btn-outline-betting:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-betting.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
}

.btn-outline-discord {
  color: #7289da;
  border-color: #7289da;
}
.btn-outline-discord:hover {
  color: #fff;
  background-color: #7289da;
  border-color: #7289da;
}
.btn-outline-discord:focus, .btn-outline-discord.focus {
  box-shadow: 0 0 0 0.2rem rgba(114, 137, 218, 0.5);
}
.btn-outline-discord.disabled, .btn-outline-discord:disabled {
  color: #7289da;
  background-color: transparent;
}
.btn-outline-discord:not(:disabled):not(.disabled):active, .btn-outline-discord:not(:disabled):not(.disabled).active, .show > .btn-outline-discord.dropdown-toggle {
  color: #fff;
  background-color: #7289da;
  border-color: #7289da;
}
.btn-outline-discord:not(:disabled):not(.disabled):active:focus, .btn-outline-discord:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-discord.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(114, 137, 218, 0.5);
}

.btn-outline-microsoft {
  color: #3d8527;
  border-color: #3d8527;
}
.btn-outline-microsoft:hover {
  color: #fff;
  background-color: #3d8527;
  border-color: #3d8527;
}
.btn-outline-microsoft:focus, .btn-outline-microsoft.focus {
  box-shadow: 0 0 0 0.2rem rgba(61, 133, 39, 0.5);
}
.btn-outline-microsoft.disabled, .btn-outline-microsoft:disabled {
  color: #3d8527;
  background-color: transparent;
}
.btn-outline-microsoft:not(:disabled):not(.disabled):active, .btn-outline-microsoft:not(:disabled):not(.disabled).active, .show > .btn-outline-microsoft.dropdown-toggle {
  color: #fff;
  background-color: #3d8527;
  border-color: #3d8527;
}
.btn-outline-microsoft:not(:disabled):not(.disabled):active:focus, .btn-outline-microsoft:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-microsoft.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(61, 133, 39, 0.5);
}

.btn-outline-twitter {
  color: #1da1f2;
  border-color: #1da1f2;
}
.btn-outline-twitter:hover {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.btn-outline-twitter:focus, .btn-outline-twitter.focus {
  box-shadow: 0 0 0 0.2rem rgba(29, 161, 242, 0.5);
}
.btn-outline-twitter.disabled, .btn-outline-twitter:disabled {
  color: #1da1f2;
  background-color: transparent;
}
.btn-outline-twitter:not(:disabled):not(.disabled):active, .btn-outline-twitter:not(:disabled):not(.disabled).active, .show > .btn-outline-twitter.dropdown-toggle {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.btn-outline-twitter:not(:disabled):not(.disabled):active:focus, .btn-outline-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-twitter.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(29, 161, 242, 0.5);
}

.btn-outline-facebook {
  color: #1877f2;
  border-color: #1877f2;
}
.btn-outline-facebook:hover {
  color: #fff;
  background-color: #1877f2;
  border-color: #1877f2;
}
.btn-outline-facebook:focus, .btn-outline-facebook.focus {
  box-shadow: 0 0 0 0.2rem rgba(24, 119, 242, 0.5);
}
.btn-outline-facebook.disabled, .btn-outline-facebook:disabled {
  color: #1877f2;
  background-color: transparent;
}
.btn-outline-facebook:not(:disabled):not(.disabled):active, .btn-outline-facebook:not(:disabled):not(.disabled).active, .show > .btn-outline-facebook.dropdown-toggle {
  color: #fff;
  background-color: #1877f2;
  border-color: #1877f2;
}
.btn-outline-facebook:not(:disabled):not(.disabled):active:focus, .btn-outline-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-facebook.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(24, 119, 242, 0.5);
}

.btn-outline-instagram {
  color: #f30302;
  border-color: #f30302;
}
.btn-outline-instagram:hover {
  color: #fff;
  background-color: #f30302;
  border-color: #f30302;
}
.btn-outline-instagram:focus, .btn-outline-instagram.focus {
  box-shadow: 0 0 0 0.2rem rgba(243, 3, 2, 0.5);
}
.btn-outline-instagram.disabled, .btn-outline-instagram:disabled {
  color: #f30302;
  background-color: transparent;
}
.btn-outline-instagram:not(:disabled):not(.disabled):active, .btn-outline-instagram:not(:disabled):not(.disabled).active, .show > .btn-outline-instagram.dropdown-toggle {
  color: #fff;
  background-color: #f30302;
  border-color: #f30302;
}
.btn-outline-instagram:not(:disabled):not(.disabled):active:focus, .btn-outline-instagram:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-instagram.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(243, 3, 2, 0.5);
}

.btn-outline-telialigaen {
  color: #990ae3;
  border-color: #990ae3;
}
.btn-outline-telialigaen:hover {
  color: #fff;
  background-color: #990ae3;
  border-color: #990ae3;
}
.btn-outline-telialigaen:focus, .btn-outline-telialigaen.focus {
  box-shadow: 0 0 0 0.2rem rgba(153, 10, 227, 0.5);
}
.btn-outline-telialigaen.disabled, .btn-outline-telialigaen:disabled {
  color: #990ae3;
  background-color: transparent;
}
.btn-outline-telialigaen:not(:disabled):not(.disabled):active, .btn-outline-telialigaen:not(:disabled):not(.disabled).active, .show > .btn-outline-telialigaen.dropdown-toggle {
  color: #fff;
  background-color: #990ae3;
  border-color: #990ae3;
}
.btn-outline-telialigaen:not(:disabled):not(.disabled):active:focus, .btn-outline-telialigaen:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-telialigaen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(153, 10, 227, 0.5);
}

.btn-outline-ggligaen {
  color: #ffa000;
  border-color: #ffa000;
}
.btn-outline-ggligaen:hover {
  color: #212529;
  background-color: #ffa000;
  border-color: #ffa000;
}
.btn-outline-ggligaen:focus, .btn-outline-ggligaen.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 160, 0, 0.5);
}
.btn-outline-ggligaen.disabled, .btn-outline-ggligaen:disabled {
  color: #ffa000;
  background-color: transparent;
}
.btn-outline-ggligaen:not(:disabled):not(.disabled):active, .btn-outline-ggligaen:not(:disabled):not(.disabled).active, .show > .btn-outline-ggligaen.dropdown-toggle {
  color: #212529;
  background-color: #ffa000;
  border-color: #ffa000;
}
.btn-outline-ggligaen:not(:disabled):not(.disabled):active:focus, .btn-outline-ggligaen:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-ggligaen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(255, 160, 0, 0.5);
}

.btn-outline-ggligaen2 {
  color: #1f1c29;
  border-color: #1f1c29;
}
.btn-outline-ggligaen2:hover {
  color: #fff;
  background-color: #1f1c29;
  border-color: #1f1c29;
}
.btn-outline-ggligaen2:focus, .btn-outline-ggligaen2.focus {
  box-shadow: 0 0 0 0.2rem rgba(31, 28, 41, 0.5);
}
.btn-outline-ggligaen2.disabled, .btn-outline-ggligaen2:disabled {
  color: #1f1c29;
  background-color: transparent;
}
.btn-outline-ggligaen2:not(:disabled):not(.disabled):active, .btn-outline-ggligaen2:not(:disabled):not(.disabled).active, .show > .btn-outline-ggligaen2.dropdown-toggle {
  color: #fff;
  background-color: #1f1c29;
  border-color: #1f1c29;
}
.btn-outline-ggligaen2:not(:disabled):not(.disabled):active:focus, .btn-outline-ggligaen2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-ggligaen2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(31, 28, 41, 0.5);
}

.btn-outline-bedriftsligaen {
  color: #e60c43;
  border-color: #e60c43;
}
.btn-outline-bedriftsligaen:hover {
  color: #fff;
  background-color: #e60c43;
  border-color: #e60c43;
}
.btn-outline-bedriftsligaen:focus, .btn-outline-bedriftsligaen.focus {
  box-shadow: 0 0 0 0.2rem rgba(230, 12, 67, 0.5);
}
.btn-outline-bedriftsligaen.disabled, .btn-outline-bedriftsligaen:disabled {
  color: #e60c43;
  background-color: transparent;
}
.btn-outline-bedriftsligaen:not(:disabled):not(.disabled):active, .btn-outline-bedriftsligaen:not(:disabled):not(.disabled).active, .show > .btn-outline-bedriftsligaen.dropdown-toggle {
  color: #fff;
  background-color: #e60c43;
  border-color: #e60c43;
}
.btn-outline-bedriftsligaen:not(:disabled):not(.disabled):active:focus, .btn-outline-bedriftsligaen:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-bedriftsligaen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(230, 12, 67, 0.5);
}

.btn-outline-bedriftsligaen2 {
  color: #0c0c13;
  border-color: #0c0c13;
}
.btn-outline-bedriftsligaen2:hover {
  color: #fff;
  background-color: #0c0c13;
  border-color: #0c0c13;
}
.btn-outline-bedriftsligaen2:focus, .btn-outline-bedriftsligaen2.focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 12, 19, 0.5);
}
.btn-outline-bedriftsligaen2.disabled, .btn-outline-bedriftsligaen2:disabled {
  color: #0c0c13;
  background-color: transparent;
}
.btn-outline-bedriftsligaen2:not(:disabled):not(.disabled):active, .btn-outline-bedriftsligaen2:not(:disabled):not(.disabled).active, .show > .btn-outline-bedriftsligaen2.dropdown-toggle {
  color: #fff;
  background-color: #0c0c13;
  border-color: #0c0c13;
}
.btn-outline-bedriftsligaen2:not(:disabled):not(.disabled):active:focus, .btn-outline-bedriftsligaen2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-bedriftsligaen2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(12, 12, 19, 0.5);
}

.btn-outline-terminalgreen {
  color: #00fb4f;
  border-color: #00fb4f;
}
.btn-outline-terminalgreen:hover {
  color: #212529;
  background-color: #00fb4f;
  border-color: #00fb4f;
}
.btn-outline-terminalgreen:focus, .btn-outline-terminalgreen.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 251, 79, 0.5);
}
.btn-outline-terminalgreen.disabled, .btn-outline-terminalgreen:disabled {
  color: #00fb4f;
  background-color: transparent;
}
.btn-outline-terminalgreen:not(:disabled):not(.disabled):active, .btn-outline-terminalgreen:not(:disabled):not(.disabled).active, .show > .btn-outline-terminalgreen.dropdown-toggle {
  color: #212529;
  background-color: #00fb4f;
  border-color: #00fb4f;
}
.btn-outline-terminalgreen:not(:disabled):not(.disabled):active:focus, .btn-outline-terminalgreen:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-terminalgreen.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(0, 251, 79, 0.5);
}

.btn-outline-twitch {
  color: #6441a5;
  border-color: #6441a5;
}
.btn-outline-twitch:hover {
  color: #fff;
  background-color: #6441a5;
  border-color: #6441a5;
}
.btn-outline-twitch:focus, .btn-outline-twitch.focus {
  box-shadow: 0 0 0 0.2rem rgba(100, 65, 165, 0.5);
}
.btn-outline-twitch.disabled, .btn-outline-twitch:disabled {
  color: #6441a5;
  background-color: transparent;
}
.btn-outline-twitch:not(:disabled):not(.disabled):active, .btn-outline-twitch:not(:disabled):not(.disabled).active, .show > .btn-outline-twitch.dropdown-toggle {
  color: #fff;
  background-color: #6441a5;
  border-color: #6441a5;
}
.btn-outline-twitch:not(:disabled):not(.disabled):active:focus, .btn-outline-twitch:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-twitch.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(100, 65, 165, 0.5);
}

.btn-outline-godpris {
  color: #170132;
  border-color: #170132;
}
.btn-outline-godpris:hover {
  color: #fff;
  background-color: #170132;
  border-color: #170132;
}
.btn-outline-godpris:focus, .btn-outline-godpris.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 1, 50, 0.5);
}
.btn-outline-godpris.disabled, .btn-outline-godpris:disabled {
  color: #170132;
  background-color: transparent;
}
.btn-outline-godpris:not(:disabled):not(.disabled):active, .btn-outline-godpris:not(:disabled):not(.disabled).active, .show > .btn-outline-godpris.dropdown-toggle {
  color: #fff;
  background-color: #170132;
  border-color: #170132;
}
.btn-outline-godpris:not(:disabled):not(.disabled):active:focus, .btn-outline-godpris:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-godpris.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(23, 1, 50, 0.5);
}

.btn-outline-godpris2 {
  color: #9b56ff;
  border-color: #9b56ff;
}
.btn-outline-godpris2:hover {
  color: #fff;
  background-color: #9b56ff;
  border-color: #9b56ff;
}
.btn-outline-godpris2:focus, .btn-outline-godpris2.focus {
  box-shadow: 0 0 0 0.2rem rgba(155, 86, 255, 0.5);
}
.btn-outline-godpris2.disabled, .btn-outline-godpris2:disabled {
  color: #9b56ff;
  background-color: transparent;
}
.btn-outline-godpris2:not(:disabled):not(.disabled):active, .btn-outline-godpris2:not(:disabled):not(.disabled).active, .show > .btn-outline-godpris2.dropdown-toggle {
  color: #fff;
  background-color: #9b56ff;
  border-color: #9b56ff;
}
.btn-outline-godpris2:not(:disabled):not(.disabled):active:focus, .btn-outline-godpris2:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-godpris2.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.2rem rgba(155, 86, 255, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #FF5A00;
  text-decoration: none;
}
.btn-link:hover {
  color: #b33f00;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .article__content .btn-group-lg > a[role=button] {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, .article__content .btn-group-sm > a[role=button] {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.9rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.3rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1640px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #FF5A00;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.7875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .article__content .btn-group > a[role=button],
.btn-group-vertical > .btn,
.article__content .btn-group-vertical > a[role=button] {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover, .article__content .btn-group > a[role=button]:hover,
.btn-group-vertical > .btn:hover,
.article__content .btn-group-vertical > a[role=button]:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .article__content .btn-group > a[role=button]:focus, .btn-group > .btn:active, .article__content .btn-group > a[role=button]:active, .btn-group > .btn.active, .article__content .btn-group > a.active[role=button],
.btn-group-vertical > .btn:focus,
.article__content .btn-group-vertical > a[role=button]:focus,
.btn-group-vertical > .btn:active,
.article__content .btn-group-vertical > a[role=button]:active,
.btn-group-vertical > .btn.active,
.article__content .btn-group-vertical > a.active[role=button] {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .article__content .btn-group > a[role=button]:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -2px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .article__content .btn-group > a[role=button]:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.article__content .btn-group > .btn-group:not(:last-child) > a[role=button] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child), .article__content .btn-group > a[role=button]:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.article__content .btn-group > .btn-group:not(:first-child) > a[role=button] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .article__content .btn-group-sm > a[role=button] + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .article__content .btn-group-lg > a[role=button] + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group.show .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.show .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn, .article__content .btn-group-vertical > a[role=button],
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .article__content .btn-group-vertical > a[role=button]:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -2px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .article__content .btn-group-vertical > a[role=button]:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.article__content .btn-group-vertical > .btn-group:not(:last-child) > a[role=button] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child), .article__content .btn-group-vertical > a[role=button]:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.article__content .btn-group-vertical > .btn-group:not(:first-child) > a[role=button] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .article__content .btn-group-toggle > a[role=button],
.btn-group-toggle > .btn-group > .btn,
.article__content .btn-group-toggle > .btn-group > a[role=button] {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], .article__content .btn-group-toggle > a[role=button] input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.article__content .btn-group-toggle > a[role=button] input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend .article__content a[role=button], .article__content .input-group-prepend a[role=button],
.input-group-append .btn,
.input-group-append .article__content a[role=button],
.article__content .input-group-append a[role=button] {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend .article__content a[role=button]:focus, .article__content .input-group-prepend a[role=button]:focus,
.input-group-append .btn:focus,
.input-group-append .article__content a[role=button]:focus,
.article__content .input-group-append a[role=button]:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend .article__content a[role=button] + .btn, .article__content .input-group-prepend a[role=button] + .btn, .input-group-prepend .article__content .btn + a[role=button], .article__content .input-group-prepend .btn + a[role=button], .input-group-prepend .article__content a[role=button] + a[role=button], .article__content .input-group-prepend a[role=button] + a[role=button],
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .article__content a[role=button] + .input-group-text,
.article__content .input-group-prepend a[role=button] + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .article__content .input-group-text + a[role=button],
.article__content .input-group-prepend .input-group-text + a[role=button],
.input-group-append .btn + .btn,
.input-group-append .article__content a[role=button] + .btn,
.article__content .input-group-append a[role=button] + .btn,
.input-group-append .article__content .btn + a[role=button],
.article__content .input-group-append .btn + a[role=button],
.input-group-append .article__content a[role=button] + a[role=button],
.article__content .input-group-append a[role=button] + a[role=button],
.input-group-append .btn + .input-group-text,
.input-group-append .article__content a[role=button] + .input-group-text,
.article__content .input-group-append a[role=button] + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .article__content .input-group-text + a[role=button],
.article__content .input-group-append .input-group-text + a[role=button] {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid var(--border-light);
  border-radius: 0.3rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.article__content .input-group-lg > .input-group-prepend > a[role=button],
.input-group-lg > .input-group-append > .btn,
.article__content .input-group-lg > .input-group-append > a[role=button] {
  padding: 0.5rem 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.article__content .input-group-sm > .input-group-prepend > a[role=button],
.input-group-sm > .input-group-append > .btn,
.article__content .input-group-sm > .input-group-append > a[role=button] {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn, .article__content .input-group > .input-group-prepend > a[role=button],
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.article__content .input-group:not(.has-validation) > .input-group-append:not(:last-child) > a[role=button],
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
.article__content .input-group.has-validation > .input-group-append:nth-last-child(n+3) > a[role=button],
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.article__content .input-group > .input-group-append:last-child > a[role=button]:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .article__content .input-group > .input-group-append > a[role=button],
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.article__content .input-group > .input-group-prepend:not(:first-child) > a[role=button],
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.article__content .input-group > .input-group-prepend:first-child > a[role=button]:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.44rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.22rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #FF5A00;
  background-color: #FF5A00;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--border-light);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #ffceb3;
  border-color: #ffceb3;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.22rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: var(--input-bg);
  border: #adb5bd solid 1px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.custom-control-label::after {
  position: absolute;
  top: 0.22rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.3rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #FF5A00;
  background-color: #FF5A00;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 90, 0, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(255, 90, 0, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 90, 0, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.22rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: var(--input-bg);
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(255, 90, 0, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.6em + 1rem + 2px);
  padding: 0.5rem 1.75rem 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  vertical-align: middle;
  background: var(--input-bg) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid var(--border-light);
  border-radius: 0.3rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: var(--border-light);
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.custom-select:focus::-ms-value {
  color: var(--text);
  background-color: var(--input-bg);
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--text);
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.7875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.125rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.6em + 1rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.6em + 1rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: var(--border-light);
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.6em + 1rem + 2px);
  padding: 0.5rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--input-bg);
  border: 1px solid var(--border-light);
  border-radius: 0.3rem;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.6em + 1rem);
  padding: 0.5rem 0.75rem;
  line-height: 1.6;
  color: var(--text);
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.3rem 0.3rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #FF5A00;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #ffceb3;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #FF5A00;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #ffceb3;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #FF5A00;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #ffceb3;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.3rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #FF5A00;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container, .navbar .container--wide,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
  margin-right: 1rem;
  font-size: 1.125rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.125rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container, .navbar-expand-sm > .container--wide,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container, .navbar-expand-sm > .container--wide,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container, .navbar-expand-md > .container--wide,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container, .navbar-expand-md > .container--wide,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .container--wide,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container, .navbar-expand-lg > .container--wide,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container, .navbar-expand-xl > .container--wide,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container, .navbar-expand-xl > .container--wide,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1639.98px) {
  .navbar-expand-xxl > .container, .navbar-expand-xxl > .container--wide,
.navbar-expand-xxl > .container-fluid,
.navbar-expand-xxl > .container-sm,
.navbar-expand-xxl > .container-md,
.navbar-expand-xxl > .container-lg,
.navbar-expand-xxl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1640px) {
  .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl > .container, .navbar-expand-xxl > .container--wide,
.navbar-expand-xxl > .container-fluid,
.navbar-expand-xxl > .container-sm,
.navbar-expand-xxl > .container-md,
.navbar-expand-xxl > .container-lg,
.navbar-expand-xxl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container, .navbar-expand > .container--wide,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container, .navbar-expand > .container--wide,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.3rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.3rem - 1px) calc(0.3rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.3rem - 1px) calc(0.3rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.3rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.3rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: 0;
  line-height: 1.25;
  color: #FF5A00;
  background-color: var(--body);
  border: 0 solid var(--border-dark);
}
.page-link:hover {
  z-index: 2;
  color: #b33f00;
  text-decoration: none;
  background-color: transparent;
  border-color: var(--border-dark);
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: var(--text);
  background-color: transparent;
  border-color: var(--border-dark);
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: transparent;
  border-color: var(--border-dark);
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.7875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.3rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge, .article__content a[role=button] .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #FF5A00;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #cc4800;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.5);
}

.badge-secondary {
  color: #212529;
  background-color: #ffdad0;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #212529;
  background-color: #ffb29d;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 218, 208, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #40b3a1;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #338d7f;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(64, 179, 161, 0.5);
}

.badge-info {
  color: #212529;
  background-color: #6cb2eb;
}
a.badge-info:hover, a.badge-info:focus {
  color: #212529;
  background-color: #3f9ae5;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffed4a;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #ffe817;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #e3342f;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #c51f1a;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.badge-secondary-hover {
  color: #212529;
  background-color: #ffc2b1;
}
a.badge-secondary-hover:hover, a.badge-secondary-hover:focus {
  color: #212529;
  background-color: #ff9a7e;
}
a.badge-secondary-hover:focus, a.badge-secondary-hover.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 194, 177, 0.5);
}

.badge-tertiary {
  color: #fff;
  background-color: #ce4c25;
}
a.badge-tertiary:hover, a.badge-tertiary:focus {
  color: #fff;
  background-color: #a33c1d;
}
a.badge-tertiary:focus, a.badge-tertiary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(206, 76, 37, 0.5);
}

.badge-quaternary {
  color: #212529;
  background-color: #ffcbbb;
}
a.badge-quaternary:hover, a.badge-quaternary:focus {
  color: #212529;
  background-color: #ffa488;
}
a.badge-quaternary:focus, a.badge-quaternary.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 203, 187, 0.5);
}

.badge-esport {
  color: #fff;
  background-color: #da2b42;
}
a.badge-esport:hover, a.badge-esport:focus {
  color: #fff;
  background-color: #b31f33;
}
a.badge-esport:focus, a.badge-esport.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(218, 43, 66, 0.5);
}

.badge-esport2 {
  color: #212529;
  background-color: #ffdfea;
}
a.badge-esport2:hover, a.badge-esport2:focus {
  color: #212529;
  background-color: #ffacc9;
}
a.badge-esport2:focus, a.badge-esport2.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 223, 234, 0.5);
}

.badge-ads {
  color: #212529;
  background-color: #fff7b3;
}
a.badge-ads:hover, a.badge-ads:focus {
  color: #212529;
  background-color: #fff280;
}
a.badge-ads:focus, a.badge-ads.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 247, 179, 0.5);
}

.badge-buy {
  color: #212529;
  background-color: #f8dd1c;
}
a.badge-buy:hover, a.badge-buy:focus {
  color: #212529;
  background-color: #dac007;
}
a.badge-buy:focus, a.badge-buy.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 221, 28, 0.5);
}

.badge-betting {
  color: #fff;
  background-color: #3490dc;
}
a.badge-betting:hover, a.badge-betting:focus {
  color: #fff;
  background-color: #2176bd;
}
a.badge-betting:focus, a.badge-betting.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
}

.badge-discord {
  color: #fff;
  background-color: #7289da;
}
a.badge-discord:hover, a.badge-discord:focus {
  color: #fff;
  background-color: #4a67cf;
}
a.badge-discord:focus, a.badge-discord.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(114, 137, 218, 0.5);
}

.badge-microsoft {
  color: #fff;
  background-color: #3d8527;
}
a.badge-microsoft:hover, a.badge-microsoft:focus {
  color: #fff;
  background-color: #2b5e1b;
}
a.badge-microsoft:focus, a.badge-microsoft.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(61, 133, 39, 0.5);
}

.badge-twitter {
  color: #fff;
  background-color: #1da1f2;
}
a.badge-twitter:hover, a.badge-twitter:focus {
  color: #fff;
  background-color: #0c85d0;
}
a.badge-twitter:focus, a.badge-twitter.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(29, 161, 242, 0.5);
}

.badge-facebook {
  color: #fff;
  background-color: #1877f2;
}
a.badge-facebook:hover, a.badge-facebook:focus {
  color: #fff;
  background-color: #0b5fcc;
}
a.badge-facebook:focus, a.badge-facebook.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(24, 119, 242, 0.5);
}

.badge-instagram {
  color: #fff;
  background-color: #f30302;
}
a.badge-instagram:hover, a.badge-instagram:focus {
  color: #fff;
  background-color: #c00202;
}
a.badge-instagram:focus, a.badge-instagram.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(243, 3, 2, 0.5);
}

.badge-telialigaen {
  color: #fff;
  background-color: #990ae3;
}
a.badge-telialigaen:hover, a.badge-telialigaen:focus {
  color: #fff;
  background-color: #7808b2;
}
a.badge-telialigaen:focus, a.badge-telialigaen.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(153, 10, 227, 0.5);
}

.badge-ggligaen {
  color: #212529;
  background-color: #ffa000;
}
a.badge-ggligaen:hover, a.badge-ggligaen:focus {
  color: #212529;
  background-color: #cc8000;
}
a.badge-ggligaen:focus, a.badge-ggligaen.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 160, 0, 0.5);
}

.badge-ggligaen2 {
  color: #fff;
  background-color: #1f1c29;
}
a.badge-ggligaen2:hover, a.badge-ggligaen2:focus {
  color: #fff;
  background-color: #08070b;
}
a.badge-ggligaen2:focus, a.badge-ggligaen2.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(31, 28, 41, 0.5);
}

.badge-bedriftsligaen {
  color: #fff;
  background-color: #e60c43;
}
a.badge-bedriftsligaen:hover, a.badge-bedriftsligaen:focus {
  color: #fff;
  background-color: #b60935;
}
a.badge-bedriftsligaen:focus, a.badge-bedriftsligaen.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(230, 12, 67, 0.5);
}

.badge-bedriftsligaen2 {
  color: #fff;
  background-color: #0c0c13;
}
a.badge-bedriftsligaen2:hover, a.badge-bedriftsligaen2:focus {
  color: #fff;
  background-color: black;
}
a.badge-bedriftsligaen2:focus, a.badge-bedriftsligaen2.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(12, 12, 19, 0.5);
}

.badge-terminalgreen {
  color: #212529;
  background-color: #00fb4f;
}
a.badge-terminalgreen:hover, a.badge-terminalgreen:focus {
  color: #212529;
  background-color: #00c83f;
}
a.badge-terminalgreen:focus, a.badge-terminalgreen.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 251, 79, 0.5);
}

.badge-twitch {
  color: #fff;
  background-color: #6441a5;
}
a.badge-twitch:hover, a.badge-twitch:focus {
  color: #fff;
  background-color: #4e3380;
}
a.badge-twitch:focus, a.badge-twitch.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(100, 65, 165, 0.5);
}

.badge-godpris {
  color: #fff;
  background-color: #170132;
}
a.badge-godpris:hover, a.badge-godpris:focus {
  color: #fff;
  background-color: black;
}
a.badge-godpris:focus, a.badge-godpris.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 1, 50, 0.5);
}

.badge-godpris2 {
  color: #fff;
  background-color: #9b56ff;
}
a.badge-godpris2:hover, a.badge-godpris2:focus {
  color: #fff;
  background-color: #7d23ff;
}
a.badge-godpris2:focus, a.badge-godpris2.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(155, 86, 255, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3.85rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #852f00;
  background-color: #ffdecc;
  border-color: #ffd1b8;
}
.alert-primary hr {
  border-top-color: #ffc09f;
}
.alert-primary .alert-link {
  color: #521d00;
}

.alert-secondary {
  color: #85716c;
  background-color: #fff8f6;
  border-color: #fff5f2;
}
.alert-secondary hr {
  border-top-color: #ffe1d9;
}
.alert-secondary .alert-link {
  color: #695955;
}

.alert-success {
  color: #215d54;
  background-color: #d9f0ec;
  border-color: #caeae5;
}
.alert-success hr {
  border-top-color: #b8e3dc;
}
.alert-success .alert-link {
  color: #143732;
}

.alert-info {
  color: #385d7a;
  background-color: #e2f0fb;
  border-color: #d6e9f9;
}
.alert-info hr {
  border-top-color: #c0ddf6;
}
.alert-info .alert-link {
  color: #284257;
}

.alert-warning {
  color: #857b26;
  background-color: #fffbdb;
  border-color: #fffacc;
}
.alert-warning hr {
  border-top-color: #fff8b3;
}
.alert-warning .alert-link {
  color: #5d561b;
}

.alert-danger {
  color: #761b18;
  background-color: #f9d6d5;
  border-color: #f7c6c5;
}
.alert-danger hr {
  border-top-color: #f4b0af;
}
.alert-danger .alert-link {
  color: #4c110f;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}

.alert-secondary-hover {
  color: #85655c;
  background-color: #fff3ef;
  border-color: #ffeee9;
}
.alert-secondary-hover hr {
  border-top-color: #ffdad0;
}
.alert-secondary-hover .alert-link {
  color: #674e47;
}

.alert-tertiary {
  color: #6b2813;
  background-color: #f5dbd3;
  border-color: #f1cdc2;
}
.alert-tertiary hr {
  border-top-color: #ecbcad;
}
.alert-tertiary .alert-link {
  color: #40180b;
}

.alert-quaternary {
  color: #856a61;
  background-color: #fff5f1;
  border-color: #fff0ec;
}
.alert-quaternary hr {
  border-top-color: #ffdcd3;
}
.alert-quaternary .alert-link {
  color: #68524b;
}

.alert-esport {
  color: #711622;
  background-color: #f8d5d9;
  border-color: #f5c4ca;
}
.alert-esport hr {
  border-top-color: #f1aeb6;
}
.alert-esport .alert-link {
  color: #460e15;
}

.alert-esport2 {
  color: #85747a;
  background-color: #fff9fb;
  border-color: #fff6f9;
}
.alert-esport2 hr {
  border-top-color: #ffdde8;
}
.alert-esport2 .alert-link {
  color: #6a5c61;
}

.alert-ads {
  color: #85805d;
  background-color: #fffdf0;
  border-color: #fffdea;
}
.alert-ads hr {
  border-top-color: #fffbd1;
}
.alert-ads .alert-link {
  color: #676348;
}

.alert-buy {
  color: #81730f;
  background-color: #fef8d2;
  border-color: #fdf5bf;
}
.alert-buy hr {
  border-top-color: #fcf1a6;
}
.alert-buy .alert-link {
  color: #534a0a;
}

.alert-betting {
  color: #1b4b72;
  background-color: #d6e9f8;
  border-color: #c6e0f5;
}
.alert-betting hr {
  border-top-color: #b0d4f1;
}
.alert-betting .alert-link {
  color: #113049;
}

.alert-discord {
  color: #3b4771;
  background-color: #e3e7f8;
  border-color: #d8def5;
}
.alert-discord hr {
  border-top-color: #c4cdf0;
}
.alert-discord .alert-link {
  color: #2a324f;
}

.alert-microsoft {
  color: #204514;
  background-color: #d8e7d4;
  border-color: #c9ddc3;
}
.alert-microsoft hr {
  border-top-color: #bad4b3;
}
.alert-microsoft .alert-link {
  color: #0e1d09;
}

.alert-twitter {
  color: #0f547e;
  background-color: #d2ecfc;
  border-color: #c0e5fb;
}
.alert-twitter hr {
  border-top-color: #a8dbf9;
}
.alert-twitter .alert-link {
  color: #0a3650;
}

.alert-facebook {
  color: #0c3e7e;
  background-color: #d1e4fc;
  border-color: #bed9fb;
}
.alert-facebook hr {
  border-top-color: #a6cbfa;
}
.alert-facebook .alert-link {
  color: #08274f;
}

.alert-instagram {
  color: #7e0201;
  background-color: #fdcdcc;
  border-color: #fcb8b8;
}
.alert-instagram hr {
  border-top-color: #fba0a0;
}
.alert-instagram .alert-link {
  color: #4b0101;
}

.alert-telialigaen {
  color: #500576;
  background-color: #ebcef9;
  border-color: #e2baf7;
}
.alert-telialigaen hr {
  border-top-color: #d8a3f4;
}
.alert-telialigaen .alert-link {
  color: #2f0345;
}

.alert-ggligaen {
  color: #855300;
  background-color: #ffeccc;
  border-color: #ffe4b8;
}
.alert-ggligaen hr {
  border-top-color: #ffda9f;
}
.alert-ggligaen .alert-link {
  color: #523300;
}

.alert-ggligaen2 {
  color: #100f15;
  background-color: #d2d2d4;
  border-color: #c0bfc3;
}
.alert-ggligaen2 hr {
  border-top-color: #b3b2b7;
}
.alert-ggligaen2 .alert-link {
  color: black;
}

.alert-bedriftsligaen {
  color: #780623;
  background-color: #faced9;
  border-color: #f8bbca;
}
.alert-bedriftsligaen hr {
  border-top-color: #f6a4b8;
}
.alert-bedriftsligaen .alert-link {
  color: #470415;
}

.alert-bedriftsligaen2 {
  color: #06060a;
  background-color: #ceced0;
  border-color: #bbbbbd;
}
.alert-bedriftsligaen2 hr {
  border-top-color: #aeaeb0;
}
.alert-bedriftsligaen2 .alert-link {
  color: black;
}

.alert-terminalgreen {
  color: #008329;
  background-color: #ccfedc;
  border-color: #b8fece;
}
.alert-terminalgreen hr {
  border-top-color: #9ffebd;
}
.alert-terminalgreen .alert-link {
  color: #005019;
}

.alert-twitch {
  color: #342256;
  background-color: #e0d9ed;
  border-color: #d4cae6;
}
.alert-twitch hr {
  border-top-color: #c6b9de;
}
.alert-twitch .alert-link {
  color: #1e1431;
}

.alert-godpris {
  color: #0c011a;
  background-color: #d1ccd6;
  border-color: #beb8c6;
}
.alert-godpris hr {
  border-top-color: #b1aabb;
}
.alert-godpris .alert-link {
  color: black;
}

.alert-godpris2 {
  color: #512d85;
  background-color: #ebddff;
  border-color: #e3d0ff;
}
.alert-godpris2 hr {
  border-top-color: #d4b7ff;
}
.alert-godpris2 .alert-link {
  color: #3a205f;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.675rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
  box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #FF5A00;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.3rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #FF5A00;
  border-color: #FF5A00;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.3rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.3rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1640px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #852f00;
  background-color: #ffd1b8;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #852f00;
  background-color: #ffc09f;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #852f00;
  border-color: #852f00;
}

.list-group-item-secondary {
  color: #85716c;
  background-color: #fff5f2;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #85716c;
  background-color: #ffe1d9;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #85716c;
  border-color: #85716c;
}

.list-group-item-success {
  color: #215d54;
  background-color: #caeae5;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #215d54;
  background-color: #b8e3dc;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #215d54;
  border-color: #215d54;
}

.list-group-item-info {
  color: #385d7a;
  background-color: #d6e9f9;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #385d7a;
  background-color: #c0ddf6;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #385d7a;
  border-color: #385d7a;
}

.list-group-item-warning {
  color: #857b26;
  background-color: #fffacc;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #857b26;
  background-color: #fff8b3;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #857b26;
  border-color: #857b26;
}

.list-group-item-danger {
  color: #761b18;
  background-color: #f7c6c5;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #761b18;
  background-color: #f4b0af;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #761b18;
  border-color: #761b18;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.list-group-item-secondary-hover {
  color: #85655c;
  background-color: #ffeee9;
}
.list-group-item-secondary-hover.list-group-item-action:hover, .list-group-item-secondary-hover.list-group-item-action:focus {
  color: #85655c;
  background-color: #ffdad0;
}
.list-group-item-secondary-hover.list-group-item-action.active {
  color: #fff;
  background-color: #85655c;
  border-color: #85655c;
}

.list-group-item-tertiary {
  color: #6b2813;
  background-color: #f1cdc2;
}
.list-group-item-tertiary.list-group-item-action:hover, .list-group-item-tertiary.list-group-item-action:focus {
  color: #6b2813;
  background-color: #ecbcad;
}
.list-group-item-tertiary.list-group-item-action.active {
  color: #fff;
  background-color: #6b2813;
  border-color: #6b2813;
}

.list-group-item-quaternary {
  color: #856a61;
  background-color: #fff0ec;
}
.list-group-item-quaternary.list-group-item-action:hover, .list-group-item-quaternary.list-group-item-action:focus {
  color: #856a61;
  background-color: #ffdcd3;
}
.list-group-item-quaternary.list-group-item-action.active {
  color: #fff;
  background-color: #856a61;
  border-color: #856a61;
}

.list-group-item-esport {
  color: #711622;
  background-color: #f5c4ca;
}
.list-group-item-esport.list-group-item-action:hover, .list-group-item-esport.list-group-item-action:focus {
  color: #711622;
  background-color: #f1aeb6;
}
.list-group-item-esport.list-group-item-action.active {
  color: #fff;
  background-color: #711622;
  border-color: #711622;
}

.list-group-item-esport2 {
  color: #85747a;
  background-color: #fff6f9;
}
.list-group-item-esport2.list-group-item-action:hover, .list-group-item-esport2.list-group-item-action:focus {
  color: #85747a;
  background-color: #ffdde8;
}
.list-group-item-esport2.list-group-item-action.active {
  color: #fff;
  background-color: #85747a;
  border-color: #85747a;
}

.list-group-item-ads {
  color: #85805d;
  background-color: #fffdea;
}
.list-group-item-ads.list-group-item-action:hover, .list-group-item-ads.list-group-item-action:focus {
  color: #85805d;
  background-color: #fffbd1;
}
.list-group-item-ads.list-group-item-action.active {
  color: #fff;
  background-color: #85805d;
  border-color: #85805d;
}

.list-group-item-buy {
  color: #81730f;
  background-color: #fdf5bf;
}
.list-group-item-buy.list-group-item-action:hover, .list-group-item-buy.list-group-item-action:focus {
  color: #81730f;
  background-color: #fcf1a6;
}
.list-group-item-buy.list-group-item-action.active {
  color: #fff;
  background-color: #81730f;
  border-color: #81730f;
}

.list-group-item-betting {
  color: #1b4b72;
  background-color: #c6e0f5;
}
.list-group-item-betting.list-group-item-action:hover, .list-group-item-betting.list-group-item-action:focus {
  color: #1b4b72;
  background-color: #b0d4f1;
}
.list-group-item-betting.list-group-item-action.active {
  color: #fff;
  background-color: #1b4b72;
  border-color: #1b4b72;
}

.list-group-item-discord {
  color: #3b4771;
  background-color: #d8def5;
}
.list-group-item-discord.list-group-item-action:hover, .list-group-item-discord.list-group-item-action:focus {
  color: #3b4771;
  background-color: #c4cdf0;
}
.list-group-item-discord.list-group-item-action.active {
  color: #fff;
  background-color: #3b4771;
  border-color: #3b4771;
}

.list-group-item-microsoft {
  color: #204514;
  background-color: #c9ddc3;
}
.list-group-item-microsoft.list-group-item-action:hover, .list-group-item-microsoft.list-group-item-action:focus {
  color: #204514;
  background-color: #bad4b3;
}
.list-group-item-microsoft.list-group-item-action.active {
  color: #fff;
  background-color: #204514;
  border-color: #204514;
}

.list-group-item-twitter {
  color: #0f547e;
  background-color: #c0e5fb;
}
.list-group-item-twitter.list-group-item-action:hover, .list-group-item-twitter.list-group-item-action:focus {
  color: #0f547e;
  background-color: #a8dbf9;
}
.list-group-item-twitter.list-group-item-action.active {
  color: #fff;
  background-color: #0f547e;
  border-color: #0f547e;
}

.list-group-item-facebook {
  color: #0c3e7e;
  background-color: #bed9fb;
}
.list-group-item-facebook.list-group-item-action:hover, .list-group-item-facebook.list-group-item-action:focus {
  color: #0c3e7e;
  background-color: #a6cbfa;
}
.list-group-item-facebook.list-group-item-action.active {
  color: #fff;
  background-color: #0c3e7e;
  border-color: #0c3e7e;
}

.list-group-item-instagram {
  color: #7e0201;
  background-color: #fcb8b8;
}
.list-group-item-instagram.list-group-item-action:hover, .list-group-item-instagram.list-group-item-action:focus {
  color: #7e0201;
  background-color: #fba0a0;
}
.list-group-item-instagram.list-group-item-action.active {
  color: #fff;
  background-color: #7e0201;
  border-color: #7e0201;
}

.list-group-item-telialigaen {
  color: #500576;
  background-color: #e2baf7;
}
.list-group-item-telialigaen.list-group-item-action:hover, .list-group-item-telialigaen.list-group-item-action:focus {
  color: #500576;
  background-color: #d8a3f4;
}
.list-group-item-telialigaen.list-group-item-action.active {
  color: #fff;
  background-color: #500576;
  border-color: #500576;
}

.list-group-item-ggligaen {
  color: #855300;
  background-color: #ffe4b8;
}
.list-group-item-ggligaen.list-group-item-action:hover, .list-group-item-ggligaen.list-group-item-action:focus {
  color: #855300;
  background-color: #ffda9f;
}
.list-group-item-ggligaen.list-group-item-action.active {
  color: #fff;
  background-color: #855300;
  border-color: #855300;
}

.list-group-item-ggligaen2 {
  color: #100f15;
  background-color: #c0bfc3;
}
.list-group-item-ggligaen2.list-group-item-action:hover, .list-group-item-ggligaen2.list-group-item-action:focus {
  color: #100f15;
  background-color: #b3b2b7;
}
.list-group-item-ggligaen2.list-group-item-action.active {
  color: #fff;
  background-color: #100f15;
  border-color: #100f15;
}

.list-group-item-bedriftsligaen {
  color: #780623;
  background-color: #f8bbca;
}
.list-group-item-bedriftsligaen.list-group-item-action:hover, .list-group-item-bedriftsligaen.list-group-item-action:focus {
  color: #780623;
  background-color: #f6a4b8;
}
.list-group-item-bedriftsligaen.list-group-item-action.active {
  color: #fff;
  background-color: #780623;
  border-color: #780623;
}

.list-group-item-bedriftsligaen2 {
  color: #06060a;
  background-color: #bbbbbd;
}
.list-group-item-bedriftsligaen2.list-group-item-action:hover, .list-group-item-bedriftsligaen2.list-group-item-action:focus {
  color: #06060a;
  background-color: #aeaeb0;
}
.list-group-item-bedriftsligaen2.list-group-item-action.active {
  color: #fff;
  background-color: #06060a;
  border-color: #06060a;
}

.list-group-item-terminalgreen {
  color: #008329;
  background-color: #b8fece;
}
.list-group-item-terminalgreen.list-group-item-action:hover, .list-group-item-terminalgreen.list-group-item-action:focus {
  color: #008329;
  background-color: #9ffebd;
}
.list-group-item-terminalgreen.list-group-item-action.active {
  color: #fff;
  background-color: #008329;
  border-color: #008329;
}

.list-group-item-twitch {
  color: #342256;
  background-color: #d4cae6;
}
.list-group-item-twitch.list-group-item-action:hover, .list-group-item-twitch.list-group-item-action:focus {
  color: #342256;
  background-color: #c6b9de;
}
.list-group-item-twitch.list-group-item-action.active {
  color: #fff;
  background-color: #342256;
  border-color: #342256;
}

.list-group-item-godpris {
  color: #0c011a;
  background-color: #beb8c6;
}
.list-group-item-godpris.list-group-item-action:hover, .list-group-item-godpris.list-group-item-action:focus {
  color: #0c011a;
  background-color: #b1aabb;
}
.list-group-item-godpris.list-group-item-action.active {
  color: #fff;
  background-color: #0c011a;
  border-color: #0c011a;
}

.list-group-item-godpris2 {
  color: #512d85;
  background-color: #e3d0ff;
}
.list-group-item-godpris2.list-group-item-action:hover, .list-group-item-godpris2.list-group-item-action:focus {
  color: #512d85;
  background-color: #d4b7ff;
}
.list-group-item-godpris2.list-group-item-action.active {
  color: #fff;
  background-color: #512d85;
  border-color: #512d85;
}

.close {
  float: right;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: var(--body);
  background-clip: padding-box;
  border: 2px solid var(--border-dark);
  border-radius: 0;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 0 solid var(--primary);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.6;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 0 solid var(--primary);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-footer > * {
  margin: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 100px auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 200px);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 200px);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 200px);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 200px);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.7875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.3rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Inter", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.7875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.9rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #FF5A00 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #cc4800 !important;
}

.bg-secondary {
  background-color: #ffdad0 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #ffb29d !important;
}

.bg-success {
  background-color: #40b3a1 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #338d7f !important;
}

.bg-info {
  background-color: #6cb2eb !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #3f9ae5 !important;
}

.bg-warning {
  background-color: #ffed4a !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #ffe817 !important;
}

.bg-danger {
  background-color: #e3342f !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c51f1a !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-secondary-hover {
  background-color: #ffc2b1 !important;
}

a.bg-secondary-hover:hover, a.bg-secondary-hover:focus,
button.bg-secondary-hover:hover,
button.bg-secondary-hover:focus {
  background-color: #ff9a7e !important;
}

.bg-tertiary {
  background-color: #ce4c25 !important;
}

a.bg-tertiary:hover, a.bg-tertiary:focus,
button.bg-tertiary:hover,
button.bg-tertiary:focus {
  background-color: #a33c1d !important;
}

.bg-quaternary {
  background-color: #ffcbbb !important;
}

a.bg-quaternary:hover, a.bg-quaternary:focus,
button.bg-quaternary:hover,
button.bg-quaternary:focus {
  background-color: #ffa488 !important;
}

.bg-esport {
  background-color: #da2b42 !important;
}

a.bg-esport:hover, a.bg-esport:focus,
button.bg-esport:hover,
button.bg-esport:focus {
  background-color: #b31f33 !important;
}

.bg-esport2 {
  background-color: #ffdfea !important;
}

a.bg-esport2:hover, a.bg-esport2:focus,
button.bg-esport2:hover,
button.bg-esport2:focus {
  background-color: #ffacc9 !important;
}

.bg-ads {
  background-color: #fff7b3 !important;
}

a.bg-ads:hover, a.bg-ads:focus,
button.bg-ads:hover,
button.bg-ads:focus {
  background-color: #fff280 !important;
}

.bg-buy {
  background-color: #f8dd1c !important;
}

a.bg-buy:hover, a.bg-buy:focus,
button.bg-buy:hover,
button.bg-buy:focus {
  background-color: #dac007 !important;
}

.bg-betting {
  background-color: #3490dc !important;
}

a.bg-betting:hover, a.bg-betting:focus,
button.bg-betting:hover,
button.bg-betting:focus {
  background-color: #2176bd !important;
}

.bg-discord {
  background-color: #7289da !important;
}

a.bg-discord:hover, a.bg-discord:focus,
button.bg-discord:hover,
button.bg-discord:focus {
  background-color: #4a67cf !important;
}

.bg-microsoft {
  background-color: #3d8527 !important;
}

a.bg-microsoft:hover, a.bg-microsoft:focus,
button.bg-microsoft:hover,
button.bg-microsoft:focus {
  background-color: #2b5e1b !important;
}

.bg-twitter {
  background-color: #1da1f2 !important;
}

a.bg-twitter:hover, a.bg-twitter:focus,
button.bg-twitter:hover,
button.bg-twitter:focus {
  background-color: #0c85d0 !important;
}

.bg-facebook {
  background-color: #1877f2 !important;
}

a.bg-facebook:hover, a.bg-facebook:focus,
button.bg-facebook:hover,
button.bg-facebook:focus {
  background-color: #0b5fcc !important;
}

.bg-instagram {
  background-color: #f30302 !important;
}

a.bg-instagram:hover, a.bg-instagram:focus,
button.bg-instagram:hover,
button.bg-instagram:focus {
  background-color: #c00202 !important;
}

.bg-telialigaen {
  background-color: #990ae3 !important;
}

a.bg-telialigaen:hover, a.bg-telialigaen:focus,
button.bg-telialigaen:hover,
button.bg-telialigaen:focus {
  background-color: #7808b2 !important;
}

.bg-ggligaen {
  background-color: #ffa000 !important;
}

a.bg-ggligaen:hover, a.bg-ggligaen:focus,
button.bg-ggligaen:hover,
button.bg-ggligaen:focus {
  background-color: #cc8000 !important;
}

.bg-ggligaen2 {
  background-color: #1f1c29 !important;
}

a.bg-ggligaen2:hover, a.bg-ggligaen2:focus,
button.bg-ggligaen2:hover,
button.bg-ggligaen2:focus {
  background-color: #08070b !important;
}

.bg-bedriftsligaen {
  background-color: #e60c43 !important;
}

a.bg-bedriftsligaen:hover, a.bg-bedriftsligaen:focus,
button.bg-bedriftsligaen:hover,
button.bg-bedriftsligaen:focus {
  background-color: #b60935 !important;
}

.bg-bedriftsligaen2 {
  background-color: #0c0c13 !important;
}

a.bg-bedriftsligaen2:hover, a.bg-bedriftsligaen2:focus,
button.bg-bedriftsligaen2:hover,
button.bg-bedriftsligaen2:focus {
  background-color: black !important;
}

.bg-terminalgreen {
  background-color: #00fb4f !important;
}

a.bg-terminalgreen:hover, a.bg-terminalgreen:focus,
button.bg-terminalgreen:hover,
button.bg-terminalgreen:focus {
  background-color: #00c83f !important;
}

.bg-twitch {
  background-color: #6441a5 !important;
}

a.bg-twitch:hover, a.bg-twitch:focus,
button.bg-twitch:hover,
button.bg-twitch:focus {
  background-color: #4e3380 !important;
}

.bg-godpris {
  background-color: #170132 !important;
}

a.bg-godpris:hover, a.bg-godpris:focus,
button.bg-godpris:hover,
button.bg-godpris:focus {
  background-color: black !important;
}

.bg-godpris2 {
  background-color: #9b56ff !important;
}

a.bg-godpris2:hover, a.bg-godpris2:focus,
button.bg-godpris2:hover,
button.bg-godpris2:focus {
  background-color: #7d23ff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid var(--border-light) !important;
}

.border-top {
  border-top: 1px solid var(--border-light) !important;
}

.border-right {
  border-right: 1px solid var(--border-light) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-light) !important;
}

.border-left {
  border-left: 1px solid var(--border-light) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #FF5A00 !important;
}

.border-secondary {
  border-color: #ffdad0 !important;
}

.border-success {
  border-color: #40b3a1 !important;
}

.border-info {
  border-color: #6cb2eb !important;
}

.border-warning {
  border-color: #ffed4a !important;
}

.border-danger {
  border-color: #e3342f !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-secondary-hover {
  border-color: #ffc2b1 !important;
}

.border-tertiary {
  border-color: #ce4c25 !important;
}

.border-quaternary {
  border-color: #ffcbbb !important;
}

.border-esport {
  border-color: #da2b42 !important;
}

.border-esport2 {
  border-color: #ffdfea !important;
}

.border-ads {
  border-color: #fff7b3 !important;
}

.border-buy {
  border-color: #f8dd1c !important;
}

.border-betting {
  border-color: #3490dc !important;
}

.border-discord {
  border-color: #7289da !important;
}

.border-microsoft {
  border-color: #3d8527 !important;
}

.border-twitter {
  border-color: #1da1f2 !important;
}

.border-facebook {
  border-color: #1877f2 !important;
}

.border-instagram {
  border-color: #f30302 !important;
}

.border-telialigaen {
  border-color: #990ae3 !important;
}

.border-ggligaen {
  border-color: #ffa000 !important;
}

.border-ggligaen2 {
  border-color: #1f1c29 !important;
}

.border-bedriftsligaen {
  border-color: #e60c43 !important;
}

.border-bedriftsligaen2 {
  border-color: #0c0c13 !important;
}

.border-terminalgreen {
  border-color: #00fb4f !important;
}

.border-twitch {
  border-color: #6441a5 !important;
}

.border-godpris {
  border-color: #170132 !important;
}

.border-godpris2 {
  border-color: #9b56ff !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.3rem !important;
}

.rounded-top {
  border-top-left-radius: 0.3rem !important;
  border-top-right-radius: 0.3rem !important;
}

.rounded-right {
  border-top-right-radius: 0.3rem !important;
  border-bottom-right-radius: 0.3rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important;
}

.rounded-left {
  border-top-left-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1640px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1640px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1640px) {
  .float-xxl-left {
    float: left !important;
  }

  .float-xxl-right {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1640px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1640px) {
  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #FF5A00 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #b33f00 !important;
}

.text-secondary {
  color: #ffdad0 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #ff9e84 !important;
}

.text-success {
  color: #40b3a1 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #2c7b6e !important;
}

.text-info {
  color: #6cb2eb !important;
}

a.text-info:hover, a.text-info:focus {
  color: #298fe2 !important;
}

.text-warning {
  color: #ffed4a !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #fde300 !important;
}

.text-danger {
  color: #e3342f !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #ae1c17 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-secondary-hover {
  color: #ffc2b1 !important;
}

a.text-secondary-hover:hover, a.text-secondary-hover:focus {
  color: #ff8665 !important;
}

.text-tertiary {
  color: #ce4c25 !important;
}

a.text-tertiary:hover, a.text-tertiary:focus {
  color: #8d3419 !important;
}

.text-quaternary {
  color: #ffcbbb !important;
}

a.text-quaternary:hover, a.text-quaternary:focus {
  color: #ff916f !important;
}

.text-esport {
  color: #da2b42 !important;
}

a.text-esport:hover, a.text-esport:focus {
  color: #9d1b2c !important;
}

.text-esport2 {
  color: #ffdfea !important;
}

a.text-esport2:hover, a.text-esport2:focus {
  color: #ff93b8 !important;
}

.text-ads {
  color: #fff7b3 !important;
}

a.text-ads:hover, a.text-ads:focus {
  color: #ffef67 !important;
}

.text-buy {
  color: #f8dd1c !important;
}

a.text-buy:hover, a.text-buy:focus {
  color: #c2ab06 !important;
}

.text-betting {
  color: #3490dc !important;
}

a.text-betting:hover, a.text-betting:focus {
  color: #1d68a7 !important;
}

.text-discord {
  color: #7289da !important;
}

a.text-discord:hover, a.text-discord:focus {
  color: #3556ca !important;
}

.text-microsoft {
  color: #3d8527 !important;
}

a.text-microsoft:hover, a.text-microsoft:focus {
  color: #224a16 !important;
}

.text-twitter {
  color: #1da1f2 !important;
}

a.text-twitter:hover, a.text-twitter:focus {
  color: #0b76b8 !important;
}

.text-facebook {
  color: #1877f2 !important;
}

a.text-facebook:hover, a.text-facebook:focus {
  color: #0a54b3 !important;
}

.text-instagram {
  color: #f30302 !important;
}

a.text-instagram:hover, a.text-instagram:focus {
  color: #a70201 !important;
}

.text-telialigaen {
  color: #990ae3 !important;
}

a.text-telialigaen:hover, a.text-telialigaen:focus {
  color: #68079a !important;
}

.text-ggligaen {
  color: #ffa000 !important;
}

a.text-ggligaen:hover, a.text-ggligaen:focus {
  color: #b37000 !important;
}

.text-ggligaen2 {
  color: #1f1c29 !important;
}

a.text-ggligaen2:hover, a.text-ggligaen2:focus {
  color: black !important;
}

.text-bedriftsligaen {
  color: #e60c43 !important;
}

a.text-bedriftsligaen:hover, a.text-bedriftsligaen:focus {
  color: #9d082e !important;
}

.text-bedriftsligaen2 {
  color: #0c0c13 !important;
}

a.text-bedriftsligaen2:hover, a.text-bedriftsligaen2:focus {
  color: black !important;
}

.text-terminalgreen {
  color: #00fb4f !important;
}

a.text-terminalgreen:hover, a.text-terminalgreen:focus {
  color: #00af37 !important;
}

.text-twitch {
  color: #6441a5 !important;
}

a.text-twitch:hover, a.text-twitch:focus {
  color: #432b6e !important;
}

.text-godpris {
  color: #170132 !important;
}

a.text-godpris:hover, a.text-godpris:focus {
  color: black !important;
}

.text-godpris2 {
  color: #9b56ff !important;
}

a.text-godpris2:hover, a.text-godpris2:focus {
  color: #6e0aff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container, .container--wide {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #000;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #fff !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: var(--border-light);
  }

  .table .thead-dark th {
    color: inherit;
    border-color: var(--border-light);
  }
}
/*!
 * Luminous v2.3.5
 * Copyright 2015-2021, Zebrafish Labs
 * Licensed under BSD-2 (https://github.com/imgix/luminous/blob/main/LICENSE.md)
 */
@-webkit-keyframes a {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes a {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes b {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes b {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes c {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}
@keyframes c {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-180deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-1turn);
  }
}
@-webkit-keyframes d {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  to {
    transform: scale(1);
  }
}
@keyframes d {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(6px);
  }
  25% {
    transform: scale(1.3) translateX(8px);
  }
  40% {
    transform: scale(1.2) translateX(6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(6px);
  }
  75% {
    transform: scale(0.7) translateX(8px);
  }
  90% {
    transform: scale(0.8) translateX(6px);
  }
  to {
    transform: scale(1);
  }
}
@-webkit-keyframes e {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  to {
    transform: scale(1);
  }
}
@keyframes e {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.2) translateX(-6px);
  }
  25% {
    transform: scale(1.3) translateX(-8px);
  }
  40% {
    transform: scale(1.2) translateX(-6px);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.8) translateX(-6px);
  }
  75% {
    transform: scale(0.7) translateX(-8px);
  }
  90% {
    transform: scale(0.8) translateX(-6px);
  }
  to {
    transform: scale(1);
  }
}
.lum-lightbox {
  background: rgba(0, 0, 0, 0.6);
}

.lum-lightbox-inner {
  bottom: 2.5%;
  left: 2.5%;
  right: 2.5%;
  top: 2.5%;
}

.lum-lightbox-inner img {
  position: relative;
}

.lum-lightbox-inner .lum-lightbox-caption {
  color: #fff;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}

.lum-loading .lum-lightbox-loader {
  -webkit-animation: c 1.8s linear infinite;
          animation: c 1.8s linear infinite;
  display: block;
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
}

.lum-lightbox-loader:after, .lum-lightbox-loader:before {
  background: hsla(0, 0%, 100%, 0.9);
  border-radius: 20px;
  content: "";
  display: block;
  height: 20px;
  margin-top: -10px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.lum-lightbox-loader:before {
  -webkit-animation: d 1.8s linear infinite;
          animation: d 1.8s linear infinite;
  left: 0;
}

.lum-lightbox-loader:after {
  -webkit-animation: e 1.8s linear infinite;
          animation: e 1.8s linear infinite;
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
  right: 0;
}

.lum-lightbox.lum-opening {
  -webkit-animation: a 0.18s ease-out;
          animation: a 0.18s ease-out;
}

.lum-lightbox.lum-opening .lum-lightbox-inner {
  -webkit-animation: b 0.18s ease-out;
          animation: b 0.18s ease-out;
}

.lum-lightbox.lum-closing {
  -webkit-animation: a 0.3s ease-in;
          animation: a 0.3s ease-in;
  animation-direction: reverse;
}

.lum-lightbox.lum-closing .lum-lightbox-inner {
  -webkit-animation: b 0.3s ease-in;
          animation: b 0.3s ease-in;
  animation-direction: reverse;
}

.lum-img {
  transition: opacity 0.12s ease-out;
}

.lum-loading .lum-img {
  opacity: 0;
}

.lum-gallery-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  height: 100px;
  margin: 0;
  max-height: 100%;
  outline: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  text-indent: 150%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  width: 60px;
}

.lum-close-button {
  height: 32px;
  opacity: 0.3;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
}

.lum-close-button:hover {
  opacity: 1;
}

.lum-close-button:after, .lum-close-button:before {
  background-color: #fff;
  content: " ";
  height: 33px;
  left: 15px;
  position: absolute;
  width: 2px;
}

.lum-close-button:before {
  transform: rotate(45deg);
}

.lum-close-button:after {
  transform: rotate(-45deg);
}

.lum-previous-button {
  left: 12px;
}

.lum-next-button {
  right: 12px;
}

.lum-gallery-button:after {
  border-top: 4px solid hsla(0, 0%, 100%, 0.8);
  content: "";
  display: block;
  height: 36px;
  position: absolute;
  top: 50%;
  width: 36px;
}

.lum-previous-button:after {
  border-left: 4px solid hsla(0, 0%, 100%, 0.8);
  border-radius: 3px 0 0 0;
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  transform: translateY(-50%) rotate(-45deg);
}

.lum-next-button:after {
  border-radius: 0 3px 0 0;
  border-right: 4px solid hsla(0, 0%, 100%, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    -webkit-overflow-scrolling: touch;
    display: flex;
    overflow: auto;
  }

  .lum-lightbox-caption {
    bottom: 0;
    position: absolute;
    width: 100%;
  }

  .lum-lightbox-position-helper {
    margin: auto;
  }

  .lum-lightbox-inner img {
    max-height: none;
    max-width: none;
  }
}
.rdw-editor-wrapper {
  position: relative;
}

.rdw-editor-toolbar {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  color: #000;
}

.rdw-editor-main {
  padding: 1rem;
  border: 1px solid var(--border-light);
  background: var(--input-bg);
}

a.rdw-dropdown-selectedtext {
  color: #000;
}
a.rdw-dropdown-selectedtext:hover {
  color: #000;
  text-decoration: none;
}

.rdw-image-imagewrapper img {
  max-width: 100%;
}

.rdw-image-alignment-options-popup {
  color: #000;
}

.rdw-option-wrapper {
  color: #000;
}

.rdw-image-modal-header {
  margin-top: 0 !important;
}

.rdw-link-modal-label {
  margin-bottom: 0;
  font-size: 0.8rem !important;
}

.rdw-link-modal {
  height: auto !important;
  font-size: 0.8rem !important;
}

.rdw-link-modal-target-option {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

html {
  min-height: 101vh;
  --scrollbar-width: 0px;
}

@media (min-width: 1200px) {
  .container--wide {
    max-width: 1360px;
  }
}

.tight-gutter .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -7.5px;
  margin-left: -7.5px;
}
.tight-gutter .row > .col,
.tight-gutter .row > [class*=col-] {
  position: relative;
  width: 100%;
  padding-right: 7.5px;
  padding-left: 7.5px;
}

@media (min-width: 992px) {
  .tight-gutter-lg .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }
  .tight-gutter-lg .row > .col,
.tight-gutter-lg .row > [class*=col-] {
    position: relative;
    width: 100%;
    padding-right: 7.5px;
    padding-left: 7.5px;
  }

  .lg\:flex {
    display: flex !important;
  }
}
.inset-0 {
  inset: 0;
}

.d-contents {
  display: contents;
}

@media (min-width: 768px) {
  .d-md-contents {
    display: contents;
  }
}

@media (min-width: 768px) {
  .d-sm-contents {
    display: contents;
  }
}

@media (min-width: 992px) {
  .d-lg-contents {
    display: contents;
  }
}

.d-grid {
  display: grid;
}

@media (min-width: 576px) {
  .d-sm-grid {
    display: grid;
  }
}

@media (min-width: 768px) {
  .d-md-grid {
    display: grid;
  }
}

@media (min-width: 992px) {
  .d-lg-grid {
    display: grid;
  }
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 3rem;
}

@media (min-width: 992px) {
  .lg\:gap-1 {
    gap: 0.25rem;
  }
}

@media (min-width: 992px) {
  .lg\:gap-2 {
    gap: 0.5rem;
  }
}

@media (min-width: 992px) {
  .lg\:gap-3 {
    gap: 1rem;
  }
}

@media (min-width: 992px) {
  .lg\:gap-4 {
    gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .lg\:gap-5 {
    gap: 3rem;
  }
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
}
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
}
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (min-width: 992px) {
  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .xl\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.col-span-1 {
  grid-column: span 1/span 1;
}

@media (min-width: 992px) {
  .lg\:col-span-1 {
    grid-column: span 1/span 1 !important;
  }
}
.col-span-2 {
  grid-column: span 2/span 2;
}

@media (min-width: 992px) {
  .lg\:col-span-2 {
    grid-column: span 2/span 2 !important;
  }
}
.col-span-3 {
  grid-column: span 3/span 3;
}

@media (min-width: 992px) {
  .lg\:col-span-3 {
    grid-column: span 3/span 3 !important;
  }
}
.col-span-4 {
  grid-column: span 4/span 4;
}

@media (min-width: 992px) {
  .lg\:col-span-4 {
    grid-column: span 4/span 4 !important;
  }
}
.col-span-5 {
  grid-column: span 5/span 5;
}

@media (min-width: 992px) {
  .lg\:col-span-5 {
    grid-column: span 5/span 5 !important;
  }
}
.col-span-6 {
  grid-column: span 6/span 6;
}

@media (min-width: 992px) {
  .lg\:col-span-6 {
    grid-column: span 6/span 6 !important;
  }
}
.col-span-7 {
  grid-column: span 7/span 7;
}

@media (min-width: 992px) {
  .lg\:col-span-7 {
    grid-column: span 7/span 7 !important;
  }
}
.col-span-8 {
  grid-column: span 8/span 8;
}

@media (min-width: 992px) {
  .lg\:col-span-8 {
    grid-column: span 8/span 8 !important;
  }
}
.col-span-9 {
  grid-column: span 9/span 9;
}

@media (min-width: 992px) {
  .lg\:col-span-9 {
    grid-column: span 9/span 9 !important;
  }
}
.col-span-10 {
  grid-column: span 10/span 10;
}

@media (min-width: 992px) {
  .lg\:col-span-10 {
    grid-column: span 10/span 10 !important;
  }
}
.col-span-11 {
  grid-column: span 11/span 11;
}

@media (min-width: 992px) {
  .lg\:col-span-11 {
    grid-column: span 11/span 11 !important;
  }
}
.col-span-12 {
  grid-column: span 12/span 12;
}

@media (min-width: 992px) {
  .lg\:col-span-12 {
    grid-column: span 12/span 12 !important;
  }
}
.order-\[-6\] {
  order: -6;
}

@media (min-width: 992px) {
  .lg\:order-\[-6\] {
    order: -6 !important;
  }
}
.order-\[-5\] {
  order: -5;
}

@media (min-width: 992px) {
  .lg\:order-\[-5\] {
    order: -5 !important;
  }
}
.order-\[-4\] {
  order: -4;
}

@media (min-width: 992px) {
  .lg\:order-\[-4\] {
    order: -4 !important;
  }
}
.order-\[-3\] {
  order: -3;
}

@media (min-width: 992px) {
  .lg\:order-\[-3\] {
    order: -3 !important;
  }
}
.order-\[-2\] {
  order: -2;
}

@media (min-width: 992px) {
  .lg\:order-\[-2\] {
    order: -2 !important;
  }
}
.order-\[-1\] {
  order: -1;
}

@media (min-width: 992px) {
  .lg\:order-\[-1\] {
    order: -1 !important;
  }
}
.order-\[0\] {
  order: 0;
}

@media (min-width: 992px) {
  .lg\:order-\[0\] {
    order: 0 !important;
  }
}
.order-\[1\] {
  order: 1;
}

@media (min-width: 992px) {
  .lg\:order-\[1\] {
    order: 1 !important;
  }
}
.order-\[2\] {
  order: 2;
}

@media (min-width: 992px) {
  .lg\:order-\[2\] {
    order: 2 !important;
  }
}
.order-\[3\] {
  order: 3;
}

@media (min-width: 992px) {
  .lg\:order-\[3\] {
    order: 3 !important;
  }
}
.order-\[4\] {
  order: 4;
}

@media (min-width: 992px) {
  .lg\:order-\[4\] {
    order: 4 !important;
  }
}
.order-\[5\] {
  order: 5;
}

@media (min-width: 992px) {
  .lg\:order-\[5\] {
    order: 5 !important;
  }
}
.order-\[6\] {
  order: 6;
}

@media (min-width: 992px) {
  .lg\:order-\[6\] {
    order: 6 !important;
  }
}
.clear-both {
  clear: both;
}

.site__nav {
  overflow: auto;
  padding: 0 1rem;
}
.site__nav__item {
  position: relative;
  color: var(--text);
}
.site__nav__item:first-child {
  margin-left: -1rem;
}
.site__nav__item span {
  position: relative;
}
.site__nav__item:hover {
  text-decoration: none;
  color: inherit;
}
.site__nav__item:hover::before, .site__nav__item--selected::before {
  content: "";
  border-top: 2px solid var(--primary);
  position: absolute;
  top: auto;
  right: 0.5rem;
  bottom: 0;
  left: 0.5rem;
}
@media (min-width: 992px) {
  .site__nav__item:hover::before, .site__nav__item--selected::before {
    top: auto;
    right: 1rem;
    bottom: 0;
    left: 1rem;
  }
}
.site__nav__item::after {
  content: "";
  border-right: 1px solid var(--border-dark);
  position: absolute;
  pointer-events: none;
  margin: auto;
  top: 38%;
  right: 0;
  bottom: 38%;
  left: auto;
}
.site__nav__item:last-child::after {
  display: none;
}
@media (max-width: 991.98px) {
  .site__nav {
    font-size: 0.75rem;
    padding: 0 15px;
  }
  .site__nav__item:first-child {
    margin-left: -0.5rem;
  }
}

.centered-bg {
  position: relative;
}
.centered-bg__image {
  pointer-events: none;
}
.centered-bg__image .image-container {
  padding-bottom: 0 !important;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.centered-bg__image .image-container__picture {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.centered-bg__image .image-container__image {
  position: static;
  -o-object-fit: cover;
     object-fit: cover;
}

.aspect-ratio, .aspect-ratio--16x9, .aspect-ratio--1x1, .aspect-ratio--2x1, .aspect-ratio--3x1, .aspect-ratio--4x1, .aspect-ratio--5x1 {
  position: relative;
}
.aspect-ratio::before, .aspect-ratio--16x9::before, .aspect-ratio--1x1::before, .aspect-ratio--2x1::before, .aspect-ratio--3x1::before, .aspect-ratio--4x1::before, .aspect-ratio--5x1::before {
  content: "";
  display: block;
  width: 100%;
  pointer-events: none;
}
.aspect-ratio > div, .aspect-ratio--16x9 > div, .aspect-ratio--1x1 > div, .aspect-ratio--2x1 > div, .aspect-ratio--3x1 > div, .aspect-ratio--4x1 > div, .aspect-ratio--5x1 > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.aspect-ratio--5x1::before {
  padding-top: 20%;
}

.aspect-ratio--4x1::before {
  padding-top: 25%;
}

.aspect-ratio--3x1::before {
  padding-top: 33%;
}

.aspect-ratio--2x1::before {
  padding-top: 50%;
}

.aspect-ratio--1x1::before {
  padding-top: 100%;
}

.aspect-ratio--16x9::before {
  padding-top: 56.25%;
}

.aspect-square {
  aspect-ratio: 1;
}

.space-y-4 > * {
  margin-bottom: 1.5rem;
}
.space-y-4 > *:last-child {
  margin-bottom: 0;
}

.space-y-3 > * {
  margin-bottom: 1rem;
}
.space-y-3 > *:last-child {
  margin-bottom: 0;
}

.space-y-4 > * {
  margin-bottom: 1.5rem;
}
.space-y-4 > *:last-child {
  margin-bottom: 0;
}

.space-y-5 > * {
  margin-bottom: 2rem;
}
.space-y-5 > *:last-child {
  margin-bottom: 0;
}

.space-y-6 > * {
  margin-bottom: 2.5rem;
}
.space-y-6 > *:last-child {
  margin-bottom: 0;
}

.space-y-7 > * {
  margin-bottom: 3rem;
}
.space-y-7 > *:last-child {
  margin-bottom: 0;
}

.space-y-2 > * {
  margin-bottom: 0.5rem;
}
.space-y-2 > *:last-child {
  margin-bottom: 0;
}

.space-y-1 > * {
  margin-bottom: 0.25rem;
}
.space-y-1 > *:last-child {
  margin-bottom: 0;
}

.space-y-0 > * {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .sm\:space-y-0 > * {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .md\:space-y-0 > * {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .md\:space-y-1 > * {
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 768px) {
  .md\:space-y-2 > * {
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 768px) {
  .md\:space-y-3 > * {
    margin-bottom: 0.25rem;
  }
}

@media (min-width: 992px) {
  .lg\:space-y-0 > * {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .lg\:space-y-5 > * {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .lg\:space-y-7 > * {
    margin-bottom: 3rem;
  }
}

.space-x-3 > * {
  margin-right: 1rem;
}
.space-x-3 > *:last-child {
  margin-right: 0;
}

.space-x-4 > * {
  margin-right: 1.5rem;
}
.space-x-4 > *:last-child {
  margin-right: 0;
}

.space-x-5 > * {
  margin-right: 2rem;
}
.space-x-5 > *:last-child {
  margin-right: 0;
}

.space-x-2 > * {
  margin-right: 0.5rem;
}
.space-x-2 > *:last-child {
  margin-right: 0;
}

.space-x-1 > * {
  margin-right: 0.25rem;
}
.space-x-1 > *:last-child {
  margin-right: 0;
}

.space-x-0 > * {
  margin-right: 0;
}

@media (min-width: 576px) {
  .sm\:space-x-0 > * {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .md:space-x-0 > * {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .md:space-x-1 > * {
    margin-right: 0.25rem;
  }
  .md:space-x-1 > *:last-child {
    margin-right: 0;
  }
}

@media (min-width: 576px) {
  .sm\:space-x-2 > * {
    margin-right: 0.5rem;
  }
  .sm\:space-x-2 > *:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .md:space-x-2 > * {
    margin-right: 0.5rem;
  }
  .md:space-x-2 > *:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .md\:space-x-3 > * {
    margin-right: 1rem;
  }
  .md\:space-x-3 > *:last-child {
    margin-right: 0;
  }
}

@media (min-width: 576px) {
  .sm\:space-x-3 > * {
    margin-right: 1rem;
  }
  .sm\:space-x-3 > *:last-child {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .md:space-x-4 > * {
    margin-right: 1.5rem;
  }
  .md:space-x-4 > *:last-child {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .lg\:space-y-3 > * {
    margin-bottom: 1rem;
  }
}

@media (min-width: 992px) {
  .lg\:space-x-3 > * {
    margin-right: 1rem;
  }
  .lg\:space-x-3 > *:last-child {
    margin-right: 0;
  }
}

.modal {
  right: 0;
}

@media (max-width: 991.98px) {
  .modal-dialog {
    margin: 0;
  }
}

.modal-header {
  background-color: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: between;
}
@media (max-width: 991.98px) {
  .modal-header {
    padding: 0.5rem;
  }
}

.modal-footer {
  background-color: var(--gray-light);
}
@media (max-width: 991.98px) {
  .modal-footer {
    padding: 0.5rem;
  }
}

.modal-title {
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .modal-title {
    font-size: 1rem;
  }
}

.confirm-modal__content-fit {
  width: 100%;
  position: relative;
  max-height: 100%;
}
@media (max-width: 991.98px) {
  .confirm-modal__content-fit {
    overflow: auto;
  }
}
@media (min-width: 576px) {
  .confirm-modal__content-fit {
    width: 400px;
  }
}
@media (min-width: 768px) {
  .confirm-modal__content-fit {
    width: 600px;
  }
}
@media (min-width: 992px) {
  .confirm-modal__content-fit {
    width: 1000px;
  }
}
.confirm-modal--lg .modal-dialog {
  max-width: 800px;
}
.confirm-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: 0 0 0.3rem black;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  background: black;
}
@media (min-width: 992px) {
  .confirm-modal__close {
    transform: translate(25%, -25%);
  }
}
.confirm-modal__content {
  width: 85%;
}
@media (min-width: 576px) {
  .confirm-modal__content {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .confirm-modal__content {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .confirm-modal__content {
    width: 25%;
  }
}
.confirm-modal__header {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--dark);
}
.confirm-modal__footer {
  padding-top: 1rem;
  border-top: 1px solid var(--dark);
}

@media (max-width: 991.98px) {
  .modal-content {
    min-height: 100vh;
    -webkit-animation: translatedown 200ms;
            animation: translatedown 200ms;
    border: 0;
  }
}
@media (min-width: 992px) {
  .modal-content::before {
    content: "";
    position: absolute;
    top: -1rem;
    right: -1rem;
    bottom: -1rem;
    left: -1rem;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0.3;
    z-index: -1;
  }
}

@media (max-width: 991.98px) {
  .modal-body {
    opacity: 0;
    -webkit-animation: fadein 1s forwards;
            animation: fadein 1s forwards;
    -webkit-animation-delay: 500ms;
            animation-delay: 500ms;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}

.modal-nav {
  border-bottom: 2px solid var(--primary);
  overflow: auto;
  display: flex;
  align-items: center;
  font-weight: bold;
  white-space: nowrap;
  margin-top: -0.5rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .modal-nav {
    margin-top: -1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: 1rem;
  }
}
.modal-nav .modal-nav__item {
  cursor: pointer;
}
.modal-nav .modal-nav__item--selected {
  background-color: var(--secondary);
  color: var(--primary);
}

.modal-sub-nav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  overflow: auto;
  white-space: nowrap;
}
.modal-sub-nav__item {
  cursor: pointer;
  border-bottom: 1px solid transparent;
}
.modal-sub-nav__item--selected {
  border-color: var(--primary);
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.progress-circle {
  transition: stroke-dashoffset 0.35s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.dropdown-container {
  position: relative;
  display: inline-flex;
}
.dropdown-container__toggler.btn-link {
  color: inherit;
}
.dropdown-container__toggler:active, .dropdown-container__toggler:focus {
  box-shadow: 0 0 transparent !important;
}
.dropdown-container__toggler--active {
  opacity: 0.7;
}
.dropdown-container__dropdown .btn-link {
  color: inherit;
}
.dropdown-container__dropdown .btn-link:hover {
  background-color: var(--light);
  color: inherit;
  text-decoration: none;
}
.dropdown-container__dropdown .btn-link:focus {
  text-decoration: none;
  background-color: var(--light);
  box-shadow: none;
}
@media (min-width: 992px) {
  .dropdown-container__backdrop {
    display: none;
  }
  .dropdown-container__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    bottom: auto;
    left: auto;
    background-color: var(--body);
    z-index: 1000;
    border: 1px solid var(--border-light);
    width: auto;
    min-width: 200px;
    max-width: 100vw;
    white-space: nowrap;
    box-shadow: 0.15rem 0.15rem 0.3rem rgba(0, 0, 0, 0.15);
  }
  .dropdown-container__dropdown::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--body);
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    right: 10px;
    bottom: auto;
    left: auto;
  }
}
@media (max-width: 991.98px) {
  .dropdown-container__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-animation: fadein 200ms;
            animation: fadein 200ms;
    z-index: 1030;
  }
  .dropdown-container__dropdown {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 0.5rem 0.5rem;
    max-height: 80vh;
    -webkit-animation: slideup 200ms forwards;
            animation: slideup 200ms forwards;
    font-size: 1.1rem;
    background-color: var(--light);
    border: 1px solid var(--border-dark);
    z-index: 1031;
  }
  .dropdown-container__dropdown__option {
    font-size: 1.1rem;
  }
}

.w-0 {
  width: 0%;
}

.mw-0 {
  max-width: 0%;
}

.minw-0 {
  min-width: 0%;
}

.w-xs-0 {
  width: 0% !important;
}

.mw-xs-0 {
  max-width: 0% !important;
}

.minw-xs-0 {
  max-width: 0% !important;
}

@media (min-width: 576px) {
  .w-sm-0 {
    width: 0% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 768px) {
  .w-md-0 {
    width: 0% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-0 {
    width: 0% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-0 {
    width: 0% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-0 {
    max-width: 0% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-0 {
    max-width: 0% !important;
  }
}

.w-auto {
  width: auto%;
}

.mw-auto {
  max-width: auto%;
}

.minw-auto {
  min-width: auto%;
}

.w-xs-auto {
  width: auto% !important;
}

.mw-xs-auto {
  max-width: auto% !important;
}

.minw-xs-auto {
  max-width: auto% !important;
}

@media (min-width: 576px) {
  .w-sm-auto {
    width: auto% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-auto {
    width: auto% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-auto {
    width: auto% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-auto {
    max-width: auto% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-auto {
    max-width: auto% !important;
  }
}

.w-10 {
  width: 10%;
}

.mw-10 {
  max-width: 10%;
}

.minw-10 {
  min-width: 10%;
}

.w-xs-10 {
  width: 10% !important;
}

.mw-xs-10 {
  max-width: 10% !important;
}

.minw-xs-10 {
  max-width: 10% !important;
}

@media (min-width: 576px) {
  .w-sm-10 {
    width: 10% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 768px) {
  .w-md-10 {
    width: 10% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-10 {
    width: 10% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-10 {
    width: 10% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-10 {
    max-width: 10% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-10 {
    max-width: 10% !important;
  }
}

.w-15 {
  width: 15%;
}

.mw-15 {
  max-width: 15%;
}

.minw-15 {
  min-width: 15%;
}

.w-xs-15 {
  width: 15% !important;
}

.mw-xs-15 {
  max-width: 15% !important;
}

.minw-xs-15 {
  max-width: 15% !important;
}

@media (min-width: 576px) {
  .w-sm-15 {
    width: 15% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 768px) {
  .w-md-15 {
    width: 15% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-15 {
    width: 15% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-15 {
    width: 15% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-15 {
    max-width: 15% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-15 {
    max-width: 15% !important;
  }
}

.w-25 {
  width: 25%;
}

.mw-25 {
  max-width: 25%;
}

.minw-25 {
  min-width: 25%;
}

.w-xs-25 {
  width: 25% !important;
}

.mw-xs-25 {
  max-width: 25% !important;
}

.minw-xs-25 {
  max-width: 25% !important;
}

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 768px) {
  .w-md-25 {
    width: 25% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-25 {
    width: 25% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-25 {
    width: 25% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-25 {
    max-width: 25% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-25 {
    max-width: 25% !important;
  }
}

.w-33 {
  width: 33%;
}

.mw-33 {
  max-width: 33%;
}

.minw-33 {
  min-width: 33%;
}

.w-xs-33 {
  width: 33% !important;
}

.mw-xs-33 {
  max-width: 33% !important;
}

.minw-xs-33 {
  max-width: 33% !important;
}

@media (min-width: 576px) {
  .w-sm-33 {
    width: 33% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 768px) {
  .w-md-33 {
    width: 33% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-33 {
    width: 33% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-33 {
    width: 33% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-33 {
    max-width: 33% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-33 {
    max-width: 33% !important;
  }
}

.w-45 {
  width: 45%;
}

.mw-45 {
  max-width: 45%;
}

.minw-45 {
  min-width: 45%;
}

.w-xs-45 {
  width: 45% !important;
}

.mw-xs-45 {
  max-width: 45% !important;
}

.minw-xs-45 {
  max-width: 45% !important;
}

@media (min-width: 576px) {
  .w-sm-45 {
    width: 45% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 768px) {
  .w-md-45 {
    width: 45% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-45 {
    width: 45% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-45 {
    width: 45% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-45 {
    max-width: 45% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-45 {
    max-width: 45% !important;
  }
}

.w-50 {
  width: 50%;
}

.mw-50 {
  max-width: 50%;
}

.minw-50 {
  min-width: 50%;
}

.w-xs-50 {
  width: 50% !important;
}

.mw-xs-50 {
  max-width: 50% !important;
}

.minw-xs-50 {
  max-width: 50% !important;
}

@media (min-width: 576px) {
  .w-sm-50 {
    width: 50% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-50 {
    width: 50% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-50 {
    max-width: 50% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-50 {
    max-width: 50% !important;
  }
}

.w-66 {
  width: 66%;
}

.mw-66 {
  max-width: 66%;
}

.minw-66 {
  min-width: 66%;
}

.w-xs-66 {
  width: 66% !important;
}

.mw-xs-66 {
  max-width: 66% !important;
}

.minw-xs-66 {
  max-width: 66% !important;
}

@media (min-width: 576px) {
  .w-sm-66 {
    width: 66% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 768px) {
  .w-md-66 {
    width: 66% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-66 {
    width: 66% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-66 {
    width: 66% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-66 {
    max-width: 66% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-66 {
    max-width: 66% !important;
  }
}

.w-75 {
  width: 75%;
}

.mw-75 {
  max-width: 75%;
}

.minw-75 {
  min-width: 75%;
}

.w-xs-75 {
  width: 75% !important;
}

.mw-xs-75 {
  max-width: 75% !important;
}

.minw-xs-75 {
  max-width: 75% !important;
}

@media (min-width: 576px) {
  .w-sm-75 {
    width: 75% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 768px) {
  .w-md-75 {
    width: 75% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-75 {
    width: 75% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-75 {
    width: 75% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-75 {
    max-width: 75% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-75 {
    max-width: 75% !important;
  }
}

.w-100 {
  width: 100%;
}

.mw-100 {
  max-width: 100%;
}

.minw-100 {
  min-width: 100%;
}

.w-xs-100 {
  width: 100% !important;
}

.mw-xs-100 {
  max-width: 100% !important;
}

.minw-xs-100 {
  max-width: 100% !important;
}

@media (min-width: 576px) {
  .w-sm-100 {
    width: 100% !important;
  }
}

@media (min-width: 576px) {
  .mw-sm-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 576px) {
  .minw-sm-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .w-md-100 {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .mw-md-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .minw-md-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-100 {
    width: 100% !important;
  }
}

@media (min-width: 992px) {
  .mw-lg-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .minw-lg-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-100 {
    width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .mw-xl-100 {
    max-width: 100% !important;
  }
}

@media (min-width: 1200px) {
  .minw-xl-100 {
    max-width: 100% !important;
  }
}

.whitespace-nowrap {
  white-space: nowrap;
}

#paradise-app {
  min-height: 100vh;
}
#paradise-app > .container--wide {
  min-height: 100vh;
}

.richtext-content {
  font-size: 1.2rem;
}
.richtext-content > h2 {
  font-size: 2.4rem;
}
.richtext-content > h3 {
  font-size: 2rem;
}
.richtext-content > h4 {
  font-size: 1.6rem;
}
.richtext-content img {
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .richtext-content {
    font-size: 1rem;
  }
  .richtext-content > h2 {
    font-size: 2rem;
  }
  .richtext-content > h3 {
    font-size: 1.6rem;
  }
  .richtext-content > h4 {
    font-size: 1.2rem;
  }
}

.display-none {
  display: none;
}

.display-flex {
  display: flex;
}

.backdrop-blur {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

a {
  color: var(--primary);
}
a:hover {
  color: var(--tertiary);
}

.scroll-into-viewable::before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

.keksdfsdfsdfsdf {
  color: red;
}

@media (max-width: 991.98px) {
  .subject__header {
    background-color: rgba(var(--primary-rgb), 0.05) !important;
    color: var(--text) !important;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
    margin-left: -15px;
    margin-right: -15px;
    border-left: 0 !important;
    margin-top: -1rem;
    padding: 0 !important;
  }
  .subject__header::before, .subject__header::after {
    display: none;
  }
  .subject__header h1, .subject__header h2, .subject__header h3 {
    margin-bottom: 0;
    font-size: 1.2rem !important;
    padding: 15px;
    font-weight: 400;
  }
  .subject__header h1 a, .subject__header h2 a, .subject__header h3 a {
    margin: -15px;
    padding: 15px;
    display: block;
  }
  .subject__header h4, .subject__header h5 {
    margin-top: -10px;
    padding: 0 15px 15px;
    font-size: 0.9rem !important;
    font-weight: 400;
  }
}
@media (min-width: 992px) {
  .subject__header {
    background-color: rgba(var(--primary-rgb), 0.2);
  }
  .subject__header h1 {
    background-color: var(--primary);
    color: #fff;
    padding: 0.25rem 1rem;
    display: inline-flex;
    font-style: italic;
  }
}

.site {
  background-color: var(--body);
  color: var(--text);
}
.site__link, .tournament__rules a, .tournament__description a, .article__content a:not(.btn):not([role=button]) {
  cursor: pointer;
  color: inherit;
  box-shadow: inset 0 -2px 0 var(--primary);
  transition: box-shadow 0.2s, color 0.4s, background 0.2s, transform 0.2s;
}
.site__link:hover, .tournament__rules a:hover, .tournament__description a:hover, .article__content a:hover:not(.btn):not([role=button]), .site__link--active {
  text-decoration: none;
  box-shadow: inset 0 -30px 0 var(--primary);
  color: #fff;
}
.site__link--small {
  box-shadow: 0 1px 0 var(--primary);
}
.site__box {
  border-left: 5px solid var(--border-dark);
  background-color: var(--gray-light);
}
.site__title {
  border-left: 5px solid var(--border-dark);
}
@media (max-width: 991.98px) {
  .site__title {
    background-color: rgba(var(--primary-rgb), 0.05) !important;
    color: var(--text) !important;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
    margin-left: -15px;
    margin-right: -15px;
    border-left: 0 !important;
    margin-top: -1rem;
    padding: 0 !important;
  }
  .site__title::before, .site__title::after {
    display: none;
  }
  .site__title h1, .site__title h2, .site__title h3 {
    margin-bottom: 0;
    font-size: 1.2rem !important;
    padding: 15px;
    font-weight: 400;
  }
  .site__title h1 a, .site__title h2 a, .site__title h3 a {
    margin: -15px;
    padding: 15px;
    display: block;
  }
  .site__title h4, .site__title h5 {
    margin-top: -10px;
    padding: 0 15px 15px;
    font-size: 0.9rem !important;
    font-weight: 400;
  }
}
.site__border {
  position: relative;
  border-left: 5px solid var(--border-dark);
}
.site__border::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -2px;
  bottom: 3px;
  border-left: 5px solid var(--primary);
  pointer-events: none;
  opacity: 0.5;
}
.site__border::after {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;
  border-left: 5px solid var(--border-dark);
  pointer-events: none;
}
.site__border--right {
  border-left: 0;
}
.site__border--right::before {
  left: auto;
  right: -8px;
  border-left: 0;
  border-right: 5px solid var(--primary);
}
.site__border--right::after {
  left: auto;
  right: -5px;
  border-left: 0;
  border-right: 5px solid var(--border-dark);
}

.notification-counter {
  color: #000;
  font-weight: bold;
  background-color: #fff;
  padding: 0 0.5rem;
  line-height: 1.3em;
  border-radius: 0.3rem;
  border: 1px solid #000;
}

@media (max-width: 1199.98px) {
  .site__border--xl {
    border-left: 0;
    border-right: 0;
  }
  .site__border--xl::before, .site__border--xl::after {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .site__border--lg {
    border-left: 0;
    border-right: 0;
  }
  .site__border--lg::before, .site__border--lg::after {
    display: none;
  }
}
.lum-lightbox {
  z-index: 9999999;
}

.border-primary {
  border: 1px solid var(--primary);
  border-color: var(--primary) !important;
}

.border-warning {
  border: 1px solid var(--warning);
  border-color: var(--warning) !important;
}

.border-info {
  border: 1px solid var(--primary);
  border-color: var(--info) !important;
}

.border-danger {
  border: 1px solid var(--primary);
  border-color: var(--danger) !important;
}

.border-success {
  border: 1px solid var(--primary);
  border-color: var(--success) !important;
}

.border-spin {
  position: relative;
}
.border-spin::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px solid var(--primary);
  border-color: #6cb2eb transparent #6cb2eb transparent;
  -webkit-animation: spin 1.3s linear infinite;
          animation: spin 1.3s linear infinite;
}

.border-hover-primary:hover {
  border-color: var(--primary) !important;
}

.border-bottom-primary {
  border-bottom: 1px solid var(--primary);
}

.border-danger {
  border: 1px solid var(--danger);
}

.border-dark {
  border: 1px solid var(--border-dark);
}

.border-gold {
  border: 1px solid var(--gold);
}

.border-prisguiden {
  border: 1px solid var(--prisguiden-border);
}

.border-twitch {
  border: 1px solid var(--twitch);
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.border-5 {
  border-width: 5px;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-light {
  background-color: rgba(var(--primary-rgb), 0.2);
}

.bg-black {
  background-color: #000;
}

.text-primary {
  color: var(--primary) !important;
}

.text-default {
  color: var(--text);
}

.text-yellow {
  color: var(--yellow);
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

a.bg-secondary:hover,
.bg-secondary.clickable:hover {
  cursor: pointer;
  background-color: var(--secondary-hover) !important;
}

.bg-light {
  background-color: var(--light) !important;
}

.bg-light-hover.active, .bg-light-hover:hover {
  background-color: var(--bg-light-hover);
}

.clickable.bg-light:hover, a.bg-light:hover {
  cursor: pointer;
  background-color: rgba(var(--light-rgb), 0.7) !important;
}
.clickable.bg-light:focus, a.bg-light:focus {
  background-color: rgba(var(--light-rgb), 0.7) !important;
}

.bg-foreground {
  background-color: var(--foreground-rgb) !important;
}

.filter-invert-dark {
  filter: var(--invert-dark) !important;
}

.filter-invert-light {
  filter: var(--invert-light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}
.bg-dark.clickable:hover {
  cursor: pointer;
  background-color: rgba(var(--dark-rgb), 0.7) !important;
}

.bg-body {
  background-color: var(--body);
}

.bg-contrast-faded {
  background-color: rgba(var(--contrast-rgb), 0.3);
}

.bg-blue {
  background-color: #3490dc;
}

.bg-green {
  background-color: #40b3a1;
}

.bg-red {
  background-color: #e3342f;
}

.bg-cyan {
  background-color: #6cb2eb;
}

.bg-indigo {
  background-color: #6574cd;
}

.bg-pink {
  background-color: #f66d9b;
}

.bg-gold {
  background-color: var(--gold);
}

.bg-gold-dark {
  background-color: var(--gold-dark);
}

.bg-gold-very-dark {
  background-color: var(--gold-very-dark);
}

.text-shadow-light {
  text-shadow: 0px 0px 4px rgba(var(--light-rgb), 1);
}

.text-shadow-black {
  text-shadow: 0px 0px 4px #0d1721;
}

.blur {
  filter: blur(5px);
}

.transition-opacity {
  transition: opacity 0.3s;
}

.badge-ethereal {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
}
.darkmode .badge-ethereal {
  background: rgba(255, 255, 255, 0.1);
}
@media (prefers-color-scheme: dark) {
  .automode .badge-ethereal {
    background: rgba(255, 255, 255, 0.1);
  }
}

::-moz-selection {
  background-color: var(--primary);
  color: #000;
}

::selection {
  background-color: var(--primary);
  color: #000;
}

@media (min-width: 1200px) {
  .site__right-column {
    width: 320px;
    flex-shrink: 0;
  }
}
@media (max-width: 1199.98px) {
  .site__sticky-tools {
    font-size: 1.4rem;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 100000;
  }
  .modal-open .site__sticky-tools {
    display: none;
  }
  .site__sticky-tools__button {
    background-color: var(--primary);
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 2px solid transparent;
  }
  .site__sticky-tools__button:hover {
    text-decoration: none;
    color: #fff;
  }
  .site__sticky-tools__button--active {
    background-color: #fff;
    color: var(--primary) !important;
    border-color: var(--primary);
  }
}
@media (min-width: 992px) {
  .site__sidebar {
    flex: 0 0 250px;
    width: 250px;
    border-right: 1px solid var(--border-light);
  }
}
.site__sidebar__header h1, .site__sidebar__header h2, .site__sidebar__header h3 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0;
}
.site__sidebar__header h1 a, .site__sidebar__header h2 a, .site__sidebar__header h3 a {
  color: var(--text);
}
@media (max-width: 991.98px) {
  .site__sidebar__header {
    background-color: rgba(var(--primary-rgb), 0.05) !important;
    color: var(--text) !important;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
    margin-left: -15px;
    margin-right: -15px;
    border-left: 0 !important;
    margin-top: -1rem;
    padding: 0 !important;
  }
  .site__sidebar__header::before, .site__sidebar__header::after {
    display: none;
  }
  .site__sidebar__header h1, .site__sidebar__header h2, .site__sidebar__header h3 {
    margin-bottom: 0;
    font-size: 1.2rem !important;
    padding: 15px;
    font-weight: 400;
  }
  .site__sidebar__header h1 a, .site__sidebar__header h2 a, .site__sidebar__header h3 a {
    margin: -15px;
    padding: 15px;
    display: block;
  }
  .site__sidebar__header h4, .site__sidebar__header h5 {
    margin-top: -10px;
    padding: 0 15px 15px;
    font-size: 0.9rem !important;
    font-weight: 400;
  }
}
#paradise-app .site__sidebar__header {
  margin-top: 0 !important;
}
@media (min-width: 992px) {
  .site__sidebar__content {
    top: var(--header-height);
    bottom: 0;
    position: -webkit-sticky;
    position: sticky;
  }
  .site__sidebar__content__scroll {
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .site__sidebar__content__scroll::-webkit-scrollbar {
    width: 5px;
  }
  .site__sidebar__content__scroll::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: transparent;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
  }
  .site__sidebar__content__scroll:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
  }
}
@media (max-width: 1199.98px) {
  .site__sidebar__content__scroll > div {
    overflow: visible !important;
    height: auto !important;
  }
  .site__sidebar__content__scroll > div > div:first-child {
    position: relative !important;
    overflow: visible !important;
  }
}
.site__sidebar__item {
  font-size: 1.2rem;
  color: var(--text);
  transition: color 200ms, text-shadow 200ms;
  position: relative;
}
.site__sidebar__item:hover {
  filter: none;
  opacity: 1;
  color: unset;
  text-decoration: none;
  text-shadow: 0 0 10px var(--primary);
}
.site__sidebar__item--active {
  font-weight: 700;
}
.site__sidebar__item--with-subitems.site__sidebar__item--active {
  background: linear-gradient(to right, transparent, var(--border-light));
}
.site__sidebar__item--inactive {
  opacity: 0.6;
  filter: grayscale(100%);
}
.site__sidebar__item__icon {
  width: 1.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site__sidebar__item__ticker {
  margin-left: auto;
  background-color: var(--text);
  color: var(--body);
  padding: 0 0.25rem;
  font-size: 0.6em;
  border-radius: 3px;
  font-weight: 700;
}
.site__sidebar__subitem {
  font-size: 0.8rem;
  color: var(--text);
}
.site__sidebar__subitem:hover {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 992px) {
  .site__sidebar__subitem:hover {
    opacity: 0.6;
  }
}
.site__sidebar__subitem--active {
  color: var(--primary) !important;
}
@media (max-width: 991.98px) {
  .site__sidebar__menu {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 2px solid rgba(var(--primary-rgb), 0.1);
  }
}
.site__sidebar__games .site__sidebar__item {
  font-size: 0.9rem;
  display: flex;
}
@media (max-width: 991.98px) {
  .site__sidebar__games--vertical {
    margin-left: -15px;
    margin-right: -15px;
  }
  .site__sidebar__games--vertical .site__sidebar__item {
    padding-left: 15px;
    padding-right: 15px;
    display: none;
  }
  .site__sidebar__games--vertical .site__sidebar__item--active {
    color: var(--text);
    display: flex;
  }
  .site__sidebar__games--open .site__sidebar__item {
    display: flex;
  }
}

@media (min-width: 992px) {
  .site__wide-main {
    width: 0;
    flex: 1 0 auto;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.pointer-events-none {
  pointer-events: none;
}

.user-select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.line-through {
  text-decoration: line-through;
}

.pagination {
  border-radius: 0;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .pagination .page-item:nth-child(n+4):not(.disabled):not(.active) {
    display: none;
  }
  .pagination .page-item:nth-last-child(-n+4) {
    display: list-item !important;
  }
}

.page-link {
  font-weight: 700;
  border-radius: 0 !important;
  box-shadow: 0 6px 0 -3px var(--primary);
}
.page-item.active .page-link {
  box-shadow: 0 6px 0 -3px var(--text);
}
.page-item.disabled .page-link, .page-item:last-child .page-link, .page-item:first-child .page-link {
  box-shadow: none;
}

.toggle-dark-mode {
  border: 1px solid transparent;
}

.darkmode .toggle-dark-mode[data-mode=dark] {
  border-color: var(--body);
  background-color: transparent !important;
}

.lightmode .toggle-dark-mode[data-mode=light] {
  border-color: var(--body);
  background-color: transparent !important;
}

.automode .toggle-dark-mode[data-mode=auto] {
  border-color: var(--body);
  background-color: transparent !important;
}

.darkmode .lightmode-only {
  display: none;
}

.lightmode .darkmode-only {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .automode .lightmode-only {
    display: none;
  }
}
@media (prefers-color-scheme: light) {
  .automode .darkmode-only {
    display: none;
  }
}

@-webkit-keyframes submitting {
  0% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes submitting {
  0% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes hide {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes hide {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
.form {
  position: relative;
}
.form__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  transition: background 0.5s;
}
.form__loading--inactive {
  pointer-events: none;
  transition-delay: 500ms;
  opacity: 0;
}
.form__loading--active {
  pointer-events: auto;
  background: rgba(var(--body-rgb), 0.8);
  opacity: 1;
  z-index: 1;
}
.form__loading__content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form__loading__content--inactive {
  -webkit-animation: hide 0.5s forwards;
          animation: hide 0.5s forwards;
}
.form__loading__content--active {
  -webkit-animation: submitting 0.5s forwards;
          animation: submitting 0.5s forwards;
}
.form__loading__text {
  position: relative;
  text-transform: uppercase;
  font-size: 1rem;
}
.form__loading .loading {
  position: relative;
}
.form-control:disabled, .form-control[readonly] {
  background-color: var(--border-light);
}

.form-control-range {
  -webkit-appearance: none;
  border: 1px solid var(--border-light);
  height: 10px;
  z-index: 2;
  position: relative;
  border-radius: 0.3rem;
  cursor: -webkit-grab;
  cursor: grab;
}
.form-control-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  background-color: var(--primary);
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.form-control-range::-webkit-slider-track {
  -webkit-appearance: none;
  /* Override default look */
  background-color: var(--primary);
}
.form-control-range:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.form-control-range:focus {
  outline: none;
}
.form-control-range:focus + datalist {
  color: var(--text);
}
.form-control-range--max {
  border: 0;
  pointer-events: none;
  background-color: transparent;
  z-index: 3;
}
.form-control-range--max::-webkit-slider-track {
  -webkit-appearance: none;
  /* Override default look */
  background-color: transparent;
  pointer-events: none;
}
.form-control-range--max::-webkit-slider-thumb {
  background-color: var(--success);
  pointer-events: all;
  transform: translateY(4px);
}
.form-control-range--min::-webkit-slider-thumb {
  background-color: var(--danger);
}

datalist {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
  color: var(--gray);
}
datalist option {
  flex-grow: 1;
  flex-basis: 0;
  text-align: center;
  position: relative;
  padding-top: 15px;
  font-size: 0.7em;
}
datalist option::after {
  content: "";
  top: 5px;
  height: 5px;
  left: 50%;
  border-left: 1px solid var(--border-light);
  position: absolute;
}

.text-shadow {
  text-shadow: 1px 1px 0 #000;
}

.text-black {
  color: #000;
}

.text-text {
  color: var(--text);
}

.text-gold {
  color: var(--gold);
}

.text-gold-dark {
  color: var(--gold-dark);
}

.text-gold-very-dark {
  color: var(--gold-very-dark);
}

.sticky-top {
  top: var(--sticky-top);
}

button.site__link {
  padding: 0;
  border: 0;
  font-family: inherit;
  background-color: transparent;
}

@media (max-width: 991.98px) {
  h2, .h2 {
    font-size: 1.4rem;
  }

  h3, .h3 {
    font-size: 1.2rem;
  }

  h4, .h4 {
    font-size: 1.05rem;
  }

  h5, .h5 {
    font-size: 1rem;
  }

  h6, .h6 {
    font-size: 0.9rem;
  }

  legend {
    font-size: 1rem;
  }

  .sm\:viewport-edge {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0 !important;
  }

  .sm\:only-first-child > *:not(:first-child) {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .fadein {
    -webkit-animation: fadein 300ms forwards;
            animation: fadein 300ms forwards;
  }
}

.bounce-left {
  -webkit-animation: bounceleft 1s infinite;
          animation: bounceleft 1s infinite;
}

.bounce-right {
  -webkit-animation: bounceright 1s infinite;
          animation: bounceright 1s infinite;
}

.hover\:bounce-left:hover {
  -webkit-animation: bounceleft 1s infinite;
          animation: bounceleft 1s infinite;
}

.hover\:bounce-right:hover {
  -webkit-animation: bounceright 1s infinite;
          animation: bounceright 1s infinite;
}

.shadowpulse-dark {
  -webkit-animation: shadowpulse-dark 2s infinite;
          animation: shadowpulse-dark 2s infinite;
}

.shadowpulse-green {
  -webkit-animation: shadowpulse-green 2s infinite;
          animation: shadowpulse-green 2s infinite;
}

.shadowpulse-red {
  -webkit-animation: shadowpulse-red 2s infinite;
          animation: shadowpulse-red 2s infinite;
}

.shadowpulse-ggligaen {
  -webkit-animation: shadowpulse-ggligaen 2s infinite;
          animation: shadowpulse-ggligaen 2s infinite;
}

.glow-dark {
  -webkit-animation: glow-dark 2s infinite;
          animation: glow-dark 2s infinite;
}

.glow-green {
  -webkit-animation: glow-green 2s infinite;
          animation: glow-green 2s infinite;
}

.glow-red {
  -webkit-animation: glow-red 2s infinite;
          animation: glow-red 2s infinite;
}

.fadeout {
  -webkit-animation: fadeout 300ms forwards;
          animation: fadeout 300ms forwards;
}

@media (min-width: 992px) {
  .fadein-slow {
    opacity: 0;
    -webkit-animation: fadein 500ms forwards;
            animation: fadein 500ms forwards;
    -webkit-animation-delay: 100ms;
            animation-delay: 100ms;
  }
}

.bouncein {
  -webkit-animation: bouncein 300ms forwards;
          animation: bouncein 300ms forwards;
}

.swiper-container {
  position: relative;
}
.swiper-container .swiper-button {
  opacity: 0.6;
}
.swiper-container .swiper-button-next {
  right: 0;
}
.swiper-container .swiper-button-prev {
  left: 0;
}
.swiper-container:hover .swiper-button {
  opacity: 1;
}

.swiper-button {
  pointer-events: all;
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-color: var(--body);
  border: 1px solid var(--border-light);
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(-50%);
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  top: 50%;
}
.swiper-button-next {
  right: -15px;
}
.swiper-button-prev {
  left: -15px;
}
.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.skeleton {
  background-color: var(--gray-light);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: transparent !important;
  border-radius: 4px;
  display: block;
  height: var(--height-lg);
}
.skeleton--pulsate {
  -webkit-animation: pulsate 1.5s ease-in-out infinite;
          animation: pulsate 1.5s ease-in-out infinite;
}
.skeleton--wave {
  position: relative;
  overflow: hidden;
}
.skeleton--wave::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: wave 1.6s linear infinite;
          animation: wave 1.6s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.04), transparent);
}
.skeleton--circle {
  border-radius: 500px;
  flex-shrink: 0;
}
.skeleton--text {
  font-size: 0.8em;
  margin-bottom: 5px;
}
.skeleton--text:last-child {
  margin-bottom: 0;
}
.skeleton--text::before {
  content: "-";
  opacity: 0;
}
@media (max-width: 991.98px) {
  .skeleton {
    height: var(--height-md);
  }
}
@media (max-width: 767.98px) {
  .skeleton {
    height: var(--height-sm);
  }
}

@-webkit-keyframes wave {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes wave {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@-webkit-keyframes pulsate {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulsate {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.display-on-hover {
  opacity: 0;
}
.display-on-hover:hover {
  opacity: 1;
  transition: opacity 0.3s ease-out;
  color: var(--primary);
}

.list__item {
  border-bottom: 1px solid var(--border-light);
}
.list__item--clickable {
  position: relative;
  cursor: pointer;
}
.list__item--clickable:hover, .list__item--clickable.hover {
  text-decoration: none;
  color: var(--text);
}
.list__item--clickable:hover::before, .list__item--clickable.hover::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  -webkit-animation: fadein 200ms;
          animation: fadein 200ms;
}
.list__item--clickable:hover::after, .list__item--clickable.hover::after {
  content: "";
  height: 5px;
  background-color: var(--primary);
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  margin: auto;
  -webkit-animation: grow 500ms forwards;
          animation: grow 500ms forwards;
  pointer-events: none;
}
.rounded .list__item--clickable:first-child {
  border-radius: 0.3rem 0.3rem 0 0;
  overflow: hidden;
}
.rounded .list__item--clickable:last-child {
  border-radius: 0 0 0.3rem 0.3rem;
  overflow: hidden;
}
.rounded .list__item--clickable:only-child {
  border-radius: 0.3rem 0.3rem 0.3rem 0.3rem;
  overflow: hidden;
}
.list__item--selected {
  background-color: var(--bg-light-hover);
}
.list__item:last-child {
  border-bottom: 0 !important;
}

.input-group-text {
  background-color: var(--border-light);
}

@media (max-width: 991.98px) {
  input.form-control {
    font-size: 16px !important;
  }
}
.game-logo {
  flex-shrink: 0;
}
.game-logo--xxs {
  width: 25px;
  height: 25px;
}
.game-logo--xs {
  width: 40px;
  height: 40px;
}
.game-logo--sm {
  width: 50px;
  height: 50px;
}
.game-logo--md {
  width: 80px;
  height: 80px;
}
.game-logo--lg {
  width: 120px;
  height: 120px;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (min-width: 992px) {
  .lg\:overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

.hover\:text-light:hover {
  color: var(--light);
}

.hover\:text-primary:hover {
  color: var(--primary);
}

.bordered-image {
  display: flex;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  padding: 0.25rem;
  border-width: 2px;
  margin-bottom: 0;
}
.bordered-image__badge {
  position: absolute;
  inset: -10% -10% auto auto;
  width: 45%;
}
.bordered-image__badge > * {
  width: 100% !important;
}
.bordered-image--xxs {
  width: 25px;
  height: 25px;
}
.bordered-image--xxs .bordered-image__badge {
  top: -50%;
}
.bordered-image--xs {
  width: 40px;
  height: 40px;
}
.bordered-image--sm {
  width: 50px;
  height: 50px;
}
.bordered-image--md {
  width: 80px;
  height: 80px;
}
.bordered-image--lg {
  width: 120px;
  height: 120px;
  padding: 3px;
  border-width: 3px;
}
@media (max-width: 991.98px) {
  .bordered-image--lg {
    padding: 2px;
    border-width: 2px;
  }
}
.bordered-image--xl {
  width: 140px;
  height: 140px;
  padding: 5px;
  border-width: 5px;
}
@media (max-width: 991.98px) {
  .bordered-image--xl {
    padding: 2px;
    border-width: 2px;
  }
}

.hour-glass svg {
  opacity: 0;
  -webkit-animation: hourglass 2.4s ease-in infinite, hourglass-spin 2.4s ease-out infinite;
          animation: hourglass 2.4s ease-in infinite, hourglass-spin 2.4s ease-out infinite;
}
.hour-glass > svg:nth-child(1) {
  color: var(--primary);
  -webkit-animation-delay: 0s, 0s;
          animation-delay: 0s, 0s;
}
.hour-glass > svg:nth-child(2) {
  color: var(--primary);
  -webkit-animation-delay: 0.6s, 0s;
          animation-delay: 0.6s, 0s;
}
.hour-glass > svg:nth-child(3) {
  color: var(--primary);
  -webkit-animation-delay: 1.2s, 0s;
          animation-delay: 1.2s, 0s;
}
.hour-glass > svg:nth-child(4) {
  color: var(--primary);
  -webkit-animation-delay: 1.8s, 0s;
          animation-delay: 1.8s, 0s;
}
.hour-glass > svg:nth-child(4) {
  -webkit-animation: hourglass-end 2.4s ease-in infinite, hourglass-spin 2.4s ease-out infinite;
          animation: hourglass-end 2.4s ease-in infinite, hourglass-spin 2.4s ease-out infinite;
}
.hour-glass > svg:nth-child(5) {
  color: var(--text);
  opacity: 1;
  -webkit-animation: hourglass-spin 2.4s ease-out infinite;
          animation: hourglass-spin 2.4s ease-out infinite;
}

@-webkit-keyframes hourglass {
  0% {
    opacity: 1;
  }
  24% {
    opacity: 0.9;
  }
  26% {
    opacity: 0;
  }
}

@keyframes hourglass {
  0% {
    opacity: 1;
  }
  24% {
    opacity: 0.9;
  }
  26% {
    opacity: 0;
  }
}
@-webkit-keyframes hourglass-end {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hourglass-end {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hourglass-spin {
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes hourglass-spin {
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.flip-x {
  transform: scaleX(-1);
}

.accordion {
  -webkit-animation: accordion 400ms ease-out forwards;
          animation: accordion 400ms ease-out forwards;
}
.accordion__body {
  overflow: hidden;
}

.btn-primary, .article__content a[role=button] {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}
.btn-outline-primary:not([disabled]):not(.disabled):active, .btn-outline-primary:not([disabled]):not(.disabled):hover, .btn-outline-primary:not([disabled]):not(.disabled).active {
  color: #fff !important;
  background-color: var(--primary) !important;
}
.btn.disabled, .article__content a.disabled[role=button], .btn:disabled, .article__content a[role=button]:disabled {
  cursor: default;
}
.btn-primary:not(:disabled):not(.disabled):active, .article__content a[role=button]:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):focus, .article__content a[role=button]:not(:disabled):not(.disabled):focus, .btn-primary:not(:disabled):not(.disabled).active, .article__content a[role=button]:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled).focus, .article__content a[role=button]:not(:disabled):not(.disabled).focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active.focus, .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled):focus, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled).focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active.focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.5);
}
.btn-white {
  background-color: #fff;
  color: #fff;
}
.btn-outline-white {
  color: #fff;
  border-color: #fff;
}
.btn-outline-white:not([disabled]):not(.disabled):hover {
  color: #000;
  background-color: #fff;
}
.btn-light {
  color: var(--text-dark) !important;
  background-color: var(--light) !important;
  border-color: var(--light) !important;
}
.btn-outline-light {
  border-color: var(--light) !important;
}
.btn-outline-light:not([disabled]):not(.disabled):hover {
  background-color: var(--light) !important;
}
.btn-dark {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
  color: var(--body) !important;
}
.btn-outline-dark {
  color: var(--dark) !important;
  border-color: var(--dark) !important;
}
.btn-outline-dark:not([disabled]):not(.disabled):hover {
  color: var(--body) !important;
  background-color: var(--dark) !important;
}
.btn-body {
  background-color: var(--body);
  color: var(--text);
}
.btn-body:hover, .btn-body:active, .btn-body.hover, .btn-body.active {
  color: var(--text) !important;
}
.btn-discord {
  color: #fff;
  background-color: var(--discord);
}
.btn-prisguiden {
  color: var(--body);
  background-color: var(--prisguiden);
}
.btn-prisguiden:hover {
  color: var(--body);
}
.btn-prisguiden:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--prisguiden-rgb), 0.25);
}
.btn-outline-prisguiden {
  color: var(--prisguiden);
  border-color: var(--prisguiden);
}
.btn-outline-prisguiden:not([disabled]):not(.disabled):hover {
  color: var(--body);
  background-color: var(--prisguiden);
}
.btn-outline-prisguiden:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--prisguiden-rgb), 0.25);
}
.btn-gold {
  background-color: var(--gold);
  color: var(--gold-very-dark);
}
.btn-gold-sparkle {
  background-color: var(--gold);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.4) 50%, transparent 50%);
  background-repeat: no-repeat;
  color: var(--gold-very-dark);
  position: relative;
  overflow: hidden;
}
.btn-gold-sparkle::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 99%, rgba(255, 255, 255, 0) 100%);
  -webkit-animation: slide 5s infinite;
          animation: slide 5s infinite;
}
.btn-gold-sparkle:hover {
  background-image: none;
}
.btn-gold-sparkle:hover::after {
  display: none;
}
.btn-gold-dark {
  background-color: var(--gold-dark);
  color: var(--gold-very-dark);
}
.btn-outline-gold-dark {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.btn-outline-gold-dark:hover {
  background-color: var(--gold-dark);
  color: var(--gold-very-dark);
}
.btn-gold-very-dark {
  background-color: var(--gold-very-dark);
  color: #fff;
}
.btn-outline-gold-very-dark {
  border-color: var(--gold-very-dark);
  color: var(--gold-very-dark);
}
.btn-outline-gold-very-dark:hover {
  background-color: var(--gold-very-dark);
  color: #fff;
}

.image-container {
  position: relative;
}
.image-container__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.image-container--fixed-width {
  line-height: 0;
  vertical-align: middle;
}
.image-container--fit-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-grow: 1;
  position: relative;
}
.image-container--fit-image .image-container {
  width: 100%;
  height: 100%;
  padding-bottom: 0 !important;
}
.image-container--fit-image .image-container__picture {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.image-container--fit-image .image-container__image {
  position: static;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
}

.placeholder-image:empty, .placeholder-image:only-whitespace {
  background-color: var(--text);
}

.site__header {
  background-color: var(--primary);
  color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: opacity 0.4s;
}
.site__header__logo {
  position: relative;
  margin-bottom: 0 !important;
}
.site__header__logo__link {
  display: block;
  padding: 11px 0;
  color: inherit;
  transition: opacity 0.4s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.site__header__logo__link:hover {
  color: inherit;
  opacity: 0.8;
}
@media (max-width: 991.98px) {
  .site__header__logo .site__logo {
    width: 140px;
  }
}
.site__header__logo .santa-hat {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  transform: translate(-52%, -29%) rotate(-35deg) scaleX(-1) scale(0.8);
}
@media (max-width: 991.98px) {
  .site__header__logo .santa-hat {
    width: 33px;
  }
}
.site__header__main {
  display: flex;
  flex-wrap: wrap;
}
.site__header__tertiary {
  background: var(--light);
  color: var(--text);
  position: absolute;
  top: 100%;
  right: 0;
  bottom: auto;
  left: 0;
  border-bottom: 1px solid var(--border-light);
  z-index: -1;
  font-size: 0.8rem;
  max-height: 80vh;
  overflow: auto;
}
.site__header__tertiary:empty {
  display: none;
}
.site__header__notification-icon {
  position: relative;
  border-radius: 50%;
}
.site__header__notification-icon .notification-counter {
  position: absolute;
  transform: translateY(-25%);
  top: -5px;
  right: -10px;
  bottom: auto;
  left: auto;
  -webkit-animation: bounce 500ms 3;
          animation: bounce 500ms 3;
}
@media (max-width: 991.98px) {
  .site__header__userprofile {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .site__header__userprofile__text {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .site__header__userprofile__links {
    border-top: 1px solid var(--border-light);
  }
}
.site__header__userprofile__links__link {
  position: relative;
  cursor: pointer;
}
@media (max-width: 991.98px) {
  .site__header__userprofile__links__link {
    font-size: 1rem;
  }
}
.site__header__userprofile__links__link::after {
  content: "";
  border-right: 1px solid var(--border-dark);
  position: absolute;
  top: 25%;
  right: auto;
  bottom: 25%;
  left: 100%;
  pointer-events: none;
  margin-left: 0.5rem;
}
@media (max-width: 991.98px) {
  .site__header__userprofile__links__link::after {
    display: none;
  }
}
.site__header__userprofile__links__link:last-child::after {
  display: none;
}
.site__header__userprofile__links__link:hover {
  color: var(--tertiary);
  text-decoration: underline;
}

.site__subheader {
  margin-top: -1rem;
  margin-bottom: 1rem;
  background-color: var(--light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
  z-index: 5;
}
.site__subheader__content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: auto;
}
.site__subheader__items {
  display: flex;
  overflow: auto;
  padding: 0.5rem 0;
  position: relative;
  overflow-scrolling: touch;
}
.site__subheader__items::-webkit-scrollbar {
  display: none;
}
.site__subheader__items::-moz-scrollbar {
  display: none;
}
.site__subheader__items::-ms-scrollbar {
  display: none;
}
.site__subheader__title {
  padding: 0.5rem 1rem 0.5rem 0;
  margin-right: 1rem;
  border-right: 1px solid var(--border-light);
  margin-bottom: 0;
  font-size: 1.35rem;
}
.site__subheader__title a {
  color: inherit;
  text-decoration: none;
}
.site__subheader__scroller {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.4s;
}
.site__subheader__scroller--prev {
  left: 0;
  background: linear-gradient(to right, var(--light) 75%, transparent);
}
.site__subheader__scroller--next {
  right: 0;
  background: linear-gradient(to left, var(--light) 75%, transparent);
}
.site__subheader__scroller--hidden {
  pointer-events: none;
  opacity: 0;
}
.site__subheader__item-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
}
.site__subheader__item {
  color: var(--text);
}
.site__subheader__item.text-gold-very-dark {
  color: var(--gold-very-dark);
}
.site__subheader__item:hover {
  text-decoration: none;
}
.site__subheader__item--selected {
  position: relative;
}
.site__subheader__item--selected::after {
  content: "";
  max-width: 100%;
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--text), transparent);
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  opacity: 0.5;
}
@media (max-width: 991.98px) {
  .site__subheader {
    margin-top: -1rem;
    margin-bottom: 1rem;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  #paradise-app .site__subheader {
    margin-bottom: 0 !important;
  }
  .site__subheader__content {
    flex-direction: column;
    margin: 0 -15px;
  }
  .site__subheader__title {
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    border-right: 0;
    margin-right: 0;
    padding: 0.5rem 1rem;
    font-size: 1.05rem;
  }
  .site__subheader__items {
    width: 100%;
    padding: 0.5rem 1rem;
  }
}

.menu {
  display: flex;
}
.menu__icon {
  color: inherit;
  display: flex;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .menu__icon:hover {
    color: inherit;
    background: rgba(0, 0, 0, 0.25);
  }
}
.menu__icon.active {
  opacity: 1 !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
.menu__link {
  color: inherit;
  padding: 0 1rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.menu__link:hover {
  color: inherit;
  text-decoration: none;
}
.mainmenu .menu__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1199.98px) {
  .secondary-menu {
    font-size: 0.83rem;
  }

  .mainmenu {
    font-size: 0.83rem;
  }
}
@media (max-width: 991.98px) {
  .mainmenu {
    display: none;
    order: 3;
    font-size: 0.9rem;
    background-color: var(--secondary);
    border-top: 0 none;
    border-bottom: 2px solid var(--primary);
    min-width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding: 1rem;
  }
  .mainmenu--open {
    display: grid;
  }
  .mainmenu .header-search {
    grid-column: 1/-1;
  }
  .mainmenu__link {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary);
    text-decoration: none;
    border-radius: 0.3rem;
  }
}
.user-dropdown-item:hover {
  text-decoration: none;
  color: var(--tertiary);
  cursor: pointer;
}

.site__footer {
  border-top: 1px solid var(--border-light);
  background-color: var(--gray-light);
}
@media (max-width: 991.98px) {
  .site__footer {
    font-size: 0.8rem;
  }
}

.entrance {
  display: flex;
}
.entrance[data-sub-mark=level-up] .image-container__picture::after {
  content: "";
  background-image: url("/images/levelup-logo-hvit_150_124.png");
  position: absolute;
  width: 45px;
  height: 45px;
  left: 5px;
  bottom: 5px;
  background-color: black;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.8;
}
.entrance[data-sub-mark=level-up]:hover .image-container__picture::after {
  opacity: 1;
}
.entrance__link {
  color: var(--text);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 100%;
}
.entrance__link:hover {
  text-decoration: none;
}
.entrance__headline {
  font-weight: 800;
}
.entrance__headline--kommentar, .entrance__headline--refleksjon {
  font-style: italic;
}
.entrance__headline-grade--medium {
  font-size: 1.2em;
}
.entrance__headline-grade--short {
  font-size: 1.4em;
}
.entrance__headline:last-child {
  margin-bottom: 0;
}
.entrance__text {
  flex-grow: 1;
}
.entrance__image {
  position: relative;
  margin-bottom: 1rem;
}
.entrance__image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  transition: width 0.1s;
  background-color: var(--primary);
  display: block;
  pointer-events: none;
}
.entrance__kicker {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  max-width: 100%;
  font-size: 0.9rem;
  position: relative;
}
.entrance__mark {
  color: var(--text);
  text-transform: uppercase;
  position: relative;
}
.entrance__mark__text {
  display: block;
  padding: 0 0.5rem 0 0;
  position: relative;
}
.entrance__mark:not(:last-child) .entrance__mark__text {
  border-right: 1px solid var(--primary);
}
.entrance--with-background .entrance__text {
  padding: 1rem;
  margin-top: -1rem;
}
.entrance--with-background .entrance__text > * {
  transition: opacity 0.2s;
}
.entrance--with-background .entrance__link:hover .entrance__text > * {
  color: var(--text);
  opacity: 0.85;
}
.entrance--with-background .entrance__mark:not(:last-child) .entrance__mark__text {
  border-color: var(--text);
}
.entrance--with-background .entrance__kicker {
  color: var(--text);
}
.entrance__title {
  flex: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0 0.5rem;
  position: relative;
  text-transform: uppercase;
}
.entrance__submark {
  padding: 0 0.5rem;
  background-color: rgba(var(--primary-rgb), 0.075);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-block;
  position: relative;
  border-left: 2px solid rgba(var(--primary-rgb), 0.5);
}
.entrance__submark--level-up {
  background-color: #000000;
  color: #ffffff;
  border-left: 2px solid #bdbbbb;
}
.entrance__submark--level-up::before {
  content: "▶︎";
}
.entrance--with-background .entrance__submark {
  color: inherit;
  border-color: inherit;
}
.entrance__preamble {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.entrance__preamble:last-child {
  margin-bottom: 0;
}
.entrance:hover .entrance__image::after {
  width: 5px;
}
.entrance__author {
  position: absolute;
  bottom: 7.5%;
  left: 5%;
  display: flex;
  align-items: flex-end;
}
.entrance__author__image {
  width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  border: 2px solid white;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.entrance__author__text {
  background: white;
  border-radius: 0.3rem;
  padding: 0.5rem;
  color: black;
  line-height: 1.1;
  font-size: 0.9em;
}
.entrance__author__text:nth-child(2) {
  margin-bottom: 0.5rem;
}
.entrance__author__text--small, .entrance__author__text--small-vertical {
  font-size: 0.8em;
}
.entrance__author__name {
  font-weight: 600;
}
.entrance__author__title {
  font-weight: 0.9em;
}
.entrance font {
  line-height: 1;
}
.entrance font[size="1"] {
  font-size: 0.7em;
}
.entrance font[size="2"] {
  font-size: 0.85em;
}
.entrance font[size="3"] {
  font-size: 1em;
}
.entrance font[size="4"] {
  font-size: 1.1em;
}
.entrance font[size="5"] {
  font-size: 1.2em;
}
.entrance font[size="6"] {
  font-size: 1.3em;
}
.entrance font[size="7"] {
  font-size: 2em;
  font-weight: 800;
}
@media (min-width: 992px) {
  .entrance font[size="7"] {
    font-size: 2.8em;
  }
}
.entrance .comment-counter {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  bottom: auto;
  left: auto;
  background: #000;
  color: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  font-weight: 600;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
}
.entrance .comment-counter:hover {
  text-decoration: none;
  background-color: var(--primary);
}
.entrance .comment-counter:hover::after {
  border-right-color: var(--primary);
}
.entrance .comment-counter::after {
  content: "";
  top: 100%;
  right: 10%;
  bottom: auto;
  left: auto;
  position: absolute;
  border-left: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #000;
  margin-top: -5px;
}

@media (min-width: 992px) {
  .entrance__headline--default {
    font-size: 1.7rem;
  }
  .entrance__headline--default:only-child {
    font-size: 2rem;
  }
  .entrance__headline--medium {
    font-size: 2rem;
  }
  .entrance__headline--medium:only-child {
    font-size: 2.3rem;
  }
  .entrance__headline--large {
    font-size: 3rem;
  }
  .entrance__headline--large:only-child {
    font-size: 3.2rem;
  }
  .entrance__headline--small {
    font-size: 1.6rem;
  }
  .entrance__headline--small:only-child {
    font-size: 1.8rem;
  }
  .entrance__headline--small-vertical {
    font-size: 1.5rem;
  }
  .entrance__kicker--default {
    font-size: 0.8rem;
  }
  .entrance__kicker--small {
    font-size: 0.75rem;
  }
  .entrance__preamble--small {
    display: none;
  }
  .entrance__submark--small {
    font-size: 0.75rem;
  }
  .entrance__author__image--large {
    width: 100px;
  }
  .entrance__author__image--small, .entrance__author__image--default, .entrance__author__image--small-vertical {
    width: 60px;
  }
}
@media (max-width: 991.98px) {
  .entrance {
    margin-bottom: 1rem;
  }
  .entrance__kicker {
    font-size: 0.75rem;
  }
  .entrance__kicker--default, .entrance__kicker--small {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
  }
  .entrance__headline {
    font-size: 1.4rem;
  }
  .entrance__headline--large, .entrance__headline--medium {
    font-size: 2.1rem;
  }
  .entrance__headline--large:only-child, .entrance__headline--medium:only-child {
    font-size: 2.4rem;
  }
  .entrance__headline--default, .entrance__headline--small, .entrance__headline--small-vertical {
    margin-bottom: 0.2rem;
    font-size: 1.5rem;
  }
  .entrance__headline--default:only-child, .entrance__headline--small:only-child, .entrance__headline--small-vertical:only-child {
    font-size: 1.8rem;
  }
  .entrance__headline--default:nth-child(2), .entrance__headline--default:nth-last-child(3), .entrance__headline--small:nth-child(2), .entrance__headline--small:nth-last-child(3), .entrance__headline--small-vertical:nth-child(2), .entrance__headline--small-vertical:nth-last-child(3) {
    font-size: 1.2rem;
  }
  .entrance__preamble {
    margin-bottom: 0.5rem;
  }
  .entrance__preamble--default, .entrance__preamble--small {
    margin-bottom: 0;
    font-size: 0.75rem;
  }
  .entrance__preamble--default:nth-child(3):nth-last-child(2), .entrance__preamble--small:nth-child(3):nth-last-child(2) {
    display: none;
  }
  .entrance__preamble--default:nth-child(3), .entrance__preamble--default:nth-child(2):nth-last-child(2), .entrance__preamble--small:nth-child(3), .entrance__preamble--small:nth-child(2):nth-last-child(2) {
    font-size: 0.7rem;
  }
  .entrance__link--default, .entrance__link--small {
    flex-direction: row;
    width: 100%;
    flex-shrink: 0;
  }
  .entrance__image {
    margin-bottom: 0.8rem;
  }
  .entrance__image--large, .entrance__image--medium, .entrance__image--small-vertical {
    margin-left: -15px;
    margin-right: -15px;
  }
  .entrance__image--default, .entrance__image--small {
    width: 100px;
    margin-bottom: 0;
    flex-shrink: 0;
    display: flex;
  }
  .entrance__image .image-container__picture {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
  }
  .entrance__image .image-container__picture .image-container__image {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 100%;
    position: static;
  }
  .entrance--with-background .entrance__text--large, .entrance--with-background .entrance__text--medium, .entrance--with-background .entrance__text--small-vertical {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -1rem;
  }
  .entrance__text--default, .entrance__text--small {
    flex: 1;
    overflow: hidden;
    padding-left: 10px;
  }
  .entrance--with-background .entrance__text--default, .entrance--with-background .entrance__text--small {
    margin-top: 0;
    padding: 10px;
  }
  .entrance__submark {
    font-size: 0.8rem;
  }
  .entrance__submark--default, .entrance__submark--small {
    font-size: 0.7rem;
  }
  .entrance__author__image {
    width: 60px;
  }
  .entrance__author--default, .entrance__author--small {
    display: none;
  }
}
.video-container {
  position: relative;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.embed-container {
  position: relative;
}
.embed-container--responsive {
  padding-bottom: 56.25%;
}
.embed-container--responsive .embed-container__embed {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  width: 100%;
  height: 100%;
}
.embed-container__embed {
  width: 100%;
}

.product {
  font-size: 1.2rem;
}
@media (max-width: 991.98px) {
  .product {
    font-size: 1rem;
  }
  .product .btn-lg, .product .btn-group-lg > .btn, .product .article__content .btn-group-lg > a[role=button], .article__content .product .btn-group-lg > a[role=button] {
    font-size: 0.75rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.product__header {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 0 5px black, 1px 1px 0 black;
  text-align: center;
}
.product__header::before {
  content: "";
  border-radius: 50%;
  position: absolute;
  top: auto;
  right: -646px;
  bottom: -64px;
  left: auto;
  width: 2500px;
  height: 1000px;
  border: 100px solid var(--primary);
}
.product__header__image {
  position: absolute;
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  box-shadow: 0 5px 3px rgba(0, 0, 0, 0.3);
  background-color: #000;
  border: 1px solid #000;
}
@media (max-width: 991.98px) {
  .product__header::before {
    top: auto;
    right: -922px;
    bottom: -80px;
    left: auto;
  }
  .product__header__image {
    top: auto;
    right: 15px;
    bottom: 15px;
    left: auto;
  }
}
@media (max-width: 991.98px) {
  .product__title {
    font-size: 1.4rem;
  }
}
.product__score__conclusion {
  z-index: 1;
}
.product__score__conclusion__icon {
  width: 46px;
  margin: -1rem 1rem 0 0;
  color: var(--primary);
  font-size: 2.88rem;
}
.product__score__conclusion__meta {
  font-size: 1rem;
  text-transform: uppercase;
  opacity: 0.5;
}
.product__score__conclusion__text {
  position: relative;
  display: inline-block;
  font-style: italic;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.2;
}
.product__score__conclusion__text::after {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  left: 8px;
  bottom: 16px;
  right: -8px;
  top: -8px;
  z-index: -1;
}
@media (max-width: 991.98px) {
  .product__score__conclusion__icon {
    margin: -0.5rem 0.5rem 0 0;
    font-size: 1.65rem;
    width: 29px;
  }
  .product__score__conclusion__meta {
    font-size: 0.8rem;
  }
  .product__score__conclusion__text {
    font-size: 1.35rem;
  }
}
.product__price-button {
  position: relative;
}
.product__price-button::after {
  content: "Annonse";
  color: var(--text);
  position: absolute;
  top: auto;
  right: auto;
  bottom: 100%;
  left: 0;
  margin-bottom: 2px;
  opacity: 0.6;
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
}
.product__child-nav-wrap {
  overflow-x: auto;
  overflow-y: clip;
}
.product__child-nav {
  border-bottom: 2px solid var(--border-light);
}
.product__child-nav__item {
  cursor: pointer;
  font-size: 1rem;
  position: relative;
}
.product__child-nav__item::after {
  content: "";
  border-bottom: 2px solid var(--border-light);
  position: absolute;
  top: auto;
  right: 0;
  bottom: -2px;
  left: 0;
}
.product__child-nav__item--active::after {
  border-color: var(--primary);
}
.product__child {
  display: none;
}
.product__child--active {
  display: block;
}
.product__article__headline__link {
  color: var(--text);
}
.product__article__headline__link:hover {
  text-decoration: none;
}
.product__images__image {
  border: 2px solid transparent;
  transition: border 0.2s;
}
.product__images__image:hover {
  border-color: var(--primary);
}
.product__pricebox {
  position: relative;
  container-type: inline-size;
  background-color: rgba(0, 0, 0, 0.1);
  background-color: #292929;
  padding: 1rem;
  color: #fff;
}
.product__pricebox a {
  color: inherit;
  box-shadow: none !important;
}
.product__pricebox__image a {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.product__pricebox__image a img {
  max-width: 100%;
  max-height: 120px;
}
.product__pricebox__offers {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
}
.product__pricebox__offer {
  display: flex;
  background-color: #fff;
  color: #000 !important;
  transition: box-shadow 0.3s;
  box-shadow: none !important;
  font-size: 0.8rem !important;
}
.product__pricebox__offer:hover {
  box-shadow: 0 4px 8px #0003 !important;
}
.product__pricebox::after {
  content: "Annonse";
  position: absolute;
  bottom: 100%;
  left: 0;
  pointer-events: none;
  font-size: 11px;
  color: #6c757d;
}

.text-prisjakt {
  color: #007cb2 !important;
}

.feed--labeled {
  position: relative;
}
.feed--labeled::after {
  content: "Annonse";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 100%;
  left: 0;
  opacity: 0.6;
  font-size: 0.7rem;
  color: var(--text);
}
.feed__header, .feed__footer {
  display: flex;
  align-items: center;
}
.feed__header::before, .feed__footer::before {
  content: "";
  margin-right: 1rem;
  width: 5px;
  height: 30px;
  background-color: var(--primary);
}
.feed__header--centered::before, .feed__footer--centered::before {
  width: auto;
  flex: 1;
}
.feed__header > *, .feed__footer > * {
  margin: 0;
}
.feed__header::after {
  content: "";
  border-bottom: 3px solid rgba(var(--primary-rgb), 0.15);
  flex: 1;
  margin-left: 1rem;
}
.feed__nav {
  display: flex;
  align-items: center;
}
.feed__nav__item {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.feed__nav__item::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 0px;
  bottom: 5px;
  left: 10px;
  background: rgba(var(--primary-rgb), 0.7);
  z-index: -1;
  opacity: 0;
  transition: opacity 200ms;
}
.feed__nav__item:hover::after {
  opacity: 0.25;
  -webkit-animation: slidein 200ms forwards;
          animation: slidein 200ms forwards;
}
.feed__nav__item.active::after {
  opacity: 0.5;
}
@media (min-width: 992px) {
  .feed__item:hover .feed__background {
    opacity: 0.6;
  }
  .feed__item:hover .tournament-feed__background {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.feed__game-logo {
  position: relative;
  transition: filter 0.4s ease;
  margin-bottom: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  transition: filter 300ms;
}
.feed__background {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.feed__avatar {
  position: relative;
  margin-bottom: 0;
  background: var(--body);
  border: 2px solid var(--primary);
  padding: 3px;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  transition: filter 300ms;
}
.feed--prisguiden {
  --primary-rgb: var(--prisguiden-rgb);
  --primary: var(--prisguiden);
  --secondary: var(--prisguiden-badge);
}
.feed--telialigaen {
  --primary-rgb: var(--telialigaen-rgb);
  --primary: var(--telialigaen);
}

@-webkit-keyframes slidein {
  from {
    right: 100%;
  }
  to {
    right: 0px;
  }
}

@keyframes slidein {
  from {
    right: 100%;
  }
  to {
    right: 0px;
  }
}
.author-box {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--border-dark);
}
.author-box__subheader {
  opacity: 0.7;
  font-size: 0.8rem;
}
.author-box__image {
  background-color: var(--gray-light);
}
.author-box__image figure {
  line-height: 0;
  width: 75px;
  height: 75px;
  padding: 3px;
  border: 3px solid var(--primary);
  margin: auto !important;
  background: var(--body);
}
@media (min-width: 992px) {
  .author-box__image figure {
    width: 120px;
    height: 120px;
    padding: 5px;
    border: 5px solid var(--primary);
  }
}
.author-box__social-accounts a {
  color: var(--text);
  transition: color 0.4s;
}
.author-box__social-accounts a:hover {
  color: var(--tertiary);
}
.author-box__article {
  position: relative;
  font-size: 0.9rem;
}
.author-box__article:last-child {
  margin-bottom: 0 !important;
}
.author-box__article__headline {
  color: var(--text);
  font-weight: 600;
}
.author-box__article__published {
  opacity: 0.5;
  font-size: 0.8em;
}
@media (min-width: 992px) {
  .author-box__article::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    border-bottom: 1px dashed var(--border-light);
    margin: auto;
    width: 50px;
  }
}
@media (max-width: 991.98px) {
  .author-box {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .author-box__text {
    flex-grow: 1;
    justify-content: center;
    background-color: var(--light);
    border-left: 1px solid var(--border-light);
  }
  .author-box__image {
    flex-shrink: 0;
  }
  .author-box__article {
    width: 100%;
    flex-basis: 100%;
    border-top: 1px solid var(--border-light);
  }
}

.feed--reviews__review {
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
}
.feed--reviews__review:hover {
  text-decoration: none;
}

.feed--deals__logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  background: #fff;
  margin: auto 0;
  border-radius: 5px;
  display: flex;
}
.feed--deals__deal {
  background: #fff;
  color: #000;
  position: relative;
  border: 1px solid lightgrey;
}
.feed--deals__deal:hover {
  text-decoration: none;
  color: #000;
}
.feed--deals__image img {
  max-width: 100%;
}
.feed--deals__button {
  color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s;
  background-color: #00addb;
  width: 100%;
}
.feed--deals__button:hover {
  background-color: #007cb2;
}
.feed--deals__discount {
  position: absolute;
  inset: 10px 10px auto auto;
  color: #fff;
  background: var(--success);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .feed--recommended-product {
    margin-bottom: 1rem;
  }
}
.feed--recommended-product__product {
  position: relative;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .feed--recommended-product__product {
    margin-left: -15px;
    margin-right: -15px;
    border-left: 0 none;
    border-right: 0 none;
  }
}
.feed--recommended-product__product::before {
  content: "";
  position: absolute;
  border: 100px solid var(--primary);
  top: auto;
  right: auto;
  bottom: -62px;
  left: -125%;
  border-radius: 50%;
  height: 200%;
  width: 300%;
  z-index: 1;
}
.feed--recommended-product__product__title {
  margin: 0;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  padding: 0.7rem;
  z-index: 3;
  line-height: 1;
  text-shadow: 1px 1px 0 #000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}
.feed--recommended-product__product__stamp {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0.7rem;
  left: 0.7rem;
  color: #fff;
  z-index: 3;
  font-size: 1.1rem;
  line-height: 1em;
  font-weight: 400;
}
.feed--recommended-product__product__scoretext {
  position: relative;
  font-style: italic;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}
.feed--recommended-product__product__scoretext__icon {
  line-height: 1.5;
  font-size: 1.2em;
  width: 35px;
  flex-shrink: 0;
}
.feed--recommended-product__product__scoretext:hover {
  color: var(--text);
  text-decoration: none;
}
.feed--recommended-product__author {
  position: absolute;
  top: auto;
  right: 0.7rem;
  bottom: 0.7rem;
  left: auto;
  z-index: 3;
}
.feed--recommended-product__author__image {
  border: 2px solid #fff;
  padding: 2px;
  background-color: var(--primary);
  display: flex;
}
.feed--recommended-product .btn-prisguiden {
  position: relative;
}
.feed--recommended-product .btn-prisguiden::after {
  content: "Annonse";
  position: absolute;
  top: auto;
  right: auto;
  bottom: 100%;
  left: 0;
  font-size: 0.7rem;
  opacity: 0.5;
  font-weight: 400;
  color: var(--text);
}

.tournament-feed__item:hover .tournament-feed__image-wrapper {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.tournament-feed__item:hover .tournament-feed__image-wrapper::after {
  background: linear-gradient(to right, rgba(var(--light-rgb), 1) 0%, rgba(var(--light-rgb), 0) 100%);
}
.tournament-feed__image-wrapper {
  transition: -webkit-clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease, -webkit-clip-path 0.5s ease;
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(72% 0, 100% 0, 100% 100%, 48% 100%);
          clip-path: polygon(72% 0, 100% 0, 100% 100%, 48% 100%);
}
.tournament-feed__image-wrapper::after {
  transition: background 1s ease;
  width: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to right, rgba(var(--light-rgb), 1) 50%, rgba(255, 255, 255, 0) 100%);
  height: 100%;
}
.tournament-feed__background {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.feed--black-friday {
  background-color: #000;
  background-image: linear-gradient(to right, #000, transparent), repeating-linear-gradient(45deg, transparent, transparent 10px, #222 10px, #222 20px);
  color: #fff;
}
.feed--black-friday .big {
  font-size: 2em;
  font-weight: 700;
}
.feed--black-friday .medium {
  font-size: 1.4em;
}
.feed--black-friday .categories {
  line-height: normal;
}
.feed--black-friday .categories a {
  text-transform: uppercase;
  display: inline-flex;
  margin-right: 0.5rem;
}
.feed--black-friday .btn, .feed--black-friday .article__content a[role=button], .article__content .feed--black-friday a[role=button] {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.feed--black-friday .btn:hover, .feed--black-friday .article__content a[role=button]:hover, .article__content .feed--black-friday a[role=button]:hover {
  background: rgba(255, 255, 255, 0.2);
}
.feed--black-friday .btn::after, .feed--black-friday .article__content a[role=button]::after, .article__content .feed--black-friday a[role=button]::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  -webkit-animation: slide 5s infinite;
          animation: slide 5s infinite;
}

.hub-feed__header {
  color: #fff;
}
.hub-feed__header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}
.hub-feed__logo-section {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}
.hub-feed__avatar {
  width: 40px;
  height: 40px;
}

.feed--esportlive {
  overflow: auto;
}
@media (min-width: 992px) {
  .feed--esportlive::-webkit-scrollbar {
    height: 5px;
  }
  .feed--esportlive::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: transparent;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
  }
  .feed--esportlive:hover::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
  }
}

.stream-list__match {
  border-top: 4px solid var(--border-light);
}
.stream-list__match__info {
  border-bottom: 1px dashed var(--border-light);
}
.stream-list__match__streams {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.stream-list__match__stream--offline {
  border: 1px solid var(--border-light);
  background-color: var(--body);
}
.stream-list__match__stream--offline:hover {
  border-color: var(--primary);
}
.stream-list__match__stream--online {
  border: 1px solid var(--success);
  background-color: rgba(64, 179, 161, 0.25);
}
.stream-list__match__stream--online:hover {
  border-color: var(--terminalgreen);
}
.stream-list__match__stream:hover {
  color: inherit;
}

.featured-streams .swiper-container {
  padding: 8px;
}

.most-read {
  background: #292f35;
}
.most-read__article {
  position: relative;
}
.most-read__article a {
  background: rgba(255, 255, 255, 0.25);
}
@media (min-width: 992px) {
  .most-read__article {
    font-size: 0.8rem;
  }
}
.most-read__number {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 0 0 0.3rem 0;
  left: 0;
  top: 0;
}

.newsletter-signup__form {
  position: relative;
}
.newsletter-signup__form--submitting::after {
  content: "";
  position: absolute;
  background-color: var(--body);
  opacity: 0.5;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
}
.loading__loader {
  height: 5rem;
  width: 1rem;
  background-color: currentColor;
  color: rgba(var(--primary-rgb), 0.9);
  -webkit-animation: load 1s infinite ease-in-out;
          animation: load 1s infinite ease-in-out;
  transform: translateZ(0);
  position: relative;
  -webkit-animation-delay: 0.16s;
          animation-delay: 0.16s;
}
.loading__loader:before, .loading__loader:after {
  height: 5rem;
  width: 1rem;
  background-color: currentColor;
  color: rgba(var(--primary-rgb), 0.8);
  -webkit-animation: load 1s infinite ease-in-out;
          animation: load 1s infinite ease-in-out;
  transform: translateZ(0);
  position: absolute;
  top: 0;
  content: "";
}
.loading__loader:before {
  left: -1.5rem;
}
.loading__loader:after {
  right: -1.5rem;
  -webkit-animation-delay: 0.32s;
          animation-delay: 0.32s;
}

@-webkit-keyframes load {
  0%, 80%, 100% {
    height: 5rem;
    box-shadow: 0 0;
  }
  40% {
    height: 6rem;
    box-shadow: 0 -1rem;
    color: var(--primary);
  }
}

@keyframes load {
  0%, 80%, 100% {
    height: 5rem;
    box-shadow: 0 0;
  }
  40% {
    height: 6rem;
    box-shadow: 0 -1rem;
    color: var(--primary);
  }
}
.site__header__search {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1000;
}
@media (min-width: 992px) {
  .site__header__search-wrap {
    position: relative;
  }
}
.site__header__search__form {
  width: 220px;
  -webkit-animation: searchslide 100ms forwards;
          animation: searchslide 100ms forwards;
  position: relative;
  z-index: 1;
}
.site__header__search__form__loading {
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  left: auto;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0.7;
  color: var(--text);
}
@media (max-width: 1199.98px) {
  .site__header__search__form__loading {
    right: 1.5rem;
  }
}
.site__header__search__filters {
  background-color: var(--light);
}
.site__header__search__results {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  bottom: auto;
  left: -0.5rem;
  border-radius: 0.3rem;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.3);
  background-color: var(--body);
  color: var(--text);
  overflow: hidden;
}
.site__header__search__results__item {
  border-bottom: 1px solid var(--border-light);
}
.site__header__search__results__item__link {
  color: inherit;
}
.site__header__search__results__item__link:hover {
  text-decoration: none;
}
.site__header__search__results__item__link__text {
  font-size: 0.8rem;
}
.site__header__search__results__item__link__kicker {
  font-size: 0.7rem;
  color: var(--primary);
}
.site__header__search__results__item:last-child {
  border-bottom: 0;
}
@media (max-width: 991.98px) {
  .site__header__search {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    background-color: var(--body);
    font-size: 1rem;
  }
  .site__header__search-icon {
    display: none !important;
  }
  .search-open .site__header__search {
    border-bottom: 2px solid var(--primary);
  }
  .site__header__search__form {
    width: 100%;
    position: relative;
    padding: 15px;
    -webkit-animation: none;
            animation: none;
  }
  .site__header__search__results {
    position: static;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
  }
}

@-webkit-keyframes searchslide {
  from {
    width: 0;
  }
  to {
    width: 220px;
  }
}

@keyframes searchslide {
  from {
    width: 0;
  }
  to {
    width: 220px;
  }
}
.matchup-filter__logo {
  position: relative;
  margin-bottom: 0;
  height: 20px;
  width: 20px;
}

@media (min-width: 768px) {
  #notifications-container {
    position: relative;
  }
}

.notifications-menu__dropdown {
  top: 100%;
  right: 0;
  bottom: auto;
  left: auto;
  border-radius: 0;
  border: none;
  box-shadow: 0 0.3rem 0.3rem 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  transition: height 500ms ease;
  background-color: var(--light) !important;
  z-index: 1000;
  width: 500px;
  max-width: 100vw;
}
@media (max-width: 767.98px) {
  .notifications-menu__dropdown {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .notifications-menu__dropdown {
    top: 100%;
    right: -9px;
    bottom: auto;
    left: auto;
    box-shadow: none;
    border: 1px solid var(--border-dark);
    border-radius: 0.3rem;
    margin-top: 10px;
  }
  .notifications-menu__dropdown::before {
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border-dark);
    position: absolute;
    bottom: 100%;
    right: 10px;
  }
}
.notifications-menu__dropdown__menu {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 80vh;
}
.notifications-menu__dropdown__menu__item {
  color: var(--text) !important;
  display: flex;
  align-items: center;
  transition: background 500ms;
  cursor: default;
}
.notifications-menu__dropdown__menu__item:hover {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.025);
}
.notifications-menu__dropdown__menu__item--clickable {
  cursor: pointer;
}
.notifications-menu__dropdown__menu__item--clickable:hover {
  background-color: rgba(var(--contrast-rgb), 0.2);
}
.notifications-menu__dropdown__menu__item__unread-circle {
  border-radius: 50%;
  height: 13px;
  width: 13px;
  background: var(--primary);
}
.notifications-menu__dropdown__menu__item__avatar {
  position: relative;
  margin-bottom: 0;
  background: var(--body);
  border: 2px solid var(--primary);
  padding: 3px;
  height: 65px;
  width: 65px;
  border-radius: 50%;
  transition: filter 300ms;
}
.notifications-menu__dropdown__menu__item__avatar:hover {
  filter: brightness(1.2);
}
.notifications-menu__dropdown__menu__item__avatar .image-container {
  border-radius: 50%;
  overflow: hidden;
}

.articlelist__article__image {
  width: 25%;
}
@media (max-width: 1199.98px) {
  .articlelist__article__image {
    width: 35%;
  }
}
.articlelist__article__image .image-container__picture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
}
.articlelist__article__image img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 100%;
  position: static;
}
.articlelist__article__text {
  width: 75%;
}
@media (max-width: 1199.98px) {
  .articlelist__article__text {
    width: 65%;
  }
}
.articlelist__article__headline--kommentar, .articlelist__article__headline--refleksjon {
  font-style: italic;
}

.recommendations__recommendation__punchline {
  background: rgba(0, 0, 0, 0.75);
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 0.9rem;
  font-weight: 600;
  padding-left: 80px;
  line-height: 1.4;
}
.recommendations__recommendation__punchline__icon {
  font-size: 2em;
  line-height: 0;
  position: absolute;
  right: 0.5rem;
  bottom: 100%;
  transform: translateY(60%);
}
.recommendations__recommendation__category {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 25%);
}
.recommendations__recommendation__author-image {
  position: absolute;
  width: 75px;
  left: 0;
  bottom: 0;
}

.recommendation__text {
  font-size: 1.2rem;
}
@media (max-width: 991.98px) {
  .recommendation__text {
    font-size: 1rem;
  }
}
.recommendation__text > p, .recommendation__text > ul {
  margin: 0.5em 0 1.5em;
}
.recommendation__text div[data-oembed-url] {
  width: 100%;
}
.recommendation__punchline {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  .recommendation__punchline {
    font-size: 1.2rem;
  }
}
.recommendation__punchline__icon {
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: auto;
  left: auto;
  line-height: 0;
  font-size: 4.5em;
  opacity: 0.3;
  pointer-events: none;
}
.recommendation .remote-product--prisguiden {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.recommendation__author-image {
  flex-shrink: 0;
  width: 150px;
}
@media (max-width: 991.98px) {
  .recommendation__author-image {
    width: 80px;
  }
}

.recommendation-feed__author-image {
  position: absolute;
  width: 75px;
  top: 5%;
}
@media (max-width: 991.98px) {
  .recommendation-feed__author-image {
    width: 125px;
  }
}
.recommendation-feed__author-image__wrapper {
  overflow-y: hidden;
  position: relative;
  width: 75px;
  min-width: 75px;
}
@media (max-width: 991.98px) {
  .recommendation-feed__author-image__wrapper {
    width: 125px;
    min-width: 125px;
  }
}
.recommendation-feed__item {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}
.recommendation-feed__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(186deg, rgba(255, 255, 255, 0) 40%, rgba(0, 0, 0, 0.9051995798) 70%);
}

.players-table__player:hover {
  background-color: var(--bg-light-hover);
}
.players-table__player--active {
  background-color: var(--bg-light-hover);
}
.players-table__head {
  font-size: 0.8em;
}
.players-table__col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 9%;
  text-align: right;
  position: relative;
}
@media (max-width: 991.98px) {
  .players-table__col {
    display: none;
  }
}
.players-table__header-col {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.players-table__header-col:hover {
  opacity: 0.7;
}
.players-table__sorticon {
  position: absolute;
  left: 100%;
  margin-left: 3px;
}
.players-table__name-col {
  width: 22%;
  flex-grow: 1;
}
.players-table__name-col--large {
  width: 60%;
}
@media (max-width: 991.98px) {
  .players-table__name-col {
    width: 60%;
  }
}
.players-table__status-col {
  width: 20%;
  text-align: right;
}
@media (max-width: 991.98px) {
  .players-table__status-col {
    width: 30%;
  }
}
.players-table__dropdown-col {
  width: 15%;
}
@media (max-width: 991.98px) {
  .players-table__dropdown-col {
    width: 10%;
    margin-left: auto;
  }
}
.players-table__detailed-info {
  border-top: 0.3rem dotted var(--border-light);
  background-color: var(--bg-light-hover);
}
.players-table__detail-col {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.players-table__detail-col--mobile {
  display: none;
}
@media (max-width: 991.98px) {
  .players-table__detail-col--mobile {
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.matchuplist {
  transition: opacity 0.4s;
}
.matchuplist--loading {
  opacity: 0.6;
}
.matchuplist__stream-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  display: flex;
  align-items: center;
}
.matchuplist__matchup {
  position: relative;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.matchuplist__matchup--postponed .matchuplist__meta__time, .matchuplist__matchup--postponed .matchuplist__meta__date {
  text-decoration: line-through;
  opacity: 0.6;
}
.matchuplist__matchup:last-child {
  border-bottom: 0;
}
@media (max-width: 991.98px) {
  .matchuplist__matchup {
    font-size: 0.8rem;
  }
}
.matchuplist__team {
  width: 42.5%;
  color: var(--text);
}
.matchuplist__team__logo {
  border: 2px solid var(--border-dark);
  padding: 2px;
  width: 50px;
  height: 50px;
}
@media (max-width: 991.98px) {
  .matchuplist__team__logo {
    width: 35px;
    height: 35px;
  }
}
.matchuplist__team__label {
  font-size: 0.9em;
}
@media (max-width: 991.98px) {
  .matchuplist__team {
    width: 40%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.65rem;
  }
  .matchuplist__team__data {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .matchuplist__team__name {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.matchuplist__meta-details {
  font-size: 1.25rem;
}
@media (max-width: 767.98px) {
  .matchuplist__meta-details {
    font-size: 0.85em;
  }
}
.matchuplist__meta {
  width: 15%;
  white-space: nowrap;
}
.matchuplist__meta--small {
  font-size: 0.85em;
}
.matchuplist__meta--large {
  font-size: 1.25rem;
}
@media (max-width: 991.98px) {
  .matchuplist__meta {
    width: 20%;
  }
  .matchuplist__meta--small {
    font-size: 0.65rem;
  }
  .matchuplist__meta--large {
    font-size: 1rem;
  }
}
.matchuplist__small-col {
  width: 12%;
}
.matchuplist__large-col {
  width: 20%;
}

.brackets {
  cursor: -webkit-grab;
  cursor: grab;
}
.brackets:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 992px) {
  .brackets {
    border: 2px dashed var(--border-light);
  }
  .brackets:focus {
    border: 2px solid var(--border-dark);
    outline: 0;
  }
}

.bracket-nav__item {
  cursor: pointer;
  background-color: var(--border-dark);
  font-weight: 700;
  color: #fff;
}
.bracket-nav__item--selected {
  background-color: var(--primary);
}

.bracket__round {
  width: 300px;
  flex-shrink: 0;
}
.bracket__matchup {
  position: relative;
  background: var(--light);
  border: 2px solid var(--border-dark);
  color: var(--text);
  font-weight: 700;
  user-drag: none;
  -moz-user-drag: none;
  -webkit-user-drag: none;
}
.bracket__matchup__team {
  pointer-events: none;
  position: relative;
}
.bracket__matchup__team:last-child::after {
  content: "";
  height: 2px;
  left: 0;
  right: 0;
  bottom: calc(100% - 1px);
  position: absolute;
  background: linear-gradient(to right, transparent, var(--border-dark), transparent);
}
.bracket__matchup--winner-home .bracket__matchup__score--home, .bracket__matchup--winner-away .bracket__matchup__score--away {
  color: var(--success);
}
.bracket__matchup--winner-home .bracket__matchup__score--away, .bracket__matchup--winner-away .bracket__matchup__score--home {
  color: var(--danger);
}
.bracket__matchup__score {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  background-color: var(--body);
  width: 40px;
  text-align: center;
  color: var(--text);
  font-size: 1.2em;
}
.bracket__matchup__connector {
  position: absolute;
  right: calc(100% + 2px);
  margin-right: 1.5rem;
  top: -19px;
  bottom: -19px;
  width: 1.5rem;
  border-right: 2px solid var(--border-dark);
  border-bottom: 2px solid var(--border-dark);
  border-top: 2px solid var(--border-dark);
  pointer-events: none;
}
.bracket__matchup__connector::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  border-bottom: 2px solid var(--border-dark);
  left: calc(100% + 2px);
  width: 1.5rem;
}
.bracket__round:first-child .bracket__matchup__connector {
  display: none;
}

.bracket--winner .bracket__round:nth-child(2) .bracket__matchup__connector {
  top: -19px;
  bottom: -19px;
}

.bracket--winner .bracket__round:nth-child(3) .bracket__matchup__connector {
  top: -76px;
  bottom: -76px;
}

.bracket--winner .bracket__round:nth-child(4) .bracket__matchup__connector {
  top: -190px;
  bottom: -190px;
}

.bracket--winner .bracket__round:nth-child(5) .bracket__matchup__connector {
  top: -418px;
  bottom: -418px;
}

.bracket--winner .bracket__round:nth-child(6) .bracket__matchup__connector {
  top: -874px;
  bottom: -874px;
}

.bracket--winner .bracket__round:nth-child(7) .bracket__matchup__connector {
  top: -1786px;
  bottom: -1786px;
}

.bracket--winner .bracket__round:nth-child(8) .bracket__matchup__connector {
  top: -3610px;
  bottom: -3610px;
}

.bracket--winner .bracket__round:nth-child(9) .bracket__matchup__connector {
  top: -7258px;
  bottom: -7258px;
}

.bracket--winner .bracket__round:nth-child(10) .bracket__matchup__connector {
  top: -14554px;
  bottom: -14554px;
}

.bracket--winner .bracket__round:nth-child(11) .bracket__matchup__connector {
  top: -29146px;
  bottom: -29146px;
}

.bracket--winner .bracket__round:nth-child(12) .bracket__matchup__connector {
  top: -58330px;
  bottom: -58330px;
}

.bracket--winner .bracket__round:nth-child(13) .bracket__matchup__connector {
  top: -116698px;
  bottom: -116698px;
}

.bracket--winner .bracket__round:nth-child(14) .bracket__matchup__connector {
  top: -233434px;
  bottom: -233434px;
}

.bracket--winner .bracket__round:nth-child(15) .bracket__matchup__connector {
  top: -466906px;
  bottom: -466906px;
}

.bracket--winner .bracket__round:nth-child(16) .bracket__matchup__connector {
  top: -933850px;
  bottom: -933850px;
}

.bracket--loser .bracket__round:nth-child(3) .bracket__matchup__connector {
  top: -19px;
  bottom: -19px;
}

.bracket--loser .bracket__round:nth-child(4) .bracket__matchup__connector {
  top: -19px;
  bottom: -19px;
}

.bracket--loser .bracket__round:nth-child(5) .bracket__matchup__connector {
  top: -76px;
  bottom: -76px;
}

.bracket--loser .bracket__round:nth-child(6) .bracket__matchup__connector {
  top: -76px;
  bottom: -76px;
}

.bracket--loser .bracket__round:nth-child(7) .bracket__matchup__connector {
  top: -190px;
  bottom: -190px;
}

.bracket--loser .bracket__round:nth-child(8) .bracket__matchup__connector {
  top: -190px;
  bottom: -190px;
}

.bracket--loser .bracket__round:nth-child(9) .bracket__matchup__connector {
  top: -418px;
  bottom: -418px;
}

.bracket--loser .bracket__round:nth-child(10) .bracket__matchup__connector {
  top: -418px;
  bottom: -418px;
}

.bracket--loser .bracket__round:nth-child(11) .bracket__matchup__connector {
  top: -874px;
  bottom: -874px;
}

.bracket--loser .bracket__round:nth-child(12) .bracket__matchup__connector {
  top: -874px;
  bottom: -874px;
}

.bracket--loser .bracket__round:nth-child(13) .bracket__matchup__connector {
  top: -1786px;
  bottom: -1786px;
}

.bracket--loser .bracket__round:nth-child(14) .bracket__matchup__connector {
  top: -1786px;
  bottom: -1786px;
}

.bracket--loser .bracket__round:nth-child(15) .bracket__matchup__connector {
  top: -3610px;
  bottom: -3610px;
}

.bracket--loser .bracket__round:nth-child(16) .bracket__matchup__connector {
  top: -3610px;
  bottom: -3610px;
}

.bracket--loser .bracket__round:nth-child(17) .bracket__matchup__connector {
  top: -7258px;
  bottom: -7258px;
}

.bracket--loser .bracket__round:nth-child(even) .bracket__matchup__connector {
  top: 50% !important;
  bottom: auto !important;
  border-top: 0 none;
  border-bottom: 0 none;
  width: 3rem;
  margin-right: 3rem;
}
.bracket--loser .bracket__round:nth-child(even) .bracket__matchup__connector::after {
  width: 3rem;
}

.stars-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.stars {
  position: absolute;
  top: -25%;
  right: -60%;
  bottom: -25%;
  left: -60%;
  transform: rotate(-45deg);
  opacity: 0.7;
}

.star {
  --star-color: var(--primary-color);
  --star-tail-length: 6em;
  --star-tail-height: 2px;
  --star-width: calc(var(--star-tail-length) / 6);
  --fall-duration: 4s;
  --tail-fade-duration: var(--fall-duration);
  position: absolute;
  top: var(--top-offset);
  left: 0;
  width: var(--star-tail-length);
  height: var(--star-tail-height);
  color: var(--star-color);
  background: linear-gradient(45deg, currentColor, transparent);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px currentColor);
  transform: translate3d(500%, 0, 0);
  -webkit-animation: fall var(--fall-duration) var(--fall-delay) linear infinite, tail-fade var(--tail-fade-duration) var(--fall-delay) ease-out infinite;
          animation: fall var(--fall-duration) var(--fall-delay) linear infinite, tail-fade var(--tail-fade-duration) var(--fall-delay) ease-out infinite;
}
@media (max-width: 991.98px) {
  .star {
    -webkit-animation: fall var(--fall-duration) var(--fall-delay) linear infinite;
            animation: fall var(--fall-duration) var(--fall-delay) linear infinite;
  }
}
.star:nth-child(1) {
  --star-tail-length: 7.27em;
  --top-offset: 29.7%;
  --fall-duration: 7.488s;
  --fall-delay: 3.475s;
}
.star:nth-child(2) {
  --star-tail-length: 6.7em;
  --top-offset: 11%;
  --fall-duration: 5.074s;
  --fall-delay: 3.308s;
}
.star:nth-child(3) {
  --star-tail-length: 6.96em;
  --top-offset: 64.4%;
  --fall-duration: 5.431s;
  --fall-delay: 9.312s;
}
.star:nth-child(4) {
  --star-tail-length: 6.35em;
  --top-offset: 44.1%;
  --fall-duration: 7.385s;
  --fall-delay: 9.961s;
}
.star:nth-child(5) {
  --star-tail-length: 7.39em;
  --top-offset: 74.1%;
  --fall-duration: 5.121s;
  --fall-delay: 9.852s;
}
.star:nth-child(6) {
  --star-tail-length: 5.3em;
  --top-offset: 91.2%;
  --fall-duration: 6.711s;
  --fall-delay: 5.969s;
}
.star:nth-child(7) {
  --star-tail-length: 6.93em;
  --top-offset: 1.8%;
  --fall-duration: 6.059s;
  --fall-delay: 2.746s;
}
.star:nth-child(8) {
  --star-tail-length: 6.38em;
  --top-offset: 41.8%;
  --fall-duration: 6.563s;
  --fall-delay: 6.074s;
}
.star:nth-child(9) {
  --star-tail-length: 7.11em;
  --top-offset: 78%;
  --fall-duration: 7.235s;
  --fall-delay: 1.983s;
}
.star:nth-child(10) {
  --star-tail-length: 7.14em;
  --top-offset: 66.6%;
  --fall-duration: 5.323s;
  --fall-delay: 8.193s;
}
.star:nth-child(11) {
  --star-tail-length: 7.16em;
  --top-offset: 46.9%;
  --fall-duration: 7.262s;
  --fall-delay: 7.237s;
}
.star:nth-child(12) {
  --star-tail-length: 7.11em;
  --top-offset: 89.1%;
  --fall-duration: 4.822s;
  --fall-delay: 8.245s;
}
.star:nth-child(13) {
  --star-tail-length: 6.19em;
  --top-offset: 65.5%;
  --fall-duration: 6.409s;
  --fall-delay: 9.849s;
}
.star:nth-child(14) {
  --star-tail-length: 7.13em;
  --top-offset: 89.8%;
  --fall-duration: 5.893s;
  --fall-delay: 6.455s;
}
.star:nth-child(15) {
  --star-tail-length: 6.1em;
  --top-offset: 53.1%;
  --fall-duration: 5.695s;
  --fall-delay: 9.823s;
}
.star::before, .star::after {
  position: absolute;
  content: "";
  top: 0;
  left: calc(var(--star-width) / -2);
  width: var(--star-width);
  height: 100%;
  background: linear-gradient(45deg, transparent, currentColor, transparent);
  border-radius: inherit;
  -webkit-animation: blink 2s linear infinite;
          animation: blink 2s linear infinite;
}
.star::before {
  transform: rotate(45deg);
}
.star::after {
  transform: rotate(-45deg);
}

@-webkit-keyframes fall {
  to {
    transform: translate3d(-500%, 0, 0);
  }
}

@keyframes fall {
  to {
    transform: translate3d(-500%, 0, 0);
  }
}
@-webkit-keyframes tail-fade {
  0%, 50% {
    width: var(--star-tail-length);
    opacity: 1;
  }
  70%, 80% {
    width: 0;
    opacity: 0.4;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes tail-fade {
  0%, 50% {
    width: var(--star-tail-length);
    opacity: 1;
  }
  70%, 80% {
    width: 0;
    opacity: 0.4;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@-webkit-keyframes blink {
  50% {
    opacity: 0.6;
  }
}
@keyframes blink {
  50% {
    opacity: 0.6;
  }
}
.comments__account-provider {
  opacity: 0.8;
}
.comments__comment .delete-btn {
  background-color: var(--bg-light-hover);
}
.comments__comment:hover .comments__account-provider {
  opacity: 1;
}
.comments__comment:hover .delete-btn {
  background-color: var(--danger);
}
.comments__comment:last-child {
  border-bottom: 0 !important;
}

.popup-card {
  position: fixed;
  top: auto;
  right: 40px;
  bottom: 40px;
  left: auto;
  z-index: 999;
}
@media (min-width: 768px) {
  .popup-card {
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  .popup-card {
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
  }
}
.popup-card__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: auto;
  left: auto;
  line-height: 0;
}
.popup-card--banner {
  top: auto;
  right: 0px;
  bottom: 0px;
  left: auto;
}
@media (min-width: 768px) {
  .popup-card--banner {
    width: 600px;
  }
}

.article {
  --media-offset: -100px;
}

.article-container {
  width: 580px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.article__kicker {
  font-size: 1.4rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  max-width: 100%;
}
.article__kicker::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 16px;
  right: -16px;
  top: -12px;
  background: rgba(var(--primary-rgb), 0.07);
}

.article__mark {
  color: var(--text);
  position: relative;
}
.article__mark__text {
  display: block;
  border: 2px solid transparent;
  position: relative;
}
.article__mark__text::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  top: -2px;
  border: 2px solid var(--primary);
}
.article__mark::before {
  content: "";
  position: absolute;
  left: 6px;
  bottom: 6px;
  top: -6px;
  right: -6px;
  background-color: var(--primary);
  opacity: 0.25;
}
@media (max-width: 767.98px) {
  .article__mark::before {
    left: 4px;
    bottom: 4px;
    top: -2px;
    right: -2px;
  }
}

.article__title {
  font-size: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
}

.article__headline {
  font-size: 3rem;
  font-weight: 800;
}
.article__headline--kommentar, .article__headline--refleksjon {
  font-style: italic;
}

.article__preamble {
  font-size: 1.4rem;
  font-weight: 700;
}

.article__published {
  color: #777;
}

.article__meta a:hover,
.article__meta [role=button]:hover {
  color: var(--tertiary);
}
.article__meta .comment-icon {
  width: 18px;
}
.article__meta .share-icon {
  width: 13px;
}
@media (max-width: 991.98px) {
  .article__meta {
    font-size: 0.9rem;
  }
}

.article__byline {
  max-width: 75%;
}

.article__author__image {
  padding: 2px;
  border: 2px solid var(--dark);
}
.article__author__name {
  color: var(--text);
}
.article__author__name:hover {
  color: var(--text);
}
.article__author__some {
  color: var(--text);
}
.article__author__some:hover {
  opacity: 0.8;
}

.article__opinionated-author-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  aspect-ratio: 16/9;
  pointer-events: none;
}

.article__opinionated-author {
  position: absolute;
  left: 10%;
  bottom: 12%;
  line-height: 1.3;
  font-size: 1.6rem;
  display: flex;
  align-items: flex-end;
}
.article__opinionated-author__image {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  border: 2px solid white;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.article__opinionated-author__text {
  background: white;
  border-radius: 0.3rem;
  padding: 0.5rem;
  color: black;
  margin-bottom: 1rem;
}
@media (max-width: 991.98px) {
  .article__opinionated-author {
    left: 0%;
    bottom: 5%;
  }
  .article__opinionated-author__text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
}

.article__details {
  font-size: 0.9rem;
}
@media (max-width: 991.98px) {
  .article__details {
    font-size: 0.8rem;
  }
}

.article__content > p, .article__content > ul {
  margin: 0.5em 0 1.5em;
  max-width: 800px;
}
.article__content > h3, .article__content > h4, .article__content > h2 {
  margin: 1em 0 0.8em;
  font-weight: 800;
  line-height: 1.4;
}
.article__content > h3:first-child, .article__content > h4:first-child, .article__content > h2:first-child {
  margin-top: 0;
}
.article__content a[role=button] {
  font-size: 1em;
}
.article__content disclaimer {
  display: block;
  border-top: 1px dashed var(--border-dark);
  border-bottom: 1px dashed var(--border-dark);
  padding: 1rem 0;
}
.article__content .indent-1 {
  padding-left: 30px;
}
.article__content .indent-2 {
  padding-left: 60px;
}
.article__content .indent-3 {
  padding-left: 90px;
}
.article__content .indent-4 {
  padding-left: 120px;
}
.article__content .article-media--table {
  font-size: 1rem;
}
.article__content .article-media--table tbody:first-child tr:first-child td {
  border-top: 0;
}
.article__content .article-media--table td:first-child:nth-last-child(2) {
  font-weight: 600;
  border-right: 1px solid var(--border-light);
}
@media (max-width: 991.98px) {
  .article__content .article-media--table {
    font-size: 0.75rem;
  }
}
.article__content .article-media-tweet-placeholder {
  padding: 1rem;
  color: var(--twitter);
  background-color: var(--body);
  border: 1px solid #e1e8ed;
  border-radius: 5px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-width: 100%;
  font-weight: 700;
  --primary: var(--twitter);
  --primary-rgb: var(--twitter-rgb);
}
.article__content .article-media--instagram .instagram-media-placeholder:not(.instagram-media-rendered) {
  border: 1px solid #dbdbdb;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 3px;
  padding: 1rem;
}
.article__content .article-media--instagram .instagram-media-placeholder:not(.instagram-media-rendered)::before {
  content: "Laster inn Instagram-post ...";
}
.article__content .article-media--instagram iframe {
  width: 100%;
}
.article__content .article-media--instagram iframe:not(.instagram-media-rendered) {
  opacity: 0;
}

.article-media {
  margin: 0 0 1.5em;
  position: relative;
}

.article-media.f-center, .article-media.f-none {
  clear: both;
}

.article-media.f-left {
  clear: left;
}

.article-media.f-right {
  clear: right;
}

.article-media-caption {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.5em;
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.article-media-caption.expanded {
  width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.article-media-caption.expanded .article-media-caption__show-more {
  display: none;
}
.article-media-caption__show-more {
  color: var(--primary);
  position: absolute;
  right: 10px;
  bottom: 7px;
  display: block;
}
@media (min-width: 576px) {
  .article-media-caption {
    width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .article-media-caption__show-more {
    display: none;
  }
}

.article-media-credits {
  display: none;
  opacity: 0.6;
  font-size: 0.8rem;
}
.expanded .article-media-credits {
  display: block;
}
@media (min-width: 576px) {
  .article-media-credits {
    display: block;
  }
}

.article__featuredmedium {
  position: relative;
}

@media (min-width: 992px) {
  .article__headlines {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .article__featuredmedium .article-media-caption {
    padding-left: 0;
    padding-right: 0;
  }

  .article-media.f-right {
    float: right;
    margin: 0 0 1.5em 1.5em;
  }
  .article-media.f-left {
    float: left;
    margin: 0 1.5em 1.5em 0;
  }
  .article-media.size-11 {
    width: 91.6666%;
  }
  .article-media.size-10 {
    width: 83.3333%;
  }
  .article-media.size-9 {
    width: 75%;
  }
  .article-media.size-8 {
    width: 66.6666%;
  }
  .article-media.size-7 {
    width: 58.3333%;
  }
  .article-media.size-6 {
    width: 50%;
  }
  .article-media.size-5 {
    width: 41.6666%;
  }
  .article-media.size-4 {
    width: 33.3333%;
  }
  .article-media.size-3 {
    width: 25%;
  }
  .article-media.size-2 {
    width: 16.6666%;
  }
  .article-media.size-1 {
    width: 8.3333%;
  }
}
.article-media--imagecompare .imagecompare__images > img:nth-child(n+2) {
  display: none;
}

.article-image, .article-video, .article-media--imagecompare, .article__gallery {
  position: relative;
}
@media (min-width: 992px) {
  .article__content--with-popouts > .article-image.size-12, .article__content--with-popouts > .article-video.size-12, .article__content--with-popouts > .article-media--imagecompare.size-12, .article__content--with-popouts > .article__gallery.size-12 {
    margin-left: var(--media-offset);
    margin-right: var(--media-offset);
  }
  .article__content--with-popouts > .article-image.f-left, .article__content--with-popouts > .article-video.f-left, .article__content--with-popouts > .article-media--imagecompare.f-left, .article__content--with-popouts > .article__gallery.f-left {
    margin-left: var(--media-offset);
  }
  .article__content--with-popouts > .article-image.f-right, .article__content--with-popouts > .article-video.f-right, .article__content--with-popouts > .article-media--imagecompare.f-right, .article__content--with-popouts > .article__gallery.f-right {
    margin-right: var(--media-offset);
  }
  .article__content--with-popouts > .article-image.size-6, .article__content--with-popouts > .article-video.size-6, .article__content--with-popouts > .article-media--imagecompare.size-6, .article__content--with-popouts > .article__gallery.size-6 {
    width: 60%;
  }
}
.article-image .article-media-caption, .article-video .article-media-caption, .article-media--imagecompare .article-media-caption, .article__gallery .article-media-caption {
  background-color: var(--body);
  border-top: 0;
}
@media (max-width: 991.98px) {
  .article-image .article-media-caption, .article-video .article-media-caption, .article-media--imagecompare .article-media-caption, .article__gallery .article-media-caption {
    border-left: 0;
    border-right: 0;
  }
}
.article-image::before, .article-video::before, .article-media--imagecompare::before, .article__gallery::before {
  content: "";
  height: 5px;
  background: linear-gradient(to right, rgba(var(--primary-rgb), 0.6), var(--primary));
  left: 0;
  top: 100%;
  right: 0;
  position: absolute;
  pointer-events: none;
  opacity: 0.7;
}

.article-media--ggquiz {
  width: 100%;
  max-width: 800px;
}
.article-media--ggquiz iframe {
  width: 100%;
  border: 0px none;
  overflow: hidden;
}

.article-media--embed iframe {
  max-width: 100%;
  border: 0px none;
  overflow: hidden;
}
.darkmode .article-media--embed .embed-container--datawrapperdwcdnnet {
  padding-left: 1rem;
  padding-right: 1rem;
  background: #fff;
}
@media (prefers-color-scheme: dark) {
  .automode .article-media--embed .embed-container--datawrapperdwcdnnet {
    padding-left: 1rem;
    padding-right: 1rem;
    background: #fff;
  }
}

.article__gallery {
  text-align: center;
}
.article__gallery .swiper-slide {
  height: auto;
  display: flex;
}
.article__gallery__item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}
.article__gallery__item__link {
  position: relative;
  box-shadow: none !important;
  aspect-ratio: 16/9;
}
.article__gallery__item__link:hover {
  background-color: transparent !important;
}
.article__gallery__item__link .image-container--fixed-width {
  max-width: 100%;
}
.article__gallery__expand {
  position: absolute;
  right: 5px;
  top: 5px;
  opacity: 0.6;
  color: #fff;
  transition: opacity 0.4s;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font-size: 1.4rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  pointer-events: none;
  z-index: 1;
}
.article__gallery:hover .article__gallery__expand {
  opacity: 1;
}

.article-factbox {
  padding: 1rem;
  background-color: var(--light);
}
.article-factbox__content {
  font-size: 1rem;
  overflow: hidden;
  max-height: 10000px;
  transition: max-height 0.5s ease-in-out;
}
.article-factbox__content > *:last-child {
  margin-bottom: 0;
}
.article-factbox__title {
  font-size: 1.2rem;
}
.article-factbox--collapsed .article-factbox__content {
  max-height: 0px;
}
.article-factbox__toggler {
  display: inline-block;
  cursor: pointer;
  font-size: 1rem;
}
.article-factbox__toggler:hover {
  color: var(--primary);
}

@media (max-width: 767.98px) {
  .article-media-caption {
    font-size: 0.9rem;
  }

  .article-media-credits {
    font-size: 0.8rem;
  }

  .article__kicker {
    font-size: 0.85rem;
  }
  .article__kicker::before {
    bottom: 4px;
    left: 4px;
    right: -4px;
    top: -4px;
  }

  .article__mark__text {
    border-width: 1px;
  }
  .article__mark__text::after {
    border-width: 1px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }

  .article__headline {
    font-size: 1.8rem;
  }

  .article__preamble {
    font-size: 1rem;
  }

  .article__pages {
    font-size: 0.9rem;
  }

  .article__content {
    font-size: 1rem;
  }
  .article__content > h2 {
    font-size: 2rem;
  }
  .article__content > h3 {
    font-size: 1.6rem;
  }
  .article__content > h4 {
    font-size: 1.2rem;
  }

  .lum-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media (max-width: 991.98px) {
  .article-media {
    width: auto;
  }

  .article__header .article__featuredmedium {
    margin-left: -15px;
    margin-right: -15px;
  }

  .article-image, .article-video, .article__gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
  .article-image .swiper-button-next, .article-video .swiper-button-next, .article__gallery .swiper-button-next {
    right: 0;
  }
  .article-image .swiper-button-prev, .article-video .swiper-button-prev, .article__gallery .swiper-button-prev {
    left: 0;
  }

  .article-media-caption {
    padding: 7.5px 15px;
  }
}
@media (min-width: 768px) {
  .article__content {
    font-size: 1.2rem;
  }
  .article__content > h2 {
    font-size: 2.4rem;
  }
  .article__content > h3 {
    font-size: 2rem;
  }
  .article__content > h4 {
    font-size: 1.6rem;
  }
}
.article__subjects {
  flex-wrap: wrap;
}

.article__subject {
  background-color: var(--gray-light);
  color: var(--text);
  border-radius: 3px;
  transition: background-color 0.2s, color 0.2s;
}
.article__subject__icon {
  background: rgba(0, 0, 0, 0.05);
  padding: 3px 10px;
}
.article__subject__name {
  padding: 3px 10px;
}
.article__subject:hover {
  background-color: var(--primary);
  text-decoration: none;
  color: #fff;
}

@media (max-width: 767.98px) {
  .article__footer {
    font-size: 0.9em;
  }
}

.article__flag {
  max-width: 20px;
}

.article__pages__page {
  display: flex;
  align-items: center;
  color: var(--text);
}
.article__pages__page__icon {
  width: 11px;
  height: 29px;
  color: var(--primary);
}
.article__pages__page::after {
  content: "";
  height: 3px;
  background-color: rgba(var(--primary-rgb), 0.1);
  flex-grow: 1;
  margin-left: 0.5rem;
}
.article__pages__page--selected::after {
  background-color: rgba(var(--primary-rgb), 0.6);
}

@media (min-width: 992px) {
  .article-media--product.size-3, .article-media--product.size-4, .article-media--product.size-5, .article-media--product.size-6 {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    max-width: 50%;
    min-width: 40%;
  }
}
@media (max-width: 991.98px) {
  .article__product__title {
    font-size: 1rem;
  }
}
.article__product__image--empty {
  display: flex;
}
.article__product__image--empty a {
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-dark);
  padding: 2px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}
.article__product__image--empty a img {
  max-width: 100%;
  max-height: 100%;
}
.article__product__text {
  font-size: 0.8rem;
}
.article__product__readmore a {
  color: var(--primary) !important;
  box-shadow: none !important;
}
.article__product__readmore a:hover {
  color: var(--tertiary) !important;
}
.article__product__affiliate {
  font-size: 0.8rem;
  position: relative;
}
.article__product__affiliate::before {
  content: "Kommersielt samarbeid";
  color: var(--text);
  position: absolute;
  font-size: 0.6rem;
  opacity: 0.5;
  top: auto;
  right: 0;
  bottom: 100%;
  left: auto;
  margin-bottom: 2px;
  font-weight: 400;
}
.article__product__affiliate__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.article__product__affiliate .prisguiden-logo__text {
  fill: currentColor;
}
@media (max-width: 991.98px) {
  .article__product__affiliate {
    width: 50%;
  }
  .article__product__affiliate__link {
    font-size: 0.8rem;
    line-height: 1.5;
    border-radius: 0.2rem;
    padding: 0.25rem 0.5rem;
  }
}
.size-3 .article__product, .size-4 .article__product, .size-5 .article__product, .size-6 .article__product {
  flex-wrap: wrap;
}
.size-3 .article__product__affiliate, .size-4 .article__product__affiliate, .size-5 .article__product__affiliate, .size-6 .article__product__affiliate {
  width: 100%;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media (max-width: 991.98px) {
  .article__product {
    flex-wrap: wrap;
  }
  .article__product__affiliate {
    width: 100%;
    flex-wrap: wrap;
    margin-top: 1.5rem;
  }
  .article__product__affiliate::before {
    right: auto;
    left: 0;
  }
  .article__product__affiliate .btn-group {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .article__product__affiliate--align-none, .article__product__affiliate--align-center {
    margin-left: auto;
  }
  .size-3.f-left .article__product__affiliate::before, .size-4.f-left .article__product__affiliate::before, .size-5.f-left .article__product__affiliate::before, .size-6.f-left .article__product__affiliate::before {
    right: auto;
    left: 0;
  }
  .size-3.f-right .article__product, .size-4.f-right .article__product, .size-5.f-right .article__product, .size-6.f-right .article__product {
    justify-content: flex-end;
  }
  .size-3.f-right .article__product__text, .size-4.f-right .article__product__text, .size-5.f-right .article__product__text, .size-6.f-right .article__product__text {
    order: 0;
    text-align: right;
  }
  .size-3.f-right .article__product__image, .size-4.f-right .article__product__image, .size-5.f-right .article__product__image, .size-6.f-right .article__product__image {
    order: 1;
  }
  .size-3.f-right .article__product__affiliate, .size-4.f-right .article__product__affiliate, .size-5.f-right .article__product__affiliate, .size-6.f-right .article__product__affiliate {
    order: 2;
    justify-content: flex-end;
  }
  .size-3.f-right .article__product__affiliate__logo, .size-4.f-right .article__product__affiliate__logo, .size-5.f-right .article__product__affiliate__logo, .size-6.f-right .article__product__affiliate__logo {
    order: 0;
  }
}

.reviewed-product {
  clear: both;
}
@media (min-width: 992px) {
  .reviewed-product {
    margin-left: var(--media-offset);
    margin-right: var(--media-offset);
  }
}
.reviewed-product__badge {
  width: 25%;
  flex-shrink: 0;
}
.reviewed-product__score {
  position: relative;
}
.reviewed-product__score::before {
  content: "";
  top: -10px;
  right: -10px;
  left: 15px;
  bottom: 15px;
  position: absolute;
  background-color: var(--primary);
}
@media (max-width: 991.98px) {
  .reviewed-product__score::before {
    left: 7px;
    bottom: 7px;
    right: -4px;
    top: -4px;
  }
}
.reviewed-product__score__value {
  font-size: 5rem;
  line-height: 1.2;
  position: relative;
  color: #000;
  border: 5px solid #000;
  border-bottom: 0;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .reviewed-product__score__value {
    border-width: 3px;
  }
}
.reviewed-product__score__value__scale {
  font-size: 1.2rem;
  margin-right: -29px;
}
.reviewed-product__score__value--decimal .reviewed-product__score__value__scale {
  margin-right: 0;
}
.reviewed-product__score__logo {
  border: 5px solid #000;
  position: relative;
  color: #fff;
  background: #000;
}
.reviewed-product__conclusion {
  width: 75%;
}
.reviewed-product__conclusion__text {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.reviewed-product__conclusion__text::after {
  content: "";
  position: absolute;
  background-color: rgba(var(--primary-rgb), 0.07);
  left: 8px;
  bottom: 16px;
  right: -8px;
  top: -8px;
  z-index: -1;
}
.reviewed-product__title {
  color: var(--text);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  z-index: 1;
  box-shadow: none !important;
  transition: none !important;
}
.reviewed-product__title:hover {
  color: var(--tertiary) !important;
  text-decoration: underline !important;
}
.reviewed-product__title::after {
  content: "";
  position: absolute;
  background-color: rgba(var(--primary-rgb), 0.07);
  left: 8px;
  bottom: 0px;
  right: -8px;
  top: -8px;
  z-index: -1;
}
.reviewed-product__subscores {
  font-size: 1rem;
}
.reviewed-product__subscores__subscore__icon {
  margin-top: 2px;
  font-size: 1.2rem;
}
.reviewed-product__subscores--positive {
  background: linear-gradient(to right, rgba(64, 179, 161, 0.1), transparent);
}
.reviewed-product__subscores--negative {
  background: linear-gradient(to right, rgba(227, 52, 47, 0.1), transparent);
}
.reviewed-product__author {
  font-size: 0.9rem;
}
.reviewed-product__author__image {
  width: 30px;
  height: 30px;
  padding: 2px;
  border: 2px solid var(--primary);
  border-radius: 50%;
}
@media (max-width: 991.98px) {
  .reviewed-product__badge {
    width: 30%;
  }
  .reviewed-product__score__value {
    font-size: 2.4rem;
  }
  .reviewed-product__score__value__scale {
    font-size: 0.8rem;
    margin-right: -5px;
  }
  .reviewed-product__conclusion {
    width: 70%;
    border-left: 0;
  }
  .reviewed-product__conclusion__text {
    font-size: 1rem;
  }
  .reviewed-product__title {
    font-size: 0.8rem;
  }
  .reviewed-product__author {
    font-size: 0.6rem;
  }
  .reviewed-product__author__image {
    width: 20px;
    height: 20px;
  }
  .reviewed-product__subscores {
    font-size: 0.8rem;
  }
  .reviewed-product__subscores__subscore__icon {
    margin-top: 4px;
    font-size: 1em;
  }
}

.article-media--quote {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.article-media--quote__icon {
  font-size: 1.5em;
  color: var(--primary);
  position: absolute;
  line-height: 1;
  top: -10px;
  right: auto;
  bottom: auto;
  left: -15px;
}
.article-media--quote__text {
  font-size: 2rem;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  font-style: italic;
  z-index: 1;
  padding-left: 45px;
}
.article-media--quote__text::after {
  content: "";
  position: absolute;
  background-color: var(--secondary);
  left: 8px;
  bottom: 16px;
  right: -8px;
  top: -8px;
  z-index: -1;
}
.article-media--error {
  background: var(--secondary);
  padding: 1rem;
}
.article-media--related-article__link {
  box-shadow: 0 0 0 !important;
}
.article-media--related-article__link:hover {
  color: inherit !important;
}
.article-media--related-article__link:hover .article-media--related-article__headline {
  text-decoration: underline !important;
}
.article-media--related-article__readmore {
  font-size: 0.7em;
}

@media (prefers-color-scheme: light) {
  .automode #diskusjon-container ::-moz-selection {
    color: #fff;
  }
  .automode #diskusjon-container ::selection {
    color: #fff;
  }
}
.lightmode #diskusjon-container ::-moz-selection {
  color: #fff;
}
.lightmode #diskusjon-container ::selection {
  color: #fff;
}

.article__level-up-info {
  background-color: #000000;
  color: #ffffff;
  position: relative;
  clear: both;
}
.article__level-up-info__content {
  width: 95%;
}
.article__level-up-info__content::after {
  content: "";
  background-image: url("/images/levelup-logo-hvit_150_124.png");
  position: absolute;
  width: 45px;
  height: 45px;
  top: 5px;
  right: 5px;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.article__summary__content {
  height: 50px;
  overflow: hidden;
  position: relative;
}
.article__summary__content ul {
  font-size: 1rem;
  padding-left: 1.2rem;
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .article__summary__content ul {
    font-size: 1.2rem;
  }
}
.article__summary__content ul li {
  margin-bottom: 0.5rem;
}
.article__summary__content ul li::marker {
  color: var(--primary);
}
.article__summary__content.--text-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, transparent, var(--secondary));
}
.article__summary__content.--expanded {
  height: auto;
}
.article__summary__content.--expanded .fa-chevron-down {
  transform: rotate(180deg);
}
.article__summary__expand-button {
  font-size: 1rem;
  width: 100%;
}
@media (min-width: 576px) {
  .article__summary__expand-button {
    font-size: 1.1rem;
  }
}

.author__image {
  background: var(--body);
  padding: 2px;
  border: 2px solid var(--dark);
}
@media (max-width: 991.98px) {
  .author__name {
    font-size: 1.3rem;
  }
}

.checkmark {
  border-radius: 50%;
  display: block;
  stroke-width: 4;
  stroke-miterlimit: 10;
  -webkit-animation: scale 0.3s ease-in-out 0.9s both;
          animation: scale 0.3s ease-in-out 0.9s both;
}

.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  -webkit-animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
          animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  -webkit-animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
          animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

.betting__matchup {
  border: 1px solid var(--text);
  border-left-width: 5px;
}

.release-calendar__date {
  position: relative;
  width: 25%;
  background-color: var(--light);
}
.release-calendar__date::after {
  content: "";
  top: 1rem;
  right: auto;
  bottom: auto;
  left: 100%;
  position: absolute;
  border-left: 7px solid var(--border-dark);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(50%);
}
@media (min-width: 992px) {
  .release-calendar__date {
    border-left: 1px solid var(--border-light);
  }
}
@media (max-width: 767.98px) {
  .release-calendar__date {
    font-size: 0.7rem;
  }
}
.release-calendar__products {
  width: 75%;
}

.give-me-new-css-please {
  color: red;
}

.reviews__product__link {
  color: var(--text);
}
.reviews__product__image {
  width: 25%;
}
@media (max-width: 1199.98px) {
  .reviews__product__image {
    width: 50%;
  }
}
.reviews__product__text {
  width: 75%;
}
@media (max-width: 1199.98px) {
  .reviews__product__text {
    width: 50%;
  }
}
.reviews__product__score__value {
  background-color: var(--text);
  color: var(--body);
  min-width: 60px;
  height: 60px;
  font-size: 1.8rem;
  padding: 0 5px;
}
.reviews__product__score__value__scale {
  font-size: 0.5em;
}
@media (max-width: 1199.98px) {
  .reviews__product__score__value {
    min-width: 40px;
    height: 40px;
    font-size: 1.2rem;
    order: 1;
  }
}
.reviews__product__score__text {
  color: var(--primary);
  font-size: 1.125rem;
}
@media (max-width: 1199.98px) {
  .reviews__product__score__text {
    font-size: 0.9rem;
    width: 100%;
    order: 0;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 1199.98px) {
  .reviews__product__score {
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  .reviews__product__flavour-text {
    border-left: 1px solid var(--border-light);
  }
}
.reviews__categories__category {
  font-weight: 700;
  background-color: var(--light);
  margin-bottom: 0.5rem;
  color: var(--text);
}
.reviews__categories__category--selected {
  color: #fff !important;
  background-color: var(--dark);
}
.reviews__filters__filter {
  background: var(--light);
}
@media (min-width: 992px) {
  .reviews__meta-col {
    border-right: 1px solid var(--border-light);
  }
}

.nativead .site__header {
  position: relative;
}
.nativead__banner {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  color: #000;
  background-color: #fff7b3;
  z-index: 1020;
}
.nativead .article__featuredmedium {
  position: relative;
}
.nativead .article__featuredmedium .article-media-caption {
  z-index: 1;
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  color: #fff;
}
.nativead .article__featuredmedium .article-media-caption::before {
  content: "";
  position: absolute;
  top: -200%;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  z-index: -1;
}
.nativead .article-media.size-2.f-left {
  margin-left: 0 !important;
}
@media (max-width: 991.98px) {
  .nativead .article-media.size-2.f-left {
    width: 16.6666% !important;
    margin-right: 1rem !important;
    float: left;
  }
}
.nativead .article-media.size-2.f-left::before {
  display: none !important;
}

.playermarket__header h1 {
  font-size: 2.2rem;
}
.playermarket__facebook {
  color: var(--text);
}
.playermarket__facebook__cta {
  font-size: 0.9rem;
}
.playermarket__filters {
  display: none;
}
.playermarket__filters .site__sidebar__notice {
  opacity: 0;
  -webkit-animation: fadein 200ms forwards;
          animation: fadein 200ms forwards;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
  height: 46px;
}
.playermarket__filters--open {
  display: block;
}
@media (min-width: 992px) {
  .playermarket__filters {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .playermarket__filters__types {
    display: flex;
    border-top: 2px solid rgba(var(--primary-rgb), 0.1);
  }
  .playermarket__filters__types .site__sidebar__item {
    width: 50%;
    justify-content: center;
  }
  .playermarket__filters__types .site__sidebar__item:first-child {
    border-right: 2px solid rgba(var(--primary-rgb), 0.1);
  }
}
.playermarket__games {
  display: flex;
  flex-direction: column;
  transition: width 500ms;
  width: 100%;
  flex-shrink: 0;
}
.playermarket__games--selected-game {
  overflow: hidden;
  width: calc(25px + 1rem);
}
.playermarket__games--selected-game .playermarket__games__postcount,
.playermarket__games--selected-game .playermarket__games__gametitle {
  display: none;
}
.playermarket__game-filters {
  width: 0;
  transition: width 500ms;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.playermarket__game-filters--open {
  width: 100%;
  border-left: 1px solid var(--border-light);
}
.playermarket__posts__post {
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.playermarket__posts__post__ranks {
  font-weight: 600;
}
.playermarket__posts__post__roles {
  max-width: 100%;
}
@media (max-width: 1199.98px) {
  .playermarket__posts__post__content {
    width: 100px;
    flex-wrap: wrap;
  }
  .playermarket__posts__post__content > * {
    width: 100%;
  }
}
.playermarket__form__item:hover {
  background-color: var(--secondary);
}
.playermarket__form__item--active {
  background-color: var(--secondary);
}

.user-profile__header {
  background-color: var(--light);
}
@media (max-width: 991.98px) {
  .user-profile__header {
    margin-left: -15px;
    margin-right: -15px;
    border-radius: 0 !important;
  }
}
.user-profile__header__meta {
  position: relative;
}
.user-profile__poster {
  position: relative;
  padding-bottom: 33.3333%;
}
.user-profile__poster__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.user-profile__sponsors {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid #000;
}
@media (min-width: 992px) {
  .user-profile__sponsors__sponsor:first-child {
    padding-left: 100px;
  }
  .user-profile__sponsors__sponsor:last-child {
    padding-right: 100px;
  }
}
@media (max-width: 1199.98px) {
  .user-profile__sponsors__sponsor:first-child {
    padding-left: 50px;
  }
  .user-profile__sponsors__sponsor:last-child {
    padding-right: 50px;
  }
}
.user-profile__sponsors__sponsor:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.user-profile__avatar {
  position: absolute !important;
  top: auto;
  right: auto;
  bottom: 0;
  left: 1rem;
  background-color: var(--body);
}
@media (max-width: 991.98px) {
  .user-profile__avatar {
    width: 60px !important;
    height: 60px !important;
  }
}
.user-profile__ban-badge {
  position: absolute;
  bottom: 100%;
}
.user-profile__edit-thirdparty-accounts:hover {
  color: var(--primary) !important;
}
.user-profile__name-bar {
  padding-left: calc(2rem + 140px);
  border-bottom: 1px solid var(--border-light);
}
@media (max-width: 991.98px) {
  .user-profile__name-bar {
    position: relative;
    padding-left: calc(2rem + 60px);
    border-top-width: 2px;
  }
}
@media (min-width: 992px) {
  .user-profile__nav {
    padding-left: calc(2rem + 140px);
  }
}
.user-profile__matchup-history__stats {
  width: auto;
  border-bottom: none;
}
@media (max-width: 767.98px) {
  .user-profile__matchup-history__stats {
    width: 100%;
    border-bottom: 1px solid var(--border-dark);
  }
}
@media (max-width: 767.98px) {
  .user-profile__matchup-history__text {
    font-size: 0.7rem;
  }
}
.user-profile__matchup-history__border {
  border-bottom: 1px solid var(--border-dark);
}
@media (max-width: 767.98px) {
  .user-profile__matchup-history__border {
    border-bottom: none;
  }
}
.user-profile__matchup-history__item-wrapper::after {
  content: "";
  display: block;
  border-bottom: 2px solid var(--primary);
  transform: scaleX(0);
  transition: transform 300ms ease-in-out;
}
.user-profile__matchup-history__item-wrapper:hover::after {
  transform: scaleX(1);
}
.user-profile__matchup-history__game-logo {
  position: relative;
  margin-bottom: 0;
  height: 30px;
  width: 30px;
}
.user-profile__matchup-history__map-image {
  position: relative;
  margin-bottom: 0;
  height: 30px;
  width: 30px;
}
@media (min-width: 768px) {
  .user-profile__matchup-history__map-image {
    width: 50px;
  }
}
.user-profile__matchup-history__team-avatar {
  position: relative;
  margin-bottom: 0;
  background: var(--body);
  border: 2px solid var(--primary);
  padding: 3px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  transition: filter 300ms;
}
@media (min-width: 768px) {
  .user-profile__matchup-history__team-avatar {
    height: 40px;
    width: 40px;
  }
}
@media (min-width: 992px) {
  .user-profile .hublist__hub__logo {
    width: 60px;
  }
}
@media (max-width: 991.98px) {
  .user-profile__name {
    font-size: 1.4rem;
  }
  .user-profile__avatar {
    bottom: -5px;
  }
}
.user-profile__badges {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 0.3rem 0 0 0;
}
.user-profile__subscription-badge {
  inset: -1rem -1rem auto auto;
}
.user-profile svg {
  overflow: visible !important;
}

.users-page__provider-logo {
  width: 24px;
  height: 24px;
}
.users-page__profile-image {
  width: 60px;
  height: 60px;
}

.club__header__edit-poster-button {
  background-color: rgba(0, 0, 0, 0.3);
}
.club__members {
  transition: opacity 0.4s;
}
.club__members--loading {
  pointer-events: none;
  opacity: 0.6;
}
.club__member .dropdown-container__dropdown form.border-top:first-child {
  margin-top: 0 !important;
  border-top: 0 !important;
  padding-top: 0 !important;
}
.club__team-list__team__logo {
  position: relative;
}
.club__team-list__team__game {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  transform: translate(25%, -25%);
}
.club__badges {
  position: relative;
}
.club__badges__badge--empty {
  opacity: 0.3;
}
.club__badges__empty-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__edit {
  text-shadow: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1000;
}
.team__edit__button {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  .team__edit__text {
    display: none;
  }
}
.team__name {
  font-weight: 700;
}
@media (max-width: 1199.98px) {
  .team__name {
    font-size: 1.1rem;
  }
}
.team__game {
  font-weight: 400;
  font-size: 0.8rem;
}
@media (max-width: 1199.98px) {
  .team__game {
    font-size: 0.7rem;
  }
}
.team__club-name__link {
  color: #aaa;
  font-size: 1rem;
  text-transform: uppercase;
}
.team__club-name__link:hover {
  text-decoration: none;
}
.team__header {
  color: #000;
  background-color: #000;
  position: relative;
  overflow: hidden;
}
.team__header__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.team__header__background__image {
  position: relative;
}
.team__header__background__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 90%, #000);
}
.team__header__background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent), linear-gradient(to bottom, transparent, #000);
}
.team__header__logo {
  position: relative;
}
.team__header__game__logo {
  position: absolute;
  top: auto;
  right: -0.5rem;
  bottom: 0;
  left: auto;
  margin: 0;
}
.team__meta {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
@media (max-width: 991.98px) {
  .team__meta {
    width: 100%;
    border-radius: 0 !important;
  }
}
.team__action-bar {
  background: #000;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}
.team__players.tight-gutter .row > .col {
  width: 20%;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: 20%;
}
@media (max-width: 767.98px) {
  .team__players.tight-gutter .row > .col {
    width: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 767.98px) {
  .team__players .empty-col {
    display: none !important;
  }
}
.team__player {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  transition: opacity 0.2s;
}
.team__player--empty {
  opacity: 0.6;
  height: 100%;
  min-height: 172px;
}
.team__player--empty.team__player--with-tools {
  min-height: 250px;
}
.team__player--loading {
  pointer-events: none;
  opacity: 0.9 !important;
}
.team__player--invited {
  opacity: 0.8;
  box-shadow: 0 0 10px #fff;
}
.team__player__details {
  display: flex;
  flex-grow: 1;
}
@media (max-width: 767.98px) {
  .team__player__details {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .team__player__details {
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .team__player__details {
    align-items: center;
  }
}
.team__player__role {
  position: absolute;
  text-align: center;
  top: auto;
  right: 0;
  bottom: -5px;
  left: 0;
}
.team__player__accounts {
  font-size: 0.85rem;
}
.team__player__account {
  color: #333;
}
.team__player__account a {
  color: inherit;
}
@media (max-width: 991.98px) {
  .team__player__name {
    font-size: 1rem;
  }
}
.team__player__image {
  width: 65px;
  height: 65px;
}
@media (min-width: 576px) {
  .team__player__image {
    width: 85px;
    height: 85px;
  }
}
.team__player__tool {
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.team__player__tool.disabled {
  pointer-events: none;
}
.team__player__tool:hover {
  color: var(--primary);
}
.team__player__tool::before {
  content: "";
  display: block;
  width: 40%;
  position: absolute;
  border-bottom: 1px dashed #000;
  margin: auto;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  opacity: 0.3;
}
@media (max-width: 991.98px) {
  .team__player {
    flex-wrap: wrap;
  }
  .team__player__tools {
    width: 100%;
    display: flex;
    border-top: 1px solid #fff;
    flex-grow: 1;
  }
  .team__player__tool {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.15);
  }
  .team__player__tool:first-child {
    border-right: 1px solid #fff;
  }
  .team__player__tool::before {
    display: none;
  }
  .team__player__image {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767.98px) {
  .team__player__image {
    width: 60px;
    height: 60px;
  }
}
.team__club-section__sponsors {
  background: #000;
}
.team__club-section__sponsor:hover {
  opacity: 0.6;
}
.team__transfers__filter {
  position: relative;
}
@media (min-width: 576px) {
  .team__transfers__filter {
    position: -webkit-sticky;
    position: sticky;
    top: var(--sticky-top);
  }
}
.team__matchuplist__matchup {
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.team__matchuplist__matchup--cancelled > *:not(.team__matchuplist__matchup__cancelled-badge) {
  text-decoration: line-through;
  filter: grayscale(100%);
}
.team__matchuplist__matchup__team__logo {
  width: 36px;
  height: 36px;
}
.team__matchuplist__matchup__meta {
  font-size: 0.8em;
  font-weight: 600;
}
.team__matchuplist__matchup__score {
  font-size: 1.2em;
}
.team__matchuplist__matchup__cancelled-badge {
  position: absolute;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  background: var(--danger);
  padding: 2px 5px;
  width: 150px;
  margin-top: 14px;
  margin-right: -50px;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  transform: rotate(45deg);
}
.team--disabled {
  pointer-events: none;
  cursor: default;
  background-color: var(--bg-light-hover);
  color: var(--border-light);
}
.team__stats__col {
  width: 40%;
}
.team__stats__col--large {
  width: 50%;
}
.team__stats__col--small {
  width: 10%;
}

.transfer-list__transfer:last-child {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}
.transfer-list__image {
  width: 40px;
  height: 40px;
}
@media (min-width: 576px) {
  .transfer-list__image {
    width: 50px;
    height: 50px;
  }
}

#matchup {
  min-height: 500px;
}

@media (max-width: 767.98px) {
  .matchup {
    font-size: 0.8rem;
  }
}
.matchup__competition {
  position: relative;
}
.matchup__competition::after {
  content: "";
  top: 100%;
  left: 0;
  right: 0;
  position: absolute;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  height: 2px;
}
@media (max-width: 767.98px) {
  .matchup__competition h5 {
    font-size: 0.75rem;
  }
}
.matchup__header {
  position: relative;
}
@media (max-width: 767.98px) {
  .matchup__header {
    font-size: 0.8rem;
  }
}
.matchup__versus {
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .matchup__versus {
    font-size: 0.75rem;
  }
}
.matchup__signups {
  position: relative;
}
.matchup__signups::after {
  content: "VS";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  text-align: center;
  font-size: 4em;
  opacity: 0.2;
}
.matchup__team {
  width: 0;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  .matchup__team {
    font-size: 0.8rem;
  }
}
.matchup__team--home {
  flex-direction: row-reverse;
}
.matchup__team__data--home {
  margin-left: auto;
  text-align: right;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.matchup__team__nationality {
  font-size: 0.8rem;
}
@media (max-width: 767.98px) {
  .matchup__team__nationality {
    font-size: 0.6rem;
  }
}
.matchup__team__nationality--home {
  flex-direction: row-reverse;
}
.matchup__team__logo {
  width: 108px;
  height: 108px;
  padding: 2px;
  border: 2px solid var(--primary);
  background-color: var(--body);
  flex-shrink: 0;
}
.matchup__team__logo--away {
  margin-right: 1rem;
}
.matchup__team__logo--home {
  margin-left: 1rem;
}
@media (max-width: 767.98px) {
  .matchup__team__logo {
    width: 38px;
    height: 38px;
  }
  .matchup__team__logo--away {
    margin-right: 0.5rem;
  }
  .matchup__team__logo--home {
    margin-left: 0.5rem;
  }
}
.matchup__team__name {
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .matchup__team__name {
    max-width: 90px;
  }
}
.matchup__score {
  font-size: 3rem;
  margin: 0 3rem;
}
@media (max-width: 991.98px) {
  .matchup__score {
    margin: 0 1rem;
    font-size: 1.4rem;
  }
}
.matchup__tools__group {
  background-color: var(--light);
}
.matchup__tools__item {
  border-bottom: 1px solid var(--border-light);
}
.matchup__tools__item:last-child {
  border-bottom: 0;
}
.matchup__tools__item--expandable {
  cursor: pointer;
}
.matchup__tools__item--expandable:hover {
  color: var(--primary);
}
.matchup__tools__item--disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}
.matchup__tools__item__heading {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.matchup__tools__item__back-button {
  font-size: 1.2em;
  border-radius: 50%;
  cursor: pointer;
}
.matchup__tools__item__back-button:hover {
  color: var(--primary);
}
.matchup__tools--disabled {
  pointer-events: none;
  opacity: 0.7;
  --primary: var(--border-light);
}
.matchup__tools__menu__item {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  flex-direction: column;
  color: var(--text);
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: rgba(var(--body-rgb), 0.25);
  border-right: 1px solid var(--border-light);
  transition: background-color 200ms, color 200ms;
}
.matchup__tools__menu__item:last-child {
  border-right: 0;
}
.matchup__tools__menu__item:hover {
  background-color: rgba(var(--body-rgb), 0.5);
  color: var(--primary);
  text-decoration: none;
}
.matchup__tools__menu__item--live .fa-circle-play {
  color: red;
  border-radius: 50%;
  -webkit-animation: shadowpulse-red infinite 2s;
          animation: shadowpulse-red infinite 2s;
}
.matchup__tools__menu__item--live::after {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(51, 217, 178, 0) 0%, rgba(51, 217, 178, 0.8) 50%, rgba(28, 186, 132, 0) 99%, rgba(25, 185, 132, 0) 100%);
  -webkit-animation: slide 5s infinite;
          animation: slide 5s infinite;
}
.matchup__tools__menu__item--selected {
  color: var(--primary);
  background-color: rgba(var(--primary-rgb), 0.075) !important;
}
.matchup__tools__menu__item--selected::after {
  display: none;
}
.matchup__tools__menu__item--disabled {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  opacity: 0.6;
}
.matchup__tools__menu__item__icon {
  font-size: 1.2rem;
}
.matchup__map__figure {
  background: var(--border-dark);
}
.matchup__map--empty {
  opacity: 0.3;
  color: transparent;
}
.matchup__map__sides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.matchup__stream {
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
.matchup__stream__link {
  color: var(--text);
}
.matchup__stream__link:hover {
  text-decoration: none;
  color: inherit;
  background-color: rgba(var(--primary-rgb), 0.2);
}
.matchup__stream__image {
  height: 54px;
  width: 96px;
  background: var(--text);
  display: flex;
}
.matchup__stream__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.matchup__stream__remove-button {
  position: absolute;
  top: 0;
  right: 0.5rem;
  bottom: 0;
  left: auto;
}
.matchup__stream:last-child {
  border-bottom: 0;
  padding-bottom: 0 !important;
}
.matchup__stream:first-child {
  padding-top: 0 !important;
}
.matchup__infotable tr:first-child th, .matchup__infotable tr:first-child td {
  border-top: 0;
  padding-top: 0;
}
.matchup__ticket {
  background-color: var(--body);
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.matchup__ticket:last-child {
  margin-bottom: 0;
}
.matchup__ticket__meta--main {
  border-top: 1px dashed var(--border-light);
}
.matchup__ticket__reply:last-child {
  margin-bottom: 0 !important;
}
.matchup__ticket__reply .copy-button {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
}
.matchup__ticket__reply:hover .copy-button {
  display: block;
}
.matchup__lineup__col {
  width: 20% !important;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 20%;
  margin-bottom: 1rem;
}
.matchup__lineup__col:nth-last-child(-n+5) {
  margin-bottom: 0;
}
.matchup__lineup__player--empty {
  opacity: 0.5;
}
.matchup__lineup__player__image {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-color: var(--border-light);
}
.matchup__lineup__player__image .image-container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.matchup__lineup__player__name--empty {
  opacity: 0.5;
}
.matchup__warning {
  margin-top: calc(-1rem - 1px);
}
.matchup__stats__tabs {
  background-color: rgba(var(--light-rgb), 0.25);
}
.matchup__server-info {
  color: var(--text);
}
.matchup__server-info__content {
  font-size: 1.1em;
  line-height: 1.8em;
  background-color: #333;
  border-radius: 0.3rem;
  overflow: hidden;
}
.matchup__server-info__buttons {
  background-color: #444;
}
.matchup__veto__options {
  position: relative;
}
.matchup__veto__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--body-rgb), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.matchup__veto__side-select {
  background-color: rgba(var(--body-rgb), 0.9);
  box-shadow: 0 0 1rem rgba(var(--primary-rgb), 0.3);
  border: 1px solid var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 75%;
}
.matchup__veto__side-select__option:hover {
  background-color: var(--primary);
  cursor: pointer;
}
.matchup__veto__side-select--submitting {
  pointer-events: none;
}
.matchup__veto__side-select__loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--body-rgb), 0.7);
}
.matchup__veto__option {
  position: relative;
  margin-bottom: 0.5rem;
}
.matchup__veto__option:last-child {
  margin-bottom: 0;
}
.matchup__veto__option--selected {
  color: #fff;
}
.matchup__veto__option--active::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.matchup__veto__options--ban .matchup__veto__option--active::after {
  border: 2px solid var(--danger);
}
.matchup__veto__options--pick .matchup__veto__option--active::after {
  border: 2px solid var(--success);
}
.matchup__veto__option--available::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(var(--primary-rgb), 0.15);
  -webkit-animation: vetopulse infinite 2s;
          animation: vetopulse infinite 2s;
}
.matchup__veto__option--available:hover::before {
  -webkit-animation: none;
          animation: none;
  opacity: 0.5;
}
.matchup__veto__options--ban .matchup__veto__option--available:hover::before {
  background-color: var(--danger);
}
.matchup__veto__options--pick .matchup__veto__option--available:hover::before {
  background-color: var(--success);
}
.matchup__veto__rule {
  opacity: 0.4;
}
.matchup__veto__rule--active {
  opacity: 1;
}
.matchup__veto__rule--pending.badge-success {
  -webkit-animation: shadowpulse-green infinite 2s;
          animation: shadowpulse-green infinite 2s;
}
.matchup__veto__rule--pending.badge-danger {
  -webkit-animation: shadowpulse-red infinite 2s;
          animation: shadowpulse-red infinite 2s;
}

@-webkit-keyframes vetopulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes vetopulse {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#heat {
  min-height: 500px;
}

.heat__admin-container {
  position: relative;
  z-index: 1;
}
.heat__resultform__tab {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  background-size: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-shadow: 1px 1px 0px black;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.9;
  position: relative;
  transition: opacity 200ms;
}
.heat__resultform__tab::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #000, rgba(0, 0, 0, 0.3));
}
.heat__resultform__tab:hover {
  opacity: 1;
}
.heat__resultform__tab--active {
  opacity: 1;
}
.heat__resultform__tab--active::after {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  border: 3px solid var(--primary);
}
.heat__resultform__tab--disabled {
  pointer-events: none;
  background-image: none !important;
  filter: grayscale(100%);
  opacity: 0.5;
}
.heat__resultform .participant-select__menu {
  color: #000;
}
@media (max-width: 991.98px) {
  .heat__header__meta div {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
.heat__tool-button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.heat__tool-button--active {
  background: var(--primary);
  color: #fff;
  transform: translateX(-5%);
}
.heat__tool-button--disabled {
  pointer-events: none;
  opacity: 0.7;
}
.heat__placement-submit-form__screenshots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 150px;
  cursor: pointer;
  background: var(--body);
  border: 1px solid var(--border-light);
}
.heat__placement-submit-form__screenshots:hover {
  border-color: var(--primary) !important;
  background-color: var(--secondary);
}
.heat__placement-submit-form__screenshots:empty {
  flex-direction: column;
}
.heat__placement-submit-form__screenshots:empty::before {
  content: "Legg til skjermbilder";
  font-size: 1rem;
  width: 100%;
  text-align: center;
}
.heat__placement-submit-form__screenshots:empty::after {
  content: "+";
  font-size: 3rem;
  line-height: 1em;
}
.heat__placement-submit-form__screenshots img {
  width: 23%;
  margin: 1%;
}
.heat__placement-submit-form__screenshots img:only-child {
  width: 100%;
  margin: 0;
}
.heat__placement-submit-form__screenshots img:first-child:nth-last-child(2), .heat__placement-submit-form__screenshots img:last-child:nth-child(2) {
  width: 48%;
}
.heat__info__map {
  display: inline-block;
  margin-right: 0.25rem;
}
.heat__info__map::after {
  content: ",";
}
.heat__info__map:last-child {
  margin-right: 0;
}
.heat__info__map:last-child::after {
  display: none;
}
.heat__scoreboard__stats__column {
  white-space: nowrap;
  width: 16.66666%;
}
.heat__approve-results__result {
  margin-bottom: 1rem;
}
.heat__approve-results__result:last-child {
  margin-bottom: 0;
}

.site__section--hub .site__header {
  position: relative;
}

.hub--telia .tournament-box__organizer, .hub--telia-5gaming .tournament-box__organizer {
  display: none;
}
.hub__description {
  position: relative;
  overflow: hidden;
}
.hub__description--long {
  max-height: 140px;
}
.hub__description--active {
  max-height: none !important;
}
.hub__description__readmore {
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 80px;
  text-align: center;
  padding-top: 40px;
  background-image: linear-gradient(to bottom, transparent, rgba(var(--body-rgb)));
}
.hub__description__content > *:last-child {
  margin-bottom: 0;
}
.hub__pinned-post__lg {
  display: none;
}
@media (min-width: 992px) {
  .hub__pinned-post__lg {
    display: block;
  }
}
.hub__pinned-post__md {
  display: none;
}
@media (max-width: 991.98px) {
  .hub__pinned-post__md {
    display: block;
  }
}
.hub__factions__feed-image {
  flex-shrink: 0;
  background-color: white;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  transition: transform 0.2s;
}
.hub__factions__feed-image:hover {
  transform: scale(1.1);
}
.hub__header {
  position: relative;
  padding-bottom: 25%;
  background: transparent no-repeat scroll 50% 50%;
  background-size: cover;
  color: #fff;
}
.hub__header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
}
@media (max-width: 991.98px) {
  .hub__header {
    padding-bottom: 56.25%;
  }
  .hub__header__member {
    margin-left: auto;
  }
  .hub__header__text {
    align-items: center;
  }
}
.hub__header__nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 1.2rem;
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}
@media (max-width: 991.98px) {
  .hub__header__nav {
    font-size: 0.9rem;
  }
}
.hub__header__nav__menu {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 991.98px) {
  .hub__header__nav__menu {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hub__header__nav__items {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  overflow-x: auto;
  width: 0;
  max-width: 100%;
}
.hub__header__nav__item {
  position: relative;
}
.hub__header__nav__item--active, .hub__header__nav__item:hover {
  text-decoration: none;
}
.hub__header__nav__item--active::after, .hub__header__nav__item:hover::after {
  content: "";
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--primary);
}
.hub__header a {
  color: inherit;
}
@media (max-width: 991.98px) {
  .hub__title {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .hub__logo {
    width: 50px;
  }
}
.hub__feed__view-all {
  position: absolute;
  padding-left: 1rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  background-color: var(--body);
  color: var(--primary);
}
.hub__feed__view-all:hover {
  cursor: pointer;
  text-decoration: underline;
  color: var(--tertiary);
}
.hub__member-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub__member-button--uncheck {
  display: none;
}
.hub__member-button__icon {
  width: 1em;
}
.hub__member-button:hover .hub__member-button--checked {
  display: none;
}
.hub__member-button:hover .hub__member-button--uncheck {
  display: inline-block;
}
.hub__socials__button {
  height: 35px;
  width: 35px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hub__post p:last-child {
  margin-bottom: 0;
}
.hub__settings__list {
  transition: opacity 0.4s;
}
.hub__settings__list--loading {
  opacity: 0.5;
}
.hub__settings__list__item__image {
  width: 100px;
}
@media (max-width: 991.98px) {
  .hub__settings__list__item__image {
    width: 60px;
  }
}
.hub__timeline__entry {
  border-bottom: 1px solid var(--border-light);
}
.hub__timeline__entry:last-child {
  border-bottom: 0 none;
}
.hub__timeline__entry__meta {
  border-bottom: 1px dashed var(--border-light);
}
.hub__timeline__entry__text {
  font-weight: 600;
}
.hub__sponsors {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hub__sponsors__list {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.4);
}
.hub__sponsor {
  margin: 0 0.5rem;
}
.hub__sponsor:first-child {
  margin-left: 0;
}
.hub__sponsor:last-child {
  margin-right: 0;
}
.hub__faction-list {
  position: relative;
}
.hub__faction-list--faded {
  max-height: 200px;
  overflow: hidden;
}
.hub__faction-list__viewall {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 25%, var(--body));
  height: 50%;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.hub__faction-list__viewall > * {
  pointer-events: auto;
}

.blogpost__headline {
  font-size: 4rem;
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .blogpost__headline {
    font-size: 1.8rem;
  }
}

.blogpost__content > ul, .blogpost__content > p {
  max-width: 800px;
}

.hublist__hub {
  display: block;
  position: relative;
  border: 1px solid var(--border-dark);
  color: var(--text);
  overflow: hidden;
}
.hublist__hub__header {
  color: #fff;
  background-color: #000;
  background-position: 50% 50%;
  background-size: 100%;
}
.hublist__hub__logo {
  width: 30px;
}
.hublist__hub:hover {
  color: var(--text);
  text-decoration: none;
  border-color: var(--primary);
}
@media (min-width: 992px) {
  .hublist__hub__logo {
    width: 50px;
  }
}
@media (max-width: 991.98px) {
  .hublist__hub {
    font-size: 0.7rem;
  }
  .hublist__hub h4 {
    font-size: 0.8rem;
  }
  .hublist__hub h6 {
    font-size: 0.65rem;
  }
  .hublist__hub .btn, .hublist__hub .article__content a[role=button], .article__content .hublist__hub a[role=button] {
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

.competition__map {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.9);
}
.competition__map--not-selected {
  opacity: 0.6;
  filter: grayscale(100%);
}
.competition__map--not-selected:hover {
  opacity: 0.8;
  filter: none;
}
.competition__map__checkmark {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  bottom: auto;
  left: auto;
}
.competition__map__checkmark svg {
  filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.9));
}
.competition__lineup__player__card {
  position: relative;
  background: rgba(var(--body-rgb, 1));
  transition: transform 0.2s;
}
.competition__lineup__player__card--dirty {
  transform: scale(0.92);
}
.competition__lineup__player__card__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  transition: transform 0.2s;
  background: var(--body);
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
}
.competition__lineup__player__card__icon:hover {
  transform: translate(50%, -50%) scale(1.2);
}
.competition__lineup__player__card--opaque > * {
  opacity: 0.6;
}
.competition__lineup__player__card--opaque > .competition__lineup__player__card__item--no-opacity {
  opacity: 1;
}
.competition__lineup__player--eligible, .competition__lineup__player--pending, .competition__lineup__player--available {
  transition: transform 0.2s;
}
@media (min-width: 992px) {
  .competition__lineup__player--eligible:hover, .competition__lineup__player--pending:hover, .competition__lineup__player--available:hover {
    transform: scale(1.025);
  }
  .competition__lineup__player--eligible:hover .competition__lineup__player__card, .competition__lineup__player--pending:hover .competition__lineup__player__card, .competition__lineup__player--available:hover .competition__lineup__player__card {
    box-shadow: 0 0.3rem 0.3rem rgba(0, 0, 0, 0.1);
  }
  .competition__lineup__player--eligible:hover .competition__lineup__player__arrow--right, .competition__lineup__player--pending:hover .competition__lineup__player__arrow--right, .competition__lineup__player--available:hover .competition__lineup__player__arrow--right {
    -webkit-animation: bounceright 1s infinite;
            animation: bounceright 1s infinite;
  }
  .competition__lineup__player--eligible:hover .competition__lineup__player__arrow--left, .competition__lineup__player--pending:hover .competition__lineup__player__arrow--left, .competition__lineup__player--available:hover .competition__lineup__player__arrow--left {
    -webkit-animation: bounceleft 1s infinite;
            animation: bounceleft 1s infinite;
  }
}
.competition__lineup__rule--require_subscription {
  border: 1px solid var(--gold-dark) !important;
}
.competition__lineup__rule--require_subscription .border-bottom {
  background: var(--gold) !important;
  color: var(--gold-very-dark) !important;
  border-bottom: 1px solid var(--gold-dark) !important;
}

#tournament {
  min-height: calc(100vh - var(--sticky-top));
}
@media (min-width: 992px) {
  #tournament .site__right-column .ad-placeholder {
    display: block !important;
  }
  #tournament .site__right-column .ad-placeholder.display-none {
    opacity: 0;
    pointer-events: none;
  }
  #tournament .site__right-column .ad-placeholder[id*=artikkelboard] {
    min-height: 250px;
  }
}

.tournament__header {
  position: relative;
}
.tournament__header__image {
  position: relative;
  overflow: hidden;
}
.tournament__header__title {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.tournament__header__meta {
  position: relative;
}
.tournament__header__status {
  position: absolute;
  bottom: 100%;
  background: rgba(0, 0, 0, 0.5);
  margin-left: -1rem;
  padding: 0.25rem 1rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0 0.25rem 0 0;
}
@media (max-width: 991.98px) {
  .tournament__header__title {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .tournament__main-col {
    width: 0;
    flex: 1 0 auto;
  }
}
.tournament__description {
  font-size: 1rem;
  overflow: hidden;
  max-width: 100%;
}
.tournament__description img {
  max-width: 100%;
  height: auto !important;
}
.tournament__description figure {
  display: flex;
  text-align: center;
  justify-content: center;
}
.tournament__description figure .align-left {
  margin-right: auto;
}
.tournament__description figure .align-right {
  margin-left: auto;
}
.tournament__description .f-right, .tournament__description .float-right {
  float: right;
  margin: 0 0 1rem 1rem;
}
.tournament__description .f-left, .tournament__description .float-left {
  float: left;
  margin: 0 1rem 1rem 0;
}
.tournament__description p, .tournament__description ul {
  margin: 0 0 1.6rem 0;
}
.tournament__description h2, .tournament__description h3, .tournament__description h4 {
  margin: 0 0 1rem 0;
}
.tournament__details__item {
  width: 33.333333%;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.tournament__details__item:nth-child(3n+3) {
  border-right: 0;
}
.tournament__details__item:nth-last-child(-n+4):nth-child(4), .tournament__details__item:nth-last-child(-n+3) {
  border-bottom: 0;
}
.tournament__details .far, .tournament__details .fas, .tournament__details svg[data-icon], .tournament__details figure {
  font-size: 20px;
  height: 20px;
  display: flex;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .tournament__details {
    font-size: 0.7rem;
    margin-left: -15px;
    margin-right: -15px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  .tournament__details .far, .tournament__details .fas, .tournament__details svg[data-icon], .tournament__details figure {
    font-size: 16px;
    height: 16px;
    margin-bottom: 5px;
    display: none;
  }
  .tournament__details .h6 {
    font-size: 0.8rem;
  }
}
.tournament__hub {
  background-size: 100%;
  background-position: 50% 50%;
}
.tournament__hub:hover {
  outline: 1px solid var(--primary);
}
@media (max-width: 991.98px) {
  .tournament__cancelled {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -1rem;
  }
}
.tournament__rules {
  font-size: 1rem;
}
.tournament__rules p, .tournament__rules ul {
  margin: 0.5em 0 1.5em;
}
.tournament__rules h2, .tournament__rules .h2, .tournament__rules h3, .tournament__rules .h3, .tournament__rules h4, .tournament__rules .h4 {
  margin: 1em 0 0.5em;
}
.tournament__rules h2:first-child, .tournament__rules .h2:first-child, .tournament__rules h3:first-child, .tournament__rules .h3:first-child, .tournament__rules h4:first-child, .tournament__rules .h4:first-child {
  margin-top: 0;
}
.tournament__start-container__errors {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1;
  width: 100%;
}
@media (max-width: 991.98px) {
  .tournament__start-container__errors {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.tournament__start-container__errors__error {
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.tournament__start-container:hover .tournament__start-container__errors {
  opacity: 1;
}
.tournament__admin__toolbox {
  position: relative;
}
.tournament__admin__toolbox__text__main {
  font-size: 0.7rem;
  font-weight: 600;
}
.tournament__admin__toolbox__text__sub {
  font-size: 0.6rem;
}
.tournament__admin__toolbox__text__countdown {
  font-size: 1.5em;
}
.tournament__admin__toolbox__toggler .svg-inline--fa {
  font-size: 1.2rem;
}
.tournament__admin__button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  padding: 2px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
  margin-right: 5px;
  position: relative;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.4s;
}
.tournament__admin__button:hover {
  background-color: rgba(var(--primary-rgb), 0.5);
  text-decoration: none;
  color: inherit;
}
.tournament__admin__button:active, .tournament__admin__button:focus {
  outline: none;
  text-decoration: none;
}
.tournament__admin__button:last-child {
  margin-right: 0;
}
.tournament__admin__button.active {
  border-color: var(--primary);
}
.tournament__admin__button--start svg {
  margin-left: 3px;
}
.tournament__admin__button--start:hover {
  background-color: var(--success);
  border-color: var(--success);
  color: #fff;
}
.tournament__admin__button--stop {
  background-color: var(--danger) !important;
  border-color: var(--danger) !important;
  color: #fff !important;
}
.tournament__admin__button[disabled] {
  opacity: 0.5;
  cursor: default;
}
.tournament__admin__button[disabled]:hover {
  background-color: inherit;
  border-color: inherit;
  color: inherit;
}
.tournament__admin__button__counter {
  position: absolute;
  top: -0.3rem;
  right: -0.5rem;
  bottom: auto;
  left: auto;
  background-color: var(--primary);
  color: #fff;
  border-radius: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
}
.tournament__map {
  font-weight: 600;
}
.tournament__map__image {
  background-color: var(--border-dark);
}

.league-table__row--retired {
  text-decoration: line-through;
  opacity: 0.6;
}
.league-table__row:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
.league-table thead tr {
  background-color: var(--light);
}
.league-table thead tr th, .league-table thead tr td {
  border-bottom: none !important;
}
.league-table td {
  vertical-align: middle;
  border-top: 0 none !important;
}
.league-table__column {
  width: 8%;
}
.league-table__column--placement {
  width: 5%;
}
.league-table__column--signup {
  width: 39%;
}

.table-placement {
  --placement-color: var(--border-light);
  --placement-text-color: var(--text);
  width: 20px;
  height: 20px;
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.8em;
  background-color: var(--placement-color);
  color: var(--placement-text-color);
}
.table-placement--promotion-playoff {
  --placement-color: var(--blue);
  --placement-text-color: #fff;
}
.table-placement--promotion {
  --placement-color: var(--green);
  --placement-text-color: #fff;
}
.table-placement--relegation-playoff {
  --placement-color: var(--yellow);
}
.table-placement--relegation {
  --placement-color: var(--red);
  --placement-text-color: #fff;
}

.tournament__signups__move-signup__replacements {
  max-height: 25vh;
  overflow: auto;
}
.tournament__signups__signup {
  border-right: 5px solid transparent;
}
.tournament__signups__signup:first-child {
  border-radius: 0.3rem 0.3rem 0 0;
}
.tournament__signups__signup:last-child {
  border-radius: 0 0 0.3rem 0.3rem;
  border-bottom: 0 !important;
}
.tournament__signups__signup--participant {
  border-color: var(--success);
}
.tournament__signups__signup--queue, .tournament__signups__signup--invited {
  border-color: var(--info);
}
.tournament__signups__signup--retired {
  border-color: var(--warning);
  border-right-style: dashed;
}
.tournament__signups__signup--banned {
  border-color: var(--danger);
}

.competition__signup__counter {
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 1.15rem;
}
.competition__signup__button.disabled {
  filter: grayscale(100%);
}
.competition__signup--hidden {
  padding-bottom: 0 !important;
}
.competition__signup--hidden .competition__signup__counter {
  margin-bottom: 0 !important;
  border-bottom: 0;
}
@media (min-width: 992px) {
  .competition__signup--hidden .competition__signup__counter {
    margin-bottom: -1.5rem !important;
  }
}
.competition__signup--hidden .competition__signup__columns {
  display: none !important;
}
.competition__signup__team:hover .competition__signup__team__tool-button {
  opacity: 1;
}
.competition__signup__team__tool-button {
  transition: opacity 0.1s;
  opacity: 0.5;
}
.competition__signup__team__tool-button:hover {
  color: var(--primary);
}
.competition__signup__team--highlighted {
  position: relative;
  -webkit-animation: bouncein 200ms;
          animation: bouncein 200ms;
}
.competition__signup__team--highlighted::before {
  content: "";
  position: absolute;
  opacity: 0.3;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(to right, var(--success), transparent);
  -webkit-animation: remove-background 5s forwards 10s, shake 1s 200ms;
          animation: remove-background 5s forwards 10s, shake 1s 200ms;
  border-radius: 0.3rem;
  z-index: -1;
}
.competition__signup__columns {
  flex-direction: column;
}
@media (min-width: 992px) {
  .competition__signup__column--status {
    border-bottom: 1px solid var(--border-light);
  }
}

@media (max-width: 991.98px) {
  .site__sidebar--sm-sticky {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--body);
    z-index: 1030;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.2);
  }
  .site__sidebar--sm-sticky .site__sidebar__items {
    padding-left: 15px;
    padding-right: 15px;
    justify-content: space-between;
  }
  .site__sidebar--sm-sticky .site__sidebar__item {
    font-size: 1.1rem;
    justify-content: center;
  }
  .site__sidebar--sm-sticky .site__sidebar__item__text {
    display: none;
  }
  #tournament .site__sidebar--sm-sticky .site__sidebar__item--active {
    color: var(--primary);
  }

  .tournament__admin {
    border-bottom: 1px solid var(--border-light);
  }

  .competition__signup__countdown {
    font-size: 0.8rem;
  }
  .competition__signup__columns {
    background-color: var(--light);
  }
  .competition__signup__columns--without-teams {
    align-items: center;
    flex-direction: row;
    padding: 0.5rem;
  }
  .competition__signup__columns--without-teams .competition__signup__column {
    width: 50%;
  }
  .competition__signup__columns--without-teams .competition__status-text {
    font-size: 0.9rem;
  }
  .competition__signup__columns--with-teams {
    justify-content: center;
    text-align: center;
  }
  .competition__signup__columns--with-teams .competition__signup__column {
    padding: 0.5rem;
    width: 100%;
  }
  .competition__signup__columns--with-teams .competition__signup__column--status {
    border-bottom: 1px solid var(--border-light);
  }
  .competition__signup__columns--with-teams .competition__signup__teams {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .competition__signup__columns--with-teams .competition__signup__team {
    text-align: left;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding: 0.5rem 0;
  }
  .competition__signup__columns--with-teams .competition__signup__team:last-child {
    border-bottom: 0;
  }
  .competition__signup__columns--not-ready {
    flex-direction: column;
  }
  .competition__signup__columns--not-ready .skeleton {
    width: 100%;
  }
  .competition__signup__columns--not-ready .competition__signup__column {
    display: none;
  }
  .competition__signup__counter {
    font-size: 1rem;
    border-top: 0 none;
  }
}
.heatlist__heat__map {
  margin-right: 0.25rem;
}
.heatlist__heat__map::after {
  content: ",";
}
.heatlist__heat__map:last-child {
  margin-right: 0;
}
.heatlist__heat__map:last-child::after {
  display: none;
}
@media (max-width: 991.98px) {
  .heatlist__heat__maplist {
    flex-wrap: wrap;
  }
  .heatlist__heat__maplist > * {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 991.98px) {
  .heatlist__heat__details {
    width: 75%;
  }
  .heatlist__heat__date {
    width: 25%;
  }
}

.league-table__row--highlighted {
  border: 1px solid var(--primary);
}
.league-table__teamname {
  color: var(--text);
}
@media (max-width: 991.98px) {
  .league-table {
    font-size: 0.65rem;
  }
}

.tournaments__header {
  position: relative;
}
.tournaments__header__image {
  position: absolute;
  background-color: #000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.tournaments__header__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, black, transparent);
}
.tournaments__header__content {
  position: relative;
}
@media (min-width: 1200px) {
  .tournaments__index {
    width: calc(100% - 320px);
  }
}

@media (max-width: 991.98px) {
  .competition-skeletons .skeleton {
    height: 126px !important;
  }

  .tournaments__premium h4 {
    font-size: 0.9rem;
  }
  .tournaments__premium p {
    font-size: 0.7rem;
  }
}
.tournament-box {
  border: 1px solid var(--border-dark);
  border-top-width: 5px;
  background-color: var(--light);
  color: var(--text);
  overflow: hidden;
}
.d-flex .tournament-box {
  width: 0;
}
.tournament-box--empty {
  background-color: var(--gray-light);
  opacity: 0.8;
  border-color: var(--border-light);
  pointer-events: none;
  position: relative;
}
.tournament-box--empty::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  padding-bottom: 56.25%;
  background-color: #000;
  opacity: 0.1;
}
@media (max-width: 991.98px) {
  .tournament-box--empty {
    display: none;
  }
}
.tournament-box__date {
  font-size: 0.8rem;
  font-weight: 600;
}
.tournament-box:hover {
  border-color: var(--primary);
  color: var(--text);
}
.tournament-box__organizer {
  position: relative;
  z-index: 1;
}
.tournament-box__organizer__icon {
  width: 20px;
  height: 20px;
}
.tournament-box__organizer__meta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  font-size: 0.8rem;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: auto;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0 2rem 0 1rem;
  white-space: nowrap;
  border-radius: 50px;
  display: flex;
  align-items: center;
  z-index: -1;
}
.tournament-box__organizer:hover .tournament-box__organizer__meta {
  opacity: 1;
  pointer-events: initial;
}
@media (max-width: 991.98px) {
  .tournament-box__date {
    font-size: 0.75rem;
  }
  .tournament-box__meta {
    font-size: 0.8rem;
  }
  .tournament-box--without-banner .tournament-box__image {
    width: 30%;
    flex-shrink: 0;
  }
  .tournament-box--with-banner .tournament-box__image::before {
    padding-top: 33.3333%;
  }
  .tournament-box--with-banner .tournament-box__image .tournament-box__gamelogo {
    display: none !important;
  }
}

.tournament-list__tournament {
  color: var(--text);
}
@media (max-width: 991.98px) {
  .tournament-list__filter__statuses .btn, .tournament-list__filter__statuses .article__content a[role=button], .article__content .tournament-list__filter__statuses a[role=button] {
    font-size: 0.65rem;
  }
}

.create-tournament__header {
  border-bottom: 2px solid var(--primary);
}
.create-tournament__header__meta {
  position: relative;
  overflow: hidden;
}
.create-tournament__header__meta__content {
  overflow-x: auto;
  overflow-y: hidden;
}
.create-tournament__header__meta::after {
  content: "";
  width: 50px;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  position: absolute;
  background: linear-gradient(to right, rgba(var(--body-rgb), 0.001) 0%, var(--body) 100%);
}
.create-tournament__game__text {
  overflow: hidden;
}
.create-tournament__game__text::before {
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  position: absolute;
  top: -65%;
  right: -50%;
  bottom: auto;
  left: -50%;
  height: 100%;
  transform: rotate(-20deg);
}
.create-tournament__submitting {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--body-rgb), 0.9);
  z-index: 1000;
}

.tournament-settings label {
  font-weight: 700;
}
.tournament-settings__division {
  position: relative;
}
.tournament-settings__division--dragging {
  opacity: 0.7;
}
.tournament-settings__division__drag-handle {
  position: absolute;
  top: -0.5rem;
  right: auto;
  bottom: auto;
  left: -0.5rem;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: -webkit-grab;
  cursor: grab;
}
.tournament-settings__division__drag-handle:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.tournament-settings__divisions {
  min-height: 1px;
}
.tournament-settings .ffasetup__heatmap {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}
.tournament-settings .ffasetup__heatmap:first-child {
  padding-top: 0;
}
.tournament-settings .ffasetup__heatmap:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.tournament-settings .seeding__signuplist {
  transition: opacity 0.4s;
  min-height: 1px;
}
.tournament-settings .seeding__signuplist--dragging-over {
  background: var(--body);
}
.tournament-settings .seeding__signuplist--saving {
  pointer-events: none;
  opacity: 0.6;
}
.tournament-settings .seeding__signup {
  border-bottom: 1px solid var(--border-light);
}
.tournament-settings .seeding__signup:last-child {
  border-bottom: 0 none;
}
.tournament-settings .seeding__signup--dragging {
  opacity: 0.7;
  border-bottom: 0 none;
}
.tournament-settings .seeding__signup:hover {
  background-color: var(--secondary);
}
.tournament-settings .seeding__drag-handle {
  background: rgba(255, 255, 255, 0.8);
}
.tournament-settings .seeding__placementstatus {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.black-friday-section .site__header {
  position: relative;
}

.black-friday-page {
  background: #000;
  color: #fff;
  --border-light: #333;
  --border-dark: #fff;
}
.black-friday-page .prisguiden-disclaimer {
  background: rgba(255, 255, 255, 0.1);
}
.black-friday-page .feed--offers__offer__discount {
  transform: scale(1.2);
}
.black-friday-page .entrance {
  --text: #fff;
}

.black-friday-header {
  --text: #fff;
  background: linear-gradient(to bottom, #000, #121212);
}

.main-black-friday-header-padder {
  transition-delay: 0.05s;
  transition: padding 0.3s;
}

.main-black-friday-header-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1001;
  pointer-events: none;
}

.main-black-friday-header {
  pointer-events: all;
}
@media (max-width: 991.98px) {
  .main-black-friday-header h1 {
    font-size: 1.2rem;
  }
}
.main-black-friday-header.sticking {
  padding-top: 0 !important;
}
.main-black-friday-header.sticking .main-black-friday-header-padder {
  padding-top: 0.5rem !important;
  padding-bottom: 0rem !important;
}
.main-black-friday-header.sticking .main-black-friday-header-padder h1 {
  font-size: 1rem !important;
}
.main-black-friday-header h1 {
  transition-delay: 0.05s;
  transition: font-size 0.3s;
}
.main-black-friday-header h1 .large {
  text-transform: uppercase;
  font-weight: 700;
}
.main-black-friday-header h1 .small {
  font-size: 0.6em;
}
.main-black-friday-header h1 .spacer {
  margin: 0 -0.3rem;
}
.main-black-friday-header h1 .spacer::after {
  content: "-";
}

.raffle__item-wrapper {
  perspective: 1000px;
  transition: transform 0.2s;
  position: relative;
  display: flex;
  width: 0;
}
.raffle__item-wrapper .raffle__item--clickable {
  cursor: pointer;
}
.raffle__item-wrapper:hover {
  z-index: 1;
}
.raffle__item-wrapper:hover .raffle__item::before {
  -webkit-animation: shadowpulse-primary 2s infinite;
          animation: shadowpulse-primary 2s infinite;
}
.raffle__item-wrapper--active .raffle__item-wrapper__inner {
  transform: rotateY(180deg);
}
.raffle__item-wrapper--active .raffle__item--front {
  pointer-events: none;
}
.raffle__item-wrapper--shaking {
  -webkit-animation: shake 0.5s infinite;
          animation: shake 0.5s infinite;
}
.raffle__item-wrapper__inner {
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.raffle__item-wrapper .raffle__item {
  flex-grow: 1;
  width: 100%;
}
.raffle__item {
  --primary-rgb: 221, 221, 221;
  --primary: rgb(var(--primary-rgb));
  --contrast: #fff;
  color: var(--primary);
  border: 1px solid var(--primary);
  background: linear-gradient(to bottom, #0d1721, #1c3044, #0d1721);
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.raffle__item--back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotateY(180deg);
}
.raffle__item--uncommon, .raffle__item--sjelden {
  --primary-rgb: 0, 255, 255;
  --contrast: #000;
}
.raffle__item--rare, .raffle__item--veldig-sjelden, .raffle__item--eksklusiv {
  --primary-rgb: 173, 255, 47;
  --contrast: #000;
}
.raffle__item--epic, .raffle__item--episk {
  --primary-rgb: 255, 0, 255;
  --contrast: #fff;
}
.raffle__item--legendary, .raffle__item--legendarisk {
  --primary-rgb: 255, 215, 0;
  --contrast: #000;
}
.raffle__item--empty {
  opacity: 0.15;
  box-shadow: none;
}
.raffle__item--empty::before {
  display: none;
}
@media (max-width: 991.98px) {
  .raffle__item--empty {
    display: none;
  }
}
.raffle__item::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  box-shadow: 0 0 0.75em var(--primary);
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  border-radius: 0.3rem;
}
.raffle__item__product__title {
  background-color: rgba(0, 0, 0, 0.7);
}
.raffle__item__product__classification-badge {
  position: absolute;
  background-color: var(--primary);
  color: var(--contrast);
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  transform: translateY(-35%);
  width: 50%;
  margin: auto;
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
}
.raffle__item__product__image {
  background-color: rgba(0, 0, 0, 0.5);
}
.raffle__item__product__description a {
  word-break: break-word;
  text-decoration: underline;
}
.raffle__item__code {
  background-color: rgba(0, 0, 0, 0.7);
}
.raffle__item__user {
  font-size: 0.8rem;
}
.raffle__item__action-button {
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}
.raffle__item__action-button::after {
  content: "";
  pointer-events: none;
  -webkit-animation: slide 5s infinite;
          animation: slide 5s infinite;
  content: "";
  position: absolute;
  width: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.raffle__item__giftwrap {
  position: absolute;
  pointer-events: none;
  top: -7px;
  right: -7px;
  bottom: -7px;
  left: -7px;
}
.raffle__item__giftwrap__ribbon {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  overflow: hidden;
  width: 100px;
  height: 100px;
}
.raffle__item__giftwrap__ribbon::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)) var(--success);
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: -1;
}
.raffle__item__giftwrap__ribbon::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)) var(--success);
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  width: 20px;
  height: 20px;
  z-index: -1;
}
.raffle__item__giftwrap__ribbon--2 {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}
.raffle__item__giftwrap__ribbon--3 {
  display: none;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
.raffle__item__giftwrap__ribbon--3::before {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}
.raffle__item__giftwrap__ribbon--3::after {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}
.raffle__item__giftwrap__ribbon--4 {
  display: none;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}
.raffle__item__giftwrap__ribbon--4::before {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}
.raffle__item__giftwrap__ribbon--4::after {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}
.raffle__item__giftwrap__ribbon__band {
  height: 40px;
  width: 200%;
  margin: auto -50%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0.25), transparent), var(--success);
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotate(45deg) translateY(50%);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
}
.raffle__item__giftwrap__ribbon__band--2 {
  transform: rotate(45deg) translateY(-50%);
}
.raffle__item__giftwrap__ribbon__band--3 {
  transform: rotate(-45deg) translateY(-50%);
}
.raffle__item__giftwrap__ribbon__band--4 {
  transform: rotate(-45deg) translateY(50%);
}

.scrims-gradient {
  background-image: linear-gradient(to right, var(--primary), var(--esport));
}

.scrims-wrapper {
  min-height: 100vh;
}
.scrims-wrapper__header {
  border-bottom: 1px solid var(--border-light);
}
.scrims-wrapper__logo {
  width: 100%;
  height: auto;
}
@media (max-width: 991.98px) {
  .scrims-wrapper__logo {
    width: 168px;
    height: 40px;
    margin: -0.5rem 0;
  }
}

.scrims__welcome__cols {
  border-bottom: 3px solid var(--border-light);
  border-top: 3px solid var(--border-light);
}
@media (max-width: 1199.98px) {
  .scrims__welcome ul {
    width: 100%;
  }
}

.scrim-box {
  position: relative;
}
@media (max-width: 991.98px) {
  .scrim-box-wrap--empty {
    display: none;
  }
  .scrim-box-wrap--empty:first-child {
    display: block;
    margin-bottom: 0 !important;
  }
}
.scrim-box--is-participant.scrim-box--public .scrim-box__game {
  opacity: 0.8;
}
.scrim-box--is-participant .scrim-box__game::after {
  content: "";
  border-radius: 0.3rem;
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  bottom: 0.25rem;
  left: 0.25rem;
  border: 2px dashed #fff;
  opacity: 0.5;
  pointer-events: none;
}
.scrim-box--cancelled {
  opacity: 0.6;
  overflow: hidden;
  filter: grayscale(100%);
}
.scrim-box--cancelled::after {
  content: "Kansellert";
  background-color: #000;
  color: #fff;
  transform: rotate(45deg) translate(31%, -90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 50%;
  text-align: center;
  pointer-events: none;
}
.scrim-box--victory {
  overflow: hidden;
}
.scrim-box--victory::after {
  content: "Seier";
  background-color: var(--success);
  color: #fff;
  transform: rotate(45deg) translate(31%, -90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 50%;
  text-align: center;
  pointer-events: none;
}
.scrim-box--loss {
  overflow: hidden;
}
.scrim-box--loss::after {
  content: "Tap";
  background-color: var(--danger);
  color: #fff;
  transform: rotate(45deg) translate(31%, -90%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: 50%;
  text-align: center;
  pointer-events: none;
}
.scrim-box__game__logo {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.scrim-box__header {
  position: relative;
}
.scrim-box__meta {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  font-weight: 600;
}

.scrim__team__game {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.scrim__description__text > *:last-child {
  margin-bottom: 0;
}

.create-scrim__team-select {
  max-height: 70vh;
  overflow: auto;
}

.site__sidebar__scrims .dropdown-container__toggler {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .scrims-wrapper .site__right-column {
    border-left: 0 !important;
  }

  .site__sidebar__scrims .site__sidebar__items {
    border-top: 1px solid var(--border-light);
  }
  .site__sidebar__scrims .site__sidebar__item {
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    font-size: 0.9rem;
  }
  .site__sidebar__scrims .site__sidebar__item--private, .site__sidebar__scrims .site__sidebar__item--public {
    width: 42%;
  }
  .site__sidebar__scrims .site__sidebar__item--create {
    width: 16%;
    position: relative;
    z-index: 1;
  }
  .site__sidebar__scrims .site__sidebar__item--create__button {
    position: absolute;
    width: 56px;
    height: 56px;
    font-size: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(to right, var(--primary), var(--esport));
    color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.3);
  }
}
.scrim-promotion__link {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}
.scrim-promotion__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(32deg, rgba(4, 4, 4, 0.893995098) 42%, rgba(255, 109, 67, 0.5676645658) 91%);
  transition: opacity 0.4s;
}
.scrim-promotion__link:hover::before {
  opacity: 0.8;
}
.scrim-promotion__title {
  font-size: 0.9rem;
}
.scrim-promotion .selling-points {
  font-size: 0.7rem;
}
@media (max-width: 991.98px) {
  .scrim-promotion .selling-points {
    font-size: 0.8rem;
  }
}

.scrim-promotion--small {
  width: 100%;
  border: 1px solid var(--border-dark);
}
.scrim-promotion--small:hover {
  color: inherit;
  border-color: var(--primary);
}
.scrim-promotion--small .scrims-logo {
  max-width: 100%;
  height: auto !important;
}
.scrim-promotion--small__entry {
  color: #000;
  background: #d1eeea;
}
.scrim-promotion--small__entry:hover {
  color: #000;
  text-decoration: none;
  -webkit-animation: none;
          animation: none;
}
@media (max-width: 991.98px) {
  .scrim-promotion--small h6, .scrim-promotion--small .h6 {
    font-size: 0.8rem;
  }
}

.scrims-gradient-1 {
  fill: url(#scrims-radial-gradient-7);
}

.scrims-gradient-2 {
  fill: #fff;
}

.scrims-gradient-3 {
  fill: url(#scrims-radial-gradient-8);
}

.scrims-gradient-4 {
  fill: url(#scrims-radial-gradient-5);
}

.scrims-gradient-5 {
  fill: url(#scrims-radial-gradient-4);
}

.scrims-gradient-6 {
  fill: url(#scrims-radial-gradient-6);
}

.scrims-gradient-7 {
  fill: url(#scrims-radial-gradient);
}

.scrims-gradient-8 {
  fill: url(#scrims-radial-gradient-2);
}

.scrims-gradient-9 {
  fill: url(#scrims-radial-gradient-3);
}

.scrims-gradient-10 {
  fill: var(--scrims-text);
}

.scrims-gradient-11 {
  fill: var(--scrims-frame);
}

.stats__hub {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.stats__hub--checked::after {
  content: "";
  inset: auto 0 0;
  position: absolute;
  pointer-events: none;
  border-bottom: 5px solid var(--primary);
}
.stats__chart {
  width: 100%;
  aspect-ratio: 1/1;
}
.stats__chart > div[style] {
  display: flex;
  justify-content: center;
  align-items: center;
}

.csgo-matchup-stats__timeline__score {
  width: 32px;
  height: 32px;
}
.csgo-matchup-stats__timeline__arrow {
  width: 32px;
  cursor: pointer;
  border: 2px solid var(--border-light);
}
.csgo-matchup-stats__timeline .bordered-image {
  width: 32px;
  height: 32px;
}
.csgo-matchup-stats__round {
  display: grid;
  grid-gap: 0.25rem;
}
.csgo-matchup-stats__round__summary {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  z-index: 1060;
}
.csgo-matchup-stats__round__summary::before {
  content: "";
  border-bottom: 1rem solid var(--border-dark);
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translatex(-50%);
}
.csgo-matchup-stats__round__mvp__label {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  font-weight: 600;
}
.csgo-matchup-stats__round-item {
  width: 32px;
  border: 2px solid var(--border-light);
}
.csgo-matchup-stats__round-item--ct-win {
  border-color: var(--counter-terrorists);
}
.csgo-matchup-stats__round-item--t-win {
  border-color: var(--terrorists);
}
.csgo-matchup-stats__divider {
  width: 15px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  transform: rotate(180deg);
}
@media (max-width: 991.98px) {
  .csgo-matchup-stats__team h4 {
    font-size: 0.9rem;
  }
  .csgo-matchup-stats__team .bordered-image--md {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 991.98px) {
  .csgo-matchup-stats__meta h2 {
    font-size: 1rem;
  }
}
.csgo-matchup-stats__label {
  left: 1rem;
  bottom: 100%;
  margin-bottom: 2px;
  position: absolute;
  -webkit-text-decoration: uppercase;
          text-decoration: uppercase;
  background: var(--primary);
  font-size: 80%;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 991.98px) {
  .csgo-matchup-stats__label {
    left: 0.5rem;
    font-size: 70%;
  }
}
.csgo-matchup-stats__player-card {
  width: 100%;
  border: 2px solid var(--border-dark);
}
.csgo-matchup-stats__player-card__value {
  font-size: 1.5rem;
}
@media (max-width: 991.98px) {
  .csgo-matchup-stats__player-card__value {
    font-size: 1.2rem;
  }
}
@media (max-width: 991.98px) {
  .csgo-matchup-stats__player-card__name {
    font-size: 1rem;
  }
  .csgo-matchup-stats__player-card__description {
    word-wrap: break-word;
  }
  .csgo-matchup-stats__player-card .bordered-image--lg {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 992px) {
  .csgo-matchup-stats__scoreboard::-webkit-scrollbar {
    height: 5px;
  }
  .csgo-matchup-stats__scoreboard::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: transparent;
    -webkit-transition: background 0.4s;
    transition: background 0.4s;
  }
  .csgo-matchup-stats__scoreboard:hover::-webkit-scrollbar-thumb {
    background: var(--secondary);
  }
}

:root {
  --clutch-1v1: dodgerblue;
  --clutch-1v2: mediumseagreen;
  --clutch-1v3: greenyellow;
  --clutch-1v4: orangered;
  --clutch-1v5: firebrick;
}

.percentage-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-weight: bold;
}
.percentage-circle--empty::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 3px solid var(--border-dark);
  border-radius: 50%;
}
.percentage-circle__slice {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: rotate(180deg);
}
.percentage-circle__slice--1v1 {
  color: var(--clutch-1v1);
}
.percentage-circle__slice--1v2 {
  color: var(--clutch-1v2);
}
.percentage-circle__slice--1v3 {
  color: var(--clutch-1v3);
}
.percentage-circle__slice--1v4 {
  color: var(--clutch-1v4);
}
.percentage-circle__slice--1v5 {
  color: var(--clutch-1v5);
}
.percentage-circle__bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.percentage-circle__bar--secondary {
  transform: rotate(180deg);
}
.percentage-circle__bar__inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-clip-path: inset(0% 50% 0 0);
          clip-path: inset(0% 50% 0 0);
  border: 3px solid;
  border-radius: 50%;
}

.bg-clutch-color-1v1 {
  background-color: var(--clutch-1v1);
}
.bg-clutch-color-1v2 {
  background-color: var(--clutch-1v2);
}
.bg-clutch-color-1v3 {
  background-color: var(--clutch-1v3);
}
.bg-clutch-color-1v4 {
  background-color: var(--clutch-1v4);
}
.bg-clutch-color-1v5 {
  background-color: var(--clutch-1v5);
}

.lineup-prediction__col {
  width: 18%;
}
.lineup-prediction__col--large {
  width: 46%;
}

.gold-glow {
  border: 1px solid rgba(var(--gold-rgb), 0.5);
  box-shadow: 0 0.1rem 3rem rgba(var(--gold-rgb), 0.7);
}

.subscription__blur {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(var(--body-rgb), 0.5);
  position: absolute;
  overflow-y: auto;
  inset: 0;
}
.subscription__poster {
  background: transparent no-repeat scroll 50% 50%;
  background-image: linear-gradient(to bottom, transparent, #000000), url("https://i.bo3.no/image/352974/golden-particle-dust-background-wallpaper.jpg");
  background-size: cover;
  color: #fff;
}
.subscription__ribbon {
  position: absolute;
  transform: rotate(45deg) translate(30%, -10%);
  inset: 0 0 auto auto;
  text-align: center;
  padding: 0 30px;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
@media (min-width: 992px) {
  .subscription__benefit__graphic-container {
    width: 50%;
  }
}
@media (max-width: 1199.98px) {
  .subscription__benefit__graphic-container {
    height: 160px;
  }
}
.subscription__benefit__graphic {
  position: absolute;
  background-position: 50% 50%;
  background-color: rgba(0, 0, 0, 0.1);
  background-size: cover;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
@media (min-width: 992px) {
  .subscription__benefit__graphic {
    top: -40px;
    bottom: -50px;
    background-position: 50% 0;
  }
  .subscription__benefit__graphic--even {
    left: -20px;
    right: 20px;
    transform: rotate(-5deg);
  }
  .subscription__benefit__graphic--odd {
    left: 20px;
    right: -20px;
    transform: rotate(5deg);
  }
}
.subscription__feature-table thead th {
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
  font-size: 0.9em;
}
.subscription__feature-table tbody th {
  text-align: left;
}
.subscription__feature-table tbody td {
  width: 12%;
}
.subscription__feature-table__positive {
  background: #40b3a152;
}

.goldpage__title {
  font-size: 4rem;
}
@media (max-width: 991.98px) {
  .goldpage__title {
    font-size: 2rem;
  }
}
@media (max-width: 991.98px) {
  .goldpage__logo {
    width: 100px;
  }
}

@media (min-width: 768px) {
  .jobs__header h1 {
    font-size: 1.8rem;
  }
}

._lpStream {
  width: auto !important;
  display: block !important;
  margin: 0 -7.5px !important;
}
._lpStream a {
  color: var(--text) !important;
  font-family: "Inter", Helvetica, Arial, sans-serif !important;
}

.feed--user-upcoming__matchup__team__logo {
  border: 1px solid var(--primary);
  padding: 1px;
  width: 20px;
  height: 20px;
}

.flippable {
  position: relative;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.flippable--back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: rotateY(180deg);
}
.flippable--clickable {
  cursor: pointer;
}

.flippable-wrapper {
  display: flex;
  perspective: 1000px;
  transition: transform 0.2s;
  position: relative;
}
.flippable-wrapper .flippable--clickable {
  cursor: pointer;
}
.flippable-wrapper:hover {
  z-index: 1;
}
.flippable-wrapper--active .flippable-wrapper__inner {
  transform: rotateY(180deg);
}
.flippable-wrapper--active .flippable--front {
  pointer-events: none;
}
.flippable-wrapper--shaking {
  -webkit-animation: shake 0.5s infinite;
          animation: shake 0.5s infinite;
}
.flippable-wrapper__inner {
  position: relative;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.icon__button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding: 2px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  color: inherit;
  position: relative;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.4s;
}
.icon__button:hover {
  background-color: rgba(var(--primary-rgb), 0.5);
  text-decoration: none;
  color: inherit;
}

.editable-field__label, .editable-field__input {
  font: inherit;
  color: inherit;
  text-align: inherit;
  padding: 0;
  background: none;
  border: none;
  outline: none;
}
.editable-field--active .editable-field__label {
  display: none;
}
.editable-field--inactive .editable-field__input {
  display: none;
}

.paginator:hover {
  border-bottom: 3px solid var(--primary);
}
.paginator--selected {
  border-bottom: 3px solid var(--primary);
  pointer-events: none;
}
.paginator--disabled {
  opacity: 0.5;
  pointer-events: none;
}

/*# sourceMappingURL=app.css.map*/