@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    65% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px)
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes floating {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    65% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px)
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@-webkit-keyframes scale-down-out-burger {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
        pointer-events: none
    }
}

@keyframes scale-down-out-burger {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
        pointer-events: none
    }
}

@-webkit-keyframes scale-up-in-burger {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
        pointer-events: none
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up-in-burger {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0;
        pointer-events: none
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes fadeInHalfUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    to {
        opacity: .5;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInHalfUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    to {
        opacity: .5;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes scale-down-center-out {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes scale-down-center-out {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@-webkit-keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible
    }
}

@keyframes fade-in-left {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
        opacity: 0
    }

    to {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible
    }
}

@-webkit-keyframes loading360 {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes loading360 {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes fade-in-out {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fade-in-out {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes expandWidth {
    0% {
        width: 0;
        left: 0;
        right: 0
    }

    to {
        width: 100%;
        left: 0;
        right: 0
    }
}

@keyframes expandWidth {
    0% {
        width: 0;
        left: 0;
        right: 0
    }

    to {
        width: 100%;
        left: 0;
        right: 0
    }
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

    .swiper-container-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: height,-webkit-transform;
        transition-property: transform,height;
        transition-property: transform,height,-webkit-transform
    }

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

    .swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }

    .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(270deg,rgba(0,0,0,.5),transparent)
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(90deg,rgba(0,0,0,.5),transparent)
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(0deg,rgba(0,0,0,.5),transparent)
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(180deg,rgba(0,0,0,.5),transparent)
    }

.swiper-container-wp8-horizontal, .swiper-container-wp8-horizontal > .swiper-wrapper {
    touch-action: pan-y
}

.swiper-container-wp8-vertical, .swiper-container-wp8-vertical > .swiper-wrapper {
    touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none
    }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
    right: 10px;
    left: auto
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transform: scale(.33);
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        -webkit-transform: scale(.66);
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        -webkit-transform: scale(.33);
        transform: scale(.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        -webkit-transform: scale(.66);
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        -webkit-transform: scale(.33);
        transform: scale(.33)
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0)
}

    .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 6px 0;
        display: block
    }

    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: top .2s,-webkit-transform .2s;
            transition: transform .2s,top .2s;
            transition: transform .2s,top .2s,-webkit-transform .2s
        }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

    .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: left .2s,-webkit-transform .2s;
        transition: transform .2s,left .2s;
        transition: transform .2s,left .2s,-webkit-transform .2s
    }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: right .2s,-webkit-transform .2s;
    transition: transform .2s,right .2s;
    transition: transform .2s,right .2s,-webkit-transform .2s
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: #007aff;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: left top;
        transform-origin: left top
    }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

    .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: hsla(0,0%,100%,.25)
}

    .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
        background: #fff
    }

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0,0,0,.25)
}

    .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
        background: #000
    }

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12) infinite;
    animation: swiper-preloader-spin 1s steps(12) infinite
}

    .swiper-lazy-preloader:after {
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
        background-position: 50%;
        background-size: 100%;
        background-repeat: no-repeat
    }

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes swiper-preloader-spin {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

    .swiper-container-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        width: 100%;
        height: 100%
    }

        .swiper-container-cube .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .6;
        -webkit-filter: blur(50px);
        filter: blur(50px);
        z-index: 0
    }

.swiper-container-flip {
    overflow: visible
}

    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1
    }

        .swiper-container-flip .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */ .flickity-enabled {
    position: relative
}

    .flickity-enabled:focus {
        outline: 0
    }

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

    .flickity-enabled.is-draggable .flickity-viewport {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab
    }

        .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
            cursor: -webkit-grabbing;
            cursor: grabbing
        }

.flickity-button {
    position: absolute;
    background: hsla(0,0%,100%,.75);
    border: none;
    color: #333
}

    .flickity-button:hover {
        background: #fff;
        cursor: pointer
    }

    .flickity-button:focus {
        outline: 0;
        box-shadow: 0 0 0 5px #19f
    }

    .flickity-button:active {
        opacity: .6
    }

    .flickity-button:disabled {
        opacity: .3;
        cursor: auto;
        pointer-events: none
    }

.flickity-button-icon {
    fill: currentColor
}

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

    .flickity-prev-next-button.previous {
        left: 10px
    }

    .flickity-prev-next-button.next {
        right: 10px
    }

.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1
}

.flickity-rtl .flickity-page-dots {
    direction: rtl
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: .25;
    cursor: pointer
}

    .flickity-page-dots .dot.is-selected {
        opacity: 1
    }

.beer-ingredients {
    padding-bottom: 25px
}

.beer-ingredients__item {
    display: flex;
    flex-direction: row;
    margin: 0 0 40px;
    padding: 0 25px;
    justify-content: center;
    align-items: center;
    position: relative
}

    .beer-ingredients__item:last-of-type {
        margin: 0
    }

    .beer-ingredients__item .circle {
        height: 120px;
        width: 120px;
        border-radius: 50%;
        background-color: rgba(0,0,0,.03);
        position: relative;
        margin-right: 25px
    }

        .beer-ingredients__item .circle:before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            border-radius: 50%;
            margin: auto;
            height: calc(100% - 20px);
            width: calc(100% - 20px);
            background-color: #fff
        }

        .beer-ingredients__item .circle svg {
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            position: absolute;
            margin: auto;
            fill: currentColor;
            display: inline-block
        }

.beer-ingredients__item--beer-type .circle svg {
    top: 32px;
    left: 39px;
    width: 50px;
    height: 50px;
    margin: 0
}

.beer-ingredients__item--malt .circle svg {
    width: 23px;
    height: 58px
}

.beer-ingredients__item--alcohol .circle svg {
    width: 53px;
    height: 53px
}

.beer-ingredients__item--hops .circle svg {
    width: 50px;
    height: 56px
}

.beer-ingredients__item--taste .circle svg {
    width: 35px;
    height: 56px
}

.beer-ingredients__item .ingredients-text {
    flex: 1;
    text-align: left
}

    .beer-ingredients__item .ingredients-text strong {
        display: block;
        margin-bottom: 5px
    }

.beer-overview {
    position: fixed;
    top: 0;
    right: -100vw;
    bottom: 0;
    left: auto;
    background-color: #fff;
    width: 100vw;
    z-index: 12;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 15px solid #fff;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform .5s cubic-bezier(.77,0,.175,1);
    transition: transform .5s cubic-bezier(.77,0,.175,1);
    transition: transform .5s cubic-bezier(.77,0,.175,1),-webkit-transform .5s cubic-bezier(.77,0,.175,1)
}

.product-swiper--beer-overview-active .beer-overview {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.product-swiper--beer-overview-active .beer-overview--animated {
    -webkit-transform: none;
    transform: none;
    right: 0;
    transition: none
}

.product-swiper--beer-overview-active .beer-overview--animating-back {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: -webkit-transform .5s cubic-bezier(.77,0,.175,1);
    transition: transform .5s cubic-bezier(.77,0,.175,1);
    transition: transform .5s cubic-bezier(.77,0,.175,1),-webkit-transform .5s cubic-bezier(.77,0,.175,1)
}

.beer-overview__beers-container {
    max-width: 1040px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 20px 0
}

.beer-overview__item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 50%;
    margin-bottom: 80px;
    padding: 0 15px;
    opacity: 0;
    transition: opacity .2s ease
}

    .beer-overview__item:first-child {
        transition-delay: .1s
    }

    .beer-overview__item:nth-child(2) {
        transition-delay: .2s
    }

    .beer-overview__item:nth-child(3) {
        transition-delay: .3s
    }

    .beer-overview__item:nth-child(4) {
        transition-delay: .4s
    }

    .beer-overview__item:nth-child(5) {
        transition-delay: .5s
    }

    .beer-overview__item:nth-child(6) {
        transition-delay: .6s
    }

    .beer-overview__item:nth-child(7) {
        transition-delay: .7s
    }

    .beer-overview__item:nth-child(8) {
        transition-delay: .8s
    }

    .beer-overview__item:nth-child(9) {
        transition-delay: .9s
    }

    .beer-overview__item:nth-child(10) {
        transition-delay: 1s
    }

    .beer-overview__item:nth-child(11) {
        transition-delay: 1.1s
    }

    .beer-overview__item:nth-child(12) {
        transition-delay: 1.2s
    }

    .beer-overview__item:nth-child(13) {
        transition-delay: 1.3s
    }

    .beer-overview__item:nth-child(14) {
        transition-delay: 1.4s
    }

    .beer-overview__item:nth-child(15) {
        transition-delay: 1.5s
    }

    .beer-overview__item:nth-child(16) {
        transition-delay: 1.6s
    }

    .beer-overview__item:nth-child(17) {
        transition-delay: 1.7s
    }

    .beer-overview__item:nth-child(18) {
        transition-delay: 1.8s
    }

    .beer-overview__item:nth-child(19) {
        transition-delay: 1.9s
    }

    .beer-overview__item:nth-child(20) {
        transition-delay: 2s
    }

    .beer-overview__item:nth-child(21) {
        transition-delay: 2.1s
    }

    .beer-overview__item:nth-child(22) {
        transition-delay: 2.2s
    }

    .beer-overview__item:nth-child(23) {
        transition-delay: 2.3s
    }

    .beer-overview__item:nth-child(24) {
        transition-delay: 2.4s
    }

    .beer-overview__item:nth-child(25) {
        transition-delay: 2.5s
    }

    .beer-overview__item:nth-child(26) {
        transition-delay: 2.6s
    }

    .beer-overview__item:nth-child(27) {
        transition-delay: 2.7s
    }

    .beer-overview__item:nth-child(28) {
        transition-delay: 2.8s
    }

    .beer-overview__item:nth-child(29) {
        transition-delay: 2.9s
    }

    .beer-overview__item:nth-child(30) {
        transition-delay: 3s
    }

    .beer-overview__item:nth-child(31) {
        transition-delay: 3.1s
    }

    .beer-overview__item:nth-child(32) {
        transition-delay: 3.2s
    }

    .beer-overview__item:nth-child(33) {
        transition-delay: 3.3s
    }

    .beer-overview__item:nth-child(34) {
        transition-delay: 3.4s
    }

    .beer-overview__item:nth-child(35) {
        transition-delay: 3.5s
    }

.beer-overview--show-beers .beer-overview__item {
    opacity: 1
}

.beer-overview__item .beer-button {
    height: 230px
}

    .beer-overview__item .beer-button, .beer-overview__item .beer-button span {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column
    }

        .beer-overview__item .beer-button span {
            margin: 15px -15px 0;
            text-transform: uppercase;
            height: 20px
        }

            .beer-overview__item .beer-button span:after {
                content: "";
                height: 3px;
                background-color: #63666a;
                width: 100%;
                -webkit-transform: translateY(5px);
                transform: translateY(5px);
                opacity: 0;
                pointer-events: none;
                transition: opacity .3s ease-in-out,-webkit-transform .3s ease-in-out;
                transition: opacity .3s ease-in-out,transform .3s ease-in-out;
                transition: opacity .3s ease-in-out,transform .3s ease-in-out,-webkit-transform .3s ease-in-out
            }

        .beer-overview__item .beer-button img {
            max-height: 200px;
            display: block
        }

.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    border: 0;
    border-radius: 0;
    outline: none;
    background: transparent;
    vertical-align: bottom;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 25px 50px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden
}

.button__text {
    font-family: nycarlsbergdisplay-bold,arial;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color .3s ease-in-out;
    position: relative
}

