/*******************************************************************************************************************************
This file has been customised. 
If you replace the file following changes need to be fixed. 

[EditDate: 30.10.2023]
- Added button styling for Vipps MobilePay - VM-button__style-dark-blue

[EditDate: 31.01.2020]
- Fix checkedbox base64 encoded .svg .vipps-checkbox__input:checked ~ .vipps-checkbox__checkmark  
- Align checkbox right .vipps-checkbox__checkmark 
- Padding left removed .vipps-checkbox
- Font-face attemt to base64 encode the font
- Added button styling for bankId and BankAxept - vipps-button__style-bankaxept vipps-button__style-bankid
*******************************************************************************************************************************



.text-color-orange {
    color: #ff5b24
}

.text-color-blueberry {
    color: #541b86
}

.text-color-black {
    color: #161225
}

.text-color-light-orange {
    color: #fff4ec
}

.text-color-turquoise {
    color: #59cbe8
}

.text-color-shiny-blueberry {
    color: #722ac9
}

.text-color-rust {
    color: #9b3716
}

.text-color-tangerine {
    color: #ff985f
}

.text-color-peach {
    color: #ffb992
}

.text-color-light-peach {
    color: #ffd3bb
}

.text-color-dark-purple {
    color: #706b8b
}

.text-color-carbon-purple {
    color: #938fa8
}

.text-color-light-purple {
    color: _ #c9c6d7
}

.text-color-storm-grey {
    color: #efeef3
}

.text-color-cloud-grey {
    color: #f6f6f9
}

.text-color-fog-grey {
    color: #fcfbfe
}

.text-color-white {
    color: #fff
}

.text-color-green {
    color: #006628
}

.text-color-light-green {
    color: #d7ecdf
}

.text-color-red {
    color: #c60000
}

.text-color-light-red {
    color: #fde5e4
}

.rc-tooltip.rc-tooltip-zoom-enter,
.rc-tooltip.rc-tooltip-zoom-leave {
    display: block
}

.rc-tooltip-zoom-enter,
.rc-tooltip-zoom-appear {
    opacity: 0;
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
    animation-play-state: paused
}

.rc-tooltip-zoom-leave {
    animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.6, -0.3, 0.74, 0.05);
    animation-play-state: paused
}

.rc-tooltip-zoom-enter.rc-tooltip-zoom-enter-active,
.rc-tooltip-zoom-appear.rc-tooltip-zoom-appear-active {
    animation-name: rcToolTipZoomIn;
    animation-play-state: running
}

.rc-tooltip-zoom-leave.rc-tooltip-zoom-leave-active {
    animation-name: rcToolTipZoomOut;
    animation-play-state: running
}

@keyframes rcToolTipZoomIn {
    0% {
        opacity: 0;
        transform-origin: 50% 50%;
        transform: scale(0, 0)
    }

    100% {
        opacity: 1;
        transform-origin: 50% 50%;
        transform: scale(1, 1)
    }
}

@keyframes rcToolTipZoomOut {
    0% {
        opacity: 1;
        transform-origin: 50% 50%;
        transform: scale(1, 1)
    }

    100% {
        opacity: 0;
        transform-origin: 50% 50%;
        transform: scale(0, 0)
    }
}

.rc-tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    visibility: visible;
    line-height: 1.5;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 1px;
    opacity: 0.9
}

.rc-tooltip-hidden {
    display: none
}

.rc-tooltip-inner {
    padding: 8px 10px;
    color: #333333;
    text-align: left;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 3px;
    min-height: 34px;
    border: 1px solid #b1b1b1
}

.rc-tooltip-arrow,
.rc-tooltip-arrow-inner {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.rc-tooltip-placement-top .rc-tooltip-arrow,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow,
.rc-tooltip-placement-topRight .rc-tooltip-arrow {
    bottom: -5px;
    margin-left: -6px;
    border-width: 6px 6px 0;
    border-top-color: #b1b1b1
}

.rc-tooltip-placement-top .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-topRight .rc-tooltip-arrow-inner {
    bottom: 1px;
    margin-left: -6px;
    border-width: 6px 6px 0;
    border-top-color: #ffffff
}

.rc-tooltip-placement-top .rc-tooltip-arrow {
    left: 50%
}

.rc-tooltip-placement-topLeft .rc-tooltip-arrow {
    left: 15%
}

.rc-tooltip-placement-topRight .rc-tooltip-arrow {
    right: 15%
}

.rc-tooltip-placement-right .rc-tooltip-arrow,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
    left: -5px;
    margin-top: -6px;
    border-width: 6px 6px 6px 0;
    border-right-color: #b1b1b1
}

.rc-tooltip-placement-right .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-rightBottom .rc-tooltip-arrow-inner {
    left: 1px;
    margin-top: -6px;
    border-width: 6px 6px 6px 0;
    border-right-color: #ffffff
}

.rc-tooltip-placement-right .rc-tooltip-arrow {
    top: 50%
}

.rc-tooltip-placement-rightTop .rc-tooltip-arrow {
    top: 15%;
    margin-top: 0
}

.rc-tooltip-placement-rightBottom .rc-tooltip-arrow {
    bottom: 15%
}

.rc-tooltip-placement-left .rc-tooltip-arrow,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
    right: -5px;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-left-color: #b1b1b1
}

.rc-tooltip-placement-left .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftTop .rc-tooltip-arrow-inner,
.rc-tooltip-placement-leftBottom .rc-tooltip-arrow-inner {
    right: 1px;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-left-color: #ffffff
}

.rc-tooltip-placement-left .rc-tooltip-arrow {
    top: 50%
}

.rc-tooltip-placement-leftTop .rc-tooltip-arrow {
    top: 15%;
    margin-top: 0
}

.rc-tooltip-placement-leftBottom .rc-tooltip-arrow {
    bottom: 15%
}

.rc-tooltip-placement-bottom .rc-tooltip-arrow,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
    top: -5px;
    margin-left: -6px;
    border-width: 0 6px 6px;
    border-bottom-color: #b1b1b1
}

.rc-tooltip-placement-bottom .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow-inner,
.rc-tooltip-placement-bottomRight .rc-tooltip-arrow-inner {
    top: 1px;
    margin-left: -6px;
    border-width: 0 6px 6px;
    border-bottom-color: #ffffff
}

.rc-tooltip-placement-bottom .rc-tooltip-arrow {
    left: 50%
}

.rc-tooltip-placement-bottomLeft .rc-tooltip-arrow {
    left: 15%
}

.rc-tooltip-placement-bottomRight .rc-tooltip-arrow {
    right: 15%
}

.react-toggle {
    touch-action: pan-x;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent
}

.react-toggle-screenreader-only {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.react-toggle--disabled {
    cursor: not-allowed;
    opacity: 0.5;
    -webkit-transition: opacity 0.25s;
    transition: opacity 0.25s
}

.react-toggle-track {
    width: 50px;
    height: 24px;
    padding: 0;
    border-radius: 30px;
    background-color: #4D4D4D;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
    background-color: #000000
}

.react-toggle--checked .react-toggle-track {
    background-color: #19AB27
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
    background-color: #128D15
}

.react-toggle-track-check {
    position: absolute;
    width: 14px;
    height: 10px;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    line-height: 0;
    left: 8px;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease
}

.react-toggle--checked .react-toggle-track-check {
    opacity: 1;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease
}

.react-toggle-track-x {
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
    line-height: 0;
    right: 10px;
    opacity: 1;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease
}

.react-toggle--checked .react-toggle-track-x {
    opacity: 0
}

.react-toggle-thumb {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0ms;
    position: absolute;
    top: 1px;
    left: 1px;
    width: 22px;
    height: 22px;
    border: 1px solid #4D4D4D;
    border-radius: 50%;
    background-color: #FAFAFA;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    transition: all 0.25s ease
}

.react-toggle--checked .react-toggle-thumb {
    left: 27px;
    border-color: #19AB27
}

.react-toggle--focus .react-toggle-thumb {
    -webkit-box-shadow: 0px 0px 3px 2px #0099E0;
    -moz-box-shadow: 0px 0px 3px 2px #0099E0;
    box-shadow: 0px 0px 2px 3px #0099E0
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
    -webkit-box-shadow: 0px 0px 5px 5px #0099E0;
    -moz-box-shadow: 0px 0px 5px 5px #0099E0;
    box-shadow: 0px 0px 5px 5px #0099E0
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

.text-color-orange {
    color: #ff5b24
}

.text-color-blueberry {
    color: #541b86
}

.text-color-black {
    color: #161225
}

.text-color-light-orange {
    color: #fff4ec
}

.text-color-turquoise {
    color: #59cbe8
}

.text-color-shiny-blueberry {
    color: #722ac9
}

.text-color-rust {
    color: #9b3716
}

.text-color-tangerine {
    color: #ff985f
}

.text-color-peach {
    color: #ffb992
}

.text-color-light-peach {
    color: #ffd3bb
}

.text-color-dark-purple {
    color: #706b8b
}

.text-color-carbon-purple {
    color: #938fa8
}

.text-color-light-purple {
    color: _ #c9c6d7
}

.text-color-storm-grey {
    color: #efeef3
}

.text-color-cloud-grey {
    color: #f6f6f9
}

.text-color-fog-grey {
    color: #fcfbfe
}

.text-color-white {
    color: #fff
}

.text-color-green {
    color: #006628
}

.text-color-light-green {
    color: #d7ecdf
}

.text-color-red {
    color: #c60000
}

.text-color-light-red {
    color: #fde5e4
}

.grid-container {
    padding-right: .625rem;
    padding-left: .625rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

@media print,
screen and (min-width: 47.5em) {
    .grid-container {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.grid-container.fluid {
    padding-right: .625rem;
    padding-left: .625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media print,
screen and (min-width: 47.5em) {
    .grid-container.fluid {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.grid-container.full {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.grid-x {
    display: flex;
    flex-flow: row wrap
}

.cell {
    flex: 0 0 auto;
    min-height: 0px;
    min-width: 0px;
    width: 100%
}

.cell.auto {
    flex: 1 1 0px
}

.cell.shrink {
    flex: 0 0 auto
}

.grid-x>.auto {
    width: auto
}

.grid-x>.shrink {
    width: auto
}

.grid-x>.small-shrink,
.grid-x>.small-full,
.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12 {
    flex-basis: auto
}

@media print,
screen and (min-width: 47.5em) {

    .grid-x>.medium-shrink,
    .grid-x>.medium-full,
    .grid-x>.medium-1,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width: 64em) {

    .grid-x>.large-shrink,
    .grid-x>.large-full,
    .grid-x>.large-1,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12 {
        flex-basis: auto
    }
}

.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12 {
    flex: 0 0 auto
}

.grid-x>.small-1 {
    width: 8.33333%
}

.grid-x>.small-2 {
    width: 16.66667%
}

.grid-x>.small-3 {
    width: 25%
}

.grid-x>.small-4 {
    width: 33.33333%
}

.grid-x>.small-5 {
    width: 41.66667%
}

.grid-x>.small-6 {
    width: 50%
}

.grid-x>.small-7 {
    width: 58.33333%
}

.grid-x>.small-8 {
    width: 66.66667%
}

.grid-x>.small-9 {
    width: 75%
}

.grid-x>.small-10 {
    width: 83.33333%
}

.grid-x>.small-11 {
    width: 91.66667%
}

.grid-x>.small-12 {
    width: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .grid-x>.medium-auto {
        flex: 1 1 0px;
        width: auto
    }

    .grid-x>.medium-shrink,
    .grid-x>.medium-1,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12 {
        flex: 0 0 auto
    }

    .grid-x>.medium-shrink {
        width: auto
    }

    .grid-x>.medium-1 {
        width: 8.33333%
    }

    .grid-x>.medium-2 {
        width: 16.66667%
    }

    .grid-x>.medium-3 {
        width: 25%
    }

    .grid-x>.medium-4 {
        width: 33.33333%
    }

    .grid-x>.medium-5 {
        width: 41.66667%
    }

    .grid-x>.medium-6 {
        width: 50%
    }

    .grid-x>.medium-7 {
        width: 58.33333%
    }

    .grid-x>.medium-8 {
        width: 66.66667%
    }

    .grid-x>.medium-9 {
        width: 75%
    }

    .grid-x>.medium-10 {
        width: 83.33333%
    }

    .grid-x>.medium-11 {
        width: 91.66667%
    }

    .grid-x>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-x>.large-auto {
        flex: 1 1 0px;
        width: auto
    }

    .grid-x>.large-shrink,
    .grid-x>.large-1,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12 {
        flex: 0 0 auto
    }

    .grid-x>.large-shrink {
        width: auto
    }

    .grid-x>.large-1 {
        width: 8.33333%
    }

    .grid-x>.large-2 {
        width: 16.66667%
    }

    .grid-x>.large-3 {
        width: 25%
    }

    .grid-x>.large-4 {
        width: 33.33333%
    }

    .grid-x>.large-5 {
        width: 41.66667%
    }

    .grid-x>.large-6 {
        width: 50%
    }

    .grid-x>.large-7 {
        width: 58.33333%
    }

    .grid-x>.large-8 {
        width: 66.66667%
    }

    .grid-x>.large-9 {
        width: 75%
    }

    .grid-x>.large-10 {
        width: 83.33333%
    }

    .grid-x>.large-11 {
        width: 91.66667%
    }

    .grid-x>.large-12 {
        width: 100%
    }
}

.grid-margin-x:not(.grid-x)>.cell {
    width: auto
}

.grid-margin-y:not(.grid-y)>.cell {
    height: auto
}

.grid-margin-x {
    margin-left: -.625rem;
    margin-right: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x {
        margin-left: -.9375rem;
        margin-right: -.9375rem
    }
}

.grid-margin-x>.cell {
    width: calc(100% - 1.25rem);
    margin-left: .625rem;
    margin-right: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x>.cell {
        width: calc(100% - 1.875rem);
        margin-left: .9375rem;
        margin-right: .9375rem
    }
}

.grid-margin-x>.auto {
    width: auto
}

.grid-margin-x>.shrink {
    width: auto
}

.grid-margin-x>.small-1 {
    width: calc(8.33333% - 1.25rem)
}

.grid-margin-x>.small-2 {
    width: calc(16.66667% - 1.25rem)
}

.grid-margin-x>.small-3 {
    width: calc(25% - 1.25rem)
}

.grid-margin-x>.small-4 {
    width: calc(33.33333% - 1.25rem)
}

.grid-margin-x>.small-5 {
    width: calc(41.66667% - 1.25rem)
}

.grid-margin-x>.small-6 {
    width: calc(50% - 1.25rem)
}

.grid-margin-x>.small-7 {
    width: calc(58.33333% - 1.25rem)
}

.grid-margin-x>.small-8 {
    width: calc(66.66667% - 1.25rem)
}

.grid-margin-x>.small-9 {
    width: calc(75% - 1.25rem)
}

.grid-margin-x>.small-10 {
    width: calc(83.33333% - 1.25rem)
}

.grid-margin-x>.small-11 {
    width: calc(91.66667% - 1.25rem)
}

.grid-margin-x>.small-12 {
    width: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x>.auto {
        width: auto
    }

    .grid-margin-x>.shrink {
        width: auto
    }

    .grid-margin-x>.small-1 {
        width: calc(8.33333% - 1.875rem)
    }

    .grid-margin-x>.small-2 {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x>.small-3 {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x>.small-4 {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x>.small-5 {
        width: calc(41.66667% - 1.875rem)
    }

    .grid-margin-x>.small-6 {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x>.small-7 {
        width: calc(58.33333% - 1.875rem)
    }

    .grid-margin-x>.small-8 {
        width: calc(66.66667% - 1.875rem)
    }

    .grid-margin-x>.small-9 {
        width: calc(75% - 1.875rem)
    }

    .grid-margin-x>.small-10 {
        width: calc(83.33333% - 1.875rem)
    }

    .grid-margin-x>.small-11 {
        width: calc(91.66667% - 1.875rem)
    }

    .grid-margin-x>.small-12 {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x>.medium-auto {
        width: auto
    }

    .grid-margin-x>.medium-shrink {
        width: auto
    }

    .grid-margin-x>.medium-1 {
        width: calc(8.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-2 {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-3 {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x>.medium-4 {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-5 {
        width: calc(41.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-6 {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x>.medium-7 {
        width: calc(58.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-8 {
        width: calc(66.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-9 {
        width: calc(75% - 1.875rem)
    }

    .grid-margin-x>.medium-10 {
        width: calc(83.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-11 {
        width: calc(91.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-12 {
        width: calc(100% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-x>.large-auto {
        width: auto
    }

    .grid-margin-x>.large-shrink {
        width: auto
    }

    .grid-margin-x>.large-1 {
        width: calc(8.33333% - 1.875rem)
    }

    .grid-margin-x>.large-2 {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x>.large-3 {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x>.large-4 {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x>.large-5 {
        width: calc(41.66667% - 1.875rem)
    }

    .grid-margin-x>.large-6 {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x>.large-7 {
        width: calc(58.33333% - 1.875rem)
    }

    .grid-margin-x>.large-8 {
        width: calc(66.66667% - 1.875rem)
    }

    .grid-margin-x>.large-9 {
        width: calc(75% - 1.875rem)
    }

    .grid-margin-x>.large-10 {
        width: calc(83.33333% - 1.875rem)
    }

    .grid-margin-x>.large-11 {
        width: calc(91.66667% - 1.875rem)
    }

    .grid-margin-x>.large-12 {
        width: calc(100% - 1.875rem)
    }
}

.grid-padding-x .grid-padding-x {
    margin-right: -.625rem;
    margin-left: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-x .grid-padding-x {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

.grid-container:not(.full)>.grid-padding-x {
    margin-right: -.625rem;
    margin-left: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-container:not(.full)>.grid-padding-x {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

.grid-padding-x>.cell {
    padding-right: .625rem;
    padding-left: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-x>.cell {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.small-up-1>.cell {
    width: 100%
}

.small-up-2>.cell {
    width: 50%
}

.small-up-3>.cell {
    width: 33.33333%
}

.small-up-4>.cell {
    width: 25%
}

.small-up-5>.cell {
    width: 20%
}

.small-up-6>.cell {
    width: 16.66667%
}

.small-up-7>.cell {
    width: 14.28571%
}

.small-up-8>.cell {
    width: 12.5%
}

@media print,
screen and (min-width: 47.5em) {
    .medium-up-1>.cell {
        width: 100%
    }

    .medium-up-2>.cell {
        width: 50%
    }

    .medium-up-3>.cell {
        width: 33.33333%
    }

    .medium-up-4>.cell {
        width: 25%
    }

    .medium-up-5>.cell {
        width: 20%
    }

    .medium-up-6>.cell {
        width: 16.66667%
    }

    .medium-up-7>.cell {
        width: 14.28571%
    }

    .medium-up-8>.cell {
        width: 12.5%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-up-1>.cell {
        width: 100%
    }

    .large-up-2>.cell {
        width: 50%
    }

    .large-up-3>.cell {
        width: 33.33333%
    }

    .large-up-4>.cell {
        width: 25%
    }

    .large-up-5>.cell {
        width: 20%
    }

    .large-up-6>.cell {
        width: 16.66667%
    }

    .large-up-7>.cell {
        width: 14.28571%
    }

    .large-up-8>.cell {
        width: 12.5%
    }
}

.grid-margin-x.small-up-1>.cell {
    width: calc(100% - 1.25rem)
}

.grid-margin-x.small-up-2>.cell {
    width: calc(50% - 1.25rem)
}

.grid-margin-x.small-up-3>.cell {
    width: calc(33.33333% - 1.25rem)
}

.grid-margin-x.small-up-4>.cell {
    width: calc(25% - 1.25rem)
}

.grid-margin-x.small-up-5>.cell {
    width: calc(20% - 1.25rem)
}

.grid-margin-x.small-up-6>.cell {
    width: calc(16.66667% - 1.25rem)
}

.grid-margin-x.small-up-7>.cell {
    width: calc(14.28571% - 1.25rem)
}

.grid-margin-x.small-up-8>.cell {
    width: calc(12.5% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x.small-up-1>.cell {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x.small-up-2>.cell {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x.small-up-3>.cell {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x.small-up-4>.cell {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x.small-up-5>.cell {
        width: calc(20% - 1.875rem)
    }

    .grid-margin-x.small-up-6>.cell {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x.small-up-7>.cell {
        width: calc(14.28571% - 1.875rem)
    }

    .grid-margin-x.small-up-8>.cell {
        width: calc(12.5% - 1.875rem)
    }

    .grid-margin-x.medium-up-1>.cell {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x.medium-up-2>.cell {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x.medium-up-3>.cell {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x.medium-up-4>.cell {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x.medium-up-5>.cell {
        width: calc(20% - 1.875rem)
    }

    .grid-margin-x.medium-up-6>.cell {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x.medium-up-7>.cell {
        width: calc(14.28571% - 1.875rem)
    }

    .grid-margin-x.medium-up-8>.cell {
        width: calc(12.5% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-x.large-up-1>.cell {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x.large-up-2>.cell {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x.large-up-3>.cell {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x.large-up-4>.cell {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x.large-up-5>.cell {
        width: calc(20% - 1.875rem)
    }

    .grid-margin-x.large-up-6>.cell {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x.large-up-7>.cell {
        width: calc(14.28571% - 1.875rem)
    }

    .grid-margin-x.large-up-8>.cell {
        width: calc(12.5% - 1.875rem)
    }
}

.small-margin-collapse {
    margin-right: 0;
    margin-left: 0
}

.small-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
}

.small-margin-collapse>.small-1 {
    width: 8.33333%
}

.small-margin-collapse>.small-2 {
    width: 16.66667%
}

.small-margin-collapse>.small-3 {
    width: 25%
}

.small-margin-collapse>.small-4 {
    width: 33.33333%
}

.small-margin-collapse>.small-5 {
    width: 41.66667%
}

.small-margin-collapse>.small-6 {
    width: 50%
}

.small-margin-collapse>.small-7 {
    width: 58.33333%
}

.small-margin-collapse>.small-8 {
    width: 66.66667%
}

.small-margin-collapse>.small-9 {
    width: 75%
}

.small-margin-collapse>.small-10 {
    width: 83.33333%
}

.small-margin-collapse>.small-11 {
    width: 91.66667%
}

.small-margin-collapse>.small-12 {
    width: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .small-margin-collapse>.medium-1 {
        width: 8.33333%
    }

    .small-margin-collapse>.medium-2 {
        width: 16.66667%
    }

    .small-margin-collapse>.medium-3 {
        width: 25%
    }

    .small-margin-collapse>.medium-4 {
        width: 33.33333%
    }

    .small-margin-collapse>.medium-5 {
        width: 41.66667%
    }

    .small-margin-collapse>.medium-6 {
        width: 50%
    }

    .small-margin-collapse>.medium-7 {
        width: 58.33333%
    }

    .small-margin-collapse>.medium-8 {
        width: 66.66667%
    }

    .small-margin-collapse>.medium-9 {
        width: 75%
    }

    .small-margin-collapse>.medium-10 {
        width: 83.33333%
    }

    .small-margin-collapse>.medium-11 {
        width: 91.66667%
    }

    .small-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .small-margin-collapse>.large-1 {
        width: 8.33333%
    }

    .small-margin-collapse>.large-2 {
        width: 16.66667%
    }

    .small-margin-collapse>.large-3 {
        width: 25%
    }

    .small-margin-collapse>.large-4 {
        width: 33.33333%
    }

    .small-margin-collapse>.large-5 {
        width: 41.66667%
    }

    .small-margin-collapse>.large-6 {
        width: 50%
    }

    .small-margin-collapse>.large-7 {
        width: 58.33333%
    }

    .small-margin-collapse>.large-8 {
        width: 66.66667%
    }

    .small-margin-collapse>.large-9 {
        width: 75%
    }

    .small-margin-collapse>.large-10 {
        width: 83.33333%
    }

    .small-margin-collapse>.large-11 {
        width: 91.66667%
    }

    .small-margin-collapse>.large-12 {
        width: 100%
    }
}

.small-padding-collapse {
    margin-right: 0;
    margin-left: 0
}

.small-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
}

@media print,
screen and (min-width: 47.5em) {
    .medium-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .medium-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width: 47.5em) {
    .medium-margin-collapse>.small-1 {
        width: 8.33333%
    }

    .medium-margin-collapse>.small-2 {
        width: 16.66667%
    }

    .medium-margin-collapse>.small-3 {
        width: 25%
    }

    .medium-margin-collapse>.small-4 {
        width: 33.33333%
    }

    .medium-margin-collapse>.small-5 {
        width: 41.66667%
    }

    .medium-margin-collapse>.small-6 {
        width: 50%
    }

    .medium-margin-collapse>.small-7 {
        width: 58.33333%
    }

    .medium-margin-collapse>.small-8 {
        width: 66.66667%
    }

    .medium-margin-collapse>.small-9 {
        width: 75%
    }

    .medium-margin-collapse>.small-10 {
        width: 83.33333%
    }

    .medium-margin-collapse>.small-11 {
        width: 91.66667%
    }

    .medium-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 47.5em) {
    .medium-margin-collapse>.medium-1 {
        width: 8.33333%
    }

    .medium-margin-collapse>.medium-2 {
        width: 16.66667%
    }

    .medium-margin-collapse>.medium-3 {
        width: 25%
    }

    .medium-margin-collapse>.medium-4 {
        width: 33.33333%
    }

    .medium-margin-collapse>.medium-5 {
        width: 41.66667%
    }

    .medium-margin-collapse>.medium-6 {
        width: 50%
    }

    .medium-margin-collapse>.medium-7 {
        width: 58.33333%
    }

    .medium-margin-collapse>.medium-8 {
        width: 66.66667%
    }

    .medium-margin-collapse>.medium-9 {
        width: 75%
    }

    .medium-margin-collapse>.medium-10 {
        width: 83.33333%
    }

    .medium-margin-collapse>.medium-11 {
        width: 91.66667%
    }

    .medium-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .medium-margin-collapse>.large-1 {
        width: 8.33333%
    }

    .medium-margin-collapse>.large-2 {
        width: 16.66667%
    }

    .medium-margin-collapse>.large-3 {
        width: 25%
    }

    .medium-margin-collapse>.large-4 {
        width: 33.33333%
    }

    .medium-margin-collapse>.large-5 {
        width: 41.66667%
    }

    .medium-margin-collapse>.large-6 {
        width: 50%
    }

    .medium-margin-collapse>.large-7 {
        width: 58.33333%
    }

    .medium-margin-collapse>.large-8 {
        width: 66.66667%
    }

    .medium-margin-collapse>.large-9 {
        width: 75%
    }

    .medium-margin-collapse>.large-10 {
        width: 83.33333%
    }

    .medium-margin-collapse>.large-11 {
        width: 91.66667%
    }

    .medium-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 47.5em) {
    .medium-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .medium-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .large-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse>.small-1 {
        width: 8.33333%
    }

    .large-margin-collapse>.small-2 {
        width: 16.66667%
    }

    .large-margin-collapse>.small-3 {
        width: 25%
    }

    .large-margin-collapse>.small-4 {
        width: 33.33333%
    }

    .large-margin-collapse>.small-5 {
        width: 41.66667%
    }

    .large-margin-collapse>.small-6 {
        width: 50%
    }

    .large-margin-collapse>.small-7 {
        width: 58.33333%
    }

    .large-margin-collapse>.small-8 {
        width: 66.66667%
    }

    .large-margin-collapse>.small-9 {
        width: 75%
    }

    .large-margin-collapse>.small-10 {
        width: 83.33333%
    }

    .large-margin-collapse>.small-11 {
        width: 91.66667%
    }

    .large-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse>.medium-1 {
        width: 8.33333%
    }

    .large-margin-collapse>.medium-2 {
        width: 16.66667%
    }

    .large-margin-collapse>.medium-3 {
        width: 25%
    }

    .large-margin-collapse>.medium-4 {
        width: 33.33333%
    }

    .large-margin-collapse>.medium-5 {
        width: 41.66667%
    }

    .large-margin-collapse>.medium-6 {
        width: 50%
    }

    .large-margin-collapse>.medium-7 {
        width: 58.33333%
    }

    .large-margin-collapse>.medium-8 {
        width: 66.66667%
    }

    .large-margin-collapse>.medium-9 {
        width: 75%
    }

    .large-margin-collapse>.medium-10 {
        width: 83.33333%
    }

    .large-margin-collapse>.medium-11 {
        width: 91.66667%
    }

    .large-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse>.large-1 {
        width: 8.33333%
    }

    .large-margin-collapse>.large-2 {
        width: 16.66667%
    }

    .large-margin-collapse>.large-3 {
        width: 25%
    }

    .large-margin-collapse>.large-4 {
        width: 33.33333%
    }

    .large-margin-collapse>.large-5 {
        width: 41.66667%
    }

    .large-margin-collapse>.large-6 {
        width: 50%
    }

    .large-margin-collapse>.large-7 {
        width: 58.33333%
    }

    .large-margin-collapse>.large-8 {
        width: 66.66667%
    }

    .large-margin-collapse>.large-9 {
        width: 75%
    }

    .large-margin-collapse>.large-10 {
        width: 83.33333%
    }

    .large-margin-collapse>.large-11 {
        width: 91.66667%
    }

    .large-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .large-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

.small-offset-0 {
    margin-left: 0%
}

.grid-margin-x>.small-offset-0 {
    margin-left: calc(0% + .625rem)
}

.small-offset-1 {
    margin-left: 8.33333%
}

.grid-margin-x>.small-offset-1 {
    margin-left: calc(8.33333% + .625rem)
}

.small-offset-2 {
    margin-left: 16.66667%
}

.grid-margin-x>.small-offset-2 {
    margin-left: calc(16.66667% + .625rem)
}

.small-offset-3 {
    margin-left: 25%
}

.grid-margin-x>.small-offset-3 {
    margin-left: calc(25% + .625rem)
}

.small-offset-4 {
    margin-left: 33.33333%
}

.grid-margin-x>.small-offset-4 {
    margin-left: calc(33.33333% + .625rem)
}

.small-offset-5 {
    margin-left: 41.66667%
}

.grid-margin-x>.small-offset-5 {
    margin-left: calc(41.66667% + .625rem)
}

.small-offset-6 {
    margin-left: 50%
}

.grid-margin-x>.small-offset-6 {
    margin-left: calc(50% + .625rem)
}

.small-offset-7 {
    margin-left: 58.33333%
}

.grid-margin-x>.small-offset-7 {
    margin-left: calc(58.33333% + .625rem)
}

.small-offset-8 {
    margin-left: 66.66667%
}

.grid-margin-x>.small-offset-8 {
    margin-left: calc(66.66667% + .625rem)
}

.small-offset-9 {
    margin-left: 75%
}

.grid-margin-x>.small-offset-9 {
    margin-left: calc(75% + .625rem)
}

.small-offset-10 {
    margin-left: 83.33333%
}

.grid-margin-x>.small-offset-10 {
    margin-left: calc(83.33333% + .625rem)
}

.small-offset-11 {
    margin-left: 91.66667%
}

.grid-margin-x>.small-offset-11 {
    margin-left: calc(91.66667% + .625rem)
}

@media print,
screen and (min-width: 47.5em) {
    .medium-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.medium-offset-0 {
        margin-left: calc(0% + .9375rem)
    }

    .medium-offset-1 {
        margin-left: 8.33333%
    }

    .grid-margin-x>.medium-offset-1 {
        margin-left: calc(8.33333% + .9375rem)
    }

    .medium-offset-2 {
        margin-left: 16.66667%
    }

    .grid-margin-x>.medium-offset-2 {
        margin-left: calc(16.66667% + .9375rem)
    }

    .medium-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.medium-offset-3 {
        margin-left: calc(25% + .9375rem)
    }

    .medium-offset-4 {
        margin-left: 33.33333%
    }

    .grid-margin-x>.medium-offset-4 {
        margin-left: calc(33.33333% + .9375rem)
    }

    .medium-offset-5 {
        margin-left: 41.66667%
    }

    .grid-margin-x>.medium-offset-5 {
        margin-left: calc(41.66667% + .9375rem)
    }

    .medium-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.medium-offset-6 {
        margin-left: calc(50% + .9375rem)
    }

    .medium-offset-7 {
        margin-left: 58.33333%
    }

    .grid-margin-x>.medium-offset-7 {
        margin-left: calc(58.33333% + .9375rem)
    }

    .medium-offset-8 {
        margin-left: 66.66667%
    }

    .grid-margin-x>.medium-offset-8 {
        margin-left: calc(66.66667% + .9375rem)
    }

    .medium-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.medium-offset-9 {
        margin-left: calc(75% + .9375rem)
    }

    .medium-offset-10 {
        margin-left: 83.33333%
    }

    .grid-margin-x>.medium-offset-10 {
        margin-left: calc(83.33333% + .9375rem)
    }

    .medium-offset-11 {
        margin-left: 91.66667%
    }

    .grid-margin-x>.medium-offset-11 {
        margin-left: calc(91.66667% + .9375rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .large-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.large-offset-0 {
        margin-left: calc(0% + .9375rem)
    }

    .large-offset-1 {
        margin-left: 8.33333%
    }

    .grid-margin-x>.large-offset-1 {
        margin-left: calc(8.33333% + .9375rem)
    }

    .large-offset-2 {
        margin-left: 16.66667%
    }

    .grid-margin-x>.large-offset-2 {
        margin-left: calc(16.66667% + .9375rem)
    }

    .large-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.large-offset-3 {
        margin-left: calc(25% + .9375rem)
    }

    .large-offset-4 {
        margin-left: 33.33333%
    }

    .grid-margin-x>.large-offset-4 {
        margin-left: calc(33.33333% + .9375rem)
    }

    .large-offset-5 {
        margin-left: 41.66667%
    }

    .grid-margin-x>.large-offset-5 {
        margin-left: calc(41.66667% + .9375rem)
    }

    .large-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.large-offset-6 {
        margin-left: calc(50% + .9375rem)
    }

    .large-offset-7 {
        margin-left: 58.33333%
    }

    .grid-margin-x>.large-offset-7 {
        margin-left: calc(58.33333% + .9375rem)
    }

    .large-offset-8 {
        margin-left: 66.66667%
    }

    .grid-margin-x>.large-offset-8 {
        margin-left: calc(66.66667% + .9375rem)
    }

    .large-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.large-offset-9 {
        margin-left: calc(75% + .9375rem)
    }

    .large-offset-10 {
        margin-left: 83.33333%
    }

    .grid-margin-x>.large-offset-10 {
        margin-left: calc(83.33333% + .9375rem)
    }

    .large-offset-11 {
        margin-left: 91.66667%
    }

    .grid-margin-x>.large-offset-11 {
        margin-left: calc(91.66667% + .9375rem)
    }
}

.grid-y {
    display: flex;
    flex-flow: column nowrap
}

.grid-y>.cell {
    height: auto;
    max-height: none
}

.grid-y>.auto {
    height: auto
}

.grid-y>.shrink {
    height: auto
}

.grid-y>.small-shrink,
.grid-y>.small-full,
.grid-y>.small-1,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12 {
    flex-basis: auto
}

@media print,
screen and (min-width: 47.5em) {

    .grid-y>.medium-shrink,
    .grid-y>.medium-full,
    .grid-y>.medium-1,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width: 64em) {

    .grid-y>.large-shrink,
    .grid-y>.large-full,
    .grid-y>.large-1,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12 {
        flex-basis: auto
    }
}

.grid-y>.small-1,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12 {
    flex: 0 0 auto
}

.grid-y>.small-1 {
    height: 8.33333%
}

.grid-y>.small-2 {
    height: 16.66667%
}

.grid-y>.small-3 {
    height: 25%
}

.grid-y>.small-4 {
    height: 33.33333%
}

.grid-y>.small-5 {
    height: 41.66667%
}

.grid-y>.small-6 {
    height: 50%
}

.grid-y>.small-7 {
    height: 58.33333%
}

.grid-y>.small-8 {
    height: 66.66667%
}

.grid-y>.small-9 {
    height: 75%
}

.grid-y>.small-10 {
    height: 83.33333%
}

.grid-y>.small-11 {
    height: 91.66667%
}

.grid-y>.small-12 {
    height: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .grid-y>.medium-auto {
        flex: 1 1 0px;
        height: auto
    }

    .grid-y>.medium-shrink,
    .grid-y>.medium-1,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12 {
        flex: 0 0 auto
    }

    .grid-y>.medium-shrink {
        height: auto
    }

    .grid-y>.medium-1 {
        height: 8.33333%
    }

    .grid-y>.medium-2 {
        height: 16.66667%
    }

    .grid-y>.medium-3 {
        height: 25%
    }

    .grid-y>.medium-4 {
        height: 33.33333%
    }

    .grid-y>.medium-5 {
        height: 41.66667%
    }

    .grid-y>.medium-6 {
        height: 50%
    }

    .grid-y>.medium-7 {
        height: 58.33333%
    }

    .grid-y>.medium-8 {
        height: 66.66667%
    }

    .grid-y>.medium-9 {
        height: 75%
    }

    .grid-y>.medium-10 {
        height: 83.33333%
    }

    .grid-y>.medium-11 {
        height: 91.66667%
    }

    .grid-y>.medium-12 {
        height: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-y>.large-auto {
        flex: 1 1 0px;
        height: auto
    }

    .grid-y>.large-shrink,
    .grid-y>.large-1,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12 {
        flex: 0 0 auto
    }

    .grid-y>.large-shrink {
        height: auto
    }

    .grid-y>.large-1 {
        height: 8.33333%
    }

    .grid-y>.large-2 {
        height: 16.66667%
    }

    .grid-y>.large-3 {
        height: 25%
    }

    .grid-y>.large-4 {
        height: 33.33333%
    }

    .grid-y>.large-5 {
        height: 41.66667%
    }

    .grid-y>.large-6 {
        height: 50%
    }

    .grid-y>.large-7 {
        height: 58.33333%
    }

    .grid-y>.large-8 {
        height: 66.66667%
    }

    .grid-y>.large-9 {
        height: 75%
    }

    .grid-y>.large-10 {
        height: 83.33333%
    }

    .grid-y>.large-11 {
        height: 91.66667%
    }

    .grid-y>.large-12 {
        height: 100%
    }
}

.grid-padding-y .grid-padding-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-y .grid-padding-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem
    }
}

.grid-padding-y>.cell {
    padding-top: .625rem;
    padding-bottom: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-y>.cell {
        padding-top: .9375rem;
        padding-bottom: .9375rem
    }
}

.grid-margin-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem
    }
}

.grid-margin-y>.cell {
    height: calc(100% - 1.25rem);
    margin-top: .625rem;
    margin-bottom: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.cell {
        height: calc(100% - 1.875rem);
        margin-top: .9375rem;
        margin-bottom: .9375rem
    }
}

.grid-margin-y>.auto {
    height: auto
}

.grid-margin-y>.shrink {
    height: auto
}

.grid-margin-y>.small-1 {
    height: calc(8.33333% - 1.25rem)
}

.grid-margin-y>.small-2 {
    height: calc(16.66667% - 1.25rem)
}

.grid-margin-y>.small-3 {
    height: calc(25% - 1.25rem)
}

.grid-margin-y>.small-4 {
    height: calc(33.33333% - 1.25rem)
}

.grid-margin-y>.small-5 {
    height: calc(41.66667% - 1.25rem)
}

.grid-margin-y>.small-6 {
    height: calc(50% - 1.25rem)
}

.grid-margin-y>.small-7 {
    height: calc(58.33333% - 1.25rem)
}

.grid-margin-y>.small-8 {
    height: calc(66.66667% - 1.25rem)
}

.grid-margin-y>.small-9 {
    height: calc(75% - 1.25rem)
}

.grid-margin-y>.small-10 {
    height: calc(83.33333% - 1.25rem)
}

.grid-margin-y>.small-11 {
    height: calc(91.66667% - 1.25rem)
}

.grid-margin-y>.small-12 {
    height: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.auto {
        height: auto
    }

    .grid-margin-y>.shrink {
        height: auto
    }

    .grid-margin-y>.small-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.875rem)
    }

    .grid-margin-y>.medium-auto {
        height: auto
    }

    .grid-margin-y>.medium-shrink {
        height: auto
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-y>.large-auto {
        height: auto
    }

    .grid-margin-y>.large-shrink {
        height: auto
    }

    .grid-margin-y>.large-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.large-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.large-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.large-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.large-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.large-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.large-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.large-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 1.875rem)
    }
}

.grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw
}

.cell .grid-frame {
    width: 100%
}

.cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%
}

.cell-block-container>.grid-x {
    max-height: 100%;
    flex-wrap: nowrap
}

@media print,
screen and (min-width: 47.5em) {
    .medium-grid-frame {
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100vw
    }

    .cell .medium-grid-frame {
        width: 100%
    }

    .medium-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .medium-cell-block-container {
        display: flex;
        flex-direction: column;
        max-height: 100%
    }

    .medium-cell-block-container>.grid-x {
        max-height: 100%;
        flex-wrap: nowrap
    }

    .medium-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }
}

@media print,
screen and (min-width: 64em) {
    .large-grid-frame {
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100vw
    }

    .cell .large-grid-frame {
        width: 100%
    }

    .large-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .large-cell-block-container {
        display: flex;
        flex-direction: column;
        max-height: 100%
    }

    .large-cell-block-container>.grid-x {
        max-height: 100%;
        flex-wrap: nowrap
    }

    .large-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }
}

.grid-y.grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh
}

@media print,
screen and (min-width: 47.5em) {
    .grid-y.medium-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        height: 100vh
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-y.large-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        height: 100vh
    }
}

.cell .grid-y.grid-frame {
    height: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .cell .grid-y.medium-grid-frame {
        height: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .cell .grid-y.large-grid-frame {
        height: 100%
    }
}

.grid-margin-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem
    }
}

.grid-margin-y>.cell {
    height: calc(100% - 1.25rem);
    margin-top: .625rem;
    margin-bottom: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.cell {
        height: calc(100% - 1.875rem);
        margin-top: .9375rem;
        margin-bottom: .9375rem
    }
}

.grid-margin-y>.auto {
    height: auto
}

.grid-margin-y>.shrink {
    height: auto
}

.grid-margin-y>.small-1 {
    height: calc(8.33333% - 1.25rem)
}

.grid-margin-y>.small-2 {
    height: calc(16.66667% - 1.25rem)
}

.grid-margin-y>.small-3 {
    height: calc(25% - 1.25rem)
}

.grid-margin-y>.small-4 {
    height: calc(33.33333% - 1.25rem)
}

.grid-margin-y>.small-5 {
    height: calc(41.66667% - 1.25rem)
}

.grid-margin-y>.small-6 {
    height: calc(50% - 1.25rem)
}

.grid-margin-y>.small-7 {
    height: calc(58.33333% - 1.25rem)
}

.grid-margin-y>.small-8 {
    height: calc(66.66667% - 1.25rem)
}

.grid-margin-y>.small-9 {
    height: calc(75% - 1.25rem)
}

.grid-margin-y>.small-10 {
    height: calc(83.33333% - 1.25rem)
}

.grid-margin-y>.small-11 {
    height: calc(91.66667% - 1.25rem)
}

.grid-margin-y>.small-12 {
    height: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.auto {
        height: auto
    }

    .grid-margin-y>.shrink {
        height: auto
    }

    .grid-margin-y>.small-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.875rem)
    }

    .grid-margin-y>.medium-auto {
        height: auto
    }

    .grid-margin-y>.medium-shrink {
        height: auto
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-y>.large-auto {
        height: auto
    }

    .grid-margin-y>.large-shrink {
        height: auto
    }

    .grid-margin-y>.large-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.large-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.large-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.large-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.large-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.large-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.large-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.large-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 1.875rem)
    }
}

.grid-frame.grid-margin-y {
    height: calc(100vh + 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 1.875rem)
    }
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y.medium-grid-frame {
        height: calc(100vh + 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-y.large-grid-frame {
        height: calc(100vh + 1.875rem)
    }
}

@font-face {
  /*  font-family: 'Vipps';
    font-style: normal;
    font-weight: 400;
    src: url("data:application/octet-stream;base64, " format("woff2"));
local("Vipps Text-Web"), local("Vipps Text-Web"), url(../fonts/VippsText-Regular-Web.woff2) format("woff2"), url(../fonts/VippsText-Regular-Web.woff) format("woff")*/
}

