/* Fade in
---------------------------------------- */

.anim-fade {
    animation: anim-fade 300ms ease normal both;
    -webkit-animation: anim-fade 300ms ease normal both;
}

@keyframes anim-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

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


/* Show
---------------------------------------- */

@media (min-width: 950px) {
    .anim-show {
        animation: anim-fade 500ms ease 50ms normal both;
        -webkit-animation: anim-fade 500ms 50ms ease normal both;
    }
}


/* Show up
---------------------------------------- */

@media (min-width: 950px) {
    .anim-showup {
        animation: anim-showup 500ms ease 50ms normal both;
        -webkit-animation: anim-showup 500ms ease 50ms normal both;
    }
}

@keyframes anim-showup {
    from { opacity: 0; transform: translatey(25px); }
    to { opacity: 1; transform: translatey(0); }
}

@-webkit-keyframes anim-showup {
    from { opacity: 0; -webkit-transform: translatey(25px); }
    to { opacity: 1; -webkit-transform: translatey(0); }
}


/* Show down
---------------------------------------- */

@media (min-width: 950px) {
    .anim-showdown {
        animation: anim-showdown 500ms ease 50ms normal both;
        -webkit-animation: anim-showdown 500ms ease 50ms normal both;
    }
}

@keyframes anim-showdown {
    from { opacity: 0; transform: translatey(-25px); }
    to { opacity: 1; transform: translatey(0); }
}

@-webkit-keyframes anim-showdown {
    from { opacity: 0; -webkit-transform: translatey(-25px); }
    to { opacity: 1; -webkit-transform: translatey(0); }
}


/* Spinner
---------------------------------------- */

.anim-spin {
    animation: anim-spin 2s linear infinite;
    -webkit-animation: anim-spin 2s linear infinite;
}

@keyframes anim-spin {
    from { transform: rotatez(0deg); }
    to { transform: rotatez(359deg); }
}

@-webkit-keyframes anim-spin {
    from { -webkit-transform: rotatez(0deg); }
    to { -webkit-transform: rotatez(359deg); }
}


/* Flipper
---------------------------------------- */

.anim-flip {
    animation: anim-flip 300ms ease normal both;
    backface-visibility: visible;
    transform-style: preserve-3d;
    -webkit-animation: anim-flip 300ms ease normal both;
    -webkit-backface-visibility: visible;
    -webkit-transform-style: preserve-3d;
}

@keyframes anim-flip {
    from { transform: perspective(400px); }
    50% { transform: perspective(400px) rotatex(90deg); opacity: 0; }
    51% { transform: perspective(400px) rotatex(-90deg); opacity: 0; }
    to { transform: perspective(400px) rotatex(0); opacity: 1; }
}

@-webkit-keyframes anim-flip {
    from { -webkit-transform: perspective(400px); }
    50% { -webkit-transform: perspective(400px) rotatex(90deg); opacity: 0; }
    51% { -webkit-transform: perspective(400px) rotatex(-90deg); opacity: 0; }
    to { -webkit-transform: perspective(400px) rotatex(0); opacity: 1; }
}
/* Fonts
---------------------------------------- */

@font-face {
    font-family: "guard";
    font-weight: 200;
    font-style: normal;
    src: url("/assets/fonts/guardian-light.woff") format("woff");
}

@font-face {
    font-family: "guard";
    font-weight: 400;
    font-style: normal;
    src: url("/assets/fonts/guardian-medium.woff") format("woff");
}

@font-face {
    font-family: "guard";
    font-weight: 600;
    font-style: normal;
    src: url("/assets/fonts/guardian-medium.woff") format("woff");
}
/* Basics
---------------------------------------- */

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

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

html, input, select, textarea {
    font: 400 12px/1.5 'open sans', 'helvetica neue', arial, sans-serif;
}

html {
    color: #333;
    background: #fafafa;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
}

body.noscroll {
    overflow: hidden;
}

@media (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    html {
        -webkit-font-smoothing: antialiased;
    }
}

@media (min-width: 650px) {
    html, input, select, textarea {
        font-size: 14px;
    }
}