.button--dark {
    border: 3px solid #006939
}

    .button--dark .button__text {
        color: #006939
    }

.button--light {
    border: 3px solid #fff
}

    .button--light .button__text {
        color: #fff
    }

.card {
    overflow: hidden;
    border-radius: 5px;
    -webkit-transform: rotate(0deg);
    width: 100%;
    height: 460px;
    position: relative;
    margin-bottom: 15px
}

    .card:last-of-type {
        margin-bottom: 0
    }

.card--link:hover .card__media-gradient:before {
    opacity: 0
}

.card--link:hover .card__media-gradient:after {
    opacity: 1
}

.card a {
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.card__image.b-lazy {
    width: 100.2%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat
}

.card__video.b-lazy {
    opacity: 0;
    transition: opacity .3s ease-in
}

.card__image.b-loaded ~ .card__media-gradient:before, .card__video.b-loaded ~ .card__media-gradient:before {
    opacity: 1
}

.card__media-gradient {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%
}

    .card__media-gradient:after, .card__media-gradient:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        opacity: 0;
        background: #000;
        transition: opacity .4s ease-in-out
    }

    .card__media-gradient:before {
        background: linear-gradient(45deg,rgba(0,0,0,.4),transparent 38%,transparent 63%,transparent 90%)
    }

    .card__media-gradient:after {
        background: linear-gradient(45deg,rgba(0,0,0,.7),transparent 38%,transparent 63%,transparent 90%)
    }

.card__media-gradient--show:before {
    opacity: 1
}

