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

Primary style

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

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

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Source Sans Pro", sans-serif;
    color: #343642;
    background-color: #ffffff;
}

a {
    color: #982b3c;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 1.6rem;
}


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

Images block

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

.cd-image-block {
    position: relative;
}

.cd-image-block::before {
    /* this is the layer used to cover the .cd-image-block when the content block becomes visible - mobile only */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(52, 54, 66, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
}

.cd-image-block.content-block-is-visible::before {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
}

@media only screen and (min-width: 798px) {
    .cd-image-block::before {
        display: none;
    }
}

.cd-images-list::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'mobile';
    display: none;
}

.cd-images-list>li {
    height: 250px;
    background: #979c9c url(../img/products/tilbud.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(2) {
    /*height: 250px;*/
    background: #979c9c url(../img/products/kylling.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(3) {
    background: #343642 url(../img/products/snack.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(4) {
    background: #982b3c url(../img/products/fisk.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(5) {
    background: #338899 url(../img/products/dej.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(6) {
    background: #982b3c url(../img/products/polser.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(7) {
    background: #338899 url(../img/products/deli.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li:nth-of-type(8) {
    background: #338899 url(../img/products/nyheder.jpg) no-repeat center center;
    background-size: cover;
}

.cd-images-list>li>a {
    /* used to vertically align the h2 child -  mobile version only */
    display: table;
    height: 100%;
    width: 100%;
}

.cd-images-list h2 {
    /* used to vertically align h2 -  mobile version only */
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 798px) {
    .cd-images-list::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'desktop';
    }
    .cd-images-list>li>a {
        display: block;
        padding: 4em 3em;
        cursor: default;
        pointer-events: none;
    }
    .cd-images-list h2 {
        font-size: 4.5rem;
        text-align: left;
    }
}

.cd-images-list h2 {
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.4);
}


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

Content block

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

.cd-content-block {
    /* move the block outside the viewport (to the right) - mobile only */
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    transition: transform 0.3s;
}