@media (min-width: 950px) {
    html, input, select, textarea {
        font-size: 16px;
    }
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

br {
    display: none;
}

@media (min-width: 650px) {
    br {
        display: block;
    }
}

ul, ol {
    list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'guard', 'georgia';
}

h1, h2, h3 {
    -webkit-font-smoothing: antialiased;
}

h1, h2 {
    font-size: 1.4rem;
}

h3 {
    font-size: 1.2rem;
}

@media (min-width: 650px) {
    h1, h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

p {
    margin: 0;
}

p.min {
    font-size: .9rem;
    color: #666;
}

p.min + p.min {
    margin-top: 1rem;
}

p.max {
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1.5;
    font-family: 'guard', 'georgia';
}

@media (min-width: 650px) {
    p.max {
        font-size: 1.3rem;
    }
}

hr {
    position: relative;
    background: #4b186c;
    width: 1px;
    height: 2rem;
    margin: 2rem auto;
    border: none;
    box-shadow: none;
}

hr.next {
    margin-top: 1rem;
}

hr.transparent {
  background-color: transparent;
}

@media (min-width: 650px) {
    hr {
        height: 3rem;
        margin: 3rem auto;
    }

    hr.next {
        margin-top: 2rem;
    }
}

label {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

label a {
    text-decoration: underline;
}

input[type=radio],
input[type=checkbox] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
}

.hide {
    display: none;
}

.ui-min { display: inline-block !important; }
.ui-med, .ui-max { display: none !important; }
.ui-to-med, .ui-to-max { display: inline-block !important; }

@media (min-width: 650px) {
    .ui-min { display: none !important; }
    .ui-med { display: block !important; }
    li.ui-med { display: inline-block !important; }
    .ui-to-med { display: none !important; }
}

@media (min-width: 950px) {
    .ui-max { display: block !important; }
    li.ui-max { display: inline-block !important; }
    .ui-to-max { display: none !important; }
}

.ui-hide {
    display: none;
}

.ui-show {
    display: block;
}

.hide .ui-hide {
    display: block;
}

.hide .ui-show {
    display: none;
}

.ui-loader {
    display: none;
}

.ui-loading .ui-loader {
    display: block;
}

.ui-loader i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #fff;
    font-size: 70px;
    display: block;
    line-height: 1;
    width: 70px;
    height: 71.5px;
    text-align: center;
}

.img {
    display: block;
    position: relative;
    padding-bottom: 56.25%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.img-top {
    border-radius: 5px 5px 0 0;
}

.img div {
    background: rgba(0,0,0,0.5);
}

.img div,
.img span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    background: linear-gradient(0, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.img span {
    padding: 4rem 1rem 1rem 1rem;
    font-size: .9rem;
    text-align: center;
}

.img div {
    padding: 1.5rem 1.25rem;
}

.img div h3 {
    font-size: 1.6rem;
    margin: 0;
    line-height: 1;
}

.img div p {
    font-size: .9rem;
    line-height: 1;
    margin-top: .25rem;
    max-width: 15rem;
    line-height: 1.4;
}

.img div a {
    line-height: 1;
    font-size: .9rem;
    position: absolute;
    bottom: 1.5rem;
    right: 1.25rem;
    border: 1px solid #fff;
    padding: .75rem 1rem;
    border-radius: 5px;
}

.img div a i {
    display: inline-block;
    margin: 0 0 0 .25rem;
    -webkit-transform: translatey(1px);
    transform: translatey(1px);
}

.video-link {
    display: block;
}

.video-link .img {
    position: relative;
}

.video-link .img:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    z-index: 1;
    background: #ee0974 url(/assets/icons/play.svg) 57.5% 50% no-repeat;
    box-shadow: 0 0 2rem rgba(0,0,0,0.25);
    background-size: 1.25rem 1.25rem;
}

@media (min-width: 650px) {
    .arrow:after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        margin-left: -1rem;
        width: 2rem;
        height: 2rem;
        border: 1rem solid transparent;
        transition: opacity 150ms ease;
        opacity: 0;
    }

    .arrow.upper.on:after {
        bottom: -2.5rem;
        border-bottom-color: #f0edeb;
        opacity: 1;
    }

    .arrow.lower.on:after {
        top: -2.5rem;
        border-top-color: #f0edeb;
        opacity: 1;
    }
}


/* Layout
---------------------------------------- */

.part {
    border-top: 1px solid transparent;
}

@media (min-width: 1400px) {

}

.inner {
    position: relative;
    display: block;
}

section {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 1rem;
    max-width: 475px;
    margin: 0 auto;
}

@media (min-width: 650px) {
    section,
    section.min {
        max-width: 700px;
    }

    section.med {
        max-width: 800px;
    }
}

@media (min-width: 950px) {
    section {
        max-width: 900px;
    }
}

section.first {
    margin-top: 3rem;
}

section.next {
    margin-bottom: -2rem;
}

@media (min-width: 650px) {
    section.first {
        margin-top: 6rem;
    }
}

.main {
    background: #f0edeb;
    padding: 2rem 0;
    margin: 2rem 0;
}

.main:after {
    content: "";
    display: table;
    clear: both;
}

.main.hide {
    display: none;
}

.main.first {
    margin-top: 0;
}

section .main {
    background: #f0edeb;
    border-radius: 5px;
    padding: 1.25rem 1.5rem;
}

.cell .main {
    margin: 0;
}

.scroll {
    overflow: hidden;
    background: #f0edeb;
    margin: 1rem 0;
}

@media (min-width: 650px) {
    .scroll {
        margin: 2rem 0;
    }
}

.scroll-outer {
    padding: 0;
    white-space: nowrap;
    overflow: scroll;
    text-align: center;
    line-height: 1;
    -webkit-overflow-scrolling: touch;
}

.scroll-inner {
    display: inline;
}

.scroll-item {
    width: 16rem;
    margin: 1rem 1rem 1rem 0;
    display: inline-block;
}

.scroll-item:first-child {
    margin-left: 1.1rem;
}

.scroll-item:last-child {
    margin-right: 1.1rem;
}

@media (min-width: 650px) {
    .scroll-item {
        width: 16rem;
        margin: 2rem 1rem 2rem 0;
    }

    .scroll-item:first-child {
        margin-left: 2rem;
    }

    .scroll-item:last-child {
        margin-right: 2rem;
    }
}

.grid {
    display: block;
    margin: 0 -.5rem;
}

.grid-first {
    margin-top: .5rem;
}

.grid:after {
    content: "";
    display: table;
    clear: both;
}

.grid + .grid {
    margin-top: 1rem;
}

.cell {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    border: .5rem solid transparent;
}

.grid-1 .cell {
    float: none;
    margin: 0 auto;
}

@media (min-width: 650px) {
    .cell-min {
        width: 33.3%;
    }

    .cell-med {
        width: 50%;
    }

    .cell-max {
        width: 66.6%;
    }
}

.cell-clear {
    clear: left;
}

.cell-last {
    float: right;
}

.cell-center {
    clear: both;
    float: none;
    margin: 0 auto;
}

.cell.hide {
    display: none;
}

.grid-min .cell {
    width: 50%;
}

@media (min-width: 650px) {
    .grid-med .cell {
        width: 33.33%;
    }

    .grid-max .cell {
        width: 50%;
    }
}


/* Navigation
---------------------------------------- */

.nav-line {
    background: #333;
    height: 4rem;
    position: relative;
    z-index: 11;
    -webkit-font-smoothing: antialiased;
}

.nav-line img {
    height: 1.25rem;
    position: absolute;
    top: 1.3rem;
    left: 1rem;
}

.nav-line ul {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
    text-align: center;
    height: 1.5rem;
}

.nav-line li {
    display: inline-block;
    margin: 0 0 0 1.5rem;
}

.nav-line li a {
    color: #fff;
}

@media (min-width: 950px) {
    .nav-line {
        height: 4.25rem;
    }

    .nav-line img {
        top: 1.5rem;
        left: 1.5rem;
    }

    .nav-line ul {
        right: 1.5rem;
    }
}

.nav-line .med,
.nav-line .max {
    display: none;
}

@media (min-width: 650px) {
    .nav-line .med {
        display: inline;
    }
}

@media (min-width: 950px) {
    .nav-line .max {
        display: inline;
    }
}

.nav-line input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    box-shadow: none;
    color: #fff;
    text-decoration: underline;
}