.card__video {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    height: auto;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    align-self: center;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.card__content {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    padding: 25px;
    -webkit-animation: fadeIn .4s ease-in-out;
    animation: fadeIn .4s ease-in-out;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: 2
}

.card__section-title {
    font-family: nycarlsbergdisplay-bold,arial;
    text-transform: uppercase;
    max-width: 320px
}

.card__headline {
    margin: 12px 0 0;
    max-width: 320px
}

.close-button-small {
    height: 40px;
    width: 40px
}

    .close-button-small:after, .close-button-small:before {
        content: "";
        position: absolute;
        top: 10px;
        height: 50%;
        width: 1px;
        background-color: #fff
    }

    .close-button-small:before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .close-button-small:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

.close-button-small--black:after, .close-button-small--black:before {
    background-color: #000
}

.nutritional-values {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.nutritional-values__header {
    position: relative;
    cursor: pointer
}

    .nutritional-values__header span.plus {
        transition: -webkit-transform .25s ease;
        transition: transform .25s ease;
        transition: transform .25s ease,-webkit-transform .25s ease;
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        display: inline-block;
        margin-left: 50px
    }

    .nutritional-values__header span.divider {
        position: relative;
        left: -5%;
        width: 110%;
        height: 3px;
        margin-top: 15px;
        display: block
    }

.nutritional-values__content {
    display: none;
    overflow: hidden;
    max-width: 670px;
    margin: auto;
    width: 100%
}

.nutritional-values__body {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: .2s;
    animation-duration: .2s
}

    .nutritional-values__body ul {
        padding: 20px 0;
        margin: 0;
        list-style: none
    }

        .nutritional-values__body ul li {
            margin-bottom: 30px;
            width: 100%;
            display: block;
            height: 18px
        }

            .nutritional-values__body ul li:after, .nutritional-values__body ul li:before {
                content: " ";
                display: table
            }

            .nutritional-values__body ul li:after {
                clear: both
            }

            .nutritional-values__body ul li .type {
                float: left;
                margin-right: 15px
            }

            .nutritional-values__body ul li .value {
                float: right
            }

            .nutritional-values__body ul li:last-of-type {
                margin-bottom: 0
            }

.nutritional-values input {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    display: none
}

    .nutritional-values input:checked ~ .nutritional-values__header span.plus {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    .nutritional-values input:checked ~ .nutritional-values__content {
        display: block
    }

.story-progress-pagination {
    position: absolute;
    top: 5px;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 1;
    width: calc(100% - 40px);
    margin: auto;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-delay: .25s;
    animation-delay: .25s;
    opacity: 0
}

.story-progress-pagination__item {
    margin: 0 5px;
    flex: 1;
    height: 30px
}

    .story-progress-pagination__item span {
        height: 1px;
        background-color: hsla(0,0%,100%,.25);
        display: block
    }

.story-progress-pagination__item--active span {
    background-color: #fff
}

.pioneer-thumbnail-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid #fff
}

.story-slider--loading .pioneer-thumbnail-loader {
    border-left: 0;
    border-bottom: 0;
    border-top: 2px solid #fff;
    border-right: 2px solid transparent;
    -webkit-animation: loading360 1s linear infinite;
    animation: loading360 1s linear infinite
}

.swiper-button-next, .swiper-button-prev {
    background: transparent;
    top: auto;
    height: auto;
    margin: 0;
    transition: opacity .25s ease,-webkit-transform .25s ease;
    transition: opacity .25s ease,transform .25s ease;
    transition: opacity .25s ease,transform .25s ease,-webkit-transform .25s ease
}

    .swiper-button-next svg, .swiper-button-prev svg {
        width: 13px;
        height: 22px
    }

.swiper-button-next--hide, .swiper-button-prev--hide {
    opacity: 0
}

.swiper-button-prev svg {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg)
}

.swiper-button-next svg {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.flickity-page-dots {
    bottom: 30px;
    left: 0;
    right: 0
}

    .flickity-page-dots .dot {
        height: 16px;
        width: 16px;
        margin: 0 6px 0 0;
        background-color: transparent;
        opacity: 1;
        position: relative
    }

        .flickity-page-dots .dot:after, .flickity-page-dots .dot:before {
            content: "";
            position: absolute
        }

        .flickity-page-dots .dot:before {
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 50%;
            transition: -webkit-transform .2s ease-in-out;
            transition: transform .2s ease-in-out;
            transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
            -webkit-transform: scale(.5);
            transform: scale(.5)
        }

        .flickity-page-dots .dot:after {
            top: 6px;
            left: 6px;
            border-radius: 50%;
            background-color: #63666a;
            height: 4px;
            width: 4px
        }

        .flickity-page-dots .dot.is-selected:before {
            border: 1px solid #63666a;
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        .flickity-page-dots .dot:last-of-type {
            margin: 0
        }

.flickity-button {
    display: none
}

    .flickity-button:hover {
        background-color: hsla(0,0%,100%,.6)
    }

    .flickity-button .flickity-button-icon {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 11px;
        width: 11px;
        margin: auto
    }

    .flickity-button svg path {
        stroke: #000;
        stroke-width: 5px
    }

    .flickity-button:disabled {
        display: none
    }

    .flickity-button.previous svg {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg)
    }

    .flickity-button.next svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

.sticky-border {
    height: 15px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 10
}

.module-blockquote__container {
    max-width: 1040px
}

    .module-blockquote__container h2 {
        margin-bottom: 30px
    }

.countryOverview h1 {
    margin: 150px 0
}

.countryOverview .country-section {
    margin-top: 150px
}

    .countryOverview .country-section .country-list {
        list-style: none
    }

        .countryOverview .country-section .country-list li {
            margin: 50px 0;
            visibility: hidden
        }

            .countryOverview .country-section .country-list li:first-child {
                -webkit-animation-delay: 90ms;
                animation-delay: 90ms;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:first-child, .countryOverview .country-section .country-list li:nth-child(2) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(2) {
                -webkit-animation-delay: .18s;
                animation-delay: .18s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(3) {
                -webkit-animation-delay: .27s;
                animation-delay: .27s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(3), .countryOverview .country-section .country-list li:nth-child(4) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(4) {
                -webkit-animation-delay: .36s;
                animation-delay: .36s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(5) {
                -webkit-animation-delay: .45s;
                animation-delay: .45s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(5), .countryOverview .country-section .country-list li:nth-child(6) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(6) {
                -webkit-animation-delay: .54s;
                animation-delay: .54s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(7) {
                -webkit-animation-delay: .63s;
                animation-delay: .63s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(7), .countryOverview .country-section .country-list li:nth-child(8) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(8) {
                -webkit-animation-delay: .72s;
                animation-delay: .72s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(9) {
                -webkit-animation-delay: .81s;
                animation-delay: .81s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(9), .countryOverview .country-section .country-list li:nth-child(10) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(10) {
                -webkit-animation-delay: .9s;
                animation-delay: .9s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(11) {
                -webkit-animation-delay: .99s;
                animation-delay: .99s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(11), .countryOverview .country-section .country-list li:nth-child(12) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(12) {
                -webkit-animation-delay: 1.08s;
                animation-delay: 1.08s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(13) {
                -webkit-animation-delay: 1.17s;
                animation-delay: 1.17s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(13), .countryOverview .country-section .country-list li:nth-child(14) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(14) {
                -webkit-animation-delay: 1.26s;
                animation-delay: 1.26s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(15) {
                -webkit-animation-delay: 1.35s;
                animation-delay: 1.35s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(15), .countryOverview .country-section .country-list li:nth-child(16) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(16) {
                -webkit-animation-delay: 1.44s;
                animation-delay: 1.44s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(17) {
                -webkit-animation-delay: 1.53s;
                animation-delay: 1.53s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(17), .countryOverview .country-section .country-list li:nth-child(18) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(18) {
                -webkit-animation-delay: 1.62s;
                animation-delay: 1.62s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(19) {
                -webkit-animation-delay: 1.71s;
                animation-delay: 1.71s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(19), .countryOverview .country-section .country-list li:nth-child(20) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(20) {
                -webkit-animation-delay: 1.8s;
                animation-delay: 1.8s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(21) {
                -webkit-animation-delay: 1.89s;
                animation-delay: 1.89s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(21), .countryOverview .country-section .country-list li:nth-child(22) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(22) {
                -webkit-animation-delay: 1.98s;
                animation-delay: 1.98s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(23) {
                -webkit-animation-delay: 2.07s;
                animation-delay: 2.07s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(23), .countryOverview .country-section .country-list li:nth-child(24) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(24) {
                -webkit-animation-delay: 2.16s;
                animation-delay: 2.16s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(25) {
                -webkit-animation-delay: 2.25s;
                animation-delay: 2.25s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(25), .countryOverview .country-section .country-list li:nth-child(26) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(26) {
                -webkit-animation-delay: 2.34s;
                animation-delay: 2.34s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(27) {
                -webkit-animation-delay: 2.43s;
                animation-delay: 2.43s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(27), .countryOverview .country-section .country-list li:nth-child(28) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(28) {
                -webkit-animation-delay: 2.52s;
                animation-delay: 2.52s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(29) {
                -webkit-animation-delay: 2.61s;
                animation-delay: 2.61s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(29), .countryOverview .country-section .country-list li:nth-child(30) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(30) {
                -webkit-animation-delay: 2.7s;
                animation-delay: 2.7s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(31) {
                -webkit-animation-delay: 2.79s;
                animation-delay: 2.79s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(31), .countryOverview .country-section .country-list li:nth-child(32) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(32) {
                -webkit-animation-delay: 2.88s;
                animation-delay: 2.88s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(33) {
                -webkit-animation-delay: 2.97s;
                animation-delay: 2.97s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(33), .countryOverview .country-section .country-list li:nth-child(34) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(34) {
                -webkit-animation-delay: 3.06s;
                animation-delay: 3.06s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(35) {
                -webkit-animation-delay: 3.15s;
                animation-delay: 3.15s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(35), .countryOverview .country-section .country-list li:nth-child(36) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(36) {
                -webkit-animation-delay: 3.24s;
                animation-delay: 3.24s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(37) {
                -webkit-animation-delay: 3.33s;
                animation-delay: 3.33s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(37), .countryOverview .country-section .country-list li:nth-child(38) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(38) {
                -webkit-animation-delay: 3.42s;
                animation-delay: 3.42s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(39) {
                -webkit-animation-delay: 3.51s;
                animation-delay: 3.51s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(39), .countryOverview .country-section .country-list li:nth-child(40) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(40) {
                -webkit-animation-delay: 3.6s;
                animation-delay: 3.6s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(41) {
                -webkit-animation-delay: 3.69s;
                animation-delay: 3.69s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(41), .countryOverview .country-section .country-list li:nth-child(42) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(42) {
                -webkit-animation-delay: 3.78s;
                animation-delay: 3.78s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(43) {
                -webkit-animation-delay: 3.87s;
                animation-delay: 3.87s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(43), .countryOverview .country-section .country-list li:nth-child(44) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(44) {
                -webkit-animation-delay: 3.96s;
                animation-delay: 3.96s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(45) {
                -webkit-animation-delay: 4.05s;
                animation-delay: 4.05s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(45), .countryOverview .country-section .country-list li:nth-child(46) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(46) {
                -webkit-animation-delay: 4.14s;
                animation-delay: 4.14s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(47) {
                -webkit-animation-delay: 4.23s;
                animation-delay: 4.23s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(47), .countryOverview .country-section .country-list li:nth-child(48) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(48) {
                -webkit-animation-delay: 4.32s;
                animation-delay: 4.32s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(49) {
                -webkit-animation-delay: 4.41s;
                animation-delay: 4.41s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(49), .countryOverview .country-section .country-list li:nth-child(50) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(50) {
                -webkit-animation-delay: 4.5s;
                animation-delay: 4.5s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(51) {
                -webkit-animation-delay: 4.59s;
                animation-delay: 4.59s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(51), .countryOverview .country-section .country-list li:nth-child(52) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(52) {
                -webkit-animation-delay: 4.68s;
                animation-delay: 4.68s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(53) {
                -webkit-animation-delay: 4.77s;
                animation-delay: 4.77s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(53), .countryOverview .country-section .country-list li:nth-child(54) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(54) {
                -webkit-animation-delay: 4.86s;
                animation-delay: 4.86s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(55) {
                -webkit-animation-delay: 4.95s;
                animation-delay: 4.95s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(55), .countryOverview .country-section .country-list li:nth-child(56) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(56) {
                -webkit-animation-delay: 5.04s;
                animation-delay: 5.04s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(57) {
                -webkit-animation-delay: 5.13s;
                animation-delay: 5.13s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(57), .countryOverview .country-section .country-list li:nth-child(58) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(58) {
                -webkit-animation-delay: 5.22s;
                animation-delay: 5.22s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(59) {
                -webkit-animation-delay: 5.31s;
                animation-delay: 5.31s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(59), .countryOverview .country-section .country-list li:nth-child(60) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(60) {
                -webkit-animation-delay: 5.4s;
                animation-delay: 5.4s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(61) {
                -webkit-animation-delay: 5.49s;
                animation-delay: 5.49s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(61), .countryOverview .country-section .country-list li:nth-child(62) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(62) {
                -webkit-animation-delay: 5.58s;
                animation-delay: 5.58s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(63) {
                -webkit-animation-delay: 5.67s;
                animation-delay: 5.67s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(63), .countryOverview .country-section .country-list li:nth-child(64) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(64) {
                -webkit-animation-delay: 5.76s;
                animation-delay: 5.76s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(65) {
                -webkit-animation-delay: 5.85s;
                animation-delay: 5.85s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(65), .countryOverview .country-section .country-list li:nth-child(66) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(66) {
                -webkit-animation-delay: 5.94s;
                animation-delay: 5.94s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(67) {
                -webkit-animation-delay: 6.03s;
                animation-delay: 6.03s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(67), .countryOverview .country-section .country-list li:nth-child(68) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(68) {
                -webkit-animation-delay: 6.12s;
                animation-delay: 6.12s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(69) {
                -webkit-animation-delay: 6.21s;
                animation-delay: 6.21s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(69), .countryOverview .country-section .country-list li:nth-child(70) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(70) {
                -webkit-animation-delay: 6.3s;
                animation-delay: 6.3s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(71) {
                -webkit-animation-delay: 6.39s;
                animation-delay: 6.39s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(71), .countryOverview .country-section .country-list li:nth-child(72) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(72) {
                -webkit-animation-delay: 6.48s;
                animation-delay: 6.48s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(73) {
                -webkit-animation-delay: 6.57s;
                animation-delay: 6.57s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(73), .countryOverview .country-section .country-list li:nth-child(74) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(74) {
                -webkit-animation-delay: 6.66s;
                animation-delay: 6.66s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(75) {
                -webkit-animation-delay: 6.75s;
                animation-delay: 6.75s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(75), .countryOverview .country-section .country-list li:nth-child(76) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(76) {
                -webkit-animation-delay: 6.84s;
                animation-delay: 6.84s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(77) {
                -webkit-animation-delay: 6.93s;
                animation-delay: 6.93s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(77), .countryOverview .country-section .country-list li:nth-child(78) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(78) {
                -webkit-animation-delay: 7.02s;
                animation-delay: 7.02s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(79) {
                -webkit-animation-delay: 7.11s;
                animation-delay: 7.11s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

            .countryOverview .country-section .country-list li:nth-child(79), .countryOverview .country-section .country-list li:nth-child(80) {
                -webkit-animation-name: fade-in-left;
                animation-name: fade-in-left;
                -webkit-animation-duration: .4s;
                animation-duration: .4s;
                visibility: visible
            }

            .countryOverview .country-section .country-list li:nth-child(80) {
                -webkit-animation-delay: 7.2s;
                animation-delay: 7.2s;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both
            }

.module--form {
    position: relative;
    max-width: 670px;
    margin: auto;
    color: #006939;
    letter-spacing: 1px;
    align-self: center;
    font-family: nycarlsbergdisplay-regular,arial
}

.module-container .module {
    margin: 0;
    padding: 0;
    max-width: 100% !important;
    width: 100%;
}

.custom-form-style {
    background-color: #f8f8f8;
    padding: 0;
}
.module--form .css-form-style .umbraco-forms-hidden {
    display: none;
}
    .custom-form-style .umbraco-forms-page {
        width: 300px;
    }

.module--form .umbraco-forms-page fieldset {
    padding: 0;
    border: 0
}

.module--form .umbraco-forms-page .umbraco-forms-field {
    margin-bottom: 20px;
    position: relative
}

    .module--form .umbraco-forms-page .umbraco-forms-field:last-of-type {
        margin-bottom: 0
    }

    .module--form .umbraco-forms-page .umbraco-forms-field .help-block {
        font-size: 11px;
        padding-bottom: 10px;
        display: block
    }

    .module--form .umbraco-forms-page .umbraco-forms-field input[type=date], .umbraco-forms-field input[type=email], .module--form .umbraco-forms-page .umbraco-forms-field input[type=text], .module--form .umbraco-forms-page .umbraco-forms-field textarea {
        border-radius: 0;
        width: 100%;
        height: 50px;
        border: 2px solid #006939;
        padding-left: 10px;
        color: #63666a
    }

        .module--form .umbraco-forms-page .umbraco-forms-field input[type=date].datepickerfield, .module--form .umbraco-forms-page .umbraco-forms-field input[type=text].datepickerfield, .module--form .umbraco-forms-page .umbraco-forms-field textarea.datepickerfield {
            outline: 0
        }

        .module--form .umbraco-forms-page .umbraco-forms-field input[type=date].mobile-datepicker, .module--form .umbraco-forms-page .umbraco-forms-field input[type=text].mobile-datepicker, .module--form .umbraco-forms-page .umbraco-forms-field textarea.mobile-datepicker {
            padding-top: 12px;
            background-color: transparent
        }

    .module--form .umbraco-forms-page .umbraco-forms-field textarea {
        min-height: 150px;
        padding-top: 10px
    }

    .module--form .umbraco-forms-page .umbraco-forms-field .field-validation-error {
        color: #d81b1c;
        display: block;
        margin-top: 15px
    }

    .module--form .umbraco-forms-page .umbraco-forms-field .input-file-label, .module--form .umbraco-forms-page .umbraco-forms-field .umbraco-forms-label {
        font-family: nycarlsbergdisplay-bold,arial;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-size: 10px;
        display: flex;
        flex-direction: row-reverse;
        align-items: flex-start;
        justify-content: flex-end;
        margin: 0 0 20px
    }

        .module--form .umbraco-forms-page .umbraco-forms-field .input-file-label span, .module--form .umbraco-forms-page .umbraco-forms-field .umbraco-forms-label span {
            margin: 0 10px 0 0;
            position: relative;
            top: 2px;
            font-family: nycarlsbergdisplay-bold,arial;
            font-size: 12px
        }

            .module--form .umbraco-forms-page .umbraco-forms-field .umbraco-forms-label span.umbraco-forms-indicator {
                color: red;
            }

    .module--form .umbraco-forms-page .umbraco-forms-field.titleanddescription:first-of-type {
        margin-bottom: 50px;
        text-align: center
    }

    .module--form .umbraco-forms-page .umbraco-forms-field.titleanddescription:not(:first-of-type) {
        margin-top: 50px
    }

    .module--form .umbraco-forms-page .umbraco-forms-field.selectionofproducts {
        margin: 50px 0
    }

        .module--form .umbraco-forms-page .umbraco-forms-field.selectionofproducts > label {
            margin: 0 0 30px
        }

    .module--form .umbraco-forms-page .umbraco-forms-field.multiplechoice, .module--form .umbraco-forms-page .umbraco-forms-field.singlechoice {
        margin-bottom: 0
    }

        .module--form .umbraco-forms-page .umbraco-forms-field.multiplechoice > label, .module--form .umbraco-forms-page .umbraco-forms-field.singlechoice > label {
            margin: 0 0 40px
        }

    .module--form .umbraco-forms-page .umbraco-forms-field.fileupload input {
        width: .1px;
        height: .1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1
    }

        .module--form .umbraco-forms-page .umbraco-forms-field.fileupload input ~ label {
            display: inline-flex;
            justify-content: center;
            padding: 15px 40px;
            text-align: center;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            color: #fff;
            background-color: #006939;
            border: 3px solid #006939;
            transition: background-color .25s ease-in-out,color .25s ease-in;
            font-family: nycarlsbergdisplay-bold,arial;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-size: 11px
        }

    .module--form .umbraco-forms-page .umbraco-forms-field.concent > label {
        display: none
    }

    .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist {
        text-align: left;
        padding: 0
    }

        .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist .input-radio input[type=radio] ~ label {
            display: block;
            padding: 0 15px
        }

            .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist .input-radio input[type=radio] ~ label:after, .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist .input-radio input[type=radio] ~ label:before {
                content: " ";
                display: table
            }

            .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist .input-radio input[type=radio] ~ label:after {
                clear: both
            }

            .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist .input-radio input[type=radio] ~ label .label-box {
                float: left;
                margin: 0 20px 0 0
            }

            .module--form .umbraco-forms-page .umbraco-forms-field.concent .radiobuttonlist .input-radio input[type=radio] ~ label .label-text {
                float: left;
                width: calc(100% - 44px);
                text-transform: lowercase;
                font-size: 8px;
                line-height: 1.7;
                color: #63666a;
                letter-spacing: 0
            }

.module--form .umbraco-forms-page .umbraco-forms-field-wrapper {
    position: relative;
    margin-bottom: 25px
}

    .module--form .umbraco-forms-page .umbraco-forms-field-wrapper h2 {
        font-family: nycarlsbergdisplay-bold,arial
    }

        .module--form .umbraco-forms-page .umbraco-forms-field-wrapper h2 ~ p {
            margin-top: 25px;
            font-family: nycarlsbergdisplay-light,arial;
            line-height: 1.7
        }

    .module--form .umbraco-forms-page .umbraco-forms-field-wrapper br {
        display: none
    }

.module--form .umbraco-forms-page .input-checkbox, .module--form .umbraco-forms-page .input-radio {
    margin-bottom: 20px
}

    .module--form .umbraco-forms-page .input-checkbox:last-of-type, .module--form .umbraco-forms-page .input-radio:last-of-type {
        margin-bottom: 0
    }

    .module--form .umbraco-forms-page .input-checkbox input[type=checkbox], .module--form .umbraco-forms-page .input-checkbox input[type=radio], .module--form .umbraco-forms-page .input-radio input[type=checkbox], .module--form .umbraco-forms-page .input-radio input[type=radio] {
        position: absolute;
        opacity: 0;
        height: 0;
        visibility: hidden;
        display: none
    }

        .module--form .umbraco-forms-page .input-checkbox input[type=checkbox]:checked ~ label .label-box:after, .module--form .umbraco-forms-page .input-checkbox input[type=radio]:checked ~ label .label-box:after, .module--form .umbraco-forms-page .input-radio input[type=checkbox]:checked ~ label .label-box:after, .module--form .umbraco-forms-page .input-radio input[type=radio]:checked ~ label .label-box:after {
            -webkit-transform: scale(1);
            transform: scale(1);
            opacity: 1
        }

        .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label, .module--form .umbraco-forms-page .input-checkbox input[type=radio] ~ label, .module--form .umbraco-forms-page .input-radio input[type=checkbox] ~ label, .module--form .umbraco-forms-page .input-radio input[type=radio] ~ label {
            position: relative;
            font-family: nycarlsbergdisplay-bold,arial;
            letter-spacing: 2px;
            font-size: 10px;
            display: block;
            text-transform: uppercase;
            line-height: 1.8
        }

            .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label span, .module--form .umbraco-forms-page .input-checkbox input[type=radio] ~ label span, .module--form .umbraco-forms-page .input-radio input[type=checkbox] ~ label span, .module--form .umbraco-forms-page .input-radio input[type=radio] ~ label span {
                font-family: nycarlsbergdisplay-bold,arial
            }

            .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label .label-box, .module--form .umbraco-forms-page .input-checkbox input[type=radio] ~ label .label-box, .module--form .umbraco-forms-page .input-radio input[type=checkbox] ~ label .label-box, .module--form .umbraco-forms-page .input-radio input[type=radio] ~ label .label-box {
                display: block;
                position: absolute;
                height: 24px;
                width: 24px;
                border: 2px solid #006939
            }

                .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label .label-box:after, .module--form .umbraco-forms-page .input-checkbox input[type=radio] ~ label .label-box:after, .module--form .umbraco-forms-page .input-radio input[type=checkbox] ~ label .label-box:after, .module--form .umbraco-forms-page .input-radio input[type=radio] ~ label .label-box:after {
                    content: "";
                    position: absolute;
                    background-color: #006939;
                    opacity: 0;
                    transition: opacity .25s ease-in-out,-webkit-transform .25s ease-in-out;
                    transition: opacity .25s ease-in-out,transform .25s ease-in-out;
                    transition: opacity .25s ease-in-out,transform .25s ease-in-out,-webkit-transform .25s ease-in-out;
                    -webkit-transform: scale(.95);
                    transform: scale(.95)
                }

            .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label .label-text, .module--form .umbraco-forms-page .input-checkbox input[type=radio] ~ label .label-text, .module--form .umbraco-forms-page .input-radio input[type=checkbox] ~ label .label-text, .module--form .umbraco-forms-page .input-radio input[type=radio] ~ label .label-text {
                padding-left: 40px;
                display: block
            }

.module--form .umbraco-forms-page .checkboxlist {
    display: block
}

.module--form .umbraco-forms-page .input-checkbox {
    margin-bottom: 20px
}

    .module--form .umbraco-forms-page .input-checkbox:nth-of-type(2n+3) {
        clear: left
    }

    .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label:after, .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label:before {
        content: " ";
        display: table
    }

    .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label:after {
        clear: both
    }

    .module--form .umbraco-forms-page .input-checkbox input[type=checkbox] ~ label .label-box:after {
        top: 7px;
        left: 0;
        right: 0;
        height: 7px;
        width: 7px;
        margin: auto
    }

.module--form .umbraco-forms-page .input-radio img {
    margin-bottom: 10px;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.module--form .umbraco-forms-page .input-radio input[type=radio]:checked ~ label img {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px)
}

.module--form .umbraco-forms-page .input-radio input[type=radio] ~ label .label-box {
    border-radius: 50%
}

    .module--form .umbraco-forms-page .input-radio input[type=radio] ~ label .label-box:after {
        border-radius: 50%;
        top: 6px;
        left: 0;
        right: 0;
        margin: auto;
        width: 8px;
        height: 8px
    }

.module--form .umbraco-forms-page .umbraco-forms-navigation {
    margin-top: 50px
}

    .module--form .umbraco-forms-page .umbraco-forms-navigation .col-md-12 {
        text-align: center
    }

    .module--form .umbraco-forms-page .umbraco-forms-navigation input[type=submit] {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
        border-radius: 0;
        outline: none;
        background: transparent;
        vertical-align: bottom;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 25px 50px;
        text-align: center;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        color: #fff;
        background-color: #006939;
        border: 3px solid #006939;
        transition: background-color .25s ease-in-out,color .25s ease-in;
        font-family: nycarlsbergdisplay-bold,arial;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-size: 11px
    }

.pika-single {
    font-family: nycarlsbergdisplay-regular,arial;
    position: absolute !important
}

    .pika-single.is-bound {
        box-shadow: none !important;
        border: 2px solid #006939;
        border-top: 0
    }

    .pika-single .pika-table thead tr th, .pika-single .pika-title {
        color: #006939
    }

    .pika-single .pika-lendar {
        width: auto
    }

    .pika-single .pika-table tbody {
        background-color: #ebebeb
    }

        .pika-single .pika-table tbody .is-selected {
            position: relative
        }

            .pika-single .pika-table tbody .is-selected:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                margin: auto;
                height: 35px;
                width: 35px;
                border-radius: 50%;
                background-color: #fff
            }

            .pika-single .pika-table tbody .is-selected .pika-button {
                background: none;
                box-shadow: none;
                border-radius: 0
            }

        .pika-single .pika-table tbody .pika-button {
            position: relative;
            padding: 15px;
            background-color: #ebebeb;
            color: #006939;
            text-align: center
        }

.module-four-card-tall .card-container__card-left .card .card__headline {
    max-width: 420px
}

.module-four-card-tall .card-container__card-right .card:last-of-type {
    width: 100%;
    margin: 0
}

.module-four-card-tall--left .card-container__card-left, .module-four-card-tall--right .card-container__card-left {
    margin: 0 0 15px
}

.module-media-slider .swiper-container, .module-media-slider .swiper-slide {
    height: 100%
}

.module-media-slider__inner {
    position: relative;
    overflow: hidden
}

.module-media-slider__background-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .3s ease
}

    .module-media-slider__background-image.b-lazy {
        display: block
    }

    .module-media-slider__background-image.b-loaded {
        opacity: 1
    }

.module-media-slider .swiper-pagination {
    position: relative;
    margin-top: 30px
}

    .module-media-slider .swiper-pagination .swiper-pagination-bullet {
        height: 16px;
        width: 16px;
        margin: 0 6px 0 0;
        opacity: 1;
        background-color: transparent;
        position: relative
    }

        .module-media-slider .swiper-pagination .swiper-pagination-bullet:after, .module-media-slider .swiper-pagination .swiper-pagination-bullet:before {
            content: "";
            position: absolute
        }

        .module-media-slider .swiper-pagination .swiper-pagination-bullet:before {
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 50%;
            transition: -webkit-transform .2s ease-in-out;
            transition: transform .2s ease-in-out;
            transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
            -webkit-transform: scale(.5);
            transform: scale(.5);
           /* background-color: #006939;*/
        }

        .module-media-slider .swiper-pagination .swiper-pagination-bullet:after {
            top: 6px;
            left: 6px;
            height: 4px;
            width: 4px;
            background-color: #63666a;
            border-radius: 50%;
            margin: auto;
            background-color: #006939;
        }

        .module-media-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
            border: 1px solid #006939;
            -webkit-transform: scale(1);
            transform: scale(1)
        }

        .module-media-slider .swiper-pagination .swiper-pagination-bullet:last-of-type {
            margin: 0
        }

.module-media-slider .swiper-slide {
    height: 420px
}

.module-media-slider .swiper-slide--image {
    background-position: 50%;
    background-repeat: no-repeat;
    transition: opacity .3s ease;
    opacity: 0
}

    .module-media-slider .swiper-slide--image.b-loaded {
        opacity: 1
    }

.module-media-slider .swiper-slide--youtube .youtube-embed {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.module-media-slider .swiper-button-next, .module-media-slider .swiper-button-prev {
    display: none
}

.module-media-slider .swiper-button-prev {
    left: -100px
}

.module-media-slider .swiper-button-next {
    right: -100px
}

.module-media-slider:hover .swiper-button-next:not(.swiper-button-next--hide), .module-media-slider:hover .swiper-button-prev:not(.swiper-button-prev--hide) {
    opacity: 1
}

.module-media-slider:hover .swiper-button-prev:not(.swiper-button-prev--hide) {
    -webkit-transform: translateX(50px);
    transform: translateX(50px)
}

.module-media-slider:hover .swiper-button-next:not(.swiper-button-next--hide) {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px)
}

.module-media-slider--single .swiper-button-next, .module-media-slider--single .swiper-button-prev, .module-media-slider--single .swiper-pagination {
    display: none
}

.module-media {
    position: relative
}

.module-media--image, .module-media--video, .module-media__youtube-placeholder {
    height: 420px;
    position: relative;
    overflow: hidden
}

    .module-media__youtube-placeholder.youtube-embed--loaded ~ .module-media__background-video {
        display: none
    }

.module-media__background-video {
    position: relative;
    height: 100%
}

    .module-media__background-video video {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        opacity: 0;
        height: 100%
    }

        .module-media__background-video video.b-loaded {
            opacity: 1
        }

.module-media__background-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%
}

    .module-media__background-image.b-loaded {
        -webkit-animation: fadeIn .3s ease-in-out;
        animation: fadeIn .3s ease-in-out
    }

.module-media--small .module-media--image, .module-media--small .module-media--youtube .youtube-embed {
    max-width: 840px;
    margin: auto
}

.story-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.story-slider__pioneer-indicator {
    position: absolute;
    top: 36px;
    left: 26px;
    z-index: 2;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    flex-direction: row
}

    .story-slider__pioneer-indicator img {
        border-radius: 50%;
        margin-right: 15px;
        width: 50px;
        height: 50px
    }

    .story-slider__pioneer-indicator .pioneer-thumbnail-loader {
        height: 50px;
        width: 50px
    }

.story-slider--first-slide .story-slider__pioneer-indicator span:not(.pioneer-thumbnail-loader) {
    display: none
}

.story-slider .swiper-container, .story-slider article {
    position: relative;
    height: 100%
}

.story-slider .swiper-wrapper {
    z-index: auto
}

.story-slider .swiper-container {
    background-color: #fff
}

.story-slider .swiper-slide {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row
}

    .story-slider .swiper-slide:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0,0,0,.5)
    }

.story-slider .swiper-slide--intro .swiper-slide__content {
    text-align: center
}

    .story-slider .swiper-slide--intro .swiper-slide__content h1 {
        margin-bottom: 20px;
        text-transform: uppercase
    }

.story-slider .swiper-slide__content {
    position: relative;
    z-index: 1;
    padding: 0 30px
}

    .story-slider .swiper-slide__content h2 {
        margin-bottom: 20px
    }

    .story-slider .swiper-slide__content p {
        margin: 0 0 6px
    }

        .story-slider .swiper-slide__content p:last-of-type {
            margin: 0
        }

    .story-slider .swiper-slide__content .slide-text {
        font-size: 16px
    }

.story-slider__init {
    background-color: #fff;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease
}

    .story-slider__init, .story-slider__init:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0
    }

        .story-slider__init:after {
            content: "";
            background-color: rgba(0,0,0,.5)
        }

.story-slider__init--hidden {
    display: none
}

.story-slider__init-image {
    opacity: 0;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    transition: opacity .3s ease-in
}

    .story-slider__init-image.b-loaded {
        opacity: 1
    }

.pioneers--init .story-slider .story-slider__init {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    transition-delay: .25s
}

.pioneers--init .story-slider .story-slider__cta h3.color--white {
    color: transparent
}

.story-slider article.article {
    transition: opacity .3s ease-in,-webkit-filter .25s ease-in-out;
    transition: opacity .3s ease-in,filter .25s ease-in-out;
    transition: opacity .3s ease-in,filter .25s ease-in-out,-webkit-filter .25s ease-in-out;
    opacity: 0;
    display: block
}

.pioneers--story-mode .story-slider article.article {
    opacity: 1
}

.pioneers--story-mode .story-slider article.article--fade-out {
    opacity: 0
}

.story-slider__cta {
    position: absolute;
    top: 195px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    z-index: 1
}

.story-slider__cta-content {
    max-width: 1040px;
    margin: auto;
    padding: 0 20px;
    position: relative
}

    .story-slider__cta-content p {
        max-width: 55%;
        margin: 0 auto
    }

    .story-slider__cta-content svg {
        height: 22px;
        width: 13px;
        position: absolute;
        right: 0;
        bottom: -30px;
        left: 0;
        margin: auto;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        transition: -webkit-transform .25s cubic-bezier(.77,0,.175,1);
        transition: transform .25s cubic-bezier(.77,0,.175,1);
        transition: transform .25s cubic-bezier(.77,0,.175,1),-webkit-transform .25s cubic-bezier(.77,0,.175,1);
        -webkit-transform-origin: center center;
        transform-origin: center center
    }

    .story-slider__cta-content h2 {
        margin-bottom: 20px;
        font-size: 26px
    }

.story-slider .story-progress-pagination {
    display: flex
}

.story-slider .swiper-button-next, .story-slider .swiper-button-prev {
    top: 0;
    bottom: 0;
    width: 50%
}

    .story-slider .swiper-button-next.swiper-button-disabled, .story-slider .swiper-button-prev.swiper-button-disabled {
        display: none
    }

    .story-slider .swiper-button-next svg, .story-slider .swiper-button-prev svg {
        bottom: 30px;
        width: 22px;
        position: absolute
    }

.story-slider .swiper-button-prev {
    left: 0
}

    .story-slider .swiper-button-prev svg {
        left: 30px
    }

.story-slider .swiper-button-next {
    right: 0
}

    .story-slider .swiper-button-next svg {
        right: 30px
    }

.pioneers {
    height: 100vh;
    height: calc(100vh - var(--vh-offset));
    position: relative;
    overflow: hidden
}

    .pioneers .close-button-small {
        position: absolute;
        top: 40px;
        right: 13px;
        z-index: 1
    }

.module-product-information__content {
    text-align: center;
    padding: 15px 0 0
}

.module-product-information__manchet {
    max-width: 840px;
    padding: 0 15px;
    margin: 40px auto 90px;
    color: #63666a;
    font-family: nycarlsbergdisplay-light,arial;
    text-align: left;
    font-size: 16px
}

    .module-product-information__manchet p {
        margin: 0
    }

.module-product-information .beer-ingredients ~ .nutritional-values {
    margin-bottom: 30px
}

.module-product-information .nutritional-values {
    margin-top: 25px
}

.product-presentation-module {
    height: 100%
}

    .product-presentation-module .product-presentation-container {
        width: 100%;
        margin: auto;
        text-align: center;
        padding: 75px 0
    }

        .product-presentation-module .product-presentation-container img {
            min-height: 400px;
            max-height: 400px;
            width: auto;
            display: block;
            margin: auto
        }

        .product-presentation-module .product-presentation-container .b-loaded ~ .product-presentation-container__content {
            opacity: 1
        }

    .product-presentation-module .product-presentation-container__content {
        text-align: left;
        margin-top: 30px;
        transition: opacity .3s ease-in;
        opacity: 0;
        transition-delay: .2s
    }

        .product-presentation-module .product-presentation-container__content .section-title {
            text-transform: uppercase;
            margin-left: 15px
        }

        .product-presentation-module .product-presentation-container__content h2 {
            margin: 12px 0 0 15px
        }

        .product-presentation-module .product-presentation-container__content .button-container {
            margin: 40px 15px 0
        }

.product-swiper {
    height: 500px;
    position: relative
}

.product-swiper--duringChangingProduct ~ .article-container {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.product-swiper .background-center {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.product-swiper ~ .tempBackgroundColorElement {
    position: absolute;
    top: 530px;
    right: 30px;
    left: 30px;
    content: "";
    height: 100vh
}

.product-swiper .main-carousel {
    height: 100%;
    width: 100%;
    margin: auto;
    position: static;
    opacity: 0;
    transition: .3s ease-in;
    display: block
}

.product-swiper--ready .main-carousel {
    opacity: 1
}

.product-swiper .main-carousel .carousel-cell {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: flex-end
}

    .product-swiper .main-carousel .carousel-cell .shadow {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 40px;
        pointer-events: none;
        margin: 0 auto
    }

    .product-swiper .main-carousel .carousel-cell .product {
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        margin-bottom: 60px;
        pointer-events: none;
        height: 300px
    }

    .product-swiper .main-carousel .carousel-cell .product__image {
        height: 100%;
        width: auto
    }

    .product-swiper .main-carousel .carousel-cell .product__label {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 100%;
        width: 100%
    }

        .product-swiper .main-carousel .carousel-cell .product__label .label {
            position: absolute;
            top: 0;
            background-size: contain;
            background-repeat: repeat-x;
            background-position-y: 0;
            height: 100%
        }

    .product-swiper .main-carousel .carousel-cell .product__light {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%
    }

    .product-swiper .main-carousel .carousel-cell .product__label-shadow {
        position: absolute;
        left: 2px;
        height: 100%;
        overflow: hidden;
        width: calc(100% - 3px)
    }

        .product-swiper .main-carousel .carousel-cell .product__label-shadow img {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            opacity: .4
        }

.product-swiper .main-carousel .carousel-cell--bottle-330ml .shadow {
    opacity: .5;
    left: -40px;
    bottom: 15px;
    height: 355px
}

.product-swiper .main-carousel .carousel-cell--bottle-330ml .product__label {
    left: 2px;
    overflow: hidden;
    width: calc(100% - 3px)
}

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .product__label .label {
        width: 163.33333px;
        left: calc(-81.66667px + 50%)
    }

.product-swiper .main-carousel .carousel-cell--can-330ml .shadow {
    opacity: .5;
    left: -50px;
    height: 185px
}

.product-swiper .main-carousel .carousel-cell--can-330ml .product__label .label {
    width: 194px;
    left: calc(-97px + 50%)
}

.product-swiper .main-carousel .carousel-cell--can-500ml .shadow {
    opacity: .5;
    left: -50px;
    height: 255px
}

.product-swiper .main-carousel .carousel-cell--can-500ml .product__label .label {
    width: 194px;
    left: calc(-97px + 50%)
}

.product-swiper__gradient {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg,hsla(0,0%,100%,0) 0,hsla(0,0%,100%,.5));
    height: 200px;
    pointer-events: none
}

.product-swiper--beer-overview-active .main-carousel {
    opacity: 0
}

.product-swiper__open-beer-overview {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 20px;
    justify-content: space-between;
    flex-direction: column-reverse;
    text-transform: uppercase
}

    .product-swiper__open-beer-overview:before {
        content: "";
        height: 3px;
        background-color: #006939;
        width: 100%
    }

.product-swiper--hide-pagination .product-swiper__open-beer-overview {
    display: flex
}

.module-speaking-of {
    text-align: center;
    position: relative;
    padding: 90px 0 0
}

.module-speaking-of__headline {
    max-width: 1040px;
    margin: 0 auto 30px
}

.module-speaking-of__subheadline {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase
}

.module-speaking-of__media {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 420px
}

    .module-speaking-of__media video {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        min-width: 100%;
        min-height: 100%;
        height: 100%
    }

    .module-speaking-of__media .b-lazy {
        position: absolute;
       /* top: 0;
        left: 0;*/
        height: 100%;
        width: 100%
    }

.module-speaking-of .button {
    width: auto
}

.module-speaking-of svg {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    transition: -webkit-transform .1s cubic-bezier(.4,0,1,1);
    transition: transform .1s cubic-bezier(.4,0,1,1);
    transition: transform .1s cubic-bezier(.4,0,1,1),-webkit-transform .1s cubic-bezier(.4,0,1,1);
    stroke-width: 3px;
    stroke: #fff;
    fill: none
}

.module-speaking-of:hover svg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: -webkit-transform .1s cubic-bezier(0,0,.2,1);
    transition: transform .1s cubic-bezier(0,0,.2,1);
    transition: transform .1s cubic-bezier(0,0,.2,1),-webkit-transform .1s cubic-bezier(0,0,.2,1)
}

.module-text__container {
    max-width: 700px;
    padding: 0 30px
}

    .module-text__container.color--carlsberg-rich-green a:not(.button), .module-text__container.color--carlsberg-rich-green a:not(.button):visited {
        color: #006939
    }

    .module-text__container.color--carlsberg-dark-grey a:not(.button), .module-text__container.color--carlsberg-dark-grey a:not(.button):visited {
        color: #63666a
    }

    .module-text__container table {
        display: block !important;
        overflow-x: scroll !important;
        background-color: transparent !important;
        border: 0 !important
    }

        .module-text__container table tbody {
            border: 0 !important
        }

.module-text__section-title {
    font-family: nycarlsbergdisplay-bold,arial;
    text-transform: uppercase;
    margin-bottom: 30px
}

.module-text__headline {
    margin-bottom: 30px
}

.module-text__manchet {
    margin-bottom: 30px;
    font-family: nycarlsbergdisplay-bold,arial
}

.module-text__paragraph {
    font-family: nycarlsbergdisplay-light,arial;
    line-height: 1.8;
    font-size: 16px
}

    .module-text__paragraph h3 {
        margin: 0;
        font-family: nycarlsbergdisplay-bold,arial;
        letter-spacing: 1px;
        line-height: 1.2;
        font-size: 20px
    }

    .module-text__paragraph p {
        margin: 0 0 10px
    }

        .module-text__paragraph p:last-of-type {
            margin: 0
        }

    .module-text__paragraph a, .module-text__paragraph a:visited {
        color: #63666a;
        text-decoration: underline
    }

article .module-text__paragraph a, article .module-text__paragraph a:visited {
    color: #fff
}

.module-three-card-medium .card-container__card-left .card__headline {
    max-width: 420px
}

.module-three-card-medium--left .card-container__card-left {
    width: 100%;
    margin: 0 0 15px
}

.module-three-card-medium--left .card-container__card-right {
    display: block
}

    .module-three-card-medium--left .card-container__card-right .card {
        width: 100%
    }

.module-three-card-medium--right .card-container {
    display: flex;
    flex-direction: column-reverse
}

.module-three-card-medium--right .card-container__card-left {
    width: 100%;
    margin: 15px 0 0
}

.module-three-card-medium--right .card-container__card-right {
    display: block
}

.module-two-card-large .card-container__card-left .card__headline {
    max-width: 420px
}

.module-two-card-large--left .card-container__card-left {
    margin: 0 0 15px
}

.module-two-card-large--right .card-container {
    flex-direction: row-reverse
}

.module-two-card-large--right .card-container__card-left {
    margin: 0 0 15px
}

.module-404 {
    height: 100vh;
    height: calc(100vh - 30px - var(--vh-offset));
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 15px
}

    .module-404 p {
        margin-top: 50px
    }

    .module-404 h2, .module-404 p {
        position: relative;
        max-width: 670px
    }

    .module-404 h2 {
        margin-right: auto
    }

    .module-404 .button {
        position: relative;
        margin: 50px 0 0
    }

.module-404__background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.better-answers-overview {
    padding-top: 70px
}

.better-answers-overview__container {
    max-width: 1040px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 50px 20px 0;
    justify-content: center
}

.better-answers-overview__item {
    border-radius: 5px;
    width: 100%;
    margin: 0 0 20px;
    height: 460px;
    padding: 25px;
    display: flex;
    flex-direction: column
}

    .better-answers-overview__item .title {
        margin-bottom: 15px
    }

    .better-answers-overview__item .question {
        margin-bottom: 50px
    }

        .better-answers-overview__item .question:first-letter {
            text-transform: uppercase
        }

    .better-answers-overview__item .better-answer__answer {
        margin-top: 40px;
        overflow: hidden
    }

    .better-answers-overview__item:last-of-type {
        margin-right: 0
    }

.disclaimer {
    background-color: #fff;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-direction: row;
    height: 50px;
    align-items: center
}

    .disclaimer img {
        display: block;
        max-height: 100%;
        width: 100%
    }

    .disclaimer ~ .footer {
        padding-bottom: 50px
    }

.pioneer .disclaimer, .pioneersOverview .disclaimer {
    display: none
}

.footer {
    display: flex;
    bottom: 0;
    height: auto
}

.footer, .footer__container {
    position: relative;
    width: 100%
}

.footer__container {
    max-width: 1040px
}

.footer__social-icons {
    margin-top: 60px;
    padding: 0
}

.footer__social-icons__icon {
    width: 40px;
    padding: 0 5px;
    display: inline-block
}

    .footer__social-icons__icon a {
        display: block
    }

    .footer__social-icons__icon svg {
        display: inline
    }

    .footer__social-icons__icon path, .footer__social-icons__icon svg {
        transition: .2s ease-in;
        height: 40px
    }

        .footer__social-icons__icon path:hover path, .footer__social-icons__icon svg:hover path {
            fill: #fff
        }

.footer__navigation {
    margin: 40px 0;
    list-style: none
}

.footer__navigation, .footer__navigation--center, .footer__navigation--left, .footer__navigation--right {
    padding: 0;
    text-align: center;
    display: block
}

.footer__navigation--left {
    padding: 0
}

.footer__navigation li {
    display: block;
    justify-content: space-between;
    padding: 15px
}

.footer__navigation__link {
    text-decoration: none;
    transition: color .25s ease-in-out
}

    .footer__navigation__link:hover {
        color: #a0d035
    }

.footer__text {
    color: #fff;
    font-size: 11px
}

.footer__legal-text {
    text-align: center;
    letter-spacing: 1px;
    color: #034525
}

.footer__tagline {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center
}

    .footer__tagline svg {
        width: 320px;
        text-align: center;
        display: inline-block
    }

.navigation {
    height: 100%;
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform .5s cubic-bezier(.77,0,.175,1);
    transition: transform .5s cubic-bezier(.77,0,.175,1);
    transition: transform .5s cubic-bezier(.77,0,.175,1),-webkit-transform .5s cubic-bezier(.77,0,.175,1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    overflow: hidden;
    z-index: 4;
    display: block
}

.navigation--open {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.navigation ul {
    list-style: none;
    margin-bottom: 0
}

    .navigation ul a:focus {
        outline: none;
        color: #63666a
    }

        .navigation ul a:focus .expand-icon {
            background-color: #63666a
        }

.navigation__list {
    position: relative;
    height: 100%;
    margin-top: 25px;
    padding: 15px 5% 30px 15px;
    overflow-y: auto
}

    .navigation__list .item {
        display: block;
        margin-bottom: 30px;
        text-transform: uppercase;
        -webkit-animation-duration: .2s;
        animation-duration: .2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut;
        visibility: hidden
    }

.navigation--open.fadein-list .navigation__list .item:first-child {
    -webkit-animation-delay: 90ms;
    animation-delay: 90ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:first-child, .navigation--open.fadein-list .navigation__list .item:nth-child(2) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(2) {
    -webkit-animation-delay: .18s;
    animation-delay: .18s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(3) {
    -webkit-animation-delay: .27s;
    animation-delay: .27s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(3), .navigation--open.fadein-list .navigation__list .item:nth-child(4) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(4) {
    -webkit-animation-delay: .36s;
    animation-delay: .36s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(5) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(5), .navigation--open.fadein-list .navigation__list .item:nth-child(6) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(6) {
    -webkit-animation-delay: .54s;
    animation-delay: .54s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(7) {
    -webkit-animation-delay: .63s;
    animation-delay: .63s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(7), .navigation--open.fadein-list .navigation__list .item:nth-child(8) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(8) {
    -webkit-animation-delay: .72s;
    animation-delay: .72s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(9) {
    -webkit-animation-delay: .81s;
    animation-delay: .81s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(9), .navigation--open.fadein-list .navigation__list .item:nth-child(10) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(10) {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(11) {
    -webkit-animation-delay: .99s;
    animation-delay: .99s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(11), .navigation--open.fadein-list .navigation__list .item:nth-child(12) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(12) {
    -webkit-animation-delay: 1.08s;
    animation-delay: 1.08s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(13) {
    -webkit-animation-delay: 1.17s;
    animation-delay: 1.17s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(13), .navigation--open.fadein-list .navigation__list .item:nth-child(14) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    visibility: visible
}

.navigation--open.fadein-list .navigation__list .item:nth-child(14) {
    -webkit-animation-delay: 1.26s;
    animation-delay: 1.26s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.navigation--open.fadein-list .navigation__list .item:nth-child(15) {
    -webkit-animation-name: fade-in-left;
    animation-name: fade-in-left;
    -webkit-animation-delay: 1.35s;
    animation-delay: 1.35s;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible
}

.navigation__list .item__link {
    display: block;
    transition: all .2s ease-in-out;
    text-decoration: none
}

.navigation__list .item.has-children {
    position: relative
}

.navigation__list .item.has-children--active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform .7s cubic-bezier(.19,1,.22,1);
    transition: transform .7s cubic-bezier(.19,1,.22,1);
    transition: transform .7s cubic-bezier(.19,1,.22,1),-webkit-transform .7s cubic-bezier(.19,1,.22,1);
    -webkit-animation: none;
    animation: none
}

    .navigation__list .item.has-children--active .item__link {
        color: #63666a;
        visibility: visible;
        opacity: 1
    }

        .navigation__list .item.has-children--active .item__link .expand-icon {
            background-color: #63666a
        }

            .navigation__list .item.has-children--active .item__link .expand-icon:after {
                -webkit-transform: scale(.1);
                transform: scale(.1)
            }

    .navigation__list .item.has-children--active .sub-list {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    .navigation__list .item.has-children--active .sub-list--active li {
        -webkit-animation-delay: .2s;
        animation-delay: .2s
    }

        .navigation__list .item.has-children--active .sub-list--active li:first-child {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: 90ms;
            animation-delay: 90ms;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(2) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .18s;
            animation-delay: .18s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(3) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .27s;
            animation-delay: .27s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(4) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .36s;
            animation-delay: .36s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(5) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .45s;
            animation-delay: .45s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(6) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .54s;
            animation-delay: .54s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(7) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .63s;
            animation-delay: .63s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(8) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .72s;
            animation-delay: .72s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(9) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .81s;
            animation-delay: .81s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(10) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .9s;
            animation-delay: .9s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(11) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: .99s;
            animation-delay: .99s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(12) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: 1.08s;
            animation-delay: 1.08s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(13) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: 1.17s;
            animation-delay: 1.17s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(14) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: 1.26s;
            animation-delay: 1.26s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

        .navigation__list .item.has-children--active .sub-list--active li:nth-child(15) {
            -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
            -webkit-animation-delay: 1.35s;
            animation-delay: 1.35s;
            -webkit-animation-duration: .4s;
            animation-duration: .4s
        }

.navigation__list .sub-list {
    position: absolute;
    right: 0;
    left: 0;
    padding: 0;
    margin-top: 20px;
    -webkit-transform: translateY(0) translateX(-100%);
    transform: translateY(0) translateX(-100%)
}

    .navigation__list .sub-list li {
        margin-bottom: 30px;
        -webkit-animation-duration: .2s;
        animation-duration: .2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeOut;
        animation-name: fadeOut;
        visibility: hidden
    }

.navigation__list .expand-icon {
    display: inline-block;
    height: 4px;
    width: 16px;
    position: relative;
    top: -8px;
    right: -8px;
    background-color: #006939;
    transition: background .5s cubic-bezier(.19,1,.22,1) 0ms;
    pointer-events: none
}

    .navigation__list .expand-icon:after {
        content: "";
        display: block;
        height: 16px;
        width: 4px;
        background: inherit;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -8px 0 0 -2px;
        -webkit-transform: scale(1);
        transform: scale(1);
        transition: transform .5s cubic-bezier(.19,1,.22,1) 0ms,-webkit-transform .5s cubic-bezier(.19,1,.22,1) 0ms
    }

@media (min-width:480px) {
    .button, .module--form .umbraco-forms-page .umbraco-forms-navigation input[type=submit] {
        display: inline-flex;
        width: auto
    }

    .module-text__headline {
        margin-bottom: 30px
    }

    .module-text__manchet {
        margin-bottom: 40px
    }
}

@media (min-height:480px) {
    .product-swiper {
        height: calc(100vh - 100px - var(--vh-offset))
    }

        .product-swiper ~ .tempBackgroundColorElement {
            left: 15px;
            right: 15px;
            top: calc(100vh - 85px)
        }
}

@media screen and (min-width:480px) {
    .story-slider .swiper-slide__content .slide-text {
        font-size: calc(16px + 4*(100vw - 480px)/288)
    }

    .story-slider__cta-content h2 {
        font-size: calc(26px + 34*(100vw - 480px)/288)
    }

    .module-product-information__manchet {
        font-size: calc(16px + 16*(100vw - 480px)/288)
    }

    .module-text__paragraph {
        font-size: calc(16px + 4*(100vw - 480px)/288)
    }

        .module-text__paragraph h3 {
            font-size: calc(20px + 0*(100vw - 480px)/288)
        }
}

@media (min-height:600px) {
    .product-swiper .main-carousel .carousel-cell .product {
        height: 350px
    }

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .shadow {
        bottom: 0;
        height: 420px
    }

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .product__label .label {
        width: 245px;
        left: calc(-95.27778px + 50%)
    }

    .product-swiper .main-carousel .carousel-cell--can-330ml .shadow {
        height: 215px
    }

    .product-swiper .main-carousel .carousel-cell--can-330ml .product__label .label {
        width: 291px;
        left: calc(-113.16667px + 50%)
    }

    .product-swiper .main-carousel .carousel-cell--can-500ml .shadow {
        height: 305px
    }

    .product-swiper .main-carousel .carousel-cell--can-500ml .product__label .label {
        width: 291px;
        left: calc(-113.16667px + 50%)
    }

    .module-404 .button {
        margin: 100px 0 0
    }
}

@media (min-height:600px) and (min-width:992px) {
    .product-swiper .main-carousel .carousel-cell--bottle-330ml .shadow {
        height: 525px;
        left: -50px
    }
}

@media (min-height:600px) and (min-width:1220px) {
    .product-swiper .main-carousel .carousel-cell .product {
        height: 450px
    }

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .shadow {
        bottom: 35px
    }

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .product__label .label {
        left: calc(-122.5px + 50%)
    }

    .product-swiper .main-carousel .carousel-cell--can-330ml .product__label .label, .product-swiper .main-carousel .carousel-cell--can-500ml .product__label .label {
        left: calc(-145.5px + 50%)
    }
}

.module-four-card-tall {
    margin-top: 15px !important;
}

.module-three-card-medium {
    margin-top: 15px !important;
}

.module-two-card-large {
    margin-top: 15px !important;
}

@media (min-width:768px) {

    .module-four-card-tall {
        margin-top: 30px !important;
    }

    .module-three-card-medium {
        margin-top: 30px !important;
    }

    .module-two-card-large {
        margin-top: 30px !important;
    }

    .button--dark:before, .button--light:before {
        content: "";
        position: absolute;
        top: 100%;
        right: 0;
        bottom: 0;
        left: 0;
        transition: -webkit-transform .25s cubic-bezier(.77,0,.175,1);
        transition: transform .25s cubic-bezier(.77,0,.175,1);
        transition: transform .25s cubic-bezier(.77,0,.175,1),-webkit-transform .25s cubic-bezier(.77,0,.175,1);
        height: 101%
    }

    .button--dark:hover:before, .button--light:hover:before {
        -webkit-transform: translateY(-99%);
        transform: translateY(-99%)
    }

    .button--dark:before {
        background-color: #006939
    }

    .button--dark:hover .button__text {
        color: inherit
    }

    .button--light:before {
        background-color: #fff
    }

    .button--light:hover .button__text {
        color: inherit
    }

    .card {
        height: 420px;
        margin-bottom: 0
    }

    .flickity-page-dots {
        bottom: 50px
    }

    .module-blockquote__container {
        padding: 0
    }

    .module--form .umbraco-forms-page {
        padding: 0 35px
    }

        .module--form .umbraco-forms-page .umbraco-forms-navigation input[type=submit]:hover {
            color: #006939;
            background-color: transparent
        }

    .module-four-card-tall .card-container__card-left, .module-four-card-tall .card-container__card-right {
        display: flex
    }

    .module-four-card-tall .card-container__card-right {
        flex-wrap: wrap
    }

        .module-four-card-tall .card-container__card-right .card {
            width: calc(50% - 15px)
        }

            .module-four-card-tall .card-container__card-right .card:first-of-type {
                margin: 0 30px 30px 0
            }

    .module-four-card-tall--left .card-container {
        flex-direction: column
    }

    .module-four-card-tall--left .card-container__card-left {
        margin: 0 0 30px
    }

    .module-four-card-tall--right .card-container {
        flex-direction: column-reverse
    }

    .module-four-card-tall--right .card-container__card-left {
        margin: 0
    }

    .module-four-card-tall--right .card-container__card-right {
        margin: 0 0 30px
    }

    .module-media-slider .swiper-slide {
        height: auto;
        position: relative;
        overflow: hidden
    }

        .module-media-slider .swiper-slide:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 56.25%
        }

        .module-media-slider .swiper-slide > .content, .module-media-slider .swiper-slide > img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0
        }

        .module-media-slider .swiper-slide > img {
            width: 100%;
            height: 100%
        }

    .module-media__background-video video {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-transform: none;
        transform: none;
        width: 100%
    }

    .story-slider .swiper-slide__content {
        max-width: 670px;
        padding: 0 40px
    }

    .module-product-information__content {
        padding: 50px 0 0
    }

    .product-presentation-module .product-presentation-container {
        display: flex;
        align-content: center;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
        max-width: 1040px
    }

    .product-presentation-module .product-presentation-container__content {
        max-width: 70%;
        margin-left: 30px;
        margin-top: 0
    }

        .product-presentation-module .product-presentation-container__content .section-title {
            margin-left: 0
        }

        .product-presentation-module .product-presentation-container__content h2 {
            margin: 12px 0 0
        }

        .product-presentation-module .product-presentation-container__content .button-container {
            margin: 60px 0 0
        }

    .product-swiper ~ .tempBackgroundColorElement {
        top: calc(100vh - 70px);
        left: 30px;
        right: 30px
    }

    .product-swiper .main-carousel .carousel-cell .product {
        margin-bottom: 100px
    }

    .product-swiper__open-beer-overview {
        bottom: 40px
    }

    .module-speaking-of {
        padding: 180px 0 0
    }

    .module-three-card-medium--left .card-container {
        flex-direction: column
    }

    .module-three-card-medium--left .card-container__card-left {
        width: 100%;
        margin: 0 0 30px
    }

    .module-three-card-medium--left .card-container__card-right {
        width: 100%;
        display: inline-flex
    }

        .module-three-card-medium--left .card-container__card-right .card:first-of-type {
            margin-right: 30px
        }

    .module-three-card-medium--right .card-container {
        flex-direction: column-reverse
    }

    .module-three-card-medium--right .card-container__card-left {
        width: 100%;
        margin: 30px 0 0;
        order: 1
    }

    .module-three-card-medium--right .card-container__card-right {
        width: 100%;
        display: inline-flex;
        order: 2
    }

        .module-three-card-medium--right .card-container__card-right .card {
            width: 100%
        }

            .module-three-card-medium--right .card-container__card-right .card:first-of-type {
                margin-right: 30px
            }

    .module-two-card-large--left .card-container__card-left {
        width: calc(50% - 10px);
        margin: 0 30px 0 0
    }

    .module-two-card-large--left .card-container__card-right {
        width: calc(50% - 10px)
    }

    .module-two-card-large--right .card-container__card-left {
        width: calc(50% - 10px);
        margin: 0
    }

    .module-two-card-large--right .card-container__card-right {
        width: calc(50% - 10px);
        margin-right: 30px
    }

    .module-404 {
        padding: 0 50px;
        height: 100vh;
        height: calc(100vh - 60px - var(--vh-offset))
    }

    .better-answers-overview {
        padding-top: 110px
    }

    .better-answers-overview__container {
        padding: 0;
        justify-content: flex-start
    }

    .better-answers-overview__item:nth-child(2n) {
        margin-right: 0
    }

    .better-answers-overview__item {
        width: calc(50% - 20px);
        margin: 0 20px 15px 0
    }

    .disclaimer {
        height: 130px
    }

        .disclaimer ~ .footer {
            padding-bottom: 130px
        }

    .footer__social-icons__icon {
        width: 50px
    }

    .footer__navigation {
        margin: 70px 0;
        display: flex
    }

    .footer__navigation--center, .footer__navigation--left, .footer__navigation--right {
        display: inline-block;
        padding-left: 70px;
        text-align: left
    }

    .footer__tagline svg {
        width: 360px
    }

    .navigation {
        right: -90vw;
        width: 90vw
    }

    .navigation--open {
        -webkit-transform: translateX(-90vw);
        transform: translateX(-90vw)
    }

    .navigation__list {
        margin-top: 30px;
        padding: 30px 20% 40px 40px
    }

        .navigation__list .item {
            margin-bottom: 55px
        }

        .navigation__list .sub-list {
            margin-top: 40px
        }

        .navigation__list .expand-icon {
            position: relative;
            top: -15px;
            right: -15px
        }
}

@media (min-height:768px) {

    .product-swiper .main-carousel .carousel-cell .product {
        height: 450px
    }

    .product-swiper .main-carousel .carousel-cell .product__label-shadow {
        width: calc(100% - 4px)
    }

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .shadow {
        height: 520px
    }

    .product-swiper .main-carousel .carousel-cell--bottle-330ml .product__label {
        width: calc(100% - 4px)
    }

        .product-swiper .main-carousel .carousel-cell--bottle-330ml .product__label .label {
            left: calc(-122.5px + 50%)
        }

    .product-swiper .main-carousel .carousel-cell--can-330ml .shadow {
        height: 265px
    }

    .product-swiper .main-carousel .carousel-cell--can-330ml .product__label .label {
        left: calc(-145.5px + 50%)
    }

    .product-swiper .main-carousel .carousel-cell--can-500ml .shadow {
        height: 385px
    }

    .product-swiper .main-carousel .carousel-cell--can-500ml .product__label .label {
        left: calc(-145.5px + 50%)
    }

    .module-404 h2 {
        margin-top: -100px
    }
}

@media screen and (min-width:768px) {
    .story-slider .swiper-slide__content .slide-text {
        font-size: 20px
    }

    .story-slider__cta-content h2 {
        font-size: 60px
    }

    .module-product-information__manchet {
        font-size: 32px
    }

    .module-text__paragraph, .module-text__paragraph h3 {
        font-size: 20px
    }

    .custom-form-style .umbraco-forms-page {
        width: 600px;
    }
}

.module--form .umbraco-forms-page {
    padding: 0 100px;
    margin: auto;
    display: grid;
    justify-content: center;
}

@media (min-height:768px) and (min-width:768px) {
    .product-swiper .main-carousel .carousel-cell--bottle-330ml .shadow {
        bottom: 45px
    }
}

@media (min-width:992px) {
    .beer-ingredients {
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-bottom: 50px
    }

    .beer-ingredients__item {
        display: block;
        margin: 0 60px 0 0;
        padding: 0;
        width: 140px
    }

        .beer-ingredients__item .circle {
            margin-right: 0;
            height: 140px;
            width: 140px
        }

    .beer-ingredients__item--beer-type .circle svg {
        top: 41px;
        left: 48px
    }

    .beer-ingredients__item .ingredients-text {
        text-align: center;
        margin: 20px -30px 0
    }

    .beer-overview {
        border-bottom: 0
    }

    .beer-overview__beers-container {
        padding: 100px 0 0
    }

    .beer-overview__item {
        padding: 0;
        width: 20%;
        margin-bottom: 60px
    }

        .beer-overview__item .beer-button:hover span:after {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0)
        }

    .nutritional-values__header span.plus {
        margin-left: 100px
    }

    .nutritional-values__header span.divider {
        left: -10%;
        width: 120%
    }

    .story-progress-pagination {
        width: 300px;
        top: auto;
        bottom: 65px
    }

    .pioneer-thumbnail-loader {
        width: 50px;
        height: 50px
    }

    .flickity-button {
        background-color: hsla(0,0%,100%,.6);
        -webkit-transform: translate(0);
        transform: translate(0);
        margin-top: -17px;
        display: block;
        height: 35px;
        width: 35px
    }

        .flickity-button.previous {
            left: 38px
        }

        .flickity-button.next {
            right: 38px
        }

    .sticky-border {
        height: 30px
    }

    .countryOverview .country-section .country-list li a:hover {
        color: #a0d035;
        transition: color .2s ease-in-out
    }

    .module--form .umbraco-forms-page {
        padding: 0 100px
    }

    .module--form .umbraco-forms-page .umbraco-forms-hidden {
            display: none;
    }
    .module-four-card-tall .card-container {
        height: 840px
    }

    .module-four-card-tall .card-container__card-left {
        width: calc(50% - 15px)
    }

        .module-four-card-tall .card-container__card-left .card {
            height: auto
        }

    .module-four-card-tall .card-container__card-right {
        width: calc(50% - 15px)
    }

        .module-four-card-tall .card-container__card-right .card {
            width: calc(50% - 15px);
            height: calc(50% - 15px)
        }

            .module-four-card-tall .card-container__card-right .card:first-of-type {
                margin: 0 30px 30px 0
            }

    .module-four-card-tall--left .card-container {
        flex-direction: row
    }

    .module-four-card-tall--left .card-container__card-left {
        margin: 0 30px 0 0
    }

    .module-four-card-tall--right .card-container {
        flex-direction: row-reverse
    }

    .module-four-card-tall--right .card-container__card-left {
        margin: 0 0 0 30px
    }

    .module-four-card-tall--right .card-container__card-right {
        margin: 0
    }

    .module-media-slider .swiper-button-next, .module-media-slider .swiper-button-prev {
        display: block;
        top: 50%;
        margin-top: -43px;
        opacity: 0;
        height: 30px;
        width: 30px
    }

    .module-media-slider--single .swiper-button-next, .module-media-slider--single .swiper-button-prev {
        display: none
    }

    .module-media--image, .module-media--video, .module-media__youtube-placeholder {
        height: auto
    }

    .module-media__background-video {
        height: auto;
        position: relative;
        overflow: hidden
    }

        .module-media__background-video:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 56.25%
        }

        .module-media__background-video > .content, .module-media__background-video > img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0
        }

        .module-media__background-video > img {
            width: 100%;
            height: 100%
        }

    .module-media__background-image {
        position: relative;
        overflow: hidden
    }

        .module-media__background-image:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 56.25%
        }

        .module-media__background-image > .content, .module-media__background-image > img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0
        }

        .module-media__background-image > img {
            width: 100%;
            height: 100%
        }

    .story-slider__pioneer-indicator {
        top: 54px;
        left: 60px
    }

    .story-slider .swiper-slide__content {
        padding: 0 50px
    }

    .story-slider__cta {
        top: 0
    }

    .story-slider__cta-content {
        padding: 0
    }

        .story-slider__cta-content p {
            max-width: 70%
        }

        .story-slider__cta-content h2 {
            display: block;
            margin-bottom: 40px
        }

        .story-slider__cta-content:hover svg {
            -webkit-transform: scale(1.3) rotate(-90deg);
            transform: scale(1.3) rotate(-90deg)
        }

    .story-slider .swiper-button-next svg, .story-slider .swiper-button-prev svg {
        top: 50%;
        bottom: auto;
        margin-top: -11px
    }

    .story-slider .swiper-button-prev svg {
        left: 60px
    }

    .story-slider .swiper-button-next svg {
        right: 60px
    }

    .pioneers {
        height: 100%;
        width: 100%
    }

        .pioneers .close-button-small {
            display: none
        }

    .pioneers--story-mode .pioneers .close-button-small {
        top: 35px;
        right: 38px;
        z-index: 3;
        display: block
    }

    .module-product-information__manchet {
        color: inherit;
        font-family: nycarlsbergdisplay-bold,arial;
        font-weight: 700;
        margin: 60px auto 110px;
        padding: 0 30px;
        text-align: center
    }

    .module-product-information .beer-ingredients ~ .nutritional-values {
        margin-bottom: 50px
    }

    .module-product-information .nutritional-values {
        margin-top: 65px
    }

    .product-presentation-module .product-presentation-container img {
        max-height: 100%;
        width: 100%;
        height: 100%;
        max-width: 200px
    }

    .product-swiper {
        height: 700px
    }

        .product-swiper ~ .tempBackgroundColorElement {
            top: 730px
        }

    .module-speaking-of__headline {
        margin: 0 auto 50px
    }

    .module-speaking-of__media {
        height: auto;
        position: relative;
        overflow: hidden
    }

        .module-speaking-of__media:before {
            display: block;
            content: "";
            width: 100%;
            padding-top: 56.25%
        }

        .module-speaking-of__media > .content, .module-speaking-of__media > img {
            position: absolute;
            top: 0;
            left: 0;
            right: 0
        }

        .module-speaking-of__media > img {
            width: 100%;
            height: 100%
        }

        .module-speaking-of__media:before {
            width: auto
        }

        .module-speaking-of__media video {
            -webkit-transform: none;
            transform: none;
            min-width: auto;
            min-height: auto;
            height: auto;
            width: 100%;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0
        }

    .module-three-card-medium--left .card-container {
        flex-direction: row
    }

    .module-three-card-medium--left .card-container__card-left {
        width: calc(50% - 15px);
        margin: 0 30px 0 0
    }

    .module-three-card-medium--left .card-container__card-right, .module-three-card-medium--left .card-container__card-right .card {
        width: calc(50% - 15px)
    }

    .module-three-card-medium--right .card-container {
        flex-direction: row-reverse
    }

    .module-three-card-medium--right .card-container__card-left {
        width: calc(50% - 15px);
        margin: 0 0 0 30px
    }

    .module-three-card-medium--right .card-container__card-right {
        width: calc(50% - 15px)
    }

        .module-three-card-medium--right .card-container__card-right .card {
            width: 50%
        }

    .module-two-card-large--left .card-container__card-left {
        width: 75%
    }

    .module-two-card-large--left .card-container__card-right {
        width: calc(25% - 20px)
    }

    .module-two-card-large--right .card-container__card-left {
        width: 75%
    }

    .module-two-card-large--right .card-container__card-right {
        width: calc(25% - 20px);
        margin-right: 30px
    }

    .module-404 {
        padding: 0 100px
    }

        .module-404 h2 {
            padding-right: 190px
        }

    .better-answers-overview__container {
        padding: 0 15px;
        justify-content: flex-start
    }

    .better-answers-overview__item:nth-child(2n) {
        margin-right: 15px
    }

    .better-answers-overview__item:nth-child(3n) {
        margin-right: 0
    }

    .better-answers-overview__item {
        width: calc(33.33333% - 10px);
        margin: 0 15px 15px 0;
        height: 420px
    }

    .disclaimer img {
        width: auto
    }

    .navigation {
        width: 800px;
        right: -800px
    }

    .navigation--open {
        -webkit-transform: translateX(-800px);
        transform: translateX(-800px)
    }

    .navigation__list .item__link:hover {
        color: #63666a
    }

        .navigation__list .item__link:hover .expand-icon {
            background-color: #63666a
        }

    .navigation__list .sub-list li {
        margin-bottom: 55px
    }

        .navigation__list .sub-list li a:hover {
            transition: color .2s ease-in-out;
            color: #63666a
        }
}

@media (min-width:1220px) {
    .beer-ingredients__item {
        margin: 0 80px 0 0
    }

    .story-progress-pagination {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp
    }

    .story-progress-pagination__item span {
        height: 2px
    }

    .module-media-slider__inner {
        overflow: visible
    }

    .story-slider {
        bottom: 0;
        height: auto
    }

        .story-slider .swiper-slide__content h2 {
            margin-bottom: 50px
        }

    .module-404 {
        height: 760px
    }
}

@media (min-width:1540px) {
    .story-slider .swiper-slide__content {
        max-width: 1040px
    }
}

@media screen and (min-width:1px) and (max-width:1219px) and (orientation:landscape) {
    .navigation__list .item.has-children--active .item__link .expand-icon:hover {
        color: #006939
    }
}

.draughtmaster {
    max-width: 1200px !important;
}

.Purified {
    background-color: #eee;
    padding: 70px 0;
}
    /*.purified > form > .umbraco-forms-page > .umbraco-forms-fieldset > .row-fluid > .umbraco-forms-container > .umbraco-forms-field> 
*/
    .Purified .firstname, .Purified .lastname, .Purified .businesstype, .Purified .country {
        display: inline-block !important;
        width: 48%;
    }

        .Purified .firstname input {
            border: none !important;
            border-bottom: 2px solid #a0a0a0 !important;
        }

    .Purified input {
        border: none !important;
        border-bottom: 2px solid #a0a0a0 !important;
        outline: none;
        background-color: transparent;
    }

    .Purified .emailaddress input {
        width: 97% !important;
    }

    .Purified .subject button {
        width: 99% !important;
    }

    .Purified .consent, .Purified .yc3, .Purified .consent1, .Purified .consent2 {
        display: inline-block;
    }

    .Purified .yc3 {
        width: 98%;
    }

    .Purified .businesstype button, .Purified .country button, .Purified .subject button, .Purified .mymessage textarea {
        border: none !important;
        border-bottom: 2px solid #a0a0a0 !important;
        background-color: transparent;
        outline: none;
    }

    .Purified .custom-selectbox__options-wrap {
        overflow-y: scroll;
        max-height: 200px;
    }

    .Purified label {
        color: #505050;
        /*        position:absolute;
*/ /* top:8px;*/
    }

    .Purified .yc3, .Purified .consent2 {
        color: #000000;
    }

    .Purified .mymessage textarea {
        min-height: 50px !important;
        width: 97% !important;
    }
    /*.Purified .emailaddress label{*/
    /*        top:0px !important;
*/
    /*}*/
    /*  .Purified input:focus label{
        top:0px;
    }*/
    .Purified .subject .custom-selectbox__wrap {
        max-width: 98% !important;
    }

    .Purified .col-md-12 {
        text-align: left !important;
    }

        .Purified .col-md-12 input[type=submit] {
            text-align: center !important;
            vertical-align: middle !important;
            border-radius: 40px !important;
            border-width: 2px !important;
            font-weight: 600 !important;
            letter-spacing: .12em !important;
            text-transform: uppercase !important;
            padding: 9px 1.5em !important;
            cursor: pointer !important;
            transition: .15s !important;
            color: #fff !important;
            background-color: #000 !important;
        }

            .Purified .col-md-12 input[type=submit]:hover {
                color: #000 !important;
                background-color: transparent !important;
                outline: 0 !important;
                box-shadow: none !important;
            }

    .Purified .umbraco-forms-navigation {
        margin-top: 0px !important;
    }

    .Purified .field-validation-error {
        background: transparent !important;
    }