@font-face {
  /*  font-family: 'Vipps';
    font-style: normal;
    font-weight: 500;
    src: url("data:font/woff2;charset=utf-8,base64,  format("woff2"));

local("Vipps Text-Web Medium"), local("Vipps Text-Web Medium"), url(../fonts/VippsText-Medium-Web.woff2) format("woff2"), url(../fonts/VippsText-Medium-Web.woff) format("woff")*/
}

@font-face {
    font-family: 'Vipps';
    font-style: normal;
    font-weight: 700;
    src: local("Vipps Text-Web Bold"), local("Vipps Text-Web Bold"), url(../fonts/VippsText-Bold-Web.woff2) format("woff2"), url(../fonts/VippsText-Bold-Web.woff) format("woff")
}

@font-face {
    font-family: 'Vipps';
    font-style: normal;
    font-weight: 800;
    src: local("Vipps Text-Web Extrabold"), local("Vipps Text-Web Extrabold"), url(../fonts/VippsText-Extrabold-Web.woff2) format("woff2"), url(../fonts/VippsText-Extrabold-Web.woff) format("woff")
}

@font-face {
    font-family: 'Vipps';
    font-style: normal;
    font-weight: 900;
    src: local("Vipps Text-Web Black"), local("Vipps Text-Web Black"), url(../fonts/VippsText-Black-Web.woff2) format("woff2"), url(../fonts/VippsText-Black-Web.woff) format("woff")
}

@font-face {
    font-family: 'VippsHeader';
    font-style: normal;
    font-weight: 500;
    src: local("Vipps Display-Web"), local("Vipps Display-Web"), url(../fonts/VippsDisplay-Regular-Web.woff2) format("woff2"), url(../fonts/VippsDisplay-Regular-Web.woff) format("woff")
}

.vipps-small-font,
.vipps-label-font,
.vipps-description-list__term,
.vipps-label,
.vipps-table,
a.vipps-button__size-standard,
.vipps-button__size-standard,
.rc-tooltip .rc-tooltip-inner,
.vipps-textarea {
    font-family: "Vipps", Arial, sans-serif;
    font-size: 14px;
    line-height: 21px
}

.vipps-default-font,
body,
.vipps-popover__menu,
.vipps-fieldset legend,
.vipps-input,
.vipps-select,
.vipps-message {
    font-family: "Vipps", Arial, sans-serif;
    font-size: 16px;
    line-height: 24px
}

.vipps-large-font {
    font-family: "Vipps", Arial, sans-serif;
    font-size: 24px;
    line-height: 32px
}

.vipps-label-font,
.vipps-description-list__term,
.vipps-label {
    font-weight: 500
}

.font-weight-regular {
    font-weight: 400
}

.font-weight-medium {
    font-weight: 500
}

.font-weight-bold {
    font-weight: 700
}

.font-weight-extra-bold {
    font-weight: 800
}

.font-weight-black {
    font-weight: 900
}

.text-underline {
    text-decoration: underline
}

.normal-word-break {
    word-break: normal
}

.all-word-break {
    word-break: break-all
}

.vipps-h1,
.rich-text h1,
.title,
.vipps-h2,
.rich-text h2,
.preamble,
.vipps-h3,
.rich-text h3,
.countdown__component .vipps-countdown-section-title,
.countdown__component .vipps-countdown-section-value,
.contact-confirmation__title,
.vipps-h4,
.rich-text h4,
.vipps-h5,
.vipps-message__header,
.rich-text h5,
.vipps-h6,
.rich-text h6 {
    font-family: "VippsHeader", Arial, sans-serif;
    font-weight: 500;
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    margin-bottom: 0.5rem
}

.vipps-h1,
.rich-text h1,
.title {
    font-size: 40px;
    line-height: 48px
}

@media screen and (min-width: 720px) {

    .vipps-h1,
    .rich-text h1,
    .title {
        font-size: 48px;
        line-height: 56px
    }
}

.vipps-h2,
.rich-text h2,
.preamble {
    font-size: 30px;
    line-height: 40px
}

@media screen and (min-width: 720px) {

    .vipps-h2,
    .rich-text h2,
    .preamble {
        font-size: 32px
    }
}

.vipps-h3,
.rich-text h3,
.countdown__component .vipps-countdown-section-title,
.countdown__component .vipps-countdown-section-value,
.contact-confirmation__title {
    font-size: 24px;
    line-height: 32px
}

.vipps-h4,
.rich-text h4 {
    font-size: 20px;
    line-height: 24px
}

.vipps-h5,
.vipps-message__header,
.rich-text h5,
.vipps-h6,
.rich-text h6 {
    font-size: 18px;
    line-height: 24px
}

.vipps-link,
.block-container--blueberry a:not(.vipps-button),
.contact-block a,
.rich-text a,
.vipps-link:visited,
.block-container--blueberry a:visited:not(.vipps-button),
.contact-block a:visited,
.rich-text a:visited {
    font-weight: 500;
    color: #541b86;
    text-decoration: none
}

.vipps-link:active,
.block-container--blueberry a:active:not(.vipps-button),
.contact-block a:active,
.rich-text a:active,
.vipps-link:hover,
.block-container--blueberry a:hover:not(.vipps-button),
.contact-block a:hover,
.rich-text a:hover,
.vipps-link:focus,
.block-container--blueberry a:focus:not(.vipps-button),
.contact-block a:focus,
.rich-text a:focus,
.vipps-link:visited:active,
.block-container--blueberry a:visited:active:not(.vipps-button),
.contact-block a:visited:active,
.rich-text a:visited:active,
.vipps-link:visited:hover,
.block-container--blueberry a:visited:hover:not(.vipps-button),
.contact-block a:visited:hover,
.rich-text a:visited:hover,
.vipps-link:visited:focus,
.block-container--blueberry a:visited:focus:not(.vipps-button),
.contact-block a:visited:focus,
.rich-text a:visited:focus {
    color: #722ac9
}

.vipps-link:focus,
.block-container--blueberry a:focus:not(.vipps-button),
.contact-block a:focus,
.rich-text a:focus,
.vipps-link:visited:focus,
.block-container--blueberry a:visited:focus:not(.vipps-button),
.contact-block a:visited:focus,
.rich-text a:visited:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #8e82ff
}

.vipps-link.vipps-link--white,
.block-container--blueberry a:not(.vipps-button),
.contact-block a.vipps-link--white,
.rich-text a.vipps-link--white,
.vipps-link.vipps-link--white:active,
.block-container--blueberry a:active:not(.vipps-button),
.contact-block a.vipps-link--white:active,
.rich-text a.vipps-link--white:active,
.vipps-link:visited.vipps-link--white,
.block-container--blueberry a:visited:not(.vipps-button),
.contact-block a:visited.vipps-link--white,
.rich-text a:visited.vipps-link--white,
.vipps-link:visited.vipps-link--white:active,
.block-container--blueberry a:visited:active:not(.vipps-button),
.contact-block a:visited.vipps-link--white:active,
.rich-text a:visited.vipps-link--white:active {
    color: #fff
}

.vipps-link.vipps-link--white:hover,
.block-container--blueberry a:hover:not(.vipps-button),
.contact-block a.vipps-link--white:hover,
.rich-text a.vipps-link--white:hover,
.vipps-link:visited.vipps-link--white:hover,
.block-container--blueberry a:visited:hover:not(.vipps-button),
.contact-block a:visited.vipps-link--white:hover,
.rich-text a:visited.vipps-link--white:hover {
    color: #fff;
    border-bottom: 1px solid #fff
}

.vipps-link.vipps-link--white:focus,
.block-container--blueberry a:focus:not(.vipps-button),
.contact-block a.vipps-link--white:focus,
.rich-text a.vipps-link--white:focus,
.vipps-link:visited.vipps-link--white:focus,
.block-container--blueberry a:visited:focus:not(.vipps-button),
.contact-block a:visited.vipps-link--white:focus,
.rich-text a:visited.vipps-link--white:focus {
    box-shadow: 0 0 0 3px #8e82ff
}

.vipps-link.vipps-link--inline,
.block-container--blueberry a.vipps-link--inline:not(.vipps-button),
.contact-block a.vipps-link--inline,
.rich-text a.vipps-link--inline,
.vipps-link:visited.vipps-link--inline,
.block-container--blueberry a:visited.vipps-link--inline:not(.vipps-button),
.contact-block a:visited.vipps-link--inline,
.rich-text a:visited.vipps-link--inline {
    border-bottom: 1px solid #541b86
}

.vipps-link.vipps-link--inline:hover,
.block-container--blueberry a.vipps-link--inline:hover:not(.vipps-button),
.contact-block a.vipps-link--inline:hover,
.rich-text a.vipps-link--inline:hover,
.vipps-link:visited.vipps-link--inline:hover,
.block-container--blueberry a:visited.vipps-link--inline:hover:not(.vipps-button),
.contact-block a:visited.vipps-link--inline:hover,
.rich-text a:visited.vipps-link--inline:hover {
    border-bottom: 1px solid #ff5b24
}

.vipps-link.vipps-link--inline:focus,
.block-container--blueberry a.vipps-link--inline:focus:not(.vipps-button),
.contact-block a.vipps-link--inline:focus,
.rich-text a.vipps-link--inline:focus,
.vipps-link:visited.vipps-link--inline:focus,
.block-container--blueberry a:visited.vipps-link--inline:focus:not(.vipps-button),
.contact-block a:visited.vipps-link--inline:focus,
.rich-text a:visited.vipps-link--inline:focus {
    box-shadow: 0 0 0 3px #8e82ff
}

html {
    box-sizing: border-box
}

*,
*:before,
*:after {
    box-sizing: inherit
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #161225;
    font-weight: 400
}

p {
    line-height: 1.6;
    margin: 0 0 1rem 0
}

.vipps-hr {
    clear: both;
    height: 0;
    margin: 1.5rem auto;
    border: 0;
    border-bottom: 1px solid #efeef3
}

b,
strong {
    font-style: normal;
    font-weight: 700
}

.vipps-table {
    border-collapse: collapse;
    width: 100%
}

.vipps-table thead th {
    border-bottom: 0.125rem solid #938fa8;
    padding: 0 0.5rem 1rem;
    color: #706b8b;
    font-weight: 400;
    text-align: left
}

.vipps-table thead th.right {
    text-align: right
}

.vipps-table thead th.sort {
    cursor: pointer
}

.vipps-table thead th.sort:after {
    padding-left: 8px;
    vertical-align: -20%
}

.vipps-table thead th.sort.sort-asc:after {
    content: url("../icons/vipps-sort-down.svg")
}

.vipps-table thead th.sort.sort-desc:after {
    content: url("../icons/vipps-sort-up.svg")
}

.vipps-table thead th.sort.sort-none:after {
    content: url("../icons/vipps-sort-unselected.svg")
}

.vipps-table tbody tr {
    border-bottom: 0.0625rem solid #c9c6d7 !important
}

.vipps-table tbody tr:hover {
    background-color: #f6f6f9
}

.vipps-table tbody tr .right {
    float: right
}

.vipps-table tbody tr .search-result .highlight {
    background-color: #ffb992
}

.vipps-table tbody td {
    padding: 1.5rem 0.5rem
}

@media screen and (max-width: 1023px) {
    .vipps-table tbody tr:first-child {
        border-top: 0.125rem solid #f6f6f9
    }
}

.vipps-table--stacked .column-header-inline {
    display: none
}

@media screen and (max-width: 1023px) {
    .vipps-table--stacked thead {
        display: none
    }

    .vipps-table--stacked td,
    .vipps-table--stacked th,
    .vipps-table--stacked tr {
        display: block
    }

    .vipps-table--stacked td {
        border-top: 0
    }

    .vipps-table--stacked .column-header-inline {
        display: inline;
        text-align: left;
        color: #706b8b
    }

    .vipps-table--stacked .cell-content {
        float: right
    }

    .vipps-table--stacked tbody td {
        border-bottom: 0.125rem solid #f6f6f9;
        padding: 0.25rem
    }

    .vipps-table--stacked tr:hover td {
        border-bottom-color: #efeef3
    }
}