.nav-sticky {
    line-height: 1;
    font-size: .9rem;
    padding: 1.5rem 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    position: sticky;
    position: -webkit-sticky;
    z-index: 10;
    top: 0;
}

.nav-sticky:before,
.nav-sticky:after {
    content: '';
    display: table;
}

@media (min-width: 950px) {
    .nav-sticky {
        padding: 1.5rem;
    }
}

.nav-sticky li {
    display: inline-block;
}

.nav-sticky li.hide {
    display: none;
}

.nav-sticky ul.first li {
    margin: 0 1.25rem 0 0;
}

.nav-sticky ul.first a {
    color: #666;
}

.nav-sticky ul.first a.on {
    color: #ee0974;
}

.nav-sticky ul.last {
    position: absolute;
    top: -.7rem;
    right: 0;
    text-align: center;
}

.nav-sticky .basket .only,
.nav-sticky .basket .first,
.nav-sticky .basket .last {
    display: inline-block;
    padding: .7rem 1.25rem;
    line-height: 1;
    background: #f0edeb;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
}

.nav-sticky .basket .only {
    border-radius: 5px;
    padding-left: 2.5rem;
    background: #ee0974;
    color: #fff;
    font-weight: 600;
}

.nav-sticky .basket .first {
    padding-left: 2.5rem;
    border-radius: 5px 0 0 5px;
}