.cd-content-block.is-visible {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.cd-content-block>ul {
    height: 100%;
}

.cd-content-block>ul>li {
    position: absolute;
    height: 100%;
    padding: 2em;
    overflow-y: scroll;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
}

.cd-content-block>ul>li.is-selected {
    /* this is the selected content */
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-overflow-scrolling: touch;
}

.cd-content-block h2 {
    line-height: 1.2;
    font-weight: 700;
    font-size: 2.3rem;
    margin-bottom: 1em;
}

.cd-content-block p {
    /*margin-bottom: 2em;*/
    font-size: 15px;
    color: #393c45;
    font-weight: 600;
    line-height: 1.2;
}

.cd-content-block span {
    /*margin-bottom: 2em;*/
    font-size: 15px;
    color: #b1b1b3;
    line-height: 1.2;
}

.cd-content-block .cd-close {
    /* 'X' icon to close the content block -  mobile only */
    position: fixed;
    top: 0;
    right: 0;
    height: 44px;
    width: 44px;
    /* image replacement */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.2s;
    -moz-transition: -moz-transform 0.2s;
    transition: transform 0.2s;
}

.cd-content-block .cd-close::after,
.cd-content-block .cd-close::before {
    /* these are the 2 lines of the 'X' icon */
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 24px;
    background-color: #343642;
    /* Force Hardware Acceleration */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.cd-content-block .cd-close::after {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.cd-content-block .cd-close::before {
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.cd-content-block .cd-close.is-scaled-up {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.no-touch .cd-content-block .cd-close.is-scaled-up:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

@media only screen and (min-width: 798px) {
    .cd-content-block {
        /* reset style */
        position: static;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .cd-content-block>ul>li {
        /* reset style */
        opacity: 1;
        visibility: visible;
        padding: 4em 2em;
    }
    .cd-content-block>ul>li.overflow-hidden {
        /* this class is used during the animation (slider change) to hide the scrolling bar */
        /*overflow: hidden;*/
    }
    .cd-content-block h2 {
        font-size: 3rem;
    }
    .cd-content-block .cd-close {
        display: none;
    }
}


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

Desktop slider - both image and content blocks

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

@media only screen and (min-width: 798px) {
    .cd-image-block {
        /* slider style - desktop version only */
        width: 35%;
        float: left;
        height: 100vh;
        overflow: hidden;
    }
    .cd-content-block {
        /* slider style - desktop version only */
        width: 65%;
        float: left;
        height: 100vh;
        overflow: hidden;
    }
    .cd-image-block>ul,
    .cd-content-block>ul {
        position: relative;
        height: 100%;
    }
    .cd-image-block>ul>li,
    .cd-content-block>ul>li {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Force Hardware Acceleration */
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
        /* by default, the items are moved to the right - relative to their parent elements */
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.5s;
        -moz-transition: -moz-transform 0.5s;
        transition: transform 0.5s;
    }
    .cd-image-block>ul>li.is-selected,
    .cd-content-block>ul>li.is-selected {
        /* this is the visible item */
        position: absolute;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .cd-image-block>ul>li.move-left,
    .cd-content-block>ul>li.move-left {
        /* this is the item hidden on the left */
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


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

Slider navigation

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

.block-navigation {
    /* this is the slider navigation - desktop version only */
    display: none;
}

@media only screen and (min-width: 798px) {
    .block-navigation {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 35%;
        /*-----------------------------*/
    }
    .block-navigation::after {
        clear: both;
        content: "";
        display: table;
    }
    .block-navigation li {
        width: 50%;
        height: 110px;
        /*HEIGHT IF THE NAVIGATION BUTTONS*/
        line-height: 110px;
        /*HEIGHT IF THE NAVIGATION BUTTONS*/
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: background 0.2s;
        -moz-transition: background 0.2s;
        transition: background 0.2s;
    }
    .block-navigation li:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
    .block-navigation li:first-of-type {
        float: left;
    }
    .block-navigation li:last-of-type {
        float: right;
    }
    .block-navigation button {
        display: block;
        height: 100%;
        width: 100%;
        color: #ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-size: 3rem;
    }
    .block-navigation button.inactive {
        opacity: .35;
        cursor: not-allowed;
    }
}


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

Javascript disabled

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

@media only screen and (min-width: 798px) {
    .no-js .cd-content-block {
        display: none;
    }
    .no-js .cd-image-block {
        width: 100%;
        overflow: visible;
    }
    .no-js .cd-images-list::after {
        clear: both;
        content: "";
        display: table;
    }
    .no-js .cd-images-list>li {
        position: static;
        width: 50%;
        float: left;
        height: 400px;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .no-js .cd-images-list>li.is-selected {
        position: static;
    }
    .no-js .cd-images-list>li>a {
        cursor: pointer;
        pointer-events: auto;
    }
    .no-js .block-navigation {
        display: none;
    }
}

div.floating-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 200;
    overflow: hidden;
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
    display: none;
}

div.floating-cart .stats-container {
    display: none;
}

div.floating-cart .product-front {
    width: 100%;
    top: 0;
    left: 0;
}

div.floating-cart.moveToCart {
    /* left: 75px !important;
    top: 55px !important; */
    width: 37px;
    height: 47px;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

body.MakeFloatingCart div.floating-cart.moveToCart {
    /* left: 90px !important;
  top: 140px !important; */
    width: 1px;
    height: 2px;
    opacity: .10;
    box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0);
    -webkit-transition: all 200ms ease-out;
    -moz-transition: all 200ms ease-out;
    -ms-transition: all 200ms ease-out;
    -o-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
}

div.cart-icon-top {
    /* position:absolute; */
    background: #fff url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/cart.png") 0 -3px no-repeat;
    margin: 0;
    width: 21px;
    height: 3px;
    z-index: 1;
    /* top: 140px;
    left: 90px; */
}

div.cart-icon-bottom {
    /* position:absolute; */
    background: #fff url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/245657/cart.png") 0 -3px no-repeat;
    margin: 0;
    width: 21px;
    height: 19px;
    z-index: 1;
    /* top: 143px;
    left: 90px; */
}

body.MakeFloatingCart div.cart-icon-top {
    z-index: 30;
}

body.MakeFloatingCart div.cart-icon-bottom {
    z-index: 300;
}

.cart-item {
    padding: 11px 0 5px 110px;
    height: 62px;
    width: 210px;
    margin-left: -45px;
    position: relative;
    background: #fff;
    -webkit-transition: all 800ms ease-out;
    -moz-transition: all 800ms ease-out;
    -ms-transition: all 800ms ease-out;
    -o-transition: all 800ms ease-out;
    transition: all 800ms ease-out;
}

.cart-item.flash {
    background: #fffeb0;
}

.shake {
    animation: shake 0.32s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
}

@keyframes shake {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-2px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(0px, 0, 0);
    }
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -2px, 0);
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -2px, 0);
        transform: translate3d(0, -2px, 0);
    }
}

.bounceOutDown {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.25, 1.25, 1.25);
        transform: scale3d(1.25, 1.25, 1.25);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.25, 1.25, 1.25);
        transform: scale3d(1.25, 1.25, 1.25);
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.25) translate3d(500px, 0, 0);
        transform: scale(0.25) translate3d(500px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.25) translate3d(500px, 0, 0);
        transform: scale(0.25) translate3d(500px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}

.zoomOutRight {
    -webkit-animation-duration: .65s;
    animation-duration: .65s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}

.counter-up {
    box-shadow: 0 5px 7px 0 rgba(0, 0, 0, .18), 0 4px 10px 0 rgba(0, 0, 0, .15);
    border-style: solid;
    border-radius: 50%;
    border-color: var(--primary-color);
    border-width: 1px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    font-size: initial;
    text-align: center;
    position: absolute;
    width: 60%;
    height: 60%;
    left: 30px;
    top: -15px;
    padding-top: 6px;
}

.fa {
    color: var(--primary-color);
    font-size: 55px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .16), 0 2px 10px rgba(0, 0, 0, .12);
}

.section-header {
    font-family: "Metal Mania";
    font-weight: normal;
    color: #333;
    text-align: center;
    font-size: 2.5em;
}

.cart-header {
    font-weight: bold;
    font-size: 1.25em;
    color: #333;
}

.cart-column {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    margin-right: 1.5em;
    padding-bottom: 10px;
    margin-top: 10px;
}

.cart-row {
    display: flex;
}

.cart-item {
    width: 45%;
}

.cart-price {
    width: 20%;
    font-size: 1.2em;
    color: #333;
}

.cart-quantity {
    width: 35%;
}

.cart-item-title {
    color: #333;
    margin-left: .5em;
    font-size: 1.0em;
}

.cart-item-desc {
    color: #b1b1b3;
    font-size: 1.0em;
}

.cart-item-image {
    width: 75px;
    height: auto;
    border-radius: 10px;
}

.cart-quantity-input {
    height: 34px;
    width: 50px;
    border-radius: 5px;
    border: 1px solid #56CCF2;
    background-color: #eee;
    color: #333;
    padding: 0;
    text-align: center;
    font-size: 1.2em;
    margin-right: 25px;
}

.cart-row:last-child {
    border-bottom: 1px solid black;
}

.cart-row:last-child .cart-column {
    border: none;
}

.cart-item-image {
    width: 75px;
    height: auto;
    border-radius: 10px;
}

.cart-total {
    text-align: end;
    margin-top: 10px;
    margin-right: 10px;
}

.cart-total-title {
    font-weight: bold;
    font-size: 1.5em;
    color: black;
    margin-right: 20px;
}

.cart-total-price {
    color: #333;
    font-size: 1.1em;
}

.padding-extra-carts {
    padding: 5px;
}

.delete-btn {
    display: inline-block;
    cursor: pointer;
    width: 18px;
    height: 17px;
    background: url(https://designmodo.com/demo/shopping-cart/delete-icn.svg) no-repeat center;
    /*margin-right: 20px;*/
}

.cd-card-content {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    background-color: #ebebeb;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0.4s;
    -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0.4s;
    transition: transform 0.4s 0s, visibility 0s 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
    -moz-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
    transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
}

@media only screen and (max-width: 768px) {
    /*ADJUST THE BOT PLACEMENENT HERE*/
    /*.cd-card-content {
    top: 57px;
  }*/
}

.cd-card-content>div {
    height: 100%;
    /*overflow-y: scroll;*/
    overflow-y: hidden;
    padding: 1.5em 1.5em;
    /*background: white;*/
}

.cd-card-content>div>* {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cd-card-content.is-visible {
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
    transition: transform 0.4s 0s, visibility 0s 0s;
    -webkit-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
    -moz-transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
    transition-timing-function: cubic-bezier(0.67, 0.15, 0.83, 0.83);
}

.cd-card-content.is-visible>div {
    /* smooth scrolling on iOS */
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-overflow-scrolling: touch;
}

.cd-card-content .close {
    display: block;
    height: 50px;
    width: 50px;
    font-size: 40px;
    font-weight: lighter;
    position: absolute;
    top: 30px;
    right: 1%;
    opacity: .5;
}

@media only screen and (min-width: 600px) {
    .cd-card-content .close {
        top: 30px;
        right: 5%;
    }
}

@media (max-width: 500px) {
    .cd-card-content>div {
        padding: 1em 1em;
    }
}








/*********************************/
/* Sidepanel content */

.sidepanel-title {
    letter-spacing: 2px;
    color: black;
    padding: 16px 40px;
    font-weight: 600;
}

.sidepanel-body {
    color: #757575;
    padding-left: 40px;
    line-height: 24px;
}

.checklist ul li {
    font-size: 1.75rem;
    font-weight: 400;
    list-style: none;
    padding: 7px 0 7px 23px;
}

.checklist li span {
    float: left;
    width: 11px;
    height: 11px;
    margin-left: -23px;
    margin-top: 4px;
    border: 1px solid #d1d3d7;
    position: relative;
}

.mdl-navigation__link{
    font-size: 1.75rem;
}

.sizes li span,
.categories .sizes li {
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.checklist li a {
    color: #676a74;
    text-decoration: none;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.checklist li a:hover {
    color: #222;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.checklist a:hover span {
    border-color: #a6aab3;
}

.categories a:hover span {
    border-color: #a6aab3;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.checklist a span span {
    border: none;
    margin: 0;
    float: none;
    position: absolute;
    top: 0;
    left: 0;
}

.checklist a .x {
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    top: 1px;
    left: 0px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 50ms ease-out;
}

.checklist a .x.animate {
    width: 6px;
    -webkit-transition: all 100ms ease-in;
    -moz-transition: all 100ms ease-in;
    -ms-transition: all 100ms ease-in;
    -o-transition: all 100ms ease-in;
    transition: all 100ms ease-in;
}

.checklist a .y {
    display: block;
    width: 0px;
    height: 3px;
    background: var(--primary-color);
    top: 0px;
    left: 3px;
    -ms-transform: rotate(13deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 50ms ease-out;
}

.checklist a .y.animate {
    width: 15px;
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}

.checklist .checked span {
    border-color: #8d939f;
}

/*********************************/














/*********************************/
/* BOTTOMS */

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    color: #fff;
    border-color: var(--primary-color);
    background-color: grey;
}

.btn-default  {
    color: grey;
    border-color: grey;
}

.btn-default:hover {
    color: #fff;
    background-color: grey;
    border-color: grey;
}
/*********************************/








/*********************************/
/* COUNT DOWN */

.countdown {
  /*width: 720px;*/
  /*margin: 0 auto;*/
}

.countdown h1 {
  text-align: center;
  font: 300 0.75em "Lato";
  text-transform: uppercase;
  color: darkgrey;
}
.countdown h1 strong {
  font-weight: 400;
  color: #ea4c4c;
}

.countdown .bloc-time {
  float: left;
  margin-right: 45px;
  text-align: center;
}
.countdown .bloc-time:last-child {
  margin-right: 0;
}
.countdown .count-title {
  display: block;
  margin-bottom: 15px;
  font: normal 0.94em "Lato";
  color: #1a1a1a;
  text-transform: uppercase;
}
.countdown .figure {
  position: relative;
  float: left;
  /*height: 110px;*/
  /*width: 100px;*/
  height: 28.5px;
  width: 26px;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 8px;
  -moz-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2), inset 2px 4px 0 0 rgba(255, 255, 255, 0.08);
}
.countdown .figure:last-child {
  margin-right: 0;
}
.countdown .figure > span {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  /*font: normal 5.94em/107px "Lato";*/
  font: normal 1.485em/26.75px "Lato";
  font-weight: 700;
  color: #de4848;
}
.countdown .figure .top:after, .countdown .figure .bottom-back:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.countdown .figure .top {
  z-index: 3;
  background-color: #f7f7f7;
  transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
  -moz-transform: perspective(200px);
  -ms-transform: perspective(200px);
  -webkit-transform: perspective(200px);
  transform: perspective(200px);
}
.countdown .figure .bottom {
  z-index: 1;
}
.countdown .figure .bottom:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.02);
}
.countdown .figure .bottom-back {
  z-index: 2;
  top: 0;
  height: 50%;
  overflow: hidden;
  background-color: #f7f7f7;
  -moz-border-radius-topleft: 10px;
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
}
.countdown .figure .bottom-back span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.countdown .figure .top, .countdown .figure .top-back {
  height: 50%;
  overflow: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.countdown .figure .top-back {
  z-index: 4;
  bottom: 0;
  background-color: #fff;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -moz-transform: perspective(200px) rotateX(180deg);
  -ms-transform: perspective(200px) rotateX(180deg);
  -webkit-transform: perspective(200px) rotateX(180deg);
  transform: perspective(200px) rotateX(180deg);
  -moz-border-radius-bottomleft: 10px;
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.countdown .figure .top-back span {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  margin: auto;
}
/*********************************/









/*********************************/
/* FOOTER */
.footer {
    background: #d3d3d3a6;
    border-top: white 5px solid;
    text-align: center;
    padding-top: 2rem;
}

.footer .main-row{
    font-size: 15px;
    padding-bottom: 3rem;
}

.footer h3 {
    margin: auto;
    padding-top: 2rem;
}

.footer .under-title {
    font-size: 14px;
}


.footer .bottom-row {
    padding-bottom:3rem;
    text-align: left;
}

.footer .bottom-row span {
    line-height: normal;
    font-size: 1.35rem;
}

.footer .bottom-row h2 {
    padding-top: 2rem;
}

.credits {
    background: black;
    text-align: center;
}

.credits .mb-0{
    color: grey;
    padding: 5px;
    font-size: 14px;
}


/*********************************/