.margin-0 {
    margin: 0
}

@media screen and (min-width: 720px) {
    .margin-0 {
        margin: 0
    }
}

.padding-0 {
    padding: 0
}

.margin-top-0 {
    margin-top: 0
}

@media screen and (min-width: 720px) {
    .margin-top-0 {
        margin-top: 0
    }
}

.padding-top-0 {
    padding-top: 0
}

.margin-bottom-0 {
    margin-bottom: 0
}

@media screen and (min-width: 720px) {
    .margin-bottom-0 {
        margin-bottom: 0
    }
}

.padding-bottom-0 {
    padding-bottom: 0
}

.margin-left-0 {
    margin-left: 0
}

@media screen and (min-width: 720px) {
    .margin-left-0 {
        margin-left: 0
    }
}

.padding-left-0 {
    padding-left: 0
}

.margin-right-0 {
    margin-right: 0
}

@media screen and (min-width: 720px) {
    .margin-right-0 {
        margin-right: 0
    }
}

.padding-right-0 {
    padding-right: 0
}

.margin-xs {
    margin: .25rem
}

@media screen and (min-width: 720px) {
    .margin-xs {
        margin: .5rem
    }
}

.padding-xs {
    padding: .5rem
}

.margin-top-xs {
    margin-top: .25rem
}

@media screen and (min-width: 720px) {
    .margin-top-xs {
        margin-top: .5rem
    }
}

.padding-top-xs {
    padding-top: .5rem
}

.margin-bottom-xs {
    margin-bottom: .25rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-xs {
        margin-bottom: .5rem
    }
}

.padding-bottom-xs {
    padding-bottom: .5rem
}

.margin-left-xs {
    margin-left: .25rem
}

@media screen and (min-width: 720px) {
    .margin-left-xs {
        margin-left: .5rem
    }
}

.padding-left-xs {
    padding-left: .5rem
}

.margin-right-xs {
    margin-right: .25rem
}

@media screen and (min-width: 720px) {
    .margin-right-xs {
        margin-right: .5rem
    }
}

.padding-right-xs {
    padding-right: .5rem
}

.margin-s {
    margin: .5rem
}

@media screen and (min-width: 720px) {
    .margin-s {
        margin: 1rem
    }
}

.padding-s {
    padding: 1rem
}

.margin-top-s {
    margin-top: .5rem
}

@media screen and (min-width: 720px) {
    .margin-top-s {
        margin-top: 1rem
    }
}

.padding-top-s {
    padding-top: 1rem
}

.margin-bottom-s {
    margin-bottom: .5rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-s {
        margin-bottom: 1rem
    }
}

.padding-bottom-s {
    padding-bottom: 1rem
}

.margin-left-s {
    margin-left: .5rem
}

@media screen and (min-width: 720px) {
    .margin-left-s {
        margin-left: 1rem
    }
}

.padding-left-s {
    padding-left: 1rem
}

.margin-right-s {
    margin-right: .5rem
}

@media screen and (min-width: 720px) {
    .margin-right-s {
        margin-right: 1rem
    }
}

.padding-right-s {
    padding-right: 1rem
}

.margin-m {
    margin: 1rem
}

@media screen and (min-width: 720px) {
    .margin-m {
        margin: 1.5rem
    }
}

.padding-m {
    padding: 1.5rem
}

.margin-top-m {
    margin-top: 1rem
}

@media screen and (min-width: 720px) {
    .margin-top-m {
        margin-top: 1.5rem
    }
}

.padding-top-m {
    padding-top: 1.5rem
}

.margin-bottom-m {
    margin-bottom: 1rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-m {
        margin-bottom: 1.5rem
    }
}

.padding-bottom-m {
    padding-bottom: 1.5rem
}

.margin-left-m {
    margin-left: 1rem
}

@media screen and (min-width: 720px) {
    .margin-left-m {
        margin-left: 1.5rem
    }
}

.padding-left-m {
    padding-left: 1.5rem
}

.margin-right-m {
    margin-right: 1rem
}

@media screen and (min-width: 720px) {
    .margin-right-m {
        margin-right: 1.5rem
    }
}

.padding-right-m {
    padding-right: 1.5rem
}

.margin-l {
    margin: 1.5rem
}

@media screen and (min-width: 720px) {
    .margin-l {
        margin: 2rem
    }
}

.padding-l {
    padding: 2rem
}

.margin-top-l {
    margin-top: 1.5rem
}

@media screen and (min-width: 720px) {
    .margin-top-l {
        margin-top: 2rem
    }
}

.padding-top-l {
    padding-top: 2rem
}

.margin-bottom-l {
    margin-bottom: 1.5rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-l {
        margin-bottom: 2rem
    }
}

.padding-bottom-l {
    padding-bottom: 2rem
}

.margin-left-l {
    margin-left: 1.5rem
}

@media screen and (min-width: 720px) {
    .margin-left-l {
        margin-left: 2rem
    }
}

.padding-left-l {
    padding-left: 2rem
}

.margin-right-l {
    margin-right: 1.5rem
}

@media screen and (min-width: 720px) {
    .margin-right-l {
        margin-right: 2rem
    }
}

.padding-right-l {
    padding-right: 2rem
}

.margin-xl {
    margin: 2rem
}

@media screen and (min-width: 720px) {
    .margin-xl {
        margin: 2.5rem
    }
}

.padding-xl {
    padding: 2.5rem
}

.margin-top-xl {
    margin-top: 2rem
}

@media screen and (min-width: 720px) {
    .margin-top-xl {
        margin-top: 2.5rem
    }
}

.padding-top-xl {
    padding-top: 2.5rem
}

.margin-bottom-xl {
    margin-bottom: 2rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-xl {
        margin-bottom: 2.5rem
    }
}

.padding-bottom-xl {
    padding-bottom: 2.5rem
}

.margin-left-xl {
    margin-left: 2rem
}

@media screen and (min-width: 720px) {
    .margin-left-xl {
        margin-left: 2.5rem
    }
}

.padding-left-xl {
    padding-left: 2.5rem
}

.margin-right-xl {
    margin-right: 2rem
}

@media screen and (min-width: 720px) {
    .margin-right-xl {
        margin-right: 2.5rem
    }
}

.padding-right-xl {
    padding-right: 2.5rem
}

.margin-xxl {
    margin: 2.5rem
}

@media screen and (min-width: 720px) {
    .margin-xxl {
        margin: 4rem
    }
}

.padding-xxl {
    padding: 4rem
}

.margin-top-xxl {
    margin-top: 2.5rem
}

@media screen and (min-width: 720px) {
    .margin-top-xxl {
        margin-top: 4rem
    }
}

.padding-top-xxl {
    padding-top: 4rem
}

.margin-bottom-xxl {
    margin-bottom: 2.5rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-xxl {
        margin-bottom: 4rem
    }
}

.padding-bottom-xxl {
    padding-bottom: 4rem
}

.margin-left-xxl {
    margin-left: 2.5rem
}

@media screen and (min-width: 720px) {
    .margin-left-xxl {
        margin-left: 4rem
    }
}

.padding-left-xxl {
    padding-left: 4rem
}

.margin-right-xxl {
    margin-right: 2.5rem
}

@media screen and (min-width: 720px) {
    .margin-right-xxl {
        margin-right: 4rem
    }
}

.padding-right-xxl {
    padding-right: 4rem
}

.margin-xxxl {
    margin: 4rem
}

@media screen and (min-width: 720px) {
    .margin-xxxl {
        margin: 5rem
    }
}

.padding-xxxl {
    padding: 5rem
}

.margin-top-xxxl {
    margin-top: 4rem
}

@media screen and (min-width: 720px) {
    .margin-top-xxxl {
        margin-top: 5rem
    }
}

.padding-top-xxxl {
    padding-top: 5rem
}

.margin-bottom-xxxl {
    margin-bottom: 4rem
}

@media screen and (min-width: 720px) {
    .margin-bottom-xxxl {
        margin-bottom: 5rem
    }
}

.padding-bottom-xxxl {
    padding-bottom: 5rem
}

.margin-left-xxxl {
    margin-left: 4rem
}

@media screen and (min-width: 720px) {
    .margin-left-xxxl {
        margin-left: 5rem
    }
}

.padding-left-xxxl {
    padding-left: 5rem
}

.margin-right-xxxl {
    margin-right: 4rem
}

@media screen and (min-width: 720px) {
    .margin-right-xxxl {
        margin-right: 5rem
    }
}

.padding-right-xxxl {
    padding-right: 5rem
}

.border-top-light-purple {
    border-top: 1px solid #c9c6d7
}

.border-bottom-light-purple {
    border-bottom: solid 0.0625rem #c9c6d7
}

.storm-grey-border {
    border: 1px solid #efeef3
}

.border-bottom-storm-grey {
    border-bottom: solid 0.0625rem #efeef3
}

.gray-bg {
    background-color: #f6f6f9
}

.white-bg {
    background-color: #fff
}

.light-orange-bg {
    background-color: #fff4ec
}

.is-centering-child-vertically,
.card__image--logo,
.card__image--product,
.card__image--link {
    display: flex;
    align-items: center;
    justify-content: center
}

.is-hidden {
    display: none
}

.is-warning {
    color: #9b3716
}

.hundred-percent-height {
    height: 100%
}

.outline-none {
    outline: none
}

@media screen and (min-width: 720px) {
    .hide-for-medium {
        display: none
    }
}

@media screen and (max-width: 719px) {
    .show-for-medium {
        display: none
    }
}

@media screen and (min-width: 1024px) {
    .hide-for-large {
        display: none
    }
}

@media screen and (max-width: 1023px) {
    .show-for-large {
        display: none
    }
}

@media screen and (min-width: 1280px) {
    .hide-for-xlarge {
        display: none
    }
}

@media screen and (max-width: 1279px) {
    .show-for-xlarge {
        display: none
    }
}