.nav-sticky .basket .last {
    border-radius: 0 5px 5px 0;
    background: #ee0974;
    color: #fff;
}

.nav-sticky .basket i {
    font-size: 1.1rem;
    height: 1.15rem;
    position: absolute;
    top: 0;
    left: 1rem;
    bottom: 0;
    margin: auto;
}

.nav-sticky .basket.on .first,
.nav-sticky .basket.on .last {
    background: #4b186c;
    color: #fff;
}

.nav-sticky .basket.on .last {
    background: #2e0f42;
}



/* Descriptions
---------------------------------------- */

.intro {
    text-align: center;
    margin-bottom: 1rem;
}

.intro.last {
    margin-bottom: 0;
}

.intro img {
    max-width: 14rem;
    margin: 0 auto 3rem auto;
}

.intro h2 {
    margin-bottom: 1rem;
    line-height: 1;
}

.intro h2 + p {
    margin-top: -.5rem;
}

.intro p {
    line-height: 1.5;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro p + p {
    margin-top: .5rem;
}

.intro a,
.outro a {
    border-bottom: 1px solid #333;
}

.outro {
    margin-top: 2rem;
    text-align: center;
}

.divider {
    margin: 0 0 1.25rem 0;
    text-align: center;
}

.perk {
    margin: 1rem 0;
    padding: 2rem 1rem;
    text-align: center;
    background: #f0edeb;
    border-radius: 5px;
}

@media (min-width: 950px) {
    .perk {
        padding: 2rem;
    }
}

.perk i {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3.4rem;
    line-height: 1;
    color: #ee0974;
}

.perk h3 {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'open sans', 'helvetica neue', arial, sans-serif;
    margin-bottom: .5rem;
}

.perk p {
    font-size: .9rem;
}

.message {
    background: #fff;
    border: 1px solid #4b186c;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
}


/* Centers
---------------------------------------- */

.grid-access .cell {
    width: 50%;
}

.grid-access-2 .cell {
    width: 50% !important;
}

.grid-access-3 .cell {
    width: 33.33% !important;
}

@media (min-width: 650px) {
    .grid-access .cell {
        width: 33.33%;
    }
}

@media (min-width: 950px) {
    .grid-access .cell {
        width: 25%;
    }

    .region-no-oslo .grid-access .cell,
    .region-se-stockholm .grid-access .cell,
    .region-en-stockholm .grid-access .cell {
        width: 33.33%;
    }
}

.grid-access label {
    display: block;
    position: relative;
    cursor: pointer;
    background: #fff;
    padding: 1rem;
}

.grid-access .item.on label {
    background: #4b186c;
    color: #fff;
}

.grid-access .item.off label {
    opacity: .5;
}

.grid-access .top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #4b186c;
}

.grid-access .img {
    margin: -1rem -1rem 1rem -1rem;
}

.grid-access .item.off .img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.grid-access h4 {
    line-height: 1;
    padding-bottom: .5rem;
    background: url(/assets/icons/radio-off.svg) top right no-repeat;
    background-size: 1.5rem 1.5rem;
}

.grid-access .item.on h4 {
    background-image: url(/assets/icons/radio-on.svg);
}

.grid-access h4 span {
    font-family: 'open sans';
    font-weight: 400;
    font-size: .9rem;
    margin-left: .25rem;
    color: rgba(0,0,0,0.6);
}

.grid-access .item.on h4 span {
    color: rgba(255,255,255,0.6);
}

.grid-access p {
    font-size: .9rem;
    line-height: 1;
}

.grid-access a {
    color: #666;
    text-decoration: none;
}

.grid-access a i {
    display: inline-block;
    margin: 0 .25rem 0 0;
    -webkit-transform: translatey(1px);
    transform: translatey(1px);
}

.grid-access .item.on a {
    color: #fff;
}

.cell-item-tooltip {
    display: block;
    position: absolute;
    pointer-events: none;
    z-index: 11;
    top: 100%;
    left: 0;
    background: #4b186c;
    color: #fff;
    padding: 1.5rem;
    border-radius: 0 0 5px 5px;
    font-size: .8rem;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 150ms ease;
}

.cell.item:hover .cell-item-tooltip {
    opacity: 1;
}

.cell-item-tooltip:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 11;
    left: 0;
    right: 0;
    top: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
    border: .75rem solid transparent;
    border-bottom-color: #4b186c;
}

.cell-item-tooltip div + div {
    margin-top: 1em;
}


/* Groups
---------------------------------------- */

.grid-groups .cell {
    width: 50%;
}

@media (max-width: 649px) {
    .grid-groups .cell:nth-child(n+3) {
        display: none;
    }
}

@media (min-width: 650px) {
    .grid-groups .cell {
        width: 25%;
    }
}

.group {
    display: block;
    position: relative;
}

.group.off .img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .8;
}

.group p {
    margin-top: .5rem;
    color: #333;
    font-weight: 600;
}

.group p a {
    color: #666;
}


/* Choices
---------------------------------------- */

.special {
    width: 100%;
}

@media (min-width: 650px) {
    .special {
        width: 50%;
    }
}

.special.hide {
    display: block;
}

.special .item {
    z-index: 2;
}

.special .disclaimer {
    padding: 1.75rem 0 .5rem 0;
    margin: -1rem 0 0 0;
    position: relative;
    border-radius: 0 0 5px 5px;
    font-size: .8rem;
    color: #666;
    line-height: 1.5;
    z-index: 1;
}