.show-for-sr,
.vipps-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.is-hidden {
    display: none !important
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.align-top {
    align-items: flex-start
}

.align-self-top {
    align-self: flex-start
}

.align-bottom {
    align-items: flex-end
}

.align-self-bottom {
    align-self: flex-end
}

.align-middle {
    align-items: center
}

.align-self-middle {
    align-self: center
}

.align-stretch {
    align-items: stretch
}

.align-self-stretch {
    align-self: stretch
}

.align-center {
    justify-content: center
}

.align-center-middle {
    align-items: center;
    align-content: center;
    justify-content: center
}

.align-justify {
    justify-content: space-between
}

.fill-color-orange {
    fill: #ff5b24
}

.fill-color-blueberry {
    fill: #541b86
}

.fill-color-black {
    fill: #161225
}

.fill-color-light-orange {
    fill: #fff4ec
}

.fill-color-turquoise {
    fill: #59cbe8
}

.fill-color-shiny-blueberry {
    fill: #722ac9
}

.fill-color-rust {
    fill: #9b3716
}

.fill-color-tangerine {
    fill: #ff985f
}

.fill-color-peach {
    fill: #ffb992
}

.fill-color-light-peach {
    fill: #ffd3bb
}

.fill-color-dark-purple {
    fill: #706b8b
}

.fill-color-carbon-purple {
    fill: #938fa8
}

.fill-color-light-purple {
    fill: _ #c9c6d7
}

.fill-color-storm-grey {
    fill: #efeef3
}

.fill-color-cloud-grey {
    fill: #f6f6f9
}

.fill-color-fog-grey {
    fill: #fcfbfe
}

.fill-color-white {
    fill: #fff
}

.fill-color-green {
    fill: #006628
}

.fill-color-light-green {
    fill: #d7ecdf
}

.fill-color-red {
    fill: #c60000
}

.fill-color-light-red {
    fill: #fde5e4
}

.bg-orange {
    background-color: #ff5b24
}

.bg-blueberry {
    background-color: #541b86
}

.bg-black {
    background-color: #161225
}

.bg-light-orange {
    background-color: #fff4ec
}

.bg-turquoise {
    background-color: #59cbe8
}

.bg-shiny-blueberry {
    background-color: #722ac9
}

.bg-rust {
    background-color: #9b3716
}

.bg-tangerine {
    background-color: #ff985f
}

.bg-peach {
    background-color: #ffb992
}

.bg-light-peach {
    background-color: #ffd3bb
}

.bg-dark-purple {
    background-color: #706b8b
}

.bg-carbon-purple {
    background-color: #938fa8
}

.bg-light-purple {
    background-color: _ #c9c6d7
}

.bg-storm-grey {
    background-color: #efeef3
}

.bg-cloud-grey {
    background-color: #f6f6f9
}

.bg-fog-grey {
    background-color: #fcfbfe
}

.bg-white {
    background-color: #fff
}

.bg-green {
    background-color: #006628
}

.bg-light-green {
    background-color: #d7ecdf
}

.bg-red {
    background-color: #c60000
}

.bg-light-red {
    background-color: #fde5e4
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

h1 {
    font-size: 2em;
    margin: 0.67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -0.25em
}

sup {
    top: -0.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: 0.35em 0.75em 0.625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

.foundation-mq {
    font-family: "small=0em&medium=47.5em&large=64em"
}

html {
    box-sizing: border-box;
    font-size: 100%
}

*,
*::before,
*::after {
    box-sizing: inherit
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #161225;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0
}

select {
    box-sizing: border-box;
    width: 100%;
    border-radius: 0
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
    max-width: none !important
}

button {
    padding: 0;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1;
    cursor: auto
}

[data-whatinput='mouse'] button {
    outline: 0
}

pre {
    overflow: auto
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit
}

.is-visible {
    display: block !important
}

.is-hidden {
    display: none !important
}

.grid-container {
    padding-right: .625rem;
    padding-left: .625rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto
}

@media print,
screen and (min-width: 47.5em) {
    .grid-container {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.grid-container.fluid {
    padding-right: .625rem;
    padding-left: .625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

@media print,
screen and (min-width: 47.5em) {
    .grid-container.fluid {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.grid-container.full {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto
}

.grid-x {
    display: flex;
    flex-flow: row wrap
}

.cell {
    flex: 0 0 auto;
    min-height: 0px;
    min-width: 0px;
    width: 100%
}

.cell.auto {
    flex: 1 1 0px
}

.cell.shrink {
    flex: 0 0 auto
}

.grid-x>.auto {
    width: auto
}

.grid-x>.shrink {
    width: auto
}

.grid-x>.small-shrink,
.grid-x>.small-full,
.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12 {
    flex-basis: auto
}

@media print,
screen and (min-width: 47.5em) {

    .grid-x>.medium-shrink,
    .grid-x>.medium-full,
    .grid-x>.medium-1,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width: 64em) {

    .grid-x>.large-shrink,
    .grid-x>.large-full,
    .grid-x>.large-1,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12 {
        flex-basis: auto
    }
}

.grid-x>.small-1,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12 {
    flex: 0 0 auto
}

.grid-x>.small-1 {
    width: 8.33333%
}

.grid-x>.small-2 {
    width: 16.66667%
}

.grid-x>.small-3 {
    width: 25%
}

.grid-x>.small-4 {
    width: 33.33333%
}

.grid-x>.small-5 {
    width: 41.66667%
}

.grid-x>.small-6 {
    width: 50%
}

.grid-x>.small-7 {
    width: 58.33333%
}

.grid-x>.small-8 {
    width: 66.66667%
}

.grid-x>.small-9 {
    width: 75%
}

.grid-x>.small-10 {
    width: 83.33333%
}

.grid-x>.small-11 {
    width: 91.66667%
}

.grid-x>.small-12 {
    width: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .grid-x>.medium-auto {
        flex: 1 1 0px;
        width: auto
    }

    .grid-x>.medium-shrink,
    .grid-x>.medium-1,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12 {
        flex: 0 0 auto
    }

    .grid-x>.medium-shrink {
        width: auto
    }

    .grid-x>.medium-1 {
        width: 8.33333%
    }

    .grid-x>.medium-2 {
        width: 16.66667%
    }

    .grid-x>.medium-3 {
        width: 25%
    }

    .grid-x>.medium-4 {
        width: 33.33333%
    }

    .grid-x>.medium-5 {
        width: 41.66667%
    }

    .grid-x>.medium-6 {
        width: 50%
    }

    .grid-x>.medium-7 {
        width: 58.33333%
    }

    .grid-x>.medium-8 {
        width: 66.66667%
    }

    .grid-x>.medium-9 {
        width: 75%
    }

    .grid-x>.medium-10 {
        width: 83.33333%
    }

    .grid-x>.medium-11 {
        width: 91.66667%
    }

    .grid-x>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-x>.large-auto {
        flex: 1 1 0px;
        width: auto
    }

    .grid-x>.large-shrink,
    .grid-x>.large-1,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12 {
        flex: 0 0 auto
    }

    .grid-x>.large-shrink {
        width: auto
    }

    .grid-x>.large-1 {
        width: 8.33333%
    }

    .grid-x>.large-2 {
        width: 16.66667%
    }

    .grid-x>.large-3 {
        width: 25%
    }

    .grid-x>.large-4 {
        width: 33.33333%
    }

    .grid-x>.large-5 {
        width: 41.66667%
    }

    .grid-x>.large-6 {
        width: 50%
    }

    .grid-x>.large-7 {
        width: 58.33333%
    }

    .grid-x>.large-8 {
        width: 66.66667%
    }

    .grid-x>.large-9 {
        width: 75%
    }

    .grid-x>.large-10 {
        width: 83.33333%
    }

    .grid-x>.large-11 {
        width: 91.66667%
    }

    .grid-x>.large-12 {
        width: 100%
    }
}

.grid-margin-x:not(.grid-x)>.cell {
    width: auto
}

.grid-margin-y:not(.grid-y)>.cell {
    height: auto
}

.grid-margin-x {
    margin-left: -.625rem;
    margin-right: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x {
        margin-left: -.9375rem;
        margin-right: -.9375rem
    }
}

.grid-margin-x>.cell {
    width: calc(100% - 1.25rem);
    margin-left: .625rem;
    margin-right: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x>.cell {
        width: calc(100% - 1.875rem);
        margin-left: .9375rem;
        margin-right: .9375rem
    }
}

.grid-margin-x>.auto {
    width: auto
}

.grid-margin-x>.shrink {
    width: auto
}

.grid-margin-x>.small-1 {
    width: calc(8.33333% - 1.25rem)
}

.grid-margin-x>.small-2 {
    width: calc(16.66667% - 1.25rem)
}

.grid-margin-x>.small-3 {
    width: calc(25% - 1.25rem)
}

.grid-margin-x>.small-4 {
    width: calc(33.33333% - 1.25rem)
}

.grid-margin-x>.small-5 {
    width: calc(41.66667% - 1.25rem)
}

.grid-margin-x>.small-6 {
    width: calc(50% - 1.25rem)
}

.grid-margin-x>.small-7 {
    width: calc(58.33333% - 1.25rem)
}

.grid-margin-x>.small-8 {
    width: calc(66.66667% - 1.25rem)
}

.grid-margin-x>.small-9 {
    width: calc(75% - 1.25rem)
}

.grid-margin-x>.small-10 {
    width: calc(83.33333% - 1.25rem)
}

.grid-margin-x>.small-11 {
    width: calc(91.66667% - 1.25rem)
}

.grid-margin-x>.small-12 {
    width: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x>.auto {
        width: auto
    }

    .grid-margin-x>.shrink {
        width: auto
    }

    .grid-margin-x>.small-1 {
        width: calc(8.33333% - 1.875rem)
    }

    .grid-margin-x>.small-2 {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x>.small-3 {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x>.small-4 {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x>.small-5 {
        width: calc(41.66667% - 1.875rem)
    }

    .grid-margin-x>.small-6 {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x>.small-7 {
        width: calc(58.33333% - 1.875rem)
    }

    .grid-margin-x>.small-8 {
        width: calc(66.66667% - 1.875rem)
    }

    .grid-margin-x>.small-9 {
        width: calc(75% - 1.875rem)
    }

    .grid-margin-x>.small-10 {
        width: calc(83.33333% - 1.875rem)
    }

    .grid-margin-x>.small-11 {
        width: calc(91.66667% - 1.875rem)
    }

    .grid-margin-x>.small-12 {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x>.medium-auto {
        width: auto
    }

    .grid-margin-x>.medium-shrink {
        width: auto
    }

    .grid-margin-x>.medium-1 {
        width: calc(8.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-2 {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-3 {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x>.medium-4 {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-5 {
        width: calc(41.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-6 {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x>.medium-7 {
        width: calc(58.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-8 {
        width: calc(66.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-9 {
        width: calc(75% - 1.875rem)
    }

    .grid-margin-x>.medium-10 {
        width: calc(83.33333% - 1.875rem)
    }

    .grid-margin-x>.medium-11 {
        width: calc(91.66667% - 1.875rem)
    }

    .grid-margin-x>.medium-12 {
        width: calc(100% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-x>.large-auto {
        width: auto
    }

    .grid-margin-x>.large-shrink {
        width: auto
    }

    .grid-margin-x>.large-1 {
        width: calc(8.33333% - 1.875rem)
    }

    .grid-margin-x>.large-2 {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x>.large-3 {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x>.large-4 {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x>.large-5 {
        width: calc(41.66667% - 1.875rem)
    }

    .grid-margin-x>.large-6 {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x>.large-7 {
        width: calc(58.33333% - 1.875rem)
    }

    .grid-margin-x>.large-8 {
        width: calc(66.66667% - 1.875rem)
    }

    .grid-margin-x>.large-9 {
        width: calc(75% - 1.875rem)
    }

    .grid-margin-x>.large-10 {
        width: calc(83.33333% - 1.875rem)
    }

    .grid-margin-x>.large-11 {
        width: calc(91.66667% - 1.875rem)
    }

    .grid-margin-x>.large-12 {
        width: calc(100% - 1.875rem)
    }
}

.grid-padding-x .grid-padding-x {
    margin-right: -.625rem;
    margin-left: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-x .grid-padding-x {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

.grid-container:not(.full)>.grid-padding-x {
    margin-right: -.625rem;
    margin-left: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-container:not(.full)>.grid-padding-x {
        margin-right: -.9375rem;
        margin-left: -.9375rem
    }
}

.grid-padding-x>.cell {
    padding-right: .625rem;
    padding-left: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-x>.cell {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.small-up-1>.cell {
    width: 100%
}

.small-up-2>.cell {
    width: 50%
}

.small-up-3>.cell {
    width: 33.33333%
}

.small-up-4>.cell {
    width: 25%
}

.small-up-5>.cell {
    width: 20%
}

.small-up-6>.cell {
    width: 16.66667%
}

.small-up-7>.cell {
    width: 14.28571%
}

.small-up-8>.cell {
    width: 12.5%
}

@media print,
screen and (min-width: 47.5em) {
    .medium-up-1>.cell {
        width: 100%
    }

    .medium-up-2>.cell {
        width: 50%
    }

    .medium-up-3>.cell {
        width: 33.33333%
    }

    .medium-up-4>.cell {
        width: 25%
    }

    .medium-up-5>.cell {
        width: 20%
    }

    .medium-up-6>.cell {
        width: 16.66667%
    }

    .medium-up-7>.cell {
        width: 14.28571%
    }

    .medium-up-8>.cell {
        width: 12.5%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-up-1>.cell {
        width: 100%
    }

    .large-up-2>.cell {
        width: 50%
    }

    .large-up-3>.cell {
        width: 33.33333%
    }

    .large-up-4>.cell {
        width: 25%
    }

    .large-up-5>.cell {
        width: 20%
    }

    .large-up-6>.cell {
        width: 16.66667%
    }

    .large-up-7>.cell {
        width: 14.28571%
    }

    .large-up-8>.cell {
        width: 12.5%
    }
}

.grid-margin-x.small-up-1>.cell {
    width: calc(100% - 1.25rem)
}

.grid-margin-x.small-up-2>.cell {
    width: calc(50% - 1.25rem)
}

.grid-margin-x.small-up-3>.cell {
    width: calc(33.33333% - 1.25rem)
}

.grid-margin-x.small-up-4>.cell {
    width: calc(25% - 1.25rem)
}

.grid-margin-x.small-up-5>.cell {
    width: calc(20% - 1.25rem)
}

.grid-margin-x.small-up-6>.cell {
    width: calc(16.66667% - 1.25rem)
}

.grid-margin-x.small-up-7>.cell {
    width: calc(14.28571% - 1.25rem)
}

.grid-margin-x.small-up-8>.cell {
    width: calc(12.5% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-x.small-up-1>.cell {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x.small-up-2>.cell {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x.small-up-3>.cell {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x.small-up-4>.cell {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x.small-up-5>.cell {
        width: calc(20% - 1.875rem)
    }

    .grid-margin-x.small-up-6>.cell {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x.small-up-7>.cell {
        width: calc(14.28571% - 1.875rem)
    }

    .grid-margin-x.small-up-8>.cell {
        width: calc(12.5% - 1.875rem)
    }

    .grid-margin-x.medium-up-1>.cell {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x.medium-up-2>.cell {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x.medium-up-3>.cell {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x.medium-up-4>.cell {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x.medium-up-5>.cell {
        width: calc(20% - 1.875rem)
    }

    .grid-margin-x.medium-up-6>.cell {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x.medium-up-7>.cell {
        width: calc(14.28571% - 1.875rem)
    }

    .grid-margin-x.medium-up-8>.cell {
        width: calc(12.5% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-x.large-up-1>.cell {
        width: calc(100% - 1.875rem)
    }

    .grid-margin-x.large-up-2>.cell {
        width: calc(50% - 1.875rem)
    }

    .grid-margin-x.large-up-3>.cell {
        width: calc(33.33333% - 1.875rem)
    }

    .grid-margin-x.large-up-4>.cell {
        width: calc(25% - 1.875rem)
    }

    .grid-margin-x.large-up-5>.cell {
        width: calc(20% - 1.875rem)
    }

    .grid-margin-x.large-up-6>.cell {
        width: calc(16.66667% - 1.875rem)
    }

    .grid-margin-x.large-up-7>.cell {
        width: calc(14.28571% - 1.875rem)
    }

    .grid-margin-x.large-up-8>.cell {
        width: calc(12.5% - 1.875rem)
    }
}

.small-margin-collapse {
    margin-right: 0;
    margin-left: 0
}

.small-margin-collapse>.cell {
    margin-right: 0;
    margin-left: 0
}

.small-margin-collapse>.small-1 {
    width: 8.33333%
}

.small-margin-collapse>.small-2 {
    width: 16.66667%
}

.small-margin-collapse>.small-3 {
    width: 25%
}

.small-margin-collapse>.small-4 {
    width: 33.33333%
}

.small-margin-collapse>.small-5 {
    width: 41.66667%
}

.small-margin-collapse>.small-6 {
    width: 50%
}

.small-margin-collapse>.small-7 {
    width: 58.33333%
}

.small-margin-collapse>.small-8 {
    width: 66.66667%
}

.small-margin-collapse>.small-9 {
    width: 75%
}

.small-margin-collapse>.small-10 {
    width: 83.33333%
}

.small-margin-collapse>.small-11 {
    width: 91.66667%
}

.small-margin-collapse>.small-12 {
    width: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .small-margin-collapse>.medium-1 {
        width: 8.33333%
    }

    .small-margin-collapse>.medium-2 {
        width: 16.66667%
    }

    .small-margin-collapse>.medium-3 {
        width: 25%
    }

    .small-margin-collapse>.medium-4 {
        width: 33.33333%
    }

    .small-margin-collapse>.medium-5 {
        width: 41.66667%
    }

    .small-margin-collapse>.medium-6 {
        width: 50%
    }

    .small-margin-collapse>.medium-7 {
        width: 58.33333%
    }

    .small-margin-collapse>.medium-8 {
        width: 66.66667%
    }

    .small-margin-collapse>.medium-9 {
        width: 75%
    }

    .small-margin-collapse>.medium-10 {
        width: 83.33333%
    }

    .small-margin-collapse>.medium-11 {
        width: 91.66667%
    }

    .small-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .small-margin-collapse>.large-1 {
        width: 8.33333%
    }

    .small-margin-collapse>.large-2 {
        width: 16.66667%
    }

    .small-margin-collapse>.large-3 {
        width: 25%
    }

    .small-margin-collapse>.large-4 {
        width: 33.33333%
    }

    .small-margin-collapse>.large-5 {
        width: 41.66667%
    }

    .small-margin-collapse>.large-6 {
        width: 50%
    }

    .small-margin-collapse>.large-7 {
        width: 58.33333%
    }

    .small-margin-collapse>.large-8 {
        width: 66.66667%
    }

    .small-margin-collapse>.large-9 {
        width: 75%
    }

    .small-margin-collapse>.large-10 {
        width: 83.33333%
    }

    .small-margin-collapse>.large-11 {
        width: 91.66667%
    }

    .small-margin-collapse>.large-12 {
        width: 100%
    }
}

.small-padding-collapse {
    margin-right: 0;
    margin-left: 0
}

.small-padding-collapse>.cell {
    padding-right: 0;
    padding-left: 0
}

@media print,
screen and (min-width: 47.5em) {
    .medium-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .medium-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width: 47.5em) {
    .medium-margin-collapse>.small-1 {
        width: 8.33333%
    }

    .medium-margin-collapse>.small-2 {
        width: 16.66667%
    }

    .medium-margin-collapse>.small-3 {
        width: 25%
    }

    .medium-margin-collapse>.small-4 {
        width: 33.33333%
    }

    .medium-margin-collapse>.small-5 {
        width: 41.66667%
    }

    .medium-margin-collapse>.small-6 {
        width: 50%
    }

    .medium-margin-collapse>.small-7 {
        width: 58.33333%
    }

    .medium-margin-collapse>.small-8 {
        width: 66.66667%
    }

    .medium-margin-collapse>.small-9 {
        width: 75%
    }

    .medium-margin-collapse>.small-10 {
        width: 83.33333%
    }

    .medium-margin-collapse>.small-11 {
        width: 91.66667%
    }

    .medium-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 47.5em) {
    .medium-margin-collapse>.medium-1 {
        width: 8.33333%
    }

    .medium-margin-collapse>.medium-2 {
        width: 16.66667%
    }

    .medium-margin-collapse>.medium-3 {
        width: 25%
    }

    .medium-margin-collapse>.medium-4 {
        width: 33.33333%
    }

    .medium-margin-collapse>.medium-5 {
        width: 41.66667%
    }

    .medium-margin-collapse>.medium-6 {
        width: 50%
    }

    .medium-margin-collapse>.medium-7 {
        width: 58.33333%
    }

    .medium-margin-collapse>.medium-8 {
        width: 66.66667%
    }

    .medium-margin-collapse>.medium-9 {
        width: 75%
    }

    .medium-margin-collapse>.medium-10 {
        width: 83.33333%
    }

    .medium-margin-collapse>.medium-11 {
        width: 91.66667%
    }

    .medium-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .medium-margin-collapse>.large-1 {
        width: 8.33333%
    }

    .medium-margin-collapse>.large-2 {
        width: 16.66667%
    }

    .medium-margin-collapse>.large-3 {
        width: 25%
    }

    .medium-margin-collapse>.large-4 {
        width: 33.33333%
    }

    .medium-margin-collapse>.large-5 {
        width: 41.66667%
    }

    .medium-margin-collapse>.large-6 {
        width: 50%
    }

    .medium-margin-collapse>.large-7 {
        width: 58.33333%
    }

    .medium-margin-collapse>.large-8 {
        width: 66.66667%
    }

    .medium-margin-collapse>.large-9 {
        width: 75%
    }

    .medium-margin-collapse>.large-10 {
        width: 83.33333%
    }

    .medium-margin-collapse>.large-11 {
        width: 91.66667%
    }

    .medium-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 47.5em) {
    .medium-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .medium-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .large-margin-collapse>.cell {
        margin-right: 0;
        margin-left: 0
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse>.small-1 {
        width: 8.33333%
    }

    .large-margin-collapse>.small-2 {
        width: 16.66667%
    }

    .large-margin-collapse>.small-3 {
        width: 25%
    }

    .large-margin-collapse>.small-4 {
        width: 33.33333%
    }

    .large-margin-collapse>.small-5 {
        width: 41.66667%
    }

    .large-margin-collapse>.small-6 {
        width: 50%
    }

    .large-margin-collapse>.small-7 {
        width: 58.33333%
    }

    .large-margin-collapse>.small-8 {
        width: 66.66667%
    }

    .large-margin-collapse>.small-9 {
        width: 75%
    }

    .large-margin-collapse>.small-10 {
        width: 83.33333%
    }

    .large-margin-collapse>.small-11 {
        width: 91.66667%
    }

    .large-margin-collapse>.small-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse>.medium-1 {
        width: 8.33333%
    }

    .large-margin-collapse>.medium-2 {
        width: 16.66667%
    }

    .large-margin-collapse>.medium-3 {
        width: 25%
    }

    .large-margin-collapse>.medium-4 {
        width: 33.33333%
    }

    .large-margin-collapse>.medium-5 {
        width: 41.66667%
    }

    .large-margin-collapse>.medium-6 {
        width: 50%
    }

    .large-margin-collapse>.medium-7 {
        width: 58.33333%
    }

    .large-margin-collapse>.medium-8 {
        width: 66.66667%
    }

    .large-margin-collapse>.medium-9 {
        width: 75%
    }

    .large-margin-collapse>.medium-10 {
        width: 83.33333%
    }

    .large-margin-collapse>.medium-11 {
        width: 91.66667%
    }

    .large-margin-collapse>.medium-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-margin-collapse>.large-1 {
        width: 8.33333%
    }

    .large-margin-collapse>.large-2 {
        width: 16.66667%
    }

    .large-margin-collapse>.large-3 {
        width: 25%
    }

    .large-margin-collapse>.large-4 {
        width: 33.33333%
    }

    .large-margin-collapse>.large-5 {
        width: 41.66667%
    }

    .large-margin-collapse>.large-6 {
        width: 50%
    }

    .large-margin-collapse>.large-7 {
        width: 58.33333%
    }

    .large-margin-collapse>.large-8 {
        width: 66.66667%
    }

    .large-margin-collapse>.large-9 {
        width: 75%
    }

    .large-margin-collapse>.large-10 {
        width: 83.33333%
    }

    .large-margin-collapse>.large-11 {
        width: 91.66667%
    }

    .large-margin-collapse>.large-12 {
        width: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .large-padding-collapse {
        margin-right: 0;
        margin-left: 0
    }

    .large-padding-collapse>.cell {
        padding-right: 0;
        padding-left: 0
    }
}

.small-offset-0 {
    margin-left: 0%
}

.grid-margin-x>.small-offset-0 {
    margin-left: calc(0% + .625rem)
}

.small-offset-1 {
    margin-left: 8.33333%
}

.grid-margin-x>.small-offset-1 {
    margin-left: calc(8.33333% + .625rem)
}

.small-offset-2 {
    margin-left: 16.66667%
}

.grid-margin-x>.small-offset-2 {
    margin-left: calc(16.66667% + .625rem)
}

.small-offset-3 {
    margin-left: 25%
}

.grid-margin-x>.small-offset-3 {
    margin-left: calc(25% + .625rem)
}

.small-offset-4 {
    margin-left: 33.33333%
}

.grid-margin-x>.small-offset-4 {
    margin-left: calc(33.33333% + .625rem)
}

.small-offset-5 {
    margin-left: 41.66667%
}

.grid-margin-x>.small-offset-5 {
    margin-left: calc(41.66667% + .625rem)
}

.small-offset-6 {
    margin-left: 50%
}

.grid-margin-x>.small-offset-6 {
    margin-left: calc(50% + .625rem)
}

.small-offset-7 {
    margin-left: 58.33333%
}

.grid-margin-x>.small-offset-7 {
    margin-left: calc(58.33333% + .625rem)
}

.small-offset-8 {
    margin-left: 66.66667%
}

.grid-margin-x>.small-offset-8 {
    margin-left: calc(66.66667% + .625rem)
}

.small-offset-9 {
    margin-left: 75%
}

.grid-margin-x>.small-offset-9 {
    margin-left: calc(75% + .625rem)
}

.small-offset-10 {
    margin-left: 83.33333%
}

.grid-margin-x>.small-offset-10 {
    margin-left: calc(83.33333% + .625rem)
}

.small-offset-11 {
    margin-left: 91.66667%
}

.grid-margin-x>.small-offset-11 {
    margin-left: calc(91.66667% + .625rem)
}

@media print,
screen and (min-width: 47.5em) {
    .medium-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.medium-offset-0 {
        margin-left: calc(0% + .9375rem)
    }

    .medium-offset-1 {
        margin-left: 8.33333%
    }

    .grid-margin-x>.medium-offset-1 {
        margin-left: calc(8.33333% + .9375rem)
    }

    .medium-offset-2 {
        margin-left: 16.66667%
    }

    .grid-margin-x>.medium-offset-2 {
        margin-left: calc(16.66667% + .9375rem)
    }

    .medium-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.medium-offset-3 {
        margin-left: calc(25% + .9375rem)
    }

    .medium-offset-4 {
        margin-left: 33.33333%
    }

    .grid-margin-x>.medium-offset-4 {
        margin-left: calc(33.33333% + .9375rem)
    }

    .medium-offset-5 {
        margin-left: 41.66667%
    }

    .grid-margin-x>.medium-offset-5 {
        margin-left: calc(41.66667% + .9375rem)
    }

    .medium-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.medium-offset-6 {
        margin-left: calc(50% + .9375rem)
    }

    .medium-offset-7 {
        margin-left: 58.33333%
    }

    .grid-margin-x>.medium-offset-7 {
        margin-left: calc(58.33333% + .9375rem)
    }

    .medium-offset-8 {
        margin-left: 66.66667%
    }

    .grid-margin-x>.medium-offset-8 {
        margin-left: calc(66.66667% + .9375rem)
    }

    .medium-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.medium-offset-9 {
        margin-left: calc(75% + .9375rem)
    }

    .medium-offset-10 {
        margin-left: 83.33333%
    }

    .grid-margin-x>.medium-offset-10 {
        margin-left: calc(83.33333% + .9375rem)
    }

    .medium-offset-11 {
        margin-left: 91.66667%
    }

    .grid-margin-x>.medium-offset-11 {
        margin-left: calc(91.66667% + .9375rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .large-offset-0 {
        margin-left: 0%
    }

    .grid-margin-x>.large-offset-0 {
        margin-left: calc(0% + .9375rem)
    }

    .large-offset-1 {
        margin-left: 8.33333%
    }

    .grid-margin-x>.large-offset-1 {
        margin-left: calc(8.33333% + .9375rem)
    }

    .large-offset-2 {
        margin-left: 16.66667%
    }

    .grid-margin-x>.large-offset-2 {
        margin-left: calc(16.66667% + .9375rem)
    }

    .large-offset-3 {
        margin-left: 25%
    }

    .grid-margin-x>.large-offset-3 {
        margin-left: calc(25% + .9375rem)
    }

    .large-offset-4 {
        margin-left: 33.33333%
    }

    .grid-margin-x>.large-offset-4 {
        margin-left: calc(33.33333% + .9375rem)
    }

    .large-offset-5 {
        margin-left: 41.66667%
    }

    .grid-margin-x>.large-offset-5 {
        margin-left: calc(41.66667% + .9375rem)
    }

    .large-offset-6 {
        margin-left: 50%
    }

    .grid-margin-x>.large-offset-6 {
        margin-left: calc(50% + .9375rem)
    }

    .large-offset-7 {
        margin-left: 58.33333%
    }

    .grid-margin-x>.large-offset-7 {
        margin-left: calc(58.33333% + .9375rem)
    }

    .large-offset-8 {
        margin-left: 66.66667%
    }

    .grid-margin-x>.large-offset-8 {
        margin-left: calc(66.66667% + .9375rem)
    }

    .large-offset-9 {
        margin-left: 75%
    }

    .grid-margin-x>.large-offset-9 {
        margin-left: calc(75% + .9375rem)
    }

    .large-offset-10 {
        margin-left: 83.33333%
    }

    .grid-margin-x>.large-offset-10 {
        margin-left: calc(83.33333% + .9375rem)
    }

    .large-offset-11 {
        margin-left: 91.66667%
    }

    .grid-margin-x>.large-offset-11 {
        margin-left: calc(91.66667% + .9375rem)
    }
}

.grid-y {
    display: flex;
    flex-flow: column nowrap
}

.grid-y>.cell {
    height: auto;
    max-height: none
}

.grid-y>.auto {
    height: auto
}

.grid-y>.shrink {
    height: auto
}

.grid-y>.small-shrink,
.grid-y>.small-full,
.grid-y>.small-1,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12 {
    flex-basis: auto
}

@media print,
screen and (min-width: 47.5em) {

    .grid-y>.medium-shrink,
    .grid-y>.medium-full,
    .grid-y>.medium-1,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12 {
        flex-basis: auto
    }
}

@media print,
screen and (min-width: 64em) {

    .grid-y>.large-shrink,
    .grid-y>.large-full,
    .grid-y>.large-1,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12 {
        flex-basis: auto
    }
}

.grid-y>.small-1,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12 {
    flex: 0 0 auto
}

.grid-y>.small-1 {
    height: 8.33333%
}

.grid-y>.small-2 {
    height: 16.66667%
}

.grid-y>.small-3 {
    height: 25%
}

.grid-y>.small-4 {
    height: 33.33333%
}

.grid-y>.small-5 {
    height: 41.66667%
}

.grid-y>.small-6 {
    height: 50%
}

.grid-y>.small-7 {
    height: 58.33333%
}

.grid-y>.small-8 {
    height: 66.66667%
}

.grid-y>.small-9 {
    height: 75%
}

.grid-y>.small-10 {
    height: 83.33333%
}

.grid-y>.small-11 {
    height: 91.66667%
}

.grid-y>.small-12 {
    height: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .grid-y>.medium-auto {
        flex: 1 1 0px;
        height: auto
    }

    .grid-y>.medium-shrink,
    .grid-y>.medium-1,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12 {
        flex: 0 0 auto
    }

    .grid-y>.medium-shrink {
        height: auto
    }

    .grid-y>.medium-1 {
        height: 8.33333%
    }

    .grid-y>.medium-2 {
        height: 16.66667%
    }

    .grid-y>.medium-3 {
        height: 25%
    }

    .grid-y>.medium-4 {
        height: 33.33333%
    }

    .grid-y>.medium-5 {
        height: 41.66667%
    }

    .grid-y>.medium-6 {
        height: 50%
    }

    .grid-y>.medium-7 {
        height: 58.33333%
    }

    .grid-y>.medium-8 {
        height: 66.66667%
    }

    .grid-y>.medium-9 {
        height: 75%
    }

    .grid-y>.medium-10 {
        height: 83.33333%
    }

    .grid-y>.medium-11 {
        height: 91.66667%
    }

    .grid-y>.medium-12 {
        height: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-y>.large-auto {
        flex: 1 1 0px;
        height: auto
    }

    .grid-y>.large-shrink,
    .grid-y>.large-1,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12 {
        flex: 0 0 auto
    }

    .grid-y>.large-shrink {
        height: auto
    }

    .grid-y>.large-1 {
        height: 8.33333%
    }

    .grid-y>.large-2 {
        height: 16.66667%
    }

    .grid-y>.large-3 {
        height: 25%
    }

    .grid-y>.large-4 {
        height: 33.33333%
    }

    .grid-y>.large-5 {
        height: 41.66667%
    }

    .grid-y>.large-6 {
        height: 50%
    }

    .grid-y>.large-7 {
        height: 58.33333%
    }

    .grid-y>.large-8 {
        height: 66.66667%
    }

    .grid-y>.large-9 {
        height: 75%
    }

    .grid-y>.large-10 {
        height: 83.33333%
    }

    .grid-y>.large-11 {
        height: 91.66667%
    }

    .grid-y>.large-12 {
        height: 100%
    }
}

.grid-padding-y .grid-padding-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-y .grid-padding-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem
    }
}

.grid-padding-y>.cell {
    padding-top: .625rem;
    padding-bottom: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-padding-y>.cell {
        padding-top: .9375rem;
        padding-bottom: .9375rem
    }
}

.grid-margin-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem
    }
}

.grid-margin-y>.cell {
    height: calc(100% - 1.25rem);
    margin-top: .625rem;
    margin-bottom: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.cell {
        height: calc(100% - 1.875rem);
        margin-top: .9375rem;
        margin-bottom: .9375rem
    }
}

.grid-margin-y>.auto {
    height: auto
}

.grid-margin-y>.shrink {
    height: auto
}

.grid-margin-y>.small-1 {
    height: calc(8.33333% - 1.25rem)
}

.grid-margin-y>.small-2 {
    height: calc(16.66667% - 1.25rem)
}

.grid-margin-y>.small-3 {
    height: calc(25% - 1.25rem)
}

.grid-margin-y>.small-4 {
    height: calc(33.33333% - 1.25rem)
}

.grid-margin-y>.small-5 {
    height: calc(41.66667% - 1.25rem)
}

.grid-margin-y>.small-6 {
    height: calc(50% - 1.25rem)
}

.grid-margin-y>.small-7 {
    height: calc(58.33333% - 1.25rem)
}

.grid-margin-y>.small-8 {
    height: calc(66.66667% - 1.25rem)
}

.grid-margin-y>.small-9 {
    height: calc(75% - 1.25rem)
}

.grid-margin-y>.small-10 {
    height: calc(83.33333% - 1.25rem)
}

.grid-margin-y>.small-11 {
    height: calc(91.66667% - 1.25rem)
}

.grid-margin-y>.small-12 {
    height: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.auto {
        height: auto
    }

    .grid-margin-y>.shrink {
        height: auto
    }

    .grid-margin-y>.small-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.875rem)
    }

    .grid-margin-y>.medium-auto {
        height: auto
    }

    .grid-margin-y>.medium-shrink {
        height: auto
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-y>.large-auto {
        height: auto
    }

    .grid-margin-y>.large-shrink {
        height: auto
    }

    .grid-margin-y>.large-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.large-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.large-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.large-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.large-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.large-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.large-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.large-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 1.875rem)
    }
}

.grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw
}

.cell .grid-frame {
    width: 100%
}

.cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

.cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%
}

.cell-block-container>.grid-x {
    max-height: 100%;
    flex-wrap: nowrap
}

@media print,
screen and (min-width: 47.5em) {
    .medium-grid-frame {
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100vw
    }

    .cell .medium-grid-frame {
        width: 100%
    }

    .medium-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .medium-cell-block-container {
        display: flex;
        flex-direction: column;
        max-height: 100%
    }

    .medium-cell-block-container>.grid-x {
        max-height: 100%;
        flex-wrap: nowrap
    }

    .medium-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }
}

@media print,
screen and (min-width: 64em) {
    .large-grid-frame {
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100vw
    }

    .cell .large-grid-frame {
        width: 100%
    }

    .large-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .large-cell-block-container {
        display: flex;
        flex-direction: column;
        max-height: 100%
    }

    .large-cell-block-container>.grid-x {
        max-height: 100%;
        flex-wrap: nowrap
    }

    .large-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }
}

.grid-y.grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh
}

@media print,
screen and (min-width: 47.5em) {
    .grid-y.medium-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        height: 100vh
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-y.large-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        flex-wrap: nowrap;
        align-items: stretch;
        height: 100vh
    }
}

.cell .grid-y.grid-frame {
    height: 100%
}

@media print,
screen and (min-width: 47.5em) {
    .cell .grid-y.medium-grid-frame {
        height: 100%
    }
}

@media print,
screen and (min-width: 64em) {
    .cell .grid-y.large-grid-frame {
        height: 100%
    }
}

.grid-margin-y {
    margin-top: -.625rem;
    margin-bottom: -.625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y {
        margin-top: -.9375rem;
        margin-bottom: -.9375rem
    }
}

.grid-margin-y>.cell {
    height: calc(100% - 1.25rem);
    margin-top: .625rem;
    margin-bottom: .625rem
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.cell {
        height: calc(100% - 1.875rem);
        margin-top: .9375rem;
        margin-bottom: .9375rem
    }
}

.grid-margin-y>.auto {
    height: auto
}

.grid-margin-y>.shrink {
    height: auto
}

.grid-margin-y>.small-1 {
    height: calc(8.33333% - 1.25rem)
}

.grid-margin-y>.small-2 {
    height: calc(16.66667% - 1.25rem)
}

.grid-margin-y>.small-3 {
    height: calc(25% - 1.25rem)
}

.grid-margin-y>.small-4 {
    height: calc(33.33333% - 1.25rem)
}

.grid-margin-y>.small-5 {
    height: calc(41.66667% - 1.25rem)
}

.grid-margin-y>.small-6 {
    height: calc(50% - 1.25rem)
}

.grid-margin-y>.small-7 {
    height: calc(58.33333% - 1.25rem)
}

.grid-margin-y>.small-8 {
    height: calc(66.66667% - 1.25rem)
}

.grid-margin-y>.small-9 {
    height: calc(75% - 1.25rem)
}

.grid-margin-y>.small-10 {
    height: calc(83.33333% - 1.25rem)
}

.grid-margin-y>.small-11 {
    height: calc(91.66667% - 1.25rem)
}

.grid-margin-y>.small-12 {
    height: calc(100% - 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y>.auto {
        height: auto
    }

    .grid-margin-y>.shrink {
        height: auto
    }

    .grid-margin-y>.small-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.875rem)
    }

    .grid-margin-y>.medium-auto {
        height: auto
    }

    .grid-margin-y>.medium-shrink {
        height: auto
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-y>.large-auto {
        height: auto
    }

    .grid-margin-y>.large-shrink {
        height: auto
    }

    .grid-margin-y>.large-1 {
        height: calc(8.33333% - 1.875rem)
    }

    .grid-margin-y>.large-2 {
        height: calc(16.66667% - 1.875rem)
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 1.875rem)
    }

    .grid-margin-y>.large-4 {
        height: calc(33.33333% - 1.875rem)
    }

    .grid-margin-y>.large-5 {
        height: calc(41.66667% - 1.875rem)
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 1.875rem)
    }

    .grid-margin-y>.large-7 {
        height: calc(58.33333% - 1.875rem)
    }

    .grid-margin-y>.large-8 {
        height: calc(66.66667% - 1.875rem)
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 1.875rem)
    }

    .grid-margin-y>.large-10 {
        height: calc(83.33333% - 1.875rem)
    }

    .grid-margin-y>.large-11 {
        height: calc(91.66667% - 1.875rem)
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 1.875rem)
    }
}

.grid-frame.grid-margin-y {
    height: calc(100vh + 1.25rem)
}

@media print,
screen and (min-width: 47.5em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 1.875rem)
    }
}

@media print,
screen and (min-width: 47.5em) {
    .grid-margin-y.medium-grid-frame {
        height: calc(100vh + 1.875rem)
    }
}

@media print,
screen and (min-width: 64em) {
    .grid-margin-y.large-grid-frame {
        height: calc(100vh + 1.875rem)
    }
}

.align-left {
    justify-content: flex-start
}

.align-right {
    justify-content: flex-end
}

.align-center {
    justify-content: center
}

.align-justify {
    justify-content: space-between
}

.align-spaced {
    justify-content: space-around
}

.align-left.vertical.menu>li>a {
    justify-content: flex-start
}

.align-right.vertical.menu>li>a {
    justify-content: flex-end
}

.align-center.vertical.menu>li>a {
    justify-content: center
}

.align-top {
    align-items: flex-start
}

.align-self-top {
    align-self: flex-start
}

.align-bottom {
    align-items: flex-end
}

.align-self-bottom {
    align-self: flex-end
}

.align-middle {
    align-items: center
}

.align-self-middle {
    align-self: center
}

.align-stretch {
    align-items: stretch
}

.align-self-stretch {
    align-self: stretch
}

.align-center-middle {
    justify-content: center;
    align-items: center;
    align-content: center
}

.small-order-1 {
    order: 1
}

.small-order-2 {
    order: 2
}

.small-order-3 {
    order: 3
}

.small-order-4 {
    order: 4
}

.small-order-5 {
    order: 5
}

.small-order-6 {
    order: 6
}

@media print,
screen and (min-width: 47.5em) {
    .medium-order-1 {
        order: 1
    }

    .medium-order-2 {
        order: 2
    }

    .medium-order-3 {
        order: 3
    }

    .medium-order-4 {
        order: 4
    }

    .medium-order-5 {
        order: 5
    }

    .medium-order-6 {
        order: 6
    }
}

@media print,
screen and (min-width: 64em) {
    .large-order-1 {
        order: 1
    }

    .large-order-2 {
        order: 2
    }

    .large-order-3 {
        order: 3
    }

    .large-order-4 {
        order: 4
    }

    .large-order-5 {
        order: 5
    }

    .large-order-6 {
        order: 6
    }
}

.flex-container {
    display: flex
}

.flex-child-auto {
    flex: 1 1 auto
}

.flex-child-grow {
    flex: 1 0 auto
}

.flex-child-shrink {
    flex: 0 1 auto
}

.flex-dir-row {
    flex-direction: row
}

.flex-dir-row-reverse {
    flex-direction: row-reverse
}

.flex-dir-column {
    flex-direction: column
}

.flex-dir-column-reverse {
    flex-direction: column-reverse
}

@media print,
screen and (min-width: 47.5em) {
    .medium-flex-container {
        display: flex
    }

    .medium-flex-child-auto {
        flex: 1 1 auto
    }

    .medium-flex-child-grow {
        flex: 1 0 auto
    }

    .medium-flex-child-shrink {
        flex: 0 1 auto
    }

    .medium-flex-dir-row {
        flex-direction: row
    }

    .medium-flex-dir-row-reverse {
        flex-direction: row-reverse
    }

    .medium-flex-dir-column {
        flex-direction: column
    }

    .medium-flex-dir-column-reverse {
        flex-direction: column-reverse
    }
}

@media print,
screen and (min-width: 64em) {
    .large-flex-container {
        display: flex
    }

    .large-flex-child-auto {
        flex: 1 1 auto
    }

    .large-flex-child-grow {
        flex: 1 0 auto
    }

    .large-flex-child-shrink {
        flex: 0 1 auto
    }

    .large-flex-dir-row {
        flex-direction: row
    }

    .large-flex-dir-row-reverse {
        flex-direction: row-reverse
    }

    .large-flex-dir-column {
        flex-direction: column
    }

    .large-flex-dir-column-reverse {
        flex-direction: column-reverse
    }
}

.hide {
    display: none !important
}

.invisible {
    visibility: hidden
}

@media print,
screen and (max-width: 47.49875em) {
    .hide-for-small-only {
        display: none !important
    }
}

@media screen and (max-width: 0em),
screen and (min-width: 47.5em) {
    .show-for-small-only {
        display: none !important
    }
}

@media print,
screen and (min-width: 47.5em) {
    .hide-for-medium {
        display: none !important
    }
}

@media screen and (max-width: 47.49875em) {
    .show-for-medium {
        display: none !important
    }
}

@media print,
screen and (min-width: 47.5em) and (max-width: 63.99875em) {
    .hide-for-medium-only {
        display: none !important
    }
}

@media screen and (max-width: 47.49875em),
screen and (min-width: 64em) {
    .show-for-medium-only {
        display: none !important
    }
}

@media print,
screen and (min-width: 64em) {
    .hide-for-large {
        display: none !important
    }
}

@media screen and (max-width: 63.99875em) {
    .show-for-large {
        display: none !important
    }
}

@media print,
screen and (min-width: 64em) {
    .hide-for-large-only {
        display: none !important
    }
}

@media screen and (max-width: 63.99875em) {
    .show-for-large-only {
        display: none !important
    }
}

.show-for-sr,
.vipps-table caption,
.show-on-focus {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.show-on-focus:active,
.show-on-focus:focus {
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important
}

.show-for-landscape,
.hide-for-portrait {
    display: block !important
}

@media screen and (orientation: landscape) {

    .show-for-landscape,
    .hide-for-portrait {
        display: block !important
    }
}

@media screen and (orientation: portrait) {

    .show-for-landscape,
    .hide-for-portrait {
        display: none !important
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important
}

@media screen and (orientation: landscape) {

    .hide-for-landscape,
    .show-for-portrait {
        display: none !important
    }
}

@media screen and (orientation: portrait) {

    .hide-for-landscape,
    .show-for-portrait {
        display: block !important
    }
}

.menu {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    display: flex;
    flex-wrap: wrap
}

[data-whatinput='mouse'] .menu li {
    outline: 0
}

.menu a,
.menu .button {
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 0.7rem 1rem
}

.menu input,
.menu select,
.menu a,
.menu button {
    margin-bottom: 0
}

.menu input {
    display: inline-block
}

.menu,
.menu.horizontal {
    flex-wrap: wrap;
    flex-direction: row
}

.menu.vertical {
    flex-wrap: nowrap;
    flex-direction: column
}

.menu.expanded li {
    flex: 1 1 0px
}

.menu.simple {
    align-items: center
}

.menu.simple li+li {
    margin-left: 1rem
}

.menu.simple a {
    padding: 0
}

@media print,
screen and (min-width: 47.5em) {
    .menu.medium-horizontal {
        flex-wrap: wrap;
        flex-direction: row
    }

    .menu.medium-vertical {
        flex-wrap: nowrap;
        flex-direction: column
    }

    .menu.medium-expanded li {
        flex: 1 1 0px
    }

    .menu.medium-simple li {
        flex: 1 1 0px
    }
}

@media print,
screen and (min-width: 64em) {
    .menu.large-horizontal {
        flex-wrap: wrap;
        flex-direction: row
    }

    .menu.large-vertical {
        flex-wrap: nowrap;
        flex-direction: column
    }

    .menu.large-expanded li {
        flex: 1 1 0px
    }

    .menu.large-simple li {
        flex: 1 1 0px
    }
}

.menu.nested {
    margin-right: 0;
    margin-left: 1rem
}

.menu.icons a {
    display: flex
}

.menu.icon-top a,
.menu.icon-right a,
.menu.icon-bottom a,
.menu.icon-left a {
    display: flex
}

.menu.icon-left li a {
    flex-flow: row nowrap
}

.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg {
    margin-right: .25rem
}

.menu.icon-right li a {
    flex-flow: row nowrap
}

.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg {
    margin-left: .25rem
}

.menu.icon-top li a {
    flex-flow: column nowrap
}

.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg {
    align-self: stretch;
    margin-bottom: .25rem;
    text-align: center
}

.menu.icon-bottom li a {
    flex-flow: column nowrap
}

.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg {
    align-self: stretch;
    margin-bottom: .25rem;
    text-align: center
}

.menu .is-active>a {
    background: #1779ba;
    color: #fff
}

.menu .active>a {
    background: #1779ba;
    color: #fff
}

.menu.align-left {
    justify-content: flex-start
}

.menu.align-right li {
    display: flex;
    justify-content: flex-end
}

.menu.align-right li .submenu li {
    justify-content: flex-start
}

.menu.align-right.vertical li {
    display: block;
    text-align: right
}

.menu.align-right.vertical li .submenu li {
    text-align: right
}

.menu.align-right .nested {
    margin-right: 1rem;
    margin-left: 0
}

.menu.align-center li {
    display: flex;
    justify-content: center
}

.menu.align-center li .submenu li {
    justify-content: flex-start
}

.menu .menu-text {
    padding: 0.7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit
}

.menu-centered>.menu {
    justify-content: center
}

.menu-centered>.menu li {
    display: flex;
    justify-content: center
}

.menu-centered>.menu li .submenu li {
    justify-content: flex-start
}

.no-js [data-responsive-menu] ul {
    display: none
}

.responsive-embed,
.flex-video {
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 75%;
    overflow: hidden
}

.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.responsive-embed.widescreen,
.flex-video.widescreen {
    padding-bottom: 56.25%
}

a.vipps-button,
.vipps-button {
    text-decoration: none;
    border-radius: 24px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    flex-direction: column;
    justify-content: center;
    position: relative
}

a.vipps-button:hover:not([aria-disabled='true']),
.vipps-button:hover:not([aria-disabled='true']) {
    cursor: pointer;
    color: #fff
}

a.vipps-button:visited,
.vipps-button:visited {
    color: #fff
}

a.vipps-button:focus,
a.vipps-button:active,
.vipps-button:focus,
.vipps-button:active {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #8e82ff;
    color: #fff
}

a.vipps-button[aria-disabled='true'],
.vipps-button[aria-disabled='true'] {
    background: #efeef3;
    border-color: #efeef3;
    color: #706b8b;
    cursor: not-allowed
}

a.vipps-button__size-small,
.vipps-button__size-small {
    padding: 4px 16px;
    font-size: 14px;
    line-height: 16px;
    font-family: "Vipps", Arial, sans-serif
}

a.vipps-button__size-standard,
.vipps-button__size-standard {
    padding: 11px 18px
}

a.vipps-button__size-large,
.vipps-button__size-large {
    padding: 12.5px 22px;
    font-size: 18px;
    line-height: 21px
}

a.vipps-button__size-large .vipps-button__loading-spinner,
.vipps-button__size-large .vipps-button__loading-spinner {
    width: 30px;
    height: 30px;
    left: calc(50% - 15px)
}

a.vipps-button__style-default,
.vipps-button__style-default {
    color: #722ac9;
    background-color: #fff;
    border-color: #efeef3
}

a.vipps-button__style-default:hover:not([aria-disabled='true']),
.vipps-button__style-default:hover:not([aria-disabled='true']) {
    color: #722ac9;
    background-color: #efeef3;
    border-color: #efeef3
}

a.vipps-button__style-default:visited,
.vipps-button__style-default:visited {
    color: #722ac9
}

a.vipps-button__style-default:focus,
a.vipps-button__style-default:active,
.vipps-button__style-default:focus,
.vipps-button__style-default:active {
    color: #722ac9
}

a.vipps-button__style-purple,
.vipps-button__style-purple {
    background-color: #541b86;
    border-color: #541b86
}

a.vipps-button__style-purple:hover:not([aria-disabled='true']),
.vipps-button__style-purple:hover:not([aria-disabled='true']) {
    background-color: #722ac9;
    border-color: #722ac9
}

a.VM-button__style-dark-blue,
.VM-button__style-dark-blue {
    background-color: #161225;
    border-color: #161225
}

a.VM-button__style-dark-blue:hover:not([aria-disabled='true']),
.VM-button__style-dark-blue:hover:not([aria-disabled='true']) {
    background-color: #504d5c;
    border-color: #504d5c
}

a.vipps-button__style-bankid,
.vipps-button__style-bankid {
    background-color: #0041be;
    border-color: #0041be
}

a.vipps-button__style-bankid:hover:not([aria-disabled='true']),
.vipps-button__style-bankid:hover:not([aria-disabled='true']) {
    background-color: #3368CE;
    border-color: #3368CE
}

a.vipps-button__style-bankaxept,
.vipps-button__style-bankaxept {
    background-color: #541b86;
    border-color: #541b86
}

a.vipps-button__style-bankaxept:hover:not([aria-disabled='true']),
.vipps-button__style-bankaxept:hover:not([aria-disabled='true']) {
    background-color: #722ac9;
    border-color: #722ac9
}

a.vipps-button__style-orange,
.vipps-button__style-orange {
    background-color: #ff5b24;
    border-color: #ff5b24
}

a.vipps-button__style-orange:hover:not([aria-disabled='true']),
.vipps-button__style-orange:hover:not([aria-disabled='true']) {
    background-color: #ff985f
}

a.vipps-button__style-orange:hover:not([aria-disabled='true']):not(:focus),
.vipps-button__style-orange:hover:not([aria-disabled='true']):not(:focus) {
    border-color: #ff985f
}

a.vipps-button__style-destructive,
.vipps-button__style-destructive {
    background-color: #c60000;
    border-color: #c60000
}

a.vipps-button__style-destructive:hover:not([aria-disabled='true']),
.vipps-button__style-destructive:hover:not([aria-disabled='true']) {
    background-color: #e57e7e
}

a.vipps-button__style-destructive:hover:not([aria-disabled='true']):not(:focus),
.vipps-button__style-destructive:hover:not([aria-disabled='true']):not(:focus) {
    border-color: #e57e7e
}

a.vipps-button__style-link,
.vipps-button__style-link {
    background-color: transparent;
    border: 1px solid transparent;
    color: #722ac9;
    text-decoration: underline;
    border-radius: 0;
    padding: 0;
    vertical-align: unset
}

a.vipps-button__style-link:hover:not([aria-disabled='true']),
.vipps-button__style-link:hover:not([aria-disabled='true']) {
    color: #541b86
}

a.vipps-button__style-link:visited,
.vipps-button__style-link:visited {
    color: #722ac9
}

a.vipps-button__style-link:focus,
a.vipps-button__style-link:active,
.vipps-button__style-link:focus,
.vipps-button__style-link:active {
    color: #541b86
}

a.vipps-button__style-link[aria-disabled='true'],
.vipps-button__style-link[aria-disabled='true'] {
    background: transparent
}

a.vipps-button__close,
.vipps-button__close {
    color: #722ac9;
    border-color: transparent;
    padding: 6px;
    border-radius: 50%;
    background-color: rgba(84, 27, 134, 0.05);
    line-height: 1
}

a.vipps-button__close:hover:not([aria-disabled='true']),
.vipps-button__close:hover:not([aria-disabled='true']) {
    color: #722ac9;
    background-color: rgba(84, 27, 134, 0.15)
}

a.vipps-button__close:focus,
a.vipps-button__close:active,
.vipps-button__close:focus,
.vipps-button__close:active {
    color: #541b86
}

a.vipps-button__icon,
.vipps-button__icon {
    line-height: 1
}

a.vipps-button__icon+.vipps-button__label,
.vipps-button__icon+.vipps-button__label {
    margin-left: 8px
}

a.vipps-button__icon--right,
.vipps-button__icon--right {
    margin-left: 8px
}

a.vipps-button__content--hidden,
.vipps-button__content--hidden {
    visibility: hidden
}

a.vipps-button__loading-spinner,
.vipps-button__loading-spinner {
    position: absolute;
    width: 16px;
    height: 16px;
    left: calc(50% - 8px)
}

.vipps-button-group {
    display: inline-flex;
    flex-direction: row
}

.vipps-button-group .vipps-button {
    align-self: center;
    margin-right: 16px
}

.vipps-button-group .vipps-button:last-child {
    margin-right: 0
}

.vipps-icon {
    vertical-align: -2px
}

.vipps-icon__small {
    width: 16px;
    height: 16px
}

.vipps-icon__medium {
    width: 24px;
    height: 24px
}

.vipps-icon__large {
    width: 32px;
    height: 32px
}

.vipps-icon__right {
    transform: rotate(90deg)
}

.vipps-icon__down {
    transform: rotate(180deg)
}

.vipps-icon__left {
    transform: rotate(270deg)
}

.vipps-bullet-list {
    margin-left: 20px;
    list-style-type: disc
}

.vipps-description-list__term {
    color: #161225;
    margin-bottom: 0
}

.vipps-description-list__description {
    font-weight: 400;
    margin-left: 0;
    margin-bottom: 32px
}

.vipps-link-list {
    list-style-type: none
}

.vipps-link-list__item {
    position: relative
}

.vipps-link-list__item__content a {
    text-decoration: none;
    font-weight: 400;
    border-bottom: 1px solid #c9c6d7;
    padding: 24px 24px 24px 8px;
    color: #161225;
    display: block
}

.vipps-link-list__item__content a:visited {
    color: inherit
}

.vipps-link-list__item__content a:active,
.vipps-link-list__item__content a:hover {
    background-color: #fcfbfe;
    color: #161225
}

.vipps-link-list__item__content a:focus {
    outline: none;
    box-shadow: 0 0 0 3px #8e82ff;
    border-color: transparent
}

.vipps-link-list__item__icon {
    color: #541b86;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin-bottom: auto;
    margin-top: auto;
    cursor: pointer
}

.vipps-block-link-list {
    list-style-type: none;
    padding: 0
}

.vipps-block-link-list-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #efeef3;
    padding: 28px 0
}

.vipps-block-link-list-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px #8e82ff;
    border-color: transparent
}

.vipps-block-link-list-item__icon {
    width: 56px;
    height: 56px;
    margin-right: 16px;
    background-color: #efeef3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.vipps-block-link-list-item__button {
    min-width: 10px
}

.vipps-block-link-list-item__content {
    flex-grow: 1
}

.rc-tooltip {
    opacity: 1;
    color: white;
    z-index: 1
}

.rc-tooltip .rc-tooltip-arrow {
    border-bottom-color: #541b86;
    border-top-color: #541b86;
    right: 10px
}

.rc-tooltip .rc-tooltip-inner {
    border-radius: 6px;
    border: none;
    padding: 0;
    background-color: transparent;
    color: inherit
}

.vipps-popover {
    margin: 0;
    color: white;
    background-color: #541b86;
    border-radius: 6px;
    z-index: 100
}

.vipps-popover__menu {
    padding: 0;
    list-style: none;
    min-width: 240px
}

.vipps-popover__menu li {
    padding: 0
}

.vipps-popover__menu-item,
.vipps-popover__menu-item:visited {
    cursor: pointer;
    width: 100%;
    padding: 15px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    background-color: transparent;
    border: none;
    box-shadow: none
}

.vipps-popover__menu-item:hover,
.vipps-popover__menu-item:visited:hover {
    color: #fff;
    background-color: #722ac9
}

.vipps-popover__menu-item-icon+.vipps-popover__menu-item-title {
    padding-left: 15px
}

.vipps-popover__menu-item-title {
    flex-grow: 1;
    color: #fff
}

.vipps-popover__menu-item-title:focus,
.vipps-popover__menu-item-title:hover {
    color: #fff
}

.vipps-popover-toggle {
    width: 40px;
    height: 30px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

@media screen and (max-width: 719px) {
    .vipps-popover-toggle {
        position: absolute;
        right: 5px;
        margin-top: -20px;
        top: 50%
    }
}

.vipps-popover-toggle__button {
    top: 50%;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #541b86;
    border: none;
    padding: 0
}

.vipps-popover-toggle::before,
.vipps-popover-toggle::after {
    top: 50%;
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 2.5px;
    background-color: #541b86
}

.vipps-popover-toggle::before {
    transform: translateX(-5px);
    left: -3px
}

.vipps-popover-toggle::after {
    transform: translateX(5px);
    left: 3px
}

.vipps-checkbox {
    color: #161225;
    cursor: pointer;
    display: block;
    margin-bottom: 1rem;
   /*padding-left: 2.5rem;*/
    position: relative;
    user-select: none
}

.vipps-checkbox--disabled {
    color: #938fa8;
    cursor: not-allowed
}

.vipps-checkbox__input {
    position: absolute;
    opacity: 0
}

.vipps-checkbox__description {
    font-weight: 400
}

.vipps-checkbox__checkmark {
    background-color: white;
    background-size: 0 0;
    border-radius: 0.3125rem;
    border: 2px solid #706b8b;
    height: 1.5rem;
    right: 0;
    position: absolute;
    top: 0;
    width: 1.5rem
}

.vipps-checkbox__checkmark-bankid {
    background-color: white;
    background-size: 0 0;
    border-radius: 0.3125rem;
    border: 2px solid #6F95DE;
    height: 1.5rem;
    right: 0;
    position: absolute;
    top: 0;
    width: 1.5rem
}

.vipps-checkbox--disabled .vipps-checkbox__checkmark,
.vipps-checkbox--disabled .vipps-checkbox__input:checked~.vipps-checkbox__checkmark {
    background-color: #c9c6d7;
    border-color: #c9c6d7
}

.vipps-checkbox--error:not(.vipps-checkbox--disabled) .vipps-checkbox__checkmark {
    background-color: #ffefef;
    border-color: #c60000
}

.vipps-checkbox--error:not(.vipps-checkbox--disabled) .vipps-checkbox__input:checked~.vipps-checkbox__checkmark {
    background-color: #c60000;
    border-color: #c60000
}

.vipps-checkbox--error:not(.vipps-checkbox--disabled) .vipps-checkbox__input:focus~.vipps-checkbox__checkmark {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c60000
}

.vipps-checkbox__input:checked ~ .vipps-checkbox__checkmark {
    background: #722ac9 url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjA3NzQgNS4yNDQwOEMxNi40MDI4IDQuOTE4NjQgMTYuOTMwNCA0LjkxODY0IDE3LjI1NTkgNS4yNDQwOEMxNy41ODEzIDUuNTY5NTEgMTcuNTgxMyA2LjA5NzE1IDE3LjI1NTkgNi40MjI1OUw4LjkyMjU1IDE0Ljc1NTlDOC41OTcxMSAxNS4wODE0IDguMDY5NDcgMTUuMDgxNCA3Ljc0NDA0IDE0Ljc1NTlMMy42MDYyNiAxMC42MTgxQzMuMjgwODIgMTAuMjkyNyAzLjI4MDgyIDkuNzY1MDcgMy42MDYyNiA5LjQzOTYzQzMuOTMxNyA5LjExNDIgNC40NTkzMyA5LjExNDIgNC43ODQ3NyA5LjQzOTYzTDguMzMzMjkgMTIuOTg4MkwxNi4wNzc0IDUuMjQ0MDhaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K) no-repeat center;
    border-color: #722ac9
}

.vipps-checkbox__input-bankid:checked ~ .vipps-checkbox__checkmark-bankid {
    background: #39134C url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjA3NzQgNS4yNDQwOEMxNi40MDI4IDQuOTE4NjQgMTYuOTMwNCA0LjkxODY0IDE3LjI1NTkgNS4yNDQwOEMxNy41ODEzIDUuNTY5NTEgMTcuNTgxMyA2LjA5NzE1IDE3LjI1NTkgNi40MjI1OUw4LjkyMjU1IDE0Ljc1NTlDOC41OTcxMSAxNS4wODE0IDguMDY5NDcgMTUuMDgxNCA3Ljc0NDA0IDE0Ljc1NTlMMy42MDYyNiAxMC42MTgxQzMuMjgwODIgMTAuMjkyNyAzLjI4MDgyIDkuNzY1MDcgMy42MDYyNiA5LjQzOTYzQzMuOTMxNyA5LjExNDIgNC40NTkzMyA5LjExNDIgNC43ODQ3NyA5LjQzOTYzTDguMzMzMjkgMTIuOTg4MkwxNi4wNzc0IDUuMjQ0MDhaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K) no-repeat center;
    border-color: #39134C
}

.vipps-checkbox__input:focus~.vipps-checkbox__checkmark {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #8e82ff;
    border: none
}

.vipps-fieldset {
    margin: 0;
    padding: 0;
    border: none
}

.vipps-fieldset legend {
    font-weight: 500;
    color: #161225;
    margin-bottom: 1rem
}

.vipps-input {
    width: 100%;
    height: 48px;
    border-radius: 6px;
    border: 1px solid #c9c6d7;
    padding: 0 16px;
    color: #161225;
    background-color: #fcfbfe;
    -moz-appearance: none;
    -webkit-appearance: none
}

.vipps-input:focus {
    background-color: #fff;
    border: 1px solid #722ac9;
    box-shadow: 0 0 0 1px #722ac9;
    outline: none
}

.vipps-input:disabled {
    background-color: #f6f6f9;
    border-color: #f6f6f9;
    cursor: not-allowed
}

.vipps-input::placeholder {
    color: #938fa8
}

.vipps-input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    background-image: url("../assets/clear.svg");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    width: 16px;
    height: 16px
}

.vipps-input::-webkit-search-decoration,
.vipps-input::-webkit-search-results-button,
.vipps-input::-webkit-search-results-decoration {
    display: none !important
}

.vipps-input[aria-invalid='true'] {
    border: 1px solid #c60000;
    box-shadow: 0 0 0 1px #c60000
}

.vipps-input-error {
    color: #c60000;
    font-weight: 400;
    margin: 8px 0 0 0
}

.vipps-input[type='search']~.vipps-input-error {
    margin: 8px 0 0 20px
}

.vipps-label {
    color: #161225
}

.vipps-label:focus-within {
    color: #722ac9
}

.vipps-label>*,
.vipps-label+* {
    margin-top: 4px
}

.vipps-radio {
    color: #161225;
    cursor: pointer;
    display: block;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    user-select: none
}

.vipps-radio--disabled {
    color: #938fa8;
    cursor: not-allowed
}

.vipps-radio__input {
    position: absolute;
    opacity: 0
}

.vipps-radio__description {
    font-weight: 400
}

.vipps-radio__checkmark {
    background-color: white;
    background-size: 0 0;
    border-radius: 50%;
    border: 2px solid #706b8b;
    height: 1.5rem;
    left: 0;
    position: absolute;
    top: 0;
    width: 1.5rem
}

.vipps-radio--disabled .vipps-radio__checkmark,
.vipps-radio--disabled .vipps-radio__input:checked~.vipps-radio__checkmark {
    background-color: #c9c6d7;
    border-color: #c9c6d7
}

.vipps-radio--error:not(.vipps-radio--disabled) .vipps-radio__checkmark {
    background-color: #ffefef;
    border-color: #c60000
}

.vipps-radio--error:not(.vipps-radio--disabled) .vipps-radio__input:checked~.vipps-radio__checkmark {
    background-color: #c60000;
    border-color: #c60000
}

.vipps-radio--error:not(.vipps-radio--disabled) .vipps-radio__input:focus~.vipps-radio__checkmark {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #c60000
}

.vipps-radio__input:checked~.vipps-radio__checkmark {
    background: #722ac9 url("../assets/check.svg") no-repeat center;
    border-color: #722ac9
}

.vipps-radio__input:focus~.vipps-radio__checkmark {
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #8e82ff;
    border: none
}

.vipps-select {
    background-color: #fcfbfe;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    height: 48px;
    padding: 5px 16px;
    color: #161225;
    max-width: 100%;
    display: block;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../assets/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    background-size: 12px;
    background-origin: border-box;
    font-weight: 400;
    border: 1px solid #c9c6d7
}

.vipps-select:focus {
    background-color: #fff;
    background-image: url("../assets/arrow-down--focus.svg");
    border: 2px solid #722ac9;
    padding: 4px 15px;
    outline: none
}

.vipps-select:disabled {
    background-image: url("../assets/arrow-down--disabled.svg");
    background-color: #f6f6f9;
    border-color: #f6f6f9
}

.vipps-select[aria-invalid='true'] {
    border: 1px solid #c60000;
    box-shadow: 0 0 0 1px #c60000;
    padding: 4px 15px
}

.vipps-textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #c9c6d7;
    border-radius: 5px;
    -webkit-appearance: none
}

.vipps-textarea:focus {
    border: 2px solid #722ac9;
    padding: 9px;
    outline: none
}

.vipps-textarea:disabled {
    background-color: #f6f6f9;
    border-color: #f6f6f9
}

.vipps-textarea[aria-invalid='true'] {
    border: 1px solid #c60000;
    box-shadow: 0 0 0 1px #c60000;
    padding: 9px
}

.vipps-input-group:focus-within .vipps-input-group__label {
    color: #722ac9
}

.vipps-input-group__content {
    align-items: stretch;
    background-color: #fcfbfe;
    border-radius: 6px;
    border: 1px solid #c9c6d7;
    display: flex;
    flex-wrap: wrap;
    width: 100%
}

.vipps-input-group__content:focus-within {
    background-color: #fff;
    border-color: #722ac9;
    box-shadow: 0 0 0 1px #722ac9;
    outline: none
}

.vipps-input-group--disabled .vipps-input-group__content {
    background-color: #f6f6f9;
    border-color: #f6f6f9
}

.vipps-input-group--error .vipps-input-group__content {
    border-color: #c60000;
    box-shadow: 0 0 0 1px #c60000
}

.vipps-input-group--rounded .vipps-input-group__content {
    border-radius: 24px
}

.vipps-input-group__input {
    width: 1%;
    border: none;
    flex: 1 1 auto;
    padding: 0
}

.vipps-input-group__input:focus,
.vipps-input-group__input[aria-invalid='true'] {
    border: none;
    box-shadow: none;
    padding: 0
}

.vipps-input-group__input:first-child {
    padding-left: 16px
}

.vipps-input-group__input:last-child {
    padding-right: 16px
}

.vipps-input-group--rounded .vipps-input-group__input {
    border-radius: 24px
}

.vipps-input-group__description {
    color: #706b8b;
    margin: 8px 0 0 0
}

.vipps-input-group__prepend,
.vipps-input-group__append {
    align-items: center;
    border: none;
    color: #161225;
    display: flex;
    outline: none
}

.vipps-input-group__prepend .vipps-icon,
.vipps-input-group--disabled .vipps-input-group__prepend,
.vipps-input-group__append .vipps-icon,
.vipps-input-group--disabled .vipps-input-group__append {
    color: #938fa8
}

.vipps-input-group:focus-within .vipps-input-group__prepend,
.vipps-input-group:focus-within .vipps-input-group__prepend svg,
.vipps-input-group:focus-within .vipps-input-group__append,
.vipps-input-group:focus-within .vipps-input-group__append svg {
    color: #722ac9
}

.vipps-input-group__prepend {
    border-radius: 6px 0 0 6px;
    padding: 0 8px 0 16px
}

.vipps-input-group--rounded .vipps-input-group__prepend {
    border-radius: 24px 0 0 24px
}

.vipps-input-group__append {
    border-radius: 0 6px 6px 0;
    padding: 0 16px 0 8px
}

.vipps-input-group--rounded .vipps-input-group__append {
    border-radius: 24px 0 0 24px
}

.vipps-message {
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    position: relative
}

.vipps-message--closable {
    padding-right: 72px
}

.vipps-message__header {
    margin-bottom: 8px
}

.vipps-message--default {
    background-color: #f6f6f9
}

.vipps-message--default .vipps-message__icon {
    color: #706b8b
}

.vipps-message--success {
    background-color: #d7ecdf
}

.vipps-message--success .vipps-message__icon {
    color: #006628
}

.vipps-message--warning {
    background-color: #fff4ec
}

.vipps-message--warning .vipps-message__icon {
    color: #ff5b24
}

.vipps-message--error {
    background-color: #fde5e4
}

.vipps-message--error .vipps-message__icon {
    color: #c60000
}

.vipps-message__icon {
    margin-right: 18px
}

.vipps-message__content {
    width: 100%;
    align-self: center
}

.vipps-message__close-button {
    position: absolute;
    top: 16px;
    right: 16px
}

.react-datepicker {
    display: inline-block;
    position: relative;
    margin: 6px 0;
    background-color: #fff;
    border: 2px solid #c9c6d7;
    border-radius: 6px;
    font-size: 16px;
    color: #161225
}

.react-datepicker-popper {
    z-index: 1;
    width: max-content
}

.react-datepicker__triangle {
    display: none
}

.react-datepicker__header {
    position: relative;
    margin: 16px 0 6px 16px
}

.react-datepicker__navigation {
    z-index: 1;
    position: absolute;
    top: 16px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: none;
    background-color: #f1ebff;
    line-height: 0;
    color: #722ac9;
    text-align: center;
    cursor: pointer
}

.react-datepicker__navigation--previous {
    right: 56px
}

.react-datepicker__navigation--next {
    right: 16px
}

.react-datepicker__navigation--previous--disabled,
.react-datepicker__navigation--next--disabled {
    background-color: #efeef3;
    color: #c9c6d7;
    cursor: not-allowed
}

.react-datepicker__month {
    margin: 0 16px 16px;
    text-align: center
}

.react-datepicker__month-text {
    display: inline-block;
    width: 64px;
    margin: 2px
}

.react-datepicker__current-month {
    font-size: 18px;
    font-weight: bold;
    line-height: 32px
}

.react-datepicker__day-names {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: #938fa8
}

.react-datepicker__day-name {
    display: inline-block;
    text-align: center;
    width: 42px
}

.react-datepicker__day {
    display: inline-block;
    width: 32px;
    margin: 5px;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    line-height: 32px;
    cursor: pointer
}

.react-datepicker__day:hover {
    background-color: #f1ebff
}

.react-datepicker__day--outside-month {
    color: #c9c6d7
}

.react-datepicker__day--today {
    background-color: #efeef3
}

.react-datepicker__day--selected {
    background-color: #722ac9;
    font-weight: bold;
    color: #fff
}

.react-datepicker__day--selected:hover {
    background-color: #6626b4
}

.react-datepicker__day--disabled {
    pointer-events: none;
    background-color: transparent;
    color: transparent;
    cursor: default
}

.animation {
    width: 100%
}

.animation--product {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.animation svg {
    display: block;
    max-width: 160px;
    margin: auto
}

.animation-widget {
    display: block
}

@keyframes rotating {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.rotating {
    animation: rotating 1s cubic-bezier(0, 0, 0.2, 1) infinite
}

a {
    text-decoration: none
}

ul {
    margin-left: 0;
    list-style-type: none
}

ul.dotted-list {
    margin-left: 20px;
    list-style-type: disc
}

ol {
    margin-left: 20px
}

.responsive-margin-0 {
    margin: 0
}

.responsive-padding-0 {
    padding: 0
}

.responsive-margin-top-0 {
    margin-top: 0
}

.responsive-padding-top-0 {
    padding-top: 0
}

.responsive-margin-bottom-0 {
    margin-bottom: 0
}

.responsive-padding-bottom-0 {
    padding-bottom: 0
}

.responsive-margin-left-0 {
    margin-left: 0
}

.responsive-padding-left-0 {
    padding-left: 0
}

.responsive-margin-right-0 {
    margin-right: 0
}

.responsive-padding-right-0 {
    padding-right: 0
}

.responsive-negative-margin-0 {
    margin: 0
}

.responsive-negative-padding-0 {
    padding: 0
}

.responsive-negative-margin-top-0 {
    margin-top: 0
}

.responsive-negative-padding-top-0 {
    padding-top: 0
}

.responsive-negative-margin-bottom-0 {
    margin-bottom: 0
}

.responsive-negative-padding-bottom-0 {
    padding-bottom: 0
}

.responsive-negative-margin-left-0 {
    margin-left: 0
}

.responsive-negative-padding-left-0 {
    padding-left: 0
}

.responsive-negative-margin-right-0 {
    margin-right: 0
}

.responsive-negative-padding-right-0 {
    padding-right: 0
}

.responsive-margin-xxs {
    margin: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-xxs {
        margin: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-xxs {
        margin: .5625rem
    }
}

.responsive-padding-xxs {
    padding: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-xxs {
        padding: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-xxs {
        padding: .5625rem
    }
}

.responsive-margin-top-xxs {
    margin-top: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-top-xxs {
        margin-top: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-top-xxs {
        margin-top: .5625rem
    }
}

.responsive-padding-top-xxs {
    padding-top: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-top-xxs {
        padding-top: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-top-xxs {
        padding-top: .5625rem
    }
}

.responsive-margin-bottom-xxs,
.rich-text li {
    margin-bottom: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-xxs,
    .rich-text li {
        margin-bottom: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-xxs,
    .rich-text li {
        margin-bottom: .5625rem
    }
}

.responsive-padding-bottom-xxs {
    padding-bottom: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-bottom-xxs {
        padding-bottom: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-bottom-xxs {
        padding-bottom: .5625rem
    }
}

.responsive-margin-left-xxs {
    margin-left: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-left-xxs {
        margin-left: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-left-xxs {
        margin-left: .5625rem
    }
}

.responsive-padding-left-xxs {
    padding-left: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-left-xxs {
        padding-left: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-left-xxs {
        padding-left: .5625rem
    }
}

.responsive-margin-right-xxs {
    margin-right: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-right-xxs {
        margin-right: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-right-xxs {
        margin-right: .5625rem
    }
}

.responsive-padding-right-xxs {
    padding-right: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-right-xxs {
        padding-right: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-right-xxs {
        padding-right: .5625rem
    }
}

.responsive-negative-margin-xxs {
    margin: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-xxs {
        margin: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-xxs {
        margin: -.5625rem
    }
}

.responsive-negative-padding-xxs {
    padding: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-xxs {
        padding: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-xxs {
        padding: -.5625rem
    }
}

.responsive-negative-margin-top-xxs {
    margin-top: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-xxs {
        margin-top: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-xxs {
        margin-top: -.5625rem
    }
}

.responsive-negative-padding-top-xxs {
    padding-top: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-xxs {
        padding-top: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-xxs {
        padding-top: -.5625rem
    }
}

.responsive-negative-margin-bottom-xxs {
    margin-bottom: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-xxs {
        margin-bottom: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-xxs {
        margin-bottom: -.5625rem
    }
}

.responsive-negative-padding-bottom-xxs {
    padding-bottom: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-xxs {
        padding-bottom: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-xxs {
        padding-bottom: -.5625rem
    }
}

.responsive-negative-margin-left-xxs {
    margin-left: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-xxs {
        margin-left: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-xxs {
        margin-left: -.5625rem
    }
}

.responsive-negative-padding-left-xxs {
    padding-left: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-xxs {
        padding-left: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-xxs {
        padding-left: -.5625rem
    }
}

.responsive-negative-margin-right-xxs {
    margin-right: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-xxs {
        margin-right: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-xxs {
        margin-right: -.5625rem
    }
}

.responsive-negative-padding-right-xxs {
    padding-right: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-xxs {
        padding-right: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-xxs {
        padding-right: -.5625rem
    }
}

.responsive-margin-xs {
    margin: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-xs {
        margin: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-xs {
        margin: 1.125rem
    }
}

.responsive-padding-xs {
    padding: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-xs {
        padding: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-xs {
        padding: 1.125rem
    }
}

.responsive-margin-top-xs,
.image-caption__caption,
.help-article__title-container {
    margin-top: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-top-xs,
    .image-caption__caption,
    .help-article__title-container {
        margin-top: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-top-xs,
    .image-caption__caption,
    .help-article__title-container {
        margin-top: 1.125rem
    }
}

.responsive-padding-top-xs,
.navigation-list__link_no_icon,
.help-guide {
    padding-top: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-top-xs,
    .navigation-list__link_no_icon,
    .help-guide {
        padding-top: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-top-xs,
    .navigation-list__link_no_icon,
    .help-guide {
        padding-top: 1.125rem
    }
}

.responsive-margin-bottom-xs,
.card__title,
.strike__component .strike__form__input__container,
.help-article__title-container,
.help-categories__link,
.contact-form__step,
.product-slide__title.active,
.product-slide__button {
    margin-bottom: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-xs,
    .card__title,
    .strike__component .strike__form__input__container,
    .help-article__title-container,
    .help-categories__link,
    .contact-form__step,
    .product-slide__title.active,
    .product-slide__button {
        margin-bottom: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-xs,
    .card__title,
    .strike__component .strike__form__input__container,
    .help-article__title-container,
    .help-categories__link,
    .contact-form__step,
    .product-slide__title.active,
    .product-slide__button {
        margin-bottom: 1.125rem
    }
}

.responsive-padding-bottom-xs,
.navigation-list__link_no_icon {
    padding-bottom: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-bottom-xs,
    .navigation-list__link_no_icon {
        padding-bottom: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-bottom-xs,
    .navigation-list__link_no_icon {
        padding-bottom: 1.125rem
    }
}

.responsive-margin-left-xs {
    margin-left: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-left-xs {
        margin-left: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-left-xs {
        margin-left: 1.125rem
    }
}

.responsive-padding-left-xs,
.help-guide {
    padding-left: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-left-xs,
    .help-guide {
        padding-left: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-left-xs,
    .help-guide {
        padding-left: 1.125rem
    }
}

.responsive-margin-right-xs,
.strike__component .strike__form__input__container {
    margin-right: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-right-xs,
    .strike__component .strike__form__input__container {
        margin-right: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-right-xs,
    .strike__component .strike__form__input__container {
        margin-right: 1.125rem
    }
}

.responsive-padding-right-xs {
    padding-right: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-right-xs {
        padding-right: .5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-right-xs {
        padding-right: 1.125rem
    }
}

.responsive-negative-margin-xs {
    margin: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-xs {
        margin: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-xs {
        margin: -1.125rem
    }
}

.responsive-negative-padding-xs {
    padding: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-xs {
        padding: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-xs {
        padding: -1.125rem
    }
}

.responsive-negative-margin-top-xs {
    margin-top: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-xs {
        margin-top: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-xs {
        margin-top: -1.125rem
    }
}

.responsive-negative-padding-top-xs {
    padding-top: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-xs {
        padding-top: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-xs {
        padding-top: -1.125rem
    }
}

.responsive-negative-margin-bottom-xs {
    margin-bottom: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-xs {
        margin-bottom: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-xs {
        margin-bottom: -1.125rem
    }
}

.responsive-negative-padding-bottom-xs {
    padding-bottom: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-xs {
        padding-bottom: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-xs {
        padding-bottom: -1.125rem
    }
}

.responsive-negative-margin-left-xs {
    margin-left: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-xs {
        margin-left: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-xs {
        margin-left: -1.125rem
    }
}

.responsive-negative-padding-left-xs {
    padding-left: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-xs {
        padding-left: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-xs {
        padding-left: -1.125rem
    }
}

.responsive-negative-margin-right-xs {
    margin-right: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-xs {
        margin-right: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-xs {
        margin-right: -1.125rem
    }
}

.responsive-negative-padding-right-xs {
    padding-right: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-xs {
        padding-right: -.5625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-xs {
        padding-right: -1.125rem
    }
}

.responsive-margin-s {
    margin: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-s {
        margin: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-s {
        margin: 1.6875rem
    }
}

.responsive-padding-s,
.countdown__component .vipps-countdown,
.card--small {
    padding: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-s,
    .countdown__component .vipps-countdown,
    .card--small {
        padding: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-s,
    .countdown__component .vipps-countdown,
    .card--small {
        padding: 1.6875rem
    }
}

.responsive-margin-top-s {
    margin-top: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-top-s {
        margin-top: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-top-s {
        margin-top: 1.6875rem
    }
}

.responsive-padding-top-s {
    padding-top: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-top-s {
        padding-top: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-top-s {
        padding-top: 1.6875rem
    }
}

.responsive-margin-bottom-s,
.button-list,
.hero {
    margin-bottom: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-s,
    .button-list,
    .hero {
        margin-bottom: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-s,
    .button-list,
    .hero {
        margin-bottom: 1.6875rem
    }
}

.responsive-padding-bottom-s,
.help-guide {
    padding-bottom: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-bottom-s,
    .help-guide {
        padding-bottom: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-bottom-s,
    .help-guide {
        padding-bottom: 1.6875rem
    }
}

.responsive-margin-left-s {
    margin-left: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-left-s {
        margin-left: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-left-s {
        margin-left: 1.6875rem
    }
}

.responsive-padding-left-s {
    padding-left: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-left-s {
        padding-left: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-left-s {
        padding-left: 1.6875rem
    }
}

.responsive-margin-right-s,
.countdown__component .vipps-countdown-section:not(:last-child),
.contact-form__icon,
.product-slide__status {
    margin-right: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-right-s,
    .countdown__component .vipps-countdown-section:not(:last-child),
    .contact-form__icon,
    .product-slide__status {
        margin-right: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-right-s,
    .countdown__component .vipps-countdown-section:not(:last-child),
    .contact-form__icon,
    .product-slide__status {
        margin-right: 1.6875rem
    }
}

.responsive-padding-right-s,
.help-guide {
    padding-right: .5625rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-right-s,
    .help-guide {
        padding-right: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-right-s,
    .help-guide {
        padding-right: 1.6875rem
    }
}

.responsive-negative-margin-s {
    margin: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-s {
        margin: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-s {
        margin: -1.6875rem
    }
}

.responsive-negative-padding-s {
    padding: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-s {
        padding: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-s {
        padding: -1.6875rem
    }
}

.responsive-negative-margin-top-s {
    margin-top: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-s {
        margin-top: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-s {
        margin-top: -1.6875rem
    }
}

.responsive-negative-padding-top-s {
    padding-top: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-s {
        padding-top: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-s {
        padding-top: -1.6875rem
    }
}

.responsive-negative-margin-bottom-s {
    margin-bottom: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-s {
        margin-bottom: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-s {
        margin-bottom: -1.6875rem
    }
}

.responsive-negative-padding-bottom-s {
    padding-bottom: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-s {
        padding-bottom: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-s {
        padding-bottom: -1.6875rem
    }
}

.responsive-negative-margin-left-s {
    margin-left: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-s {
        margin-left: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-s {
        margin-left: -1.6875rem
    }
}

.responsive-negative-padding-left-s {
    padding-left: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-s {
        padding-left: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-s {
        padding-left: -1.6875rem
    }
}

.responsive-negative-margin-right-s {
    margin-right: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-s {
        margin-right: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-s {
        margin-right: -1.6875rem
    }
}

.responsive-negative-padding-right-s {
    padding-right: -.5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-s {
        padding-right: -1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-s {
        padding-right: -1.6875rem
    }
}

.responsive-margin-m {
    margin: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-m {
        margin: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-m {
        margin: 2.25rem
    }
}

.responsive-padding-m,
.card {
    padding: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-m,
    .card {
        padding: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-m,
    .card {
        padding: 2.25rem
    }
}

.responsive-margin-top-m,
.image-with-text__image--bottom,
.hero-with-text__illustration--bottom,
.countdown__component--bottom,
.card__image,
.strike__component--bottom {
    margin-top: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-top-m,
    .image-with-text__image--bottom,
    .hero-with-text__illustration--bottom,
    .countdown__component--bottom,
    .card__image,
    .strike__component--bottom {
        margin-top: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-top-m,
    .image-with-text__image--bottom,
    .hero-with-text__illustration--bottom,
    .countdown__component--bottom,
    .card__image,
    .strike__component--bottom {
        margin-top: 2.25rem
    }
}

.responsive-padding-top-m,
.header-vippsweb,
.triple-service__panel {
    padding-top: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-top-m,
    .header-vippsweb,
    .triple-service__panel {
        padding-top: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-top-m,
    .header-vippsweb,
    .triple-service__panel {
        padding-top: 2.25rem
    }
}

.responsive-margin-bottom-m,
.image-with-text__image--left,
.image-with-text__image--right,
.image-with-text__image--top,
.hero-with-text__illustration--left,
.hero-with-text__illustration--right,
.hero-with-text__illustration--top,
.countdown__component--left,
.countdown__component--top,
.card__body,
.card-list__text,
.loading,
.strike__component--left,
.strike__component--top,
.featured-content__text,
.featured-content__image,
.statement__title,
.statement__image,
.service__description,
.triple-service .rich-text,
.help-categories,
.help-footer,
.help-footer__title,
.product-presentation__heading,
.product-slide__illustration {
    margin-bottom: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-m,
    .image-with-text__image--left,
    .image-with-text__image--right,
    .image-with-text__image--top,
    .hero-with-text__illustration--left,
    .hero-with-text__illustration--right,
    .hero-with-text__illustration--top,
    .countdown__component--left,
    .countdown__component--top,
    .card__body,
    .card-list__text,
    .loading,
    .strike__component--left,
    .strike__component--top,
    .featured-content__text,
    .featured-content__image,
    .statement__title,
    .statement__image,
    .service__description,
    .triple-service .rich-text,
    .help-categories,
    .help-footer,
    .help-footer__title,
    .product-presentation__heading,
    .product-slide__illustration {
        margin-bottom: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-m,
    .image-with-text__image--left,
    .image-with-text__image--right,
    .image-with-text__image--top,
    .hero-with-text__illustration--left,
    .hero-with-text__illustration--right,
    .hero-with-text__illustration--top,
    .countdown__component--left,
    .countdown__component--top,
    .card__body,
    .card-list__text,
    .loading,
    .strike__component--left,
    .strike__component--top,
    .featured-content__text,
    .featured-content__image,
    .statement__title,
    .statement__image,
    .service__description,
    .triple-service .rich-text,
    .help-categories,
    .help-footer,
    .help-footer__title,
    .product-presentation__heading,
    .product-slide__illustration {
        margin-bottom: 2.25rem
    }
}

.responsive-padding-bottom-m,
.header-vippsweb,
.triple-service__panel {
    padding-bottom: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-bottom-m,
    .header-vippsweb,
    .triple-service__panel {
        padding-bottom: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-bottom-m,
    .header-vippsweb,
    .triple-service__panel {
        padding-bottom: 2.25rem
    }
}

.responsive-margin-left-m,
.strike__component .strike__mobile__buttons .strike__mobile__link {
    margin-left: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-left-m,
    .strike__component .strike__mobile__buttons .strike__mobile__link {
        margin-left: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-left-m,
    .strike__component .strike__mobile__buttons .strike__mobile__link {
        margin-left: 2.25rem
    }
}

.responsive-padding-left-m,
.triple-service__panel {
    padding-left: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-left-m,
    .triple-service__panel {
        padding-left: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-left-m,
    .triple-service__panel {
        padding-left: 2.25rem
    }
}

.responsive-margin-right-m {
    margin-right: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-right-m {
        margin-right: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-right-m {
        margin-right: 2.25rem
    }
}

.responsive-padding-right-m,
.triple-service__panel {
    padding-right: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-right-m,
    .triple-service__panel {
        padding-right: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-right-m,
    .triple-service__panel {
        padding-right: 2.25rem
    }
}

.responsive-negative-margin-m {
    margin: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-m {
        margin: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-m {
        margin: -2.25rem
    }
}

.responsive-negative-padding-m {
    padding: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-m {
        padding: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-m {
        padding: -2.25rem
    }
}

.responsive-negative-margin-top-m {
    margin-top: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-m {
        margin-top: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-m {
        margin-top: -2.25rem
    }
}

.responsive-negative-padding-top-m {
    padding-top: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-m {
        padding-top: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-m {
        padding-top: -2.25rem
    }
}

.responsive-negative-margin-bottom-m {
    margin-bottom: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-m {
        margin-bottom: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-m {
        margin-bottom: -2.25rem
    }
}

.responsive-negative-padding-bottom-m {
    padding-bottom: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-m {
        padding-bottom: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-m {
        padding-bottom: -2.25rem
    }
}

.responsive-negative-margin-left-m {
    margin-left: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-m {
        margin-left: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-m {
        margin-left: -2.25rem
    }
}

.responsive-negative-padding-left-m {
    padding-left: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-m {
        padding-left: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-m {
        padding-left: -2.25rem
    }
}

.responsive-negative-margin-right-m {
    margin-right: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-m {
        margin-right: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-m {
        margin-right: -2.25rem
    }
}

.responsive-negative-padding-right-m {
    padding-right: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-m {
        padding-right: -1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-m {
        padding-right: -2.25rem
    }
}

.responsive-margin-l {
    margin: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-l {
        margin: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-l {
        margin: 2.8125rem
    }
}

.responsive-padding-l,
.hero-with-text {
    padding: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-l,
    .hero-with-text {
        padding: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-l,
    .hero-with-text {
        padding: 2.8125rem
    }
}

.responsive-margin-top-l,
.title,
.title-rich {
    margin-top: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-top-l,
    .title,
    .title-rich {
        margin-top: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-top-l,
    .title,
    .title-rich {
        margin-top: 2.8125rem
    }
}

.responsive-padding-top-l,
.help-header,
.contact-confirmation {
    padding-top: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-top-l,
    .help-header,
    .contact-confirmation {
        padding-top: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-top-l,
    .help-header,
    .contact-confirmation {
        padding-top: 2.8125rem
    }
}

.responsive-margin-bottom-l,
.title,
.title-rich,
.help-header {
    margin-bottom: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-l,
    .title,
    .title-rich,
    .help-header {
        margin-bottom: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-l,
    .title,
    .title-rich,
    .help-header {
        margin-bottom: 2.8125rem
    }
}

.responsive-padding-bottom-l,
.help-header {
    padding-bottom: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-bottom-l,
    .help-header {
        padding-bottom: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-bottom-l,
    .help-header {
        padding-bottom: 2.8125rem
    }
}

.responsive-margin-left-l {
    margin-left: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-left-l {
        margin-left: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-left-l {
        margin-left: 2.8125rem
    }
}

.responsive-padding-left-l {
    padding-left: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-left-l {
        padding-left: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-left-l {
        padding-left: 2.8125rem
    }
}

.responsive-margin-right-l {
    margin-right: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-right-l {
        margin-right: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-right-l {
        margin-right: 2.8125rem
    }
}

.responsive-padding-right-l {
    padding-right: 1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-right-l {
        padding-right: 2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-right-l {
        padding-right: 2.8125rem
    }
}

.responsive-negative-margin-l {
    margin: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-l {
        margin: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-l {
        margin: -2.8125rem
    }
}

.responsive-negative-padding-l {
    padding: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-l {
        padding: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-l {
        padding: -2.8125rem
    }
}

.responsive-negative-margin-top-l {
    margin-top: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-l {
        margin-top: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-l {
        margin-top: -2.8125rem
    }
}

.responsive-negative-padding-top-l {
    padding-top: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-l {
        padding-top: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-l {
        padding-top: -2.8125rem
    }
}

.responsive-negative-margin-bottom-l {
    margin-bottom: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-l {
        margin-bottom: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-l {
        margin-bottom: -2.8125rem
    }
}

.responsive-negative-padding-bottom-l {
    padding-bottom: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-l {
        padding-bottom: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-l {
        padding-bottom: -2.8125rem
    }
}

.responsive-negative-margin-left-l {
    margin-left: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-l {
        margin-left: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-l {
        margin-left: -2.8125rem
    }
}

.responsive-negative-padding-left-l {
    padding-left: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-l {
        padding-left: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-l {
        padding-left: -2.8125rem
    }
}

.responsive-negative-margin-right-l {
    margin-right: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-l {
        margin-right: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-l {
        margin-right: -2.8125rem
    }
}

.responsive-negative-padding-right-l {
    padding-right: -1.6875rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-l {
        padding-right: -2.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-l {
        padding-right: -2.8125rem
    }
}

.responsive-margin-xl {
    margin: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-xl {
        margin: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-xl {
        margin: 3.375rem
    }
}

.responsive-padding-xl {
    padding: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-xl {
        padding: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-xl {
        padding: 3.375rem
    }
}

.responsive-margin-top-xl {
    margin-top: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-top-xl {
        margin-top: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-top-xl {
        margin-top: 3.375rem
    }
}

.responsive-padding-top-xl,
.card-list {
    padding-top: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-top-xl,
    .card-list {
        padding-top: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-top-xl,
    .card-list {
        padding-top: 3.375rem
    }
}

.responsive-margin-bottom-xl,
.block-container--white,
.block-container--light-orange,
.block-container--storm-grey,
.block-container--blueberry,
.preamble,
.card__image,
.card-list__preamble,
.card-list__cards>.cell,
.contact-form {
    margin-bottom: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-xl,
    .block-container--white,
    .block-container--light-orange,
    .block-container--storm-grey,
    .block-container--blueberry,
    .preamble,
    .card__image,
    .card-list__preamble,
    .card-list__cards>.cell,
    .contact-form {
        margin-bottom: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-xl,
    .block-container--white,
    .block-container--light-orange,
    .block-container--storm-grey,
    .block-container--blueberry,
    .preamble,
    .card__image,
    .card-list__preamble,
    .card-list__cards>.cell,
    .contact-form {
        margin-bottom: 3.375rem
    }
}

.responsive-padding-bottom-xl,
.card-list,
.contact-confirmation {
    padding-bottom: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-bottom-xl,
    .card-list,
    .contact-confirmation {
        padding-bottom: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-bottom-xl,
    .card-list,
    .contact-confirmation {
        padding-bottom: 3.375rem
    }
}

.responsive-margin-left-xl,
.menu__item {
    margin-left: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-left-xl,
    .menu__item {
        margin-left: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-left-xl,
    .menu__item {
        margin-left: 3.375rem
    }
}

.responsive-padding-left-xl {
    padding-left: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-left-xl {
        padding-left: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-left-xl {
        padding-left: 3.375rem
    }
}

.responsive-margin-right-xl {
    margin-right: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-right-xl {
        margin-right: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-right-xl {
        margin-right: 3.375rem
    }
}

.responsive-padding-right-xl {
    padding-right: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-right-xl {
        padding-right: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-right-xl {
        padding-right: 3.375rem
    }
}

.responsive-negative-margin-xl {
    margin: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-xl {
        margin: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-xl {
        margin: -3.375rem
    }
}

.responsive-negative-padding-xl {
    padding: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-xl {
        padding: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-xl {
        padding: -3.375rem
    }
}

.responsive-negative-margin-top-xl,
.block-container--light-orange+.block-container--light-orange,
.block-container--light-orange+.block-container--storm-grey,
.block-container--light-orange+.block-container--blueberry,
.block-container--blueberry+.block-container--light-orange,
.block-container--blueberry+.block-container--storm-grey,
.block-container--blueberry+.block-container--blueberry,
.block-container--storm-grey+.block-container--light-orange,
.block-container--storm-grey+.block-container--storm-grey,
.block-container--storm-grey+.block-container--blueberry {
    margin-top: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-negative-margin-top-xl,
    .block-container--light-orange+.block-container--light-orange,
    .block-container--light-orange+.block-container--storm-grey,
    .block-container--light-orange+.block-container--blueberry,
    .block-container--blueberry+.block-container--light-orange,
    .block-container--blueberry+.block-container--storm-grey,
    .block-container--blueberry+.block-container--blueberry,
    .block-container--storm-grey+.block-container--light-orange,
    .block-container--storm-grey+.block-container--storm-grey,
    .block-container--storm-grey+.block-container--blueberry {
        margin-top: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-negative-margin-top-xl,
    .block-container--light-orange+.block-container--light-orange,
    .block-container--light-orange+.block-container--storm-grey,
    .block-container--light-orange+.block-container--blueberry,
    .block-container--blueberry+.block-container--light-orange,
    .block-container--blueberry+.block-container--storm-grey,
    .block-container--blueberry+.block-container--blueberry,
    .block-container--storm-grey+.block-container--light-orange,
    .block-container--storm-grey+.block-container--storm-grey,
    .block-container--storm-grey+.block-container--blueberry {
        margin-top: -3.375rem
    }
}

.responsive-negative-padding-top-xl {
    padding-top: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-xl {
        padding-top: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-xl {
        padding-top: -3.375rem
    }
}

.responsive-negative-margin-bottom-xl {
    margin-bottom: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-xl {
        margin-bottom: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-xl {
        margin-bottom: -3.375rem
    }
}

.responsive-negative-padding-bottom-xl {
    padding-bottom: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-xl {
        padding-bottom: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-xl {
        padding-bottom: -3.375rem
    }
}

.responsive-negative-margin-left-xl {
    margin-left: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-xl {
        margin-left: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-xl {
        margin-left: -3.375rem
    }
}

.responsive-negative-padding-left-xl {
    padding-left: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-xl {
        padding-left: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-xl {
        padding-left: -3.375rem
    }
}

.responsive-negative-margin-right-xl {
    margin-right: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-xl {
        margin-right: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-xl {
        margin-right: -3.375rem
    }
}

.responsive-negative-padding-right-xl {
    padding-right: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-xl {
        padding-right: -2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-xl {
        padding-right: -3.375rem
    }
}

.responsive-margin-xxl {
    margin: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-xxl {
        margin: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-xxl {
        margin: 4.5rem
    }
}

.responsive-padding-xxl {
    padding: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-xxl {
        padding: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-xxl {
        padding: 4.5rem
    }
}

.responsive-margin-top-xxl {
    margin-top: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-top-xxl {
        margin-top: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-top-xxl {
        margin-top: 4.5rem
    }
}

.responsive-padding-top-xxl,
.block-container--light-orange,
.block-container--storm-grey,
.block-container--blueberry,
.block-container--breakout,
.service__panel {
    padding-top: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-top-xxl,
    .block-container--light-orange,
    .block-container--storm-grey,
    .block-container--blueberry,
    .block-container--breakout,
    .service__panel {
        padding-top: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-top-xxl,
    .block-container--light-orange,
    .block-container--storm-grey,
    .block-container--blueberry,
    .block-container--breakout,
    .service__panel {
        padding-top: 4.5rem
    }
}

.responsive-margin-bottom-xxl,
.image-caption {
    margin-bottom: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-xxl,
    .image-caption {
        margin-bottom: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-xxl,
    .image-caption {
        margin-bottom: 4.5rem
    }
}

.responsive-padding-bottom-xxl,
.content-container>*:last-child,
.block-container--light-orange,
.block-container--storm-grey,
.block-container--blueberry,
.block-container--breakout,
.service__panel {
    padding-bottom: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-padding-bottom-xxl,
    .content-container>*:last-child,
    .block-container--light-orange,
    .block-container--storm-grey,
    .block-container--blueberry,
    .block-container--breakout,
    .service__panel {
        padding-bottom: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-padding-bottom-xxl,
    .content-container>*:last-child,
    .block-container--light-orange,
    .block-container--storm-grey,
    .block-container--blueberry,
    .block-container--breakout,
    .service__panel {
        padding-bottom: 4.5rem
    }
}

.responsive-margin-left-xxl {
    margin-left: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-left-xxl {
        margin-left: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-left-xxl {
        margin-left: 4.5rem
    }
}

.responsive-padding-left-xxl {
    padding-left: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-left-xxl {
        padding-left: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-left-xxl {
        padding-left: 4.5rem
    }
}

.responsive-margin-right-xxl {
    margin-right: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-right-xxl {
        margin-right: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-right-xxl {
        margin-right: 4.5rem
    }
}

.responsive-padding-right-xxl {
    padding-right: 2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-right-xxl {
        padding-right: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-right-xxl {
        padding-right: 4.5rem
    }
}

.responsive-negative-margin-xxl {
    margin: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-xxl {
        margin: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-xxl {
        margin: -4.5rem
    }
}

.responsive-negative-padding-xxl {
    padding: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-xxl {
        padding: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-xxl {
        padding: -4.5rem
    }
}

.responsive-negative-margin-top-xxl {
    margin-top: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-xxl {
        margin-top: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-xxl {
        margin-top: -4.5rem
    }
}

.responsive-negative-padding-top-xxl {
    padding-top: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-xxl {
        padding-top: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-xxl {
        padding-top: -4.5rem
    }
}

.responsive-negative-margin-bottom-xxl {
    margin-bottom: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-xxl {
        margin-bottom: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-xxl {
        margin-bottom: -4.5rem
    }
}

.responsive-negative-padding-bottom-xxl {
    padding-bottom: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-xxl {
        padding-bottom: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-xxl {
        padding-bottom: -4.5rem
    }
}

.responsive-negative-margin-left-xxl {
    margin-left: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-xxl {
        margin-left: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-xxl {
        margin-left: -4.5rem
    }
}

.responsive-negative-padding-left-xxl {
    padding-left: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-xxl {
        padding-left: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-xxl {
        padding-left: -4.5rem
    }
}

.responsive-negative-margin-right-xxl {
    margin-right: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-xxl {
        margin-right: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-xxl {
        margin-right: -4.5rem
    }
}

.responsive-negative-padding-right-xxl {
    padding-right: -2.8125rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-xxl {
        padding-right: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-xxl {
        padding-right: -4.5rem
    }
}

.responsive-margin-xxxl {
    margin: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-xxxl {
        margin: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-xxxl {
        margin: 5.625rem
    }
}

.responsive-padding-xxxl {
    padding: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-xxxl {
        padding: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-xxxl {
        padding: 5.625rem
    }
}

.responsive-margin-top-xxxl {
    margin-top: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-top-xxxl {
        margin-top: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-top-xxxl {
        margin-top: 5.625rem
    }
}

.responsive-padding-top-xxxl {
    padding-top: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-top-xxxl {
        padding-top: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-top-xxxl {
        padding-top: 5.625rem
    }
}

.responsive-margin-bottom-xxxl,
.featured-content,
.service,
.triple-service {
    margin-bottom: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {

    .responsive-margin-bottom-xxxl,
    .featured-content,
    .service,
    .triple-service {
        margin-bottom: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {

    .responsive-margin-bottom-xxxl,
    .featured-content,
    .service,
    .triple-service {
        margin-bottom: 5.625rem
    }
}

.responsive-padding-bottom-xxxl {
    padding-bottom: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-bottom-xxxl {
        padding-bottom: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-bottom-xxxl {
        padding-bottom: 5.625rem
    }
}

.responsive-margin-left-xxxl {
    margin-left: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-left-xxxl {
        margin-left: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-left-xxxl {
        margin-left: 5.625rem
    }
}

.responsive-padding-left-xxxl {
    padding-left: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-left-xxxl {
        padding-left: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-left-xxxl {
        padding-left: 5.625rem
    }
}

.responsive-margin-right-xxxl {
    margin-right: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-margin-right-xxxl {
        margin-right: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-margin-right-xxxl {
        margin-right: 5.625rem
    }
}

.responsive-padding-right-xxxl {
    padding-right: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-padding-right-xxxl {
        padding-right: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-padding-right-xxxl {
        padding-right: 5.625rem
    }
}

.responsive-negative-margin-xxxl {
    margin: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-xxxl {
        margin: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-xxxl {
        margin: -5.625rem
    }
}

.responsive-negative-padding-xxxl {
    padding: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-xxxl {
        padding: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-xxxl {
        padding: -5.625rem
    }
}

.responsive-negative-margin-top-xxxl {
    margin-top: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-top-xxxl {
        margin-top: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-top-xxxl {
        margin-top: -5.625rem
    }
}

.responsive-negative-padding-top-xxxl {
    padding-top: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-top-xxxl {
        padding-top: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-top-xxxl {
        padding-top: -5.625rem
    }
}

.responsive-negative-margin-bottom-xxxl {
    margin-bottom: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-bottom-xxxl {
        margin-bottom: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-bottom-xxxl {
        margin-bottom: -5.625rem
    }
}

.responsive-negative-padding-bottom-xxxl {
    padding-bottom: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-bottom-xxxl {
        padding-bottom: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-bottom-xxxl {
        padding-bottom: -5.625rem
    }
}

.responsive-negative-margin-left-xxxl {
    margin-left: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-left-xxxl {
        margin-left: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-left-xxxl {
        margin-left: -5.625rem
    }
}

.responsive-negative-padding-left-xxxl {
    padding-left: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-left-xxxl {
        padding-left: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-left-xxxl {
        padding-left: -5.625rem
    }
}

.responsive-negative-margin-right-xxxl {
    margin-right: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-margin-right-xxxl {
        margin-right: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-margin-right-xxxl {
        margin-right: -5.625rem
    }
}

.responsive-negative-padding-right-xxxl {
    padding-right: -2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .responsive-negative-padding-right-xxxl {
        padding-right: -3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .responsive-negative-padding-right-xxxl {
        padding-right: -5.625rem
    }
}

.fade-enter,
.fade-appear {
    opacity: 0.01
}

.fade-enter-active,
.fade-appear-active {
    opacity: 1;
    transition: opacity 350ms cubic-bezier(0.4, 0, 1, 1)
}

.fade-exit {
    opacity: 1
}

.fade-exit-active {
    opacity: 0;
    transition: opacity 350ms cubic-bezier(0.4, 0, 1, 1)
}

.expand-vertically-enter,
.expand-vertically-appear {
    transform: scaleY(0)
}

.expand-vertically-enter-active,
.expand-vertically-appear-active {
    transition: transform 350ms 150ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: scaleY(1);
    transform-origin: top
}

.expand-enter,
.expand-appear {
    transform: scale(0)
}

.expand-enter-active,
.expand-appear-active {
    transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    transform-origin: center top
}

.rotate-enter,
.rotate-appear {
    transform: rotate(-180deg)
}

.rotate-enter-active,
.rotate-appear-active {
    transition: transform 350ms 500ms cubic-bezier(0, 0, 0.2, 1);
    transform: rotate(0)
}

.no-transition-delay {
    transition-delay: 0s
}

.inflate-enter .card-list,
.inflate-appear .card-list {
    transform: scaleY(0)
}

.inflate-enter .card-list__header,
.inflate-appear .card-list__header,
.inflate-enter .card-list__cards,
.inflate-appear .card-list__cards,
.inflate-enter .card-list__text,
.inflate-appear .card-list__text {
    visibility: hidden
}

.inflate-enter.inflate-enter-active .card-list,
.inflate-appear.inflate-appear-active .card-list {
    transition: transform 250ms cubic-bezier(0.4, 0, 1, 1);
    transform: scaleY(1);
    transform-origin: top
}

.inflate-enter .card,
.inflate-appear .card {
    opacity: 0
}

.card-list .card-list__cards .cell:nth-child(1) .card {
    transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(2) .card {
    transition: opacity 150ms 50ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(3) .card {
    transition: opacity 150ms 100ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(4) .card {
    transition: opacity 150ms 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(5) .card {
    transition: opacity 150ms 200ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(6) .card {
    transition: opacity 150ms 250ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(7) .card {
    transition: opacity 150ms 300ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(8) .card {
    transition: opacity 150ms 350ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(9) .card {
    transition: opacity 150ms 400ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(10) .card {
    transition: opacity 150ms 450ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(11) .card {
    transition: opacity 150ms 500ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-list .card-list__cards .cell:nth-child(12) .card {
    transition: opacity 150ms 550ms cubic-bezier(0.4, 0, 0.2, 1)
}

.full-width {
    width: 100%
}

.overflow-hidden {
    overflow: hidden
}

html,
body {
    overflow-x: hidden
}

main,
header,
footer,
article,
aside {
    display: block
}

.content-container {
    min-height: calc(100vh - 492px - 107px)
}

.content-container>*:last-child,
.block-container>*:last-child {
    margin-bottom: 0
}

.block-container--white {
    background-color: #fff
}

.block-container--light-orange {
    background-color: #fff4ec
}

.block-container--light-orange .title {
    color: #161225 !important
}

.block-container--storm-grey {
    background-color: #efeef3
}

.block-container--blueberry {
    color: #fff;
    background-color: #541b86
}

.block-container--blueberry a:not(.vipps-button) {
    color: #fff;
    border-bottom: 1px solid #fff
}

.block-container--blueberry a:not(.vipps-button):hover,
.block-container--blueberry a:not(.vipps-button):focus,
.block-container--blueberry a:not(.vipps-button):active {
    color: #fff;
    border-bottom: none;
    transition: color 150ms
}

.block-container--blueberry h2 {
    color: #fff
}

.block-container--breakout {
    position: relative;
    margin-bottom: 0;
    color: #fff;
    background-color: #541b86
}

.block-container--breakout:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 9999px;
    content: '';
    background: #541b86
}

.block-container--breakout * {
    position: relative
}

blockquote {
    padding-left: 1.125rem;
    margin-left: 1.125rem;
    font-weight: bold;
    border-left: #ff5b24 solid 3px
}

.map-infobox-content {
    width: 320px;
    padding-bottom: 16px;
    font-family: Vipps;
    font-size: 14px;
    font-weight: normal;
    background: white
}

.map-infobox-merchant-name {
    margin-top: 16px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #938fa8
}

.map-infobox-address {
    margin-top: 16px
}

.map-infobox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px
}

.location-search-wrapper {
    width: 70%;
    max-width: 400px;
    margin-top: 3px
}

.map__searchbox-input {
    position: absolute;
    top: 0px;
    left: 0px;
    box-sizing: border-box;
    width: 240px;
    height: 32px;
    padding: 0 12px;
    margin: 32px;
    font-size: 14px;
    text-overflow: ellipses;
    border: 1px solid transparent;
    border-radius: 3px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3)
}

.file-list-block-list__header {
    margin-bottom: 2.8125rem
}

.file-list-block-list__container {
    margin: 2.8125rem 0
}

.gobistories-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-items: flex-start;
    justify-content: space-evenly
}

.gobistories-container .gobi-story {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 10rem
}

.gobistories-container .gobi-story .gobi-story-title {
    margin: 1.125rem .5625rem;
    text-align: center
}

.gobi-story-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));
    transition: 0.3s
}

.gobi-story-image-wrapper .gobi-story-image {
    width: 7rem;
    height: 7rem;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    background-position: center;
    background-size: cover;
    transition: 0.3s;
    object-fit: cover
}

.gobi-story-image-wrapper:hover {
    width: 8rem;
    height: 8rem;
    transition: 0.3s
}

.gobi-story-image-wrapper:hover .gobi-story-image {
    width: 8rem;
    height: 8rem;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    transition: 0.3s
}

.gobistories-background-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px)
}

.gobistories-modal {
    padding: 0;
    background: transparent;
    border: 0
}

.gobistories-player {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0
}

.gobistories-player iframe {
    position: absolute;
    display: block;
    width: 100%;
    height: 99%;
    overflow: hidden;
    background: #000 none repeat scroll 0% 0%;
    border: 0;
    border-radius: 10px
}

.gobistories-player .gobistories-overlay-button {
    position: absolute;
    right: 5%;
    display: block;
    width: 3vh;
    height: 3vh;
    color: #161225;
    background: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    border-radius: 0.5vh;
    opacity: 0.5
}

.gobistories-player .gobistories-overlay-button svg {
    width: 3vh;
    height: 3vh
}

.gobistories-player .gobistories-close-button {
    top: 5%
}

.gobistories-player .gobistories-fs-button {
    top: 10%
}

@media print,
screen and (max-width: 63.99875em) {

    .image-with-text__image--left,
    .image-with-text__image--right {
        display: block;
        margin-right: auto;
        margin-left: auto
    }
}

@media print,
screen and (min-width: 64em) {

    .image-with-text__image--left,
    .image-with-text__image--right {
        margin-bottom: 0
    }
}

.linkbox-with-text {
    padding: 3vw;
    background-color: #fff;
    border-radius: 1vw;
    opacity: 0.8
}

.block-linkbox_with_title {
    margin: 2vw
}

.parallax-background-size-cover {
    background-size: cover
}

.parallax-background-size-small {
    background-size: 50%
}

.parallax-justify-start {
    justify-content: flex-start
}

.parallax-justify-end {
    justify-content: flex-end
}

.parallax-justify-center {
    justify-content: center
}

.parallax-parent {
    height: 600px;
    overflow: hidden
}

.parallax-background {
    position: relative;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center
}

.parallax-background h1 {
    color: #ff5b24
}

.parallax-aligned-content {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden
}

.parallax-content-stream {
    position: absolute;
    width: auto
}

@media print,
screen and (min-width: 47.5em) {
    .parallax-content-stream {
        max-width: 40%
    }
}

.prices-image {
    text-align: center
}

@media print,
screen and (min-width: 47.5em) and (max-width: 63.99875em) {
    .prices-image {
        margin-top: .5625rem;
        margin-bottom: .5625rem
    }
}

@media print,
screen and (max-width: 47.49875em) {
    .prices-image {
        margin-bottom: 1.125rem
    }
}

@media print,
screen and (max-width: 47.49875em) {
    .prices-text {
        margin-bottom: 2.25rem
    }
}

.price-table thead {
    color: #fff;
    background-color: #541b86
}

.price-table thead tr {
    background-color: transparent
}

.price-table thead th {
    padding: 1.125rem 1.6875rem 1.125rem 1.6875rem !important;
    font-weight: bold;
    color: #fff;
    border: none
}

.price-table tbody td {
    border: none !important
}

.price-table tbody td .table-header {
    font-weight: bold;
    color: #541b86
}

.price-table tbody th {
    color: #fff;
    background-color: #541b86
}

.price-table tbody tr {
    padding: 16px 0
}

.price-table tbody tr:nth-child(even) {
    background-color: #efeef3
}

.price-table tbody tr:nth-child(odd) {
    background-color: #f6f6f9
}

.price-table tbody .prices-table-mobile-caption {
    display: table-row
}

@media print,
screen and (min-width: 64em) {
    .price-table tbody .prices-table-mobile-caption {
        display: none
    }
}

.price-table--orange thead {
    background-color: #ff5b24
}

.price-table--orange tbody th {
    background-color: #ff5b24
}

.price-table--blueberry thead {
    background-color: #541b86
}

.price-table--blueberry tbody th {
    background-color: #541b86
}

.price-table--black thead {
    background-color: #161225
}

.price-table--black tbody th {
    background-color: #161225
}

.price-table--light-orange thead {
    background-color: #fff4ec
}

.price-table--light-orange tbody th {
    background-color: #fff4ec
}

.price-table--turquoise thead {
    background-color: #59cbe8
}

.price-table--turquoise tbody th {
    background-color: #59cbe8
}

.price-table--shiny-blueberry thead {
    background-color: #722ac9
}

.price-table--shiny-blueberry tbody th {
    background-color: #722ac9
}

.price-table--rust thead {
    background-color: #9b3716
}

.price-table--rust tbody th {
    background-color: #9b3716
}

.price-table--tangerine thead {
    background-color: #ff985f
}

.price-table--tangerine tbody th {
    background-color: #ff985f
}

.price-table--peach thead {
    background-color: #ffb992
}

.price-table--peach tbody th {
    background-color: #ffb992
}

.price-table--light-peach thead {
    background-color: #ffd3bb
}

.price-table--light-peach tbody th {
    background-color: #ffd3bb
}

.price-table--dark-purple thead {
    background-color: #706b8b
}

.price-table--dark-purple tbody th {
    background-color: #706b8b
}

.price-table--carbon-purple thead {
    background-color: #938fa8
}

.price-table--carbon-purple tbody th {
    background-color: #938fa8
}

.price-table--light-purple thead {
    background-color: _ #c9c6d7
}

.price-table--light-purple tbody th {
    background-color: _ #c9c6d7
}

.price-table--storm-grey thead {
    background-color: #efeef3
}

.price-table--storm-grey tbody th {
    background-color: #efeef3
}

.price-table--cloud-grey thead {
    background-color: #f6f6f9
}

.price-table--cloud-grey tbody th {
    background-color: #f6f6f9
}

.price-table--fog-grey thead {
    background-color: #fcfbfe
}

.price-table--fog-grey tbody th {
    background-color: #fcfbfe
}

.price-table--white thead {
    background-color: #fff
}

.price-table--white tbody th {
    background-color: #fff
}

.price-table--green thead {
    background-color: #006628
}

.price-table--green tbody th {
    background-color: #006628
}

.price-table--light-green thead {
    background-color: #d7ecdf
}

.price-table--light-green tbody th {
    background-color: #d7ecdf
}

.price-table--red thead {
    background-color: #c60000
}

.price-table--red tbody th {
    background-color: #c60000
}

.price-table--light-red thead {
    background-color: #fde5e4
}

.price-table--light-red tbody th {
    background-color: #fde5e4
}

.hero-with-text {
    display: flex;
    width: auto;
    min-width: 800px;
    height: 600px;
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover
}

.hero-with-text-only {
    height: 300px
}

@media print,
screen and (max-width: 63.99875em) {
    .hero-with-text {
        width: auto;
        min-width: unset;
        height: auto;
        background-size: cover
    }
}

.hero-with-text__container {
    flex-grow: 1;
    align-content: center;
    word-break: break-word
}

@media print,
screen and (max-width: 63.99875em) {

    .hero-with-text__illustration--left,
    .hero-with-text__illustration--right {
        display: block;
        margin-right: auto;
        margin-left: auto
    }
}

@media print,
screen and (min-width: 64em) {

    .hero-with-text__illustration--left,
    .hero-with-text__illustration--right {
        margin-bottom: 0
    }
}

.cookie-consent_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px)
}

.cookie-consent_modal {
    position: absolute;
    top: 120px;
    left: 50%;
    width: 750px;
    height: auto;
    min-height: 400px;
    padding: 1.6875rem;
    margin-left: -375px;
    overflow: auto;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none
}

.cookie-consent_modal_settings {
    top: 4.5rem;
    min-height: 670px;
    max-height: calc(100% - 4.5rem)
}

.cookie-consent_modal_settings .cookie-consent_container {
    height: auto;
    min-height: 100%
}

.cookie-consent_modal_settings .cookie-consent_settings_container {
    height: calc(100% - 4.5rem)
}

@media print,
screen and (max-width: 47.49875em) {
    .cookie-consent_modal {
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        min-height: 100%;
        margin-left: 0;
        border-radius: 0
    }

    .cookie-consent_modal--settings {
        min-height: 100%;
        max-height: 100%
    }
}

.cookie-consent_modal .display-linebreak {
    white-space: pre-line
}

.cookie-consent_close {
    position: absolute;
    top: 2.25rem;
    right: 2.25rem
}

.cookie-consent_save {
    display: flex;
    margin: 10px auto
}

.cookie-consent-buttons {
    display: flex
}

@media print,
screen and (max-width: 47.49875em) {
    .cookie-consent-buttons {
        margin-left: unset
    }

    .cookie-consent-buttons .vipps-button__style-link {
        margin-top: 1.125rem
    }
}

@media print,
screen and (max-width: 47.49875em) {
    .cookie-consent-buttons {
        flex-direction: column
    }

    .cookie-consent-buttons .vipps-button {
        margin: auto
    }

    .cookie-consent-buttons .vipps-button__style-link {
        margin-top: 4px
    }
}

.cookie-consent-buttons--stacked {
    flex-direction: column
}

.cookie-consent-buttons--stacked .vipps-button {
    margin: auto
}

.cookie-consent_divider {
    margin: 1.125rem 0;
    border-top: 1px solid #efeef3
}

.cookie-consent_footer {
    margin-top: 1.125rem;
    text-align: center
}

.cookie-consent_footer p {
    margin-bottom: 0
}

@media print,
screen and (max-width: 63.99875em) {
    .countdown__component--left {
        display: block;
        margin-right: auto;
        margin-left: auto
    }
}

@media print,
screen and (min-width: 64em) {
    .countdown__component--left {
        margin-bottom: 0
    }
}

.countdown__component .vipps-countdown {
    text-align: center
}

.countdown__component .vipps-countdown-section-value {
    margin-right: 4px
}

@media print,
screen and (max-width: 63.99875em) {

    .countdown__component .vipps-countdown-section-title,
    .countdown__component .vipps-countdown-section-value {
        font-size: 18px;
        line-height: 24px
    }
}

.arrow-button {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.125rem;
    border-radius: 50%
}

@media print,
screen and (min-width: 47.5em) {
    .arrow-button {
        width: 2.8125rem;
        height: 2.8125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .arrow-button {
        width: 3.375rem;
        height: 3.375rem
    }
}

.arrow-button:hover,
.arrow-button:focus,
.arrow-button:active {
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-position 150ms cubic-bezier(0.4, 0, 0.2, 1), background-size 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.arrow-button--open {
    background-image: url("../media/extra-images/vipps-arrow-down-white.svg")
}

.arrow-button--open:hover,
.arrow-button--open:focus,
.arrow-button--open:active {
    background-position: center bottom .5625rem
}

.arrow-button--exit {
    background-image: url("../media/extra-images/close-icon-white.svg")
}

.arrow-button--exit:hover,
.arrow-button--exit:focus,
.arrow-button--exit:active {
    background-position: center;
    background-size: 1.6875rem
}

.arrow-button--close {
    background-color: #fff;
    background-image: url("../media/extra-images/close-icon.svg")
}

.arrow-button--close:hover,
.arrow-button--close:focus,
.arrow-button--close:active {
    background-position: center;
    background-size: 1.6875rem
}

.arrow-button--active {
    background-color: #fff;
    background-image: url("../media/extra-images/vipps-arrow-up.svg")
}

.arrow-button--active:hover,
.arrow-button--active:focus,
.arrow-button--active:active {
    background-position: center top .5625rem
}

.arrow-button--previous {
    background-image: url("../media/extra-images/vipps-arrow-left-white.svg")
}

.arrow-button--previous:hover,
.arrow-button--previous:focus,
.arrow-button--previous:active {
    background-position: center left .5625rem
}

.arrow-button--next {
    background-image: url("../media/extra-images/vipps-arrow-right-white.svg")
}

.arrow-button--next:hover,
.arrow-button--next:focus,
.arrow-button--next:active {
    background-position: center right .5625rem
}

.arrow-button--blueberry {
    background-color: #541b86
}

.arrow-button--blueberry:hover,
.arrow-button--blueberry:focus,
.arrow-button--blueberry:active {
    background-color: #722ac9
}

.arrow-button--orange {
    background-color: #ff5b24
}

.arrow-button--orange:hover,
.arrow-button--orange:focus,
.arrow-button--orange:active {
    background-color: #fff4ec
}

.arrow-button--xs {
    width: 1.6875rem;
    height: 1.6875rem;
    background-size: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .arrow-button--xs {
        width: 1.6875rem;
        height: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .arrow-button--xs {
        width: 1.6875rem;
        height: 1.6875rem
    }
}

.arrow-button--xs:hover,
.arrow-button--xs:focus,
.arrow-button--xs:active {
    background-position: center;
    background-size: .84375rem;
    transition: background-size 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.gray-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-weight: 300;
    line-height: 16px;
    color: #541b86;
    text-align: center;
    background-color: #f6f6f9;
    border: 2px solid #efeef3;
    border-radius: .5625rem
}

@media print,
screen and (max-width: 63.99875em) {
    .gray-button {
        padding: .75rem 1.125rem;
        font-size: .875rem
    }
}

.gray-button:hover,
.gray-button:focus,
.gray-button:active {
    color: #722ac9;
    border-color: #c9c6d7
}

.gray-button.active {
    color: #fff;
    background-color: #ff5b24;
    border-color: #ff5b24
}

.react-toggle-track {
    background-color: #c9c6d7
}

.react-toggle:hover:not(.react-toggle--disabled) .react-toggle-track {
    background-color: #c9c6d7
}

.react-toggle--checked .react-toggle-track {
    background-color: #541b86
}

.react-toggle--checked:hover:not(.react-toggle--disabled) .react-toggle-track {
    background-color: #541b86
}

.react-toggle-thumb {
    border-color: #c9c6d7
}

.react-toggle--checked .react-toggle-thumb {
    border-color: #541b86
}

.react-toggle--focus .react-toggle-thumb {
    box-shadow: 0px 0px 2px 3px #c9c6d7
}

.react-toggle:active:not(.react-toggle--disabled) .react-toggle-thumb {
    box-shadow: 0px 0px 5px 5px #c9c6d7
}

.header-vippsweb {
    background: white
}

.header__logo {
    width: 80px
}

@media print,
screen and (min-width: 47.5em) {
    .header__logo {
        width: 100px
    }
}

@media print,
screen and (min-width: 64em) {
    .header__logo {
        width: 120px
    }
}

/*.footer {
    padding-top: 3.375rem;
    padding-bottom: 5.0625rem;
    margin-top: 0;
    font-weight: bold;
    color: #fff;
  /*  background-color: #ff5b24 */
}*/

@media print,
screen and (min-width: 47.5em) {
   /* .footer {
        padding-top: 5.625rem;
        padding-bottom: 8.4375rem
    }*/
}

@media print,
screen and (min-width: 64em) {
    /*.footer {
        padding-top: 9rem;
        padding-bottom: 13.5rem
    }*/
}

.footer__logo {
    margin-bottom: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .footer__logo {
        width: 100%
    }
}

.footer__vision {
    margin-bottom: 2.25rem
}

.footer-list {
    margin: 0 !important;
    list-style-type: none
}

.footer-list__item {
    margin-bottom: 1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .footer-list__item {
        margin-bottom: .5625rem
    }
}

.footer-list__link {
    padding-left: 2.25rem;
    color: #fff;
    background-image: url("https://vipps.no/static/vipps_frontend/305879/media/extra-images/vipps-arrow-right-white.svg");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 1.125rem;
    transition: background-position 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-list__link:hover,
.footer-list__link:focus,
.footer-list__link:active {
    color: #fff;
    background-position: left .5625rem center
}

@media print,
screen and (max-width: 47.49875em) {
    .menu {
        width: 100%;
        margin-top: 1.125rem;
        margin-bottom: 5.625rem
    }
}

@media print,
screen and (min-width: 47.5em) {
    .menu {
        float: right;
        line-height: 100%
    }
}

.menu__item {
    margin-bottom: 0;
    font-size: 20px
}

@media print,
screen and (max-width: 47.49875em) {
    .menu__item {
        margin-right: 2.25rem
    }
}

@media print,
screen and (min-width: 47.5em) {
    .menu__item--login {
        margin-left: 2.25rem
    }

    .menu__item--login a::before {
        margin-right: 2.25rem;
        content: '|'
    }
}

@media print,
screen and (min-width: 64em) {
    .menu__item--login {
        margin-left: 2.8125rem
    }

    .menu__item--login a::before {
        margin-right: 2.8125rem
    }
}

.menu a {
    padding: 1.125rem 0
}

.menu a:hover,
.menu a:focus,
.menu a:active {
    color: #722ac9
}

@media print,
screen and (max-width: 47.49875em) {
    .menu a {
        border-bottom: 1px solid #c9c6d7
    }
}

@media print,
screen and (min-width: 47.5em) {
    .menu a {
        padding: 0
    }

    .menu a:hover,
    .menu a:focus,
    .menu a:active {
        text-decoration: underline
    }
}

.menu a.active {
    color: #ff5b24
}

button[aria-controls='menu'] {
    padding: .5625rem 1.6875rem .5625rem 0;
    margin-bottom: 0;
    color: #541b86;
    vertical-align: top;
    background-image: url("../media/extra-images/hamburger.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 1.125rem;
    border-radius: 0
}

button[aria-controls='menu'][aria-expanded='true'] {
    background-image: url("../media/extra-images/close-icon.svg")
}

.checkmark-list {
    margin-left: 0;
    list-style-type: none
}

.checkmark-list li {
    display: block;
    padding-left: 2.8125rem;
    margin-bottom: 1.125rem;
    background-image: url("../media/extra-images/checkmark-white.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 1.6875rem
}

.navigation-list {
    margin: 0;
    list-style-type: none
}

.navigation-list__item {
    margin-bottom: 0;
    border-top: 1px solid #938fa8
}

.navigation-list__item:last-child {
    border-bottom: 1px solid #938fa8
}

.navigation-list__link_no_icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: #541b86;
    text-align: left
}

.navigation-list__link_no_icon:hover,
.navigation-list__link_no_icon:focus {
    color: #722ac9
}

.navigation-list__link_no_icon.active {
    color: #ff5b24
}

.navigation-list__link_no_icon--tight {
    padding-top: .5625rem;
    padding-bottom: .5625rem
}

.button-list {
    padding-left: 0
}

.button-list__item {
    margin-bottom: .5625rem
}

.button-list__item:last-child {
    margin-bottom: 0
}

.list-no-disk {
    margin-left: 0;
    list-style-type: none
}

.navigation-link {
    background-repeat: no-repeat;
    background-size: 1.125rem
}

.navigation-link--back {
    padding-left: 1.6875rem;
    background-image: url("../media/extra-images/vipps-arrow-left.svg");
    background-position: left center
}

.navigation-link--back:hover,
.navigation-link--back:focus,
.navigation-link--back:active {
    background-image: url("../media/extra-images/vipps-arrow-left-shiny.svg")
}

.table {
    width: 100%;
    overflow: hidden;
    table-layout: fixed;
    border-collapse: collapse;
    border: none;
    border-radius: 5px
}

.table thead {
    border-radius: 5px 5px 0 0
}

.table thead th {
    padding: 1.125rem 1.6875rem 1.125rem 1.6875rem;
    text-align: left
}

.table tbody td {
    padding: 1.125rem 1.6875rem 1.125rem 1.6875rem !important;
    margin: 0;
    border: none !important
}

.table tbody td .column-header-inline {
    font-weight: bold;
    display: inline-block
}

@media print,
screen and (min-width: 64em) {
    .table tbody td .column-header-inline {
        display: none
    }
}

.table tbody td .cell-value {
    display: block;
    float: none;
    text-align: left
}

@media print,
screen and (min-width: 47.5em) {
    .table tbody td .cell-value {
        display: inline-block;
        float: right;
        text-align: right
    }
}

@media print,
screen and (min-width: 64em) {
    .table tbody td .cell-value {
        display: inline-block;
        float: none;
        text-align: left
    }
}

.table tbody tr {
    border-bottom: none;
    padding: 3.375rem 0px 3.375rem 0px
}

.title {
    color: #ff5b24 !important
}

.rich-text h2 {
    margin-bottom: 1.6875rem
}

@media print,
screen and (min-width: 64em) {
    .rich-text h2 {
        margin-bottom: 2.25rem
    }
}

.rich-text h3 {
    margin-bottom: 1.125rem
}

@media print,
screen and (min-width: 64em) {
    .rich-text h3 {
        margin-bottom: 1.6875rem
    }
}

.rich-text h4,
.rich-text h5,
.rich-text h6 {
    margin-bottom: 0
}

.rich-text p,
.rich-text ul,
.rich-text ol {
    margin-bottom: 1.125rem
}

@media print,
screen and (min-width: 64em) {

    .rich-text p,
    .rich-text ul,
    .rich-text ol {
        margin-bottom: 1.6875rem
    }
}

.rich-text ul:not(.checkmark-list) {
    margin-left: 1.25rem;
    list-style-type: disc
}

.rich-text>*:last-child {
    margin-bottom: 0
}

.rich-text .responsive-object {
    padding-bottom: 0;
    margin-top: 1.125rem;
    margin-bottom: 1.125rem;
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 56.25%;
    overflow: hidden
}

.rich-text .responsive-object iframe,
.rich-text .responsive-object object,
.rich-text .responsive-object embed,
.rich-text .responsive-object video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.richtext-image {
    margin-top: 1.125rem;
    margin-bottom: 1.125rem
}

@media print,
screen and (min-width: 64em) {
    .richtext-image.left {
        float: left;
        margin-right: 1.6875rem;
        margin-left: -11.25rem
    }
}

@media print,
screen and (min-width: 64em) {
    .richtext-image.right {
        float: right;
        margin-right: -11.25rem;
        margin-left: 1.6875rem
    }
}

.richtext-image.full-width {
    width: 100%
}

.employee-image {
    border: 10px solid #fff;
    border-radius: 50%
}

@media print,
screen and (max-width: 47.49875em) {
    .employee-image {
        display: block;
        margin-right: auto;
        margin-bottom: 1.6875rem;
        margin-left: auto
    }
}

@media print,
screen and (min-width: 47.5em) {
    .employee-image {
        float: right
    }
}

.image-caption__caption {
    margin-bottom: 0
}

.card-container {
    display: block;
    width: 100%;
    height: 100%
}

.card-container:hover .arrow-button,
.card-container:focus .arrow-button,
.card-container:active .arrow-button {
    background-position: center bottom .5625rem;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), background-position 150ms cubic-bezier(0.4, 0, 0.2, 1), background-size 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.card-container:hover .arrow-button--blueberry,
.card-container:focus .arrow-button--blueberry,
.card-container:active .arrow-button--blueberry {
    background-color: #722ac9
}

.card-container:hover .arrow-button--orange,
.card-container:focus .arrow-button--orange,
.card-container:active .arrow-button--orange {
    background-color: #ff845b
}

.card-container:hover .arrow-button--active,
.card-container:focus .arrow-button--active,
.card-container:active .arrow-button--active {
    background-position: center top .5625rem
}

.card-container:hover .arrow-button--previous,
.card-container:focus .arrow-button--previous,
.card-container:active .arrow-button--previous {
    background-position: center left .5625rem
}

.card-container:hover .arrow-button--next,
.card-container:hover .arrow-button--orange,
.card-container:focus .arrow-button--next,
.card-container:focus .arrow-button--orange,
.card-container:active .arrow-button--next,
.card-container:active .arrow-button--orange {
    background-position: center right .5625rem
}

.card-container[aria-expanded='true']:focus {
    outline: 0
}

.card-container[aria-expanded='true'] .card {
    border-color: #ff5b24;
    box-shadow: none;
    transition: border-color 150ms cubic-bezier(0.4, 0, 1, 1), box-shadow 150ms cubic-bezier(0.4, 0, 1, 1)
}

.card {
    position: relative;
    width: auto;
    height: 100%;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: .5625rem;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25)
}

@media print,
screen and (min-width: 64em) {
    .card {
        border-radius: 1.125rem
    }
}

.card--screenshot {
    padding: 1.125rem .5625rem
}

.card--logo {
    display: flex;
    align-items: center;
    height: 80px;
    padding: .5625rem
}

@media print,
screen and (min-width: 47.5em) {
    .card--logo {
        height: 100px;
        padding: 1.125rem
    }
}

@media print,
screen and (min-width: 64em) {
    .card--logo {
        height: 120px;
        padding: 1.6875rem
    }
}

@media print,
screen and (min-width: 64em) {
    .card--small {
        border-radius: .5625rem
    }
}

.card--flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.card__title {
    color: #ff5b24
}

.card__title--blueberry {
    color: #541b86
}

.card__body {
    font-weight: 300;
    color: #161225
}

.card__body *:last-child {
    margin-bottom: 0
}

.card__footer>*:last-child {
    margin-bottom: 0
}

.card__image--logo {
    min-height: 80px
}

.card__image--product img,
.card__image--link img {
    width: 160px
}

@media print,
screen and (min-width: 47.5em) {

    .card__image--product,
    .card__image--link {
        min-height: 160px
    }
}

.card__link {
    position: absolute;
    right: 1.125rem;
    bottom: -1.125rem
}

@media print,
screen and (min-width: 47.5em) {
    .card__link {
        right: 1.6875rem;
        bottom: -1.40625rem
    }
}

@media print,
screen and (min-width: 64em) {
    .card__link {
        right: 2.25rem;
        bottom: -1.6875rem
    }
}

.card-list__cards {
    position: relative
}

.card-list__cards--logos>.cell {
    margin-bottom: 20px
}

@media print,
screen and (min-width: 47.5em) {
    .card-list__cards--logos>.cell {
        margin-bottom: 40px
    }
}

.card-list__cards .last-row:last-of-type {
    margin-bottom: 0
}

.banner-container {
    position: relative;
    background-color: #59cbe8;
    background-size: cover
}

.alert-banner-info {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin: 0px;
    background-color: #59cbe8;
    background-size: cover
}

.alert-banner-info p {
    width: 100%;
    padding: 1rem;
    margin: 0px
}

.alert-banner-cell {
    position: relative;
    margin-top: -100%;
    margin-bottom: 0px;
    animation: slideIn 1s forwards
}

@keyframes slideIn {
    50% {
        margin-top: -25%;
        opacity: 0
    }

    99% {
        opacity: 0
    }

    100% {
        margin-top: 0px;
        margin-bottom: 0px;
        opacity: 0.8
    }
}

.loading {
    display: block;
    width: 100px;
    height: 100px;
    margin-right: auto;
    margin-left: auto;
    background-image: url("../media/extra-images/spinner.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain
}

.loading-spinner {
    position: relative;
    width: 30px;
    height: 30px;
    margin-top: -6px;
    margin-bottom: -6px
}

@media print,
screen and (max-width: 47.49875em) {
    .loading-spinner {
        width: 20px;
        height: 20px;
        margin-top: -4px;
        margin-bottom: -4px
    }
}

@media print,
screen and (max-width: 63.99875em) {
    .strike__component--left {
        display: block;
        margin-right: auto;
        margin-left: auto
    }
}

@media print,
screen and (min-width: 64em) {
    .strike__component--left {
        margin-bottom: 0
    }
}

.strike__component .strike__mobile__deep {
    display: none;
    width: 0;
    height: 0
}

.strike__component .strike__form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

.strike__component .strike__form__input {
    width: auto
}

.block-container--blueberry .strike__component .vipps-input-error {
    color: #fde5e4
}

.block-container--blueberry .strike__component .vipps-input[aria-invalid='true'] {
    border: 2px solid #fde5e4
}

.block-container--blueberry .strike__component .vipps-message__content {
    color: black
}

.block-container--blueberry .strike__component .vipps-button__style-link {
    color: #fff
}

.vipps-form-error {
    text-align: center
}

.vipps-form-error .vipps-icon {
    width: 100px;
    height: 100px
}

.vipps-generated-form .vipps-label small {
    display: block
}

@media print,
screen and (min-width: 64em) {
    .featured-content__image {
        margin-bottom: 0
    }
}

.statement {
    background-repeat: no-repeat;
    background-size: 0 0
}

@media print,
screen and (min-width: 64em) {
    .statement {
        position: relative;
        max-width: 1680px;
        min-height: 780px;
        margin-right: auto;
        margin-bottom: 0;
        margin-left: auto;
        background-size: cover
    }
}

@media print,
screen and (min-width: 64em) {
    .statement__image {
        margin-bottom: 0
    }
}

.statement__link {
    margin-bottom: 0
}

@media print,
screen and (min-width: 64em) {
    .statement__container {
        position: absolute;
        width: 100%
    }

    .statement__container--bottom {
        bottom: 5.625rem
    }

    .statement__container--top {
        top: 5.625rem
    }

    .statement__card {
        padding: 3.375rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 1.125rem
    }

    .statement__link {
        background-color: transparent !important
    }
}

@media print,
screen and (min-width: 64em) {
    .service {
        background: linear-gradient(to right, #ff5b24 0%, #ff5b24 50%, #fff4ec 50%, #fff4ec 100%)
    }
}

.service__link {
    margin-bottom: 0
}

@media print,
screen and (max-width: 63.99875em) {
    .service__panel {
        position: relative
    }

    .service__panel:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: -100%;
        width: 9999px;
        content: ''
    }

    .service__panel * {
        position: relative
    }

    .service__panel--primary {
        background-color: #ff5b24
    }

    .service__panel--primary:before {
        background: #ff5b24
    }

    .service__panel--secondary {
        background-color: #fff4ec
    }

    .service__panel--secondary:before {
        background: #fff4ec
    }
}

.text-color-primary,
.h2.text-color-primary,
.h3.text-color-primary,
button.link.text-color-primary,
button.link.text-color-primary:hover {
    color: #ff5b24;
    text-underline-position: under;
    text-decoration-color: #ff5b24
}

.triple-service__bgimage {
    background-size: cover
}

.triple-service__illustration {
    width: 184px;
    height: 184px
}

@media print,
screen and (max-width: 63.99875em) {
    .triple-service__illustration {
        width: 120px;
        height: 120px
    }
}

.help-header {
    background-color: #fff4ec
}

.help-header__title {
    color: #9b3716
}

@media print,
screen and (min-width: 47.5em) {
    .help-header__title {
        padding-top: 140px;
        background-image: url("../media/extra-images/falling-man.svg");
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 160px
    }
}

.help-header__products>*:last-child {
    margin-bottom: 0
}

.help-header__segment>*:last-child {
    margin-bottom: 0
}

@media print,
screen and (min-width: 47.5em) {
    .help-article {
        display: none
    }
}

@media print,
screen and (min-width: 47.5em) {
    .help-article--active {
        display: block
    }
}

.help-article__title-container {
    display: flex;
    align-items: center;
    padding: 1.125rem 1.125rem 1.125rem 0;
    margin: 0;
    border-top: 1px solid #938fa8
}

@media print,
screen and (min-width: 47.5em) {
    .help-article__title-container {
        border: none
    }
}

.help-article__title {
    color: #ff5b24;
    display: none
}

@media print,
screen and (min-width: 47.5em) {
    .help-article__title {
        display: inline
    }
}

.help-article__linked-title {
    width: 100%;
    color: #541b86;
    text-align: left;
    border-radius: 0
}

@media print,
screen and (min-width: 47.5em) {
    .help-article__linked-title {
        display: none
    }
}

.help-article__linked-title.active {
    color: #ff5b24 !important
}

.help-article__content {
    display: none
}

.help-article__content--active {
    display: block
}

.help-article__text {
    margin-bottom: 3.375rem
}

.help-categories__links {
    padding-right: .625rem;
    padding-left: .625rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-flow: row wrap
}

@media print,
screen and (min-width: 47.5em) {
    .help-categories__links {
        padding-right: .9375rem;
        padding-left: .9375rem
    }
}

.help-guide {
    justify-content: space-between;
    margin-bottom: 3.375rem;
    background-color: #fff4ec
}

.help-guide__image {
    width: 100%;
    max-width: 320px;
    padding: 1.125rem .5625rem;
    margin-bottom: 1.6875rem;
    background-color: #fff;
    border-radius: .5625rem;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25)
}

@media print,
screen and (min-width: 64em) {
    .help-guide__image {
        border-radius: 1.125rem
    }
}

.help-header__product-title {
    margin-right: 3.375rem;
    margin-bottom: 0;
    color: #541b86
}

.help-feedback p {
    margin: 0px;
    font-weight: bold
}

.help-feedback__content {
    display: none
}

.help-feedback__content--active {
    display: block
}

.help-feedback .answer {
    margin: 0px;
    color: #541b86;
    text-align: center
}

.help-feedback .answer .answer-image,
.help-feedback .answer .sad,
.help-feedback .answer .smile {
    padding: 0px;
    padding-top: 100px;
    background-repeat: no-repeat;
    background-position: center center
}

.help-feedback .answer .sad {
    background-image: url("../media/extra-images/sad-filled.svg");
    background-size: 65px
}

.help-feedback .answer .smile {
    background-image: url("../media/extra-images/smile-filled.svg");
    background-size: 65px
}

.help-feedback .answer .smile:hover,
.help-feedback .answer .sad:hover {
    color: #722ac9;
    background-size: 72px
}

.help-feedback .answer p {
    font-weight: bold
}

.help-feedback .answered {
    display: block
}

.help-feedback .answered .answered-image,
.help-feedback .answered .sad,
.help-feedback .answered .smile {
    padding: 20px;
    padding-right: 5rem;
    background-image: url("../media/extra-images/smile-filled-inverted.svg");
    background-repeat: no-repeat;
    background-position: left
}

.help-feedback .answered p {
    display: table-cell;
    padding-left: 5rem;
    font-weight: 100
}

.help-feedback .answered .sad {
    background-image: url("../media/extra-images/sad-filled-inverted.svg")
}

.help-feedback .answered .smile {
    background-image: url("../media/extra-images/smile-filled-inverted.svg")
}

.contact-form__icon {
    float: right;
    width: 2.25rem;
    height: 2.25rem
}

@media print,
screen and (min-width: 47.5em) {
    .contact-form__icon {
        width: 3.375rem;
        height: 3.375rem
    }
}

@media print,
screen and (min-width: 64em) {
    .contact-form__icon {
        width: 4.5rem;
        height: 4.5rem
    }
}

.contact-confirmation__title {
    color: #ff5b24
}

.contact-form__question>*:last-child {
    margin-bottom: 0
}

.product-presentation {
    position: relative
}

.product-slide__title {
    margin-bottom: 0;
    color: #541b86
}

.product-slide__title--single {
    color: #161225
}

.product-slide__title.active {
    color: #ff5b24
}

.product-slide__description {
    margin-bottom: .5625rem;
    font-weight: normal
}

.product-slide__description *:last-child {
    margin-bottom: 0
}

.product-slide__button {
    width: 100%
}

.product-slide__button .product-slide__description {
    display: none
}

.product-slide__button[aria-expanded='true'] .product-slide__description {
    display: block
}

.product-slide__status {
    display: block;
    width: 27px;
    height: 27px;
    background-image: url("../media/extra-images/plus.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover
}

.product-slide__status.active {
    background-image: url("../media/extra-images/minus.svg")
}

@media print,
screen and (min-width: 64em) {
    .product-slide__illustration-container {
        position: absolute;
        top: 0;
        right: 0
    }
}

.product-slide__illustration {
    padding: 1.6875rem;
    background-color: #fff4ec
}

@media print,
screen and (min-width: 64em) {
    .product-slide__illustration {
        margin-bottom: 0;
        margin-left: 0
    }
}

.hero-image {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.developers-card-container {
    padding-left: 0
}

@media print,
screen and (min-width: 64em) {
    .developers-card-container {
        padding-left: 90px
    }
}

.developers-card-container h2 {
    margin-top: 5px
}

.developers-card-container h3 {
    margin-top: 48px
}

div.block-container.developer-block-container {
    padding-bottom: 0
}

.resource-card-container {
    display: flex;
    flex-wrap: wrap
}

.resource-card-container .resource-card h3 {
    padding: 0;
    margin: 0 0 8px;
    font-size: 16px;
    color: #541b86
}

.resource-card-container .resource-card p {
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #706b8b
}

.resource-card {
    width: 346px;
    max-width: 90vw;
    height: 106px;
    padding: 10px 16px;
    margin: 0 15px 15px 0;
    border: 1px solid #efeef3;
    border-radius: 15px
}

.developers-codeblock-container {
    position: relative;
    margin-top: 32px;
    margin-bottom: 32px
}

.developers-codeblock-container .copy-button {
    position: absolute;
    top: 20px;
    right: 50px;
    z-index: 1
}

.developers-codeblock-container .developers-codeblock {
    line-height: 1.4;
    border-radius: 10px;
    padding-right: 0;
    padding-left: 0
}

@media print,
screen and (min-width: 64em) {
    .developers-codeblock-container .developers-codeblock {
        padding-right: 30px;
        padding-left: 30px
    }
}

.developers-codeblock-container .developers-codeblock code {
    padding: 0;
    font-family: monospace;
    line-height: 1.4;
    color: inherit;
    word-break: break-word;
    overflow-wrap: break-word;
    background-color: transparent;
    border: 0
}

.markdown-table-container {
    padding: 0
}

@media print,
screen and (min-width: 64em) {
    .markdown-table-container {
        padding: 5px 30px
    }
}

.developers-markdown table {
    margin-right: 0;
    margin-left: 0;
    table-layout: auto
}

.developers-markdown table code {
    font-family: monospace;
    font-size: 13px;
    overflow-wrap: break-word;
    background: transparent
}

.developers-markdown table tr {
    padding: 20px 0
}

.developers-markdown table td,
.developers-markdown table th {
    max-width: 90vw;
    padding: 10px 5px !important
}

@media print,
screen and (min-width: 64em) {

    .developers-markdown table td,
    .developers-markdown table th {
        padding: 20px 5px !important
    }
}

.developers-markdown table tbody tr:nth-child(even) {
    background: #fcfbfe
}

.developers-markdown table tbody tr:nth-child(odd) {
    background: #fff
}

.developers-markdown h2 {
    margin-top: 60px;
    margin-bottom: 14px
}

.developers-markdown h3 {
    margin-top: 34px;
    margin-bottom: 14px
}

.developers-markdown h4 {
    margin-top: 20px;
    margin-bottom: 14px
}

.developers-markdown h1,
.developers-markdown h2,
.developers-markdown h3,
.developers-markdown h4,
.developers-markdown h5,
.developers-markdown h6,
.developers-markdown p,
.developers-markdown ul,
.developers-markdown ol {
    padding-right: 0;
    padding-left: 0
}

@media print,
screen and (min-width: 64em) {

    .developers-markdown h1,
    .developers-markdown h2,
    .developers-markdown h3,
    .developers-markdown h4,
    .developers-markdown h5,
    .developers-markdown h6,
    .developers-markdown p,
    .developers-markdown ul,
    .developers-markdown ol {
        padding-right: 90px;
        padding-left: 90px
    }
}

.developers-markdown li>ul,
.developers-markdown li>ol,
.developers-markdown li>p {
    padding-left: 30px;
    margin: 14px 0 30px 0
}

.developers-markdown input[type='checkbox'] {
    margin-right: 5px
}

.developers-markdown h1 code,
.developers-markdown h2 code,
.developers-markdown h3 code,
.developers-markdown h4 code,
.developers-markdown h5 code,
.developers-markdown h6 code {
    font-family: inherit;
    font-size: inherit
}

.developers-markdown p,
.developers-markdown li {
    font-size: 16px
}

.developers-markdown code {
    font-family: monospace;
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
    background: transparent
}

.developers-full-screen {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff
}

.developers-full-screen .developers-fullscreen-text {
    text-align: center
}

.developers-full-screen .developers-fullscreen-ie {
    max-width: 500px;
    margin: 5px 10px;
    text-align: justify
}

.vipps-smile-icon {
    display: inline-block;
    width: 1.5em;
    height: 1em;
    line-height: 1em
}

.developers-fullscreen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.developers-image-error {
    width: 150px;
    height: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

keyframes rotating from {
    transform: rotate(0deg)
}

keyframes rotating to {
    transform: rotate(360deg)
}

.developers-image-loading {
    width: 150px;
    height: 150px;
    background-image: url("../media/extra-images/spinner.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: rotating 0.5s linear infinite
}

.developers-sidemenu {
    position: fixed;
    width: 288px;
    height: 100%;
    padding: 32px 16px;
    overflow: auto;
    background-color: #f6f6f9
}

.developers-sidemenu.mobile {
    z-index: 1;
    display: block;
    width: 100vw
}

.developers-sidemenu-image {
    width: 139px;
    height: 16px;
    margin-bottom: 50px;
    background-image: url("../media/extra-images/vipps-developer-logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain
}

.developers-sidemenu-image.mobile {
    width: 24px;
    height: 24px;
    background-image: url("../media/extra-images/vipps-smile.svg")
}

.developers-sidemenu-level1 {
    margin-top: 15px
}

.developers-sidemenu-level1 li {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 16px
}

.developers-sidemenu-level1 a {
    font-size: 16px;
    font-weight: lighter;
    color: #541b86
}

.developers-sidemenu-level1 .active .developers-sidemenu-level2 {
    max-height: 100vh;
    animation: 'menu-open'0.3s linear
}

.developers-sidemenu-level2 {
    max-height: 0;
    margin: 0;
    margin-left: 0;
    overflow: hidden;
    font-size: 16px;
    transition: 0.3s ease
}

.developers-sidemenu-level2 li {
    max-width: 230px;
    margin-top: 10px;
    margin-bottom: 10px
}

.developers-sidemenu-level2 a {
    margin-left: 0;
    font-size: 16px;
    font-weight: lighter;
    color: #706b8b;
    transition: 0.3s ease
}

.developers-sidemenu-level2 .active {
    margin-left: 10px;
    transition: 0.3s ease
}

.developers-sidemenu-level2 .active a {
    color: #722ac9
}

.docs-content-container {
    box-sizing: border-box;
    display: flex;
    max-width: 100rem;
    margin: 0 auto;
    color: #161225
}

.developers-sidemenu-container {
    position: relative;
    box-sizing: border-box;
    min-width: 18rem;
    min-height: 100vh;
    display: none
}

@media print,
screen and (min-width: 64em) {
    .developers-sidemenu-container {
        display: block
    }
}

.developers-sidemenu-container.mobile {
    z-index: 1;
    display: block;
    width: 100vw
}

.developers-sidemenu-container::before {
    position: absolute;
    right: 0;
    width: 100vw;
    height: 100%;
    content: '';
    background-color: #f6f6f9
}

.main-content {
    display: block;
    margin-top: 24px;
    width: 100vw
}

@media print,
screen and (min-width: 64em) {
    .main-content {
        width: calc(100vw - 18rem)
    }
}

@keyframes menu-open {
    0% {
        max-height: 0
    }

    100% {
        max-height: 300px
    }
}

@keyframes menu-close {
    0% {
        max-height: 300px
    }

    100% {
        max-height: 0
    }
}

.developers-menu-icon,
.developers-menu-open-icon,
.developers-menu-close-icon {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1;
    margin: 0
}

.developers-menu-open-icon.mobile {
    display: block
}

@media print,
screen and (min-width: 64em) {
    .developers-menu-open-icon {
        display: none
    }
}

.developers-menu-open-icon.mobile {
    display: none
}

.developers-menu-close-icon {
    display: none
}

.developers-menu-close-icon.mobile {
    display: block
}

.developers-backlink {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    font-size: 16px;
    color: #722ac9;
    background-position-y: center
}

.expanded .developers-sidemenu-level2 {
    max-height: 100vh
}

.developers-docs-header h1 {
    margin-bottom: 12px
}