@media (min-width: 650px) {
    .special .disclaimer {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.childcare.hide {
    display: block;
}

.childcare.hide .input {
    display: none;
}

.childcare.hide .childcare-missing {
    display: block;
}


/* Order
---------------------------------------- */

.part-total {
    background: #f0edeb;
    padding: 3rem 0;
    text-align: center;
}

@media (min-width: 650px) {
    .part-total {
        padding: 4rem 0;
    }
}

.final {
    margin: 2rem auto 12rem auto;
    text-align: center;
}

.order {
    margin: 2rem 0 0 0;
    text-align: left;
    border-top: 1px solid #d9d3cf;
    font-size: 1rem;
}

.order div {
    display: block;
    position: relative;
    border-bottom: 1px solid #d9d3cf;
    padding: 1rem 5rem 1rem 2rem;
    line-height: 1.25;
    background: url(/assets/icons/chevron-on.svg) 0 50% no-repeat;
    background-size: 1.25rem 1.25rem;
}

.order-wide div {
    padding-right: 0;
}

.order .hide {
    display: none;
}

.order a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 1.25rem;
    color: #666;
}

.order a[href] {
    color: #ee0974;
}

.order .input-button {
    margin: 1rem 0;
}

.order-tray {
    position: absolute;
    top: 4rem;
    right: 0;
    width: 35em;
    z-index: 10;
}

.order-tray .inner {
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    max-height: 70vh;
    border-radius: 5px;
    background: #4b186c;
    padding: 3rem;
    color: #fff;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.order-tray:after {
    content: '';
    display: block;
    position: absolute;
    right: 2.75rem;
    top: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    z-index: 11;
    border: .75rem solid transparent;
    border-bottom-color: #4b186c;
}

.order-tray .order,
.order-tray .order div {
    border-color: rgba(255,255,255,0.1);
}

.order-tray .intro {
    text-align: left;
}

.order-tray .order {
    font-size: .9rem;
    margin: 1.5rem 0 2rem 0;
}

.order-tray .order div {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.order-tray .order a {
    height: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.order-tray .order a[href] {
    border-bottom: 1px solid #fff;
    color: #fff;
}

.order-tray h2 {
    line-height: 1;
    font-size: 1.4rem;
}

.order-tray p.max {
    font-size: 1rem;
    padding: 0;
    margin: 0;
}

.order-tray p.min {
    display: none;
}

.order-tray p a {
    display: inline-block;
    background: #ee0974;
    border-radius: 10rem;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: .75rem 1.25rem;
    line-height: 1;
}
/* Input
---------------------------------------- */

.input:before,
.input:after {
    content: '';
    display: table;
}

.input.hide,
.input.off {
    display: none;
}

.input .item {
    display: block;
    position: relative;
    padding: 1rem;
    line-height: 1.4;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff url(/assets/icons/radio-off.svg) 1.2rem 50% no-repeat;
    background-size: 1.5rem 1.5rem;
}

.input .item.focus {
    box-shadow: 0 0 .5rem rgba(0,0,0,0.1);
}

.input .item.invalid {
    border-color: #ee0974 !important;
}

.invalid-message {
    color: #ee0974 !important;
    margin-top: .5rem;
    font-size: .9rem;
    line-height: 1.4;
}

.input label {
    cursor: pointer;
}

.input input[type=radio]:focus,
.input input[type=checkbox]:focus {
    outline: none;
}

.input .item.on {
    color: #fff;
    background-color: #4b186c;
    border-color: transparent !important;
    background-image: url(/assets/icons/radio-on.svg);
}

.input .small {
    font-size: .9rem;
}

.input .item.on .price {
    color: rgba(255,255,255,0.6);
}

.input .price,
.input .item.required .price {
    color: rgba(0,0,0,0.6);
}

.input-last {
    margin-bottom: 1.5rem;
}

.input .item.required {
    background-color: #f0edeb !important;
    border-color: #d9d3cf !important;
    color: #333 !important;
}

.input .item.required .required-choice {
    display: none;
}

.input .item.required .required-notice {
    display: block;
}


/* Buttons
---------------------------------------- */

.input-button {
    position: relative;
    display: inline-block;
}

.input-button input,
.input-button a {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
    display: inline-block;
    background: #ee0974;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 1rem 2rem 1.1rem 2rem;
    line-height: 1;
}

.input-button input:focus,
.input-button a:focus {
    outline: none;
    background: #4b186c;
}

.input-add input,
.input-add a {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
    display: block;
    border: none;
    width: 100%;
    text-align: center;
    background: #f0edeb;
    color: #ee0974;
    border-radius: 5px;
    padding: .75rem;
}

.input-add input {
    background: #ee0974;
    color: #fff;
}

.input-link {
    color: #ee0974;
}


/* Bar
---------------------------------------- */

.input-bar {
    width: 100%;
    margin-top: 2rem;
}

@media (min-width: 650px) {
    .input-bar {
        display: table;
    }
}

.input-bar .item {
    padding: 1.25rem 1.25rem 1rem 4rem;
    border-radius: 0;
    border-bottom: none;
}

.input-bar .item:first-child {
    border-radius: 5px 5px 0 0;
}

.input-bar .item:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom: 1px solid #ccc;
}

@media (min-width: 650px) {
    .input-bar .item {
        display: table-cell;
        background-position: 50% 1rem;
        padding: 3.5rem .5rem 2rem .5rem;
        text-align: center;
        width: 20%;
        border-right: none;
        border-bottom: 1px solid #ccc;
    }

    .input-bar-3 .item {
        width: 33.33%;
    }

    .input-bar-4 .item {
        width: 25%;
    }

    .input-bar .arrow.upper.on:after {
        bottom: -2.25rem;
    }

    .input-bar .item:first-child {
        border-radius: 5px 0 0 5px;
    }

    .input-bar .item:last-child {
        border-right: 1px solid #ccc;
        border-radius: 0 5px 5px 0;
    }

    .input-bar .item.on {
        border-color: transparent;
    }

    .input-bar .item.on + .item {
        border-left-color: transparent;
    }
}

.input-bar h3 {
    line-height: 1;
}

.input-bar p {
    display: block;
    line-height: 1.4;
    margin-top: .1rem;
}

@media (min-width: 650px) {
    .input-bar p {
        margin: .5rem auto 1rem auto;
        font-size: .9rem;
    }
}

.input-bar .price {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
}

@media (min-width: 650px) {
    .input-bar .price {
        margin-top: .25rem;
        left: 0;
        right: 0;
        top: auto;
        bottom: 1rem;
    }
}


/* Swap
---------------------------------------- */

.input-swap {
    margin: 1.5rem 0 .5rem 0;
}

@media (min-width: 650px) {
    .input-swap {
        display: table;
        width: 100%;
    }
}

.input-swap .item {
    padding: 1.25rem 6rem 1.25rem 3.5rem;
    border-bottom-color: transparent;
    border-radius: 0;
}

.input-swap .item:first-child {
    border-radius: 5px 5px 0 0;
}

.input-swap .item:last-child {
    border-radius: 0 0 5px 5px;
    border-bottom-color: #ccc;
}

.input-swap .price {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
}


/* Line
---------------------------------------- */

.input-line {
    margin: 1.5rem 0;
}

.input-line .item {
    padding: 1.25rem 8rem 1.25rem 3.5rem;
}

.input-line .item-wide {
    padding-right: 1.25rem;
}

.input-line .price {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.input-line-group .item {
    border-radius: 0;
    border-top: none;
}

.input-line-group .item:first-child {
    border-top: 1px solid #ccc;
    border-radius: 5px 5px 0 0;
}

.input-line-group .item:last-child {
    border-radius: 0 0 5px 5px;
}

.input-line-group .item.on {
    border-bottom-color: #3d1357 !important;
}

.input-line-close {
    margin: 0;
}

.input-line-close .item {
    border-radius: 0 0 5px 5px;
    border-top: none;
    font-size: .9rem;
    padding-right: 0;
}

.input-line-on .item {
    background-color: #f0edeb;
    border-color: #f0edeb;
    background-image: url(/assets/icons/radio-on.svg);
}

.input-line-off .item {
    background-image: url(/assets/icons/radio-disabled.svg);
}


/* Fields
---------------------------------------- */

.input-label {
    font-weight: 600;
    margin-bottom: .75rem;
    line-height: 1;
}

.input-help {
    font-weight: 400;
    color: #666;
    margin: 0 0 1rem 0;
    font-size: .9rem;
}

.input-help-last {
    margin-bottom: 0;
}

.input-help-after {
    margin: 1rem 0 0 0;
}

.input-help-disclaimer {
    color: #ee0974;
}

.input-required {
    color: #ee0974;
    display: inline-block;
    -webkit-transform: translatey(.2rem);
    -moz-transform: translatey(.2rem);
    -ms-transform: translatey(.2rem);
    transform: translatey(.2rem);
}

.input-space {
    margin: 1rem 0 .75rem 0;
    border-top: 1px solid #f0edeb;
}

.input-space.first {
    margin-top: 0;
}

.input-space.last {
    margin-bottom: 0;
}

.input-field {
    position: relative;
}

.input-field input,
.input-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    padding: .75rem 1rem;
    border: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input-field select::-ms-expand {
    display: none;
}

.input-field input:focus,
.input-field select:focus {
    outline: none;
    border-color: #ee0974;
}

.input-field-max input,
.input-field-max select {
    padding: 1.25rem;
}

.input-field input[type=date] {
    height: 3.2rem;
}


.input-field input.invalid,
.input-field select.invalid {
    border-color: #ee0974;
}

.input-field-select:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .75rem;
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
    pointer-events: none;
    background: url(/assets/icons/chevron-down.svg) center center no-repeat;
    background-size: 1.5rem 1.5rem;
}
/* Modal
---------------------------------------- */

.modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(75,24,108,0.9);
    cursor: pointer;
}

.modal section {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 75%;
    max-height: 40rem;
    max-width: 1100px;
    overflow: hidden;
}


/* Video
---------------------------------------- */

.modal-video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 100%;
    width: 350px;
    height: 196px;
}

@media (min-width: 650px) {
    .modal-video {
        width: 600px;
        height: 337px;
    }
}

@media (min-width: 950px) {
    .modal-video {
        width: 800px;
        height: 450px;
    }
}


/* Textual
---------------------------------------- */

.modal-box {
    height: 100%;
    cursor: auto;
    position: relative;
    font-size: .9rem;
    max-width: 40rem;
    margin: 0 auto;
    background: #fff;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    border-radius: 5px;
    position: relative;
}

.modal-box .last {
    position: relative;
    padding: 2rem;
}

.modal-box .modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    text-align: center;
    z-index: 2;
    line-height: 1;
    color: #4b186c;
}

.modal-box iframe {
    display: block;
    width: 100%;
    height: 14rem;
}

@media (min-width: 650px) {
    .modal-box iframe {
        height: 22.5rem;
    }
}

.modal-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.modal-box p {
    margin-top: 1rem;
}

.modal-box ul {
    margin: 1rem 0;
}

.modal-box li {
    background: #f0edeb;
    margin-bottom: 1px;
    padding: .5rem 1rem;
}
