/*  */
/* RESET */
/*  */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub-menu, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; -webkit-box-sizing: border-box; box-sizing: border-box; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } img { width: 100%; } button { background: none; border: none; margin: 0; padding: 0; outline: none !important; }


/*  */
/* FONTS */
/*  */

@font-face {
    font-family: Minautor;
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/MinotaurSans-Light.woff2') format('woff2'),
    url('../fonts/MinotaurSans-Light.woff') format('woff');
}
@font-face {
    font-family: Minautor;
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/MinotaurSans-LightItalic.woff2') format('woff2'),
    url('../fonts/MinotaurSans-LightItalic.woff') format('woff');
}
@font-face {
    font-family: Minautor;
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/MinotaurSans-Bold.woff2') format('woff2'),
    url('../fonts/MinotaurSans-Bold.woff') format('woff');
}
@font-face {
    font-family: Minautor;
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/MinotaurSans-BoldItalic.woff2') format('woff2'),
    url('../fonts/MinotaurSans-BoldItalic.woff') format('woff');
}


/*  */
/* GLOBAL */
/*  */

:root {
    --blue  : #003848;
    --green : #3DFEF6;
    --yellow: #FFFF66;
    --orange: #F7A717;
    --white : #FAFAFC;
    --grey  : #C7C9D9;
    --dgrey : #8F90A6;
    --bxsh  : 0px 4px 4px rgba(0, 0, 0, 0.25);
}

html, body {
    height: 100%;
}

/* typo */

body {
    font-family: Minautor, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.2;
    background: var(--blue);
    color: var(--yellow);
}
body * { font-family: Minautor, sans-serif; }

h1, h2, h3, h4, h5 {
    font-weight: 700;
}
h1 { font-size: 40px; }
h2 { font-size: 36px; }
h3 { font-size: 32px; }
h4 { font-size: 28px; }
h5 { font-size: 24px; }

p {
    font-size: 18px;
    font-weight: 300;
}

i, em {
    font-style: italic;
}

strong, b {
    font-weight: 700;
}

small {
    font-size: 8px;
}

a {
    color: var(--yellow);
}

.stripe {
    position: relative;
    left: -25px;
    padding: 20px 30px;
    background: var(--orange);
    color: var(--blue);
    margin-bottom: 75px;
}

@media (min-width: 1100px) {

    h1 { font-size: 64px; }
    h2 { font-size: 72px; }
    h3 { font-size: 52px; }
    h4 { font-size: 40px; }
    h5 { font-size: 38px; }
    p { font-size: 20px; }

    .stripe {
        max-width: 75%;
        text-align: right;
    }

}

/* inputs */

input[type=text],
input[type=email],
input[type=password],
input[type=number],
select,
textarea,
tags.tagify {
    background: var(--white);
    border: 1px solid var(--grey);
    box-sizing: border-box;
    box-shadow: inset 0px 0.5px 4px rgba(96, 97, 112, 0.32);
    padding: 10px 14px;
    font-size: 16px;
    color: var(--blue);
    outline: none !important;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
    -webkit-appearance: none
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus,
textarea:focus,
tags.tagify:focus,
.tagify.tagify--focus {
    border-color: #000;
}
select {
    padding: 10px 11px;
}
tags.tagify {
    padding: 2px 0;
}
.tagify__tag>div::before {
    box-shadow: 0 0 0 var(--tag-inset-shadow-size,1.1em) var(--green) inset;
    -webkit-box-shadow: 0 0 0 var(--tag-inset-shadow-size,1.1em) var(--green) inset;
}

div.select-wrapper {
    position: relative;
}
div.select-wrapper:after {
    content:'';
    height: 9px;
    width: 15px;
    background: url(../images/arrow-down.svg);
    -webkit-background-size: 15px;
    background-size: 15px;
    position: absolute;
    top: 16px;
    right: 18px;
}

input[type=checkbox] {
    display: inline-block;
    position: relative;
    width: 24px !important;
    height: 24px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
}
input[type=checkbox]:after,
input[type=checkbox]:checked:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/check-off.svg');
    -webkit-background-size: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
}
input[type=checkbox]:checked:after {
    background-image: url('../images/check-on.svg');
}

button,
.btn {
    display: inline-block;
    padding: 25px 50px;
    background: var(--orange);
    box-shadow: var(--bxsh);
    -webkit-box-shadow: var(--bxsh);
    border: none;
    font-size: 24px;
    line-height: 25px;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    opacity: 1;
    text-align: center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
}
button.white,
.btn.white {
    background: var(--yellow);
    color: var(--blue);
}
button:active,
.btn:active {
    opacity: .75;
}

button.disabled,
.btn.disabled {
    pointer-events: none;
    background: var(--grey) !important;
    color: var(--blue) !important;
}

button.blue,
.btn.blue {
    background: var(--green);
    color: var(--blue);
}

.btn img,
.btn svg,
button img,
button svg {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin: 0px 15px -5px 0;
}
.btn svg,
.btn svg path,
button svg,
button svg path {
    fill: var(--blue);
}
.btn.white svg,
.btn.white svg path,
button.white svg,
button.white svg path {
    fill: var(--blue);
}

button.small,
.btn.small {
    font-size: 14px;
    padding: 13px;
}
.btn.small img,
.btn.small svg,
button.small img,
button.small svg {
    margin: 0px 8px -8px 0;
    width: 20px;
    height: 20px;
    position: relative;
    top: -3px;
}

.alt_btn {
    display: inline-block !important;
    margin-right: 15px !important;
    padding: 8px 12px !important;
    background: var(--blue) !important;
    color: var(--orange) !important;
    border: var(--orange) 1px solid !important;
    text-decoration: none;
    text-align: center;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}
.alt_btn.on {
    background: var(--orange) !important;
    color: var(--blue) !important;
}

@media (min-width: 1100px) {

    button,
    .btn {
        max-width: 400px;
        display: block;
        margin: 0 auto;
    }

}

/* layout */

section {
    padding: 50px 25px;
    width: 100%;
    position: relative;
    z-index: 1;
}

@media (min-width: 1100px) {

    .container {
        max-width: 1350px;
        margin: 0 auto;
    }

    section.shotring {
        padding: 5%;
        display: grid;
        grid-template-columns: 47.5% 47.5%;
        grid-gap: 5%;
    }

    section div.col {
        margin: 0 4%;
    }

    section div.col.centered {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
    }

}


/*  */
/* COLORS */
/*  */

section[class^=color-],
section[class^=color-] h1,
section[class^=color-] h2,
section[class^=color-] h3,
section[class^=color-] h4,
section[class^=color-] h5,
section[class^=color-] h6,
section[class^=color-] p,
section[class^=color-] span,
section[class^=color-] a,
section[class^=color-] svg,
section[class^=color-] svg *,
section[class^=color-] .stripe,
section[class^=color-] .btn,
section[class^=color-] button {
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
}

section.color-green { background: var(--green); }
section.color-yellow { background: var(--yellow); }
section.color-orange { background: var(--orange); }

section.color-green,
section.color-green h1,
section.color-green h2,
section.color-green h3,
section.color-green h4,
section.color-green h5,
section.color-green h6,
section.color-green p,
section.color-green span,
section.color-green a,
section.color-orange,
section.color-orange h1,
section.color-orange h2,
section.color-orange h3,
section.color-orange h4,
section.color-orange h5,
section.color-orange h6,
section.color-orange p,
section.color-orange span,
section.color-orange a,
section.color-yellow,
section.color-yellow h1,
section.color-yellow h2,
section.color-yellow h3,
section.color-yellow h4,
section.color-yellow h5,
section.color-yellow h6,
section.color-yellow p,
section.color-yellow span,
section.color-yellow a {
    color: var(--blue) !important;
}

section.color-blue .main-title,
section.color-green .main-title,
section.color-yellow .main-title {
    color: var(--orange) !important;
}

section.color-orange .main-title {
    color: var(--yellow) !important;
}

section.color-orange .btn,
section.color-orange button {
    background: var(--blue) !important;
    color: var(--green) !important;
}

section.color-green .btn.blue,
section.color-green button.blue,
section.color-yellow .btn.blue,
section.color-yellow button.blue {
    background: var(--blue) !important;
    color: var(--green) !important;
}
section.color-orange .btn.blue,
section.color-orange button.blue {
    background: var(--yellow) !important;
    color: var(--blue) !important;
}

section.color-green .oracle svg,
section.color-green .oracle svg *,
section.color-yellow .oracle svg,
section.color-yellow .oracle svg *,
section.color-orange .oracle svg,
section.color-orange .oracle svg * {
    fill : var(--blue) !important;
}

section.color-green .bx-pager-item a,
section.color-yellow .bx-pager-item a,
section.color-orange .bx-pager-item a {
    background: var(--blue) !important;
}
section.color-green .bx-pager-item a.active,
section.color-yellow .bx-pager-item a.active {
    background: var(--orange) !important;
}
section.color-orange .bx-pager-item a.active {
    background: var(--yellow) !important;
}

section.color-green div#logo-scroll svg,
section.color-yellow div#logo-scroll svg,
section.color-orange div#logo-scroll svg,
section.color-green div#logo-scroll svg *,
section.color-yellow div#logo-scroll svg *,
section.color-orange div#logo-scroll svg * {
    fill: var(--blue);
}

section.color-orange .stripe {
    background: var(--yellow);
}

section.color-yellow button#share,
section.color-orange button#share,
section.color-green button#share {
    background: none !important;
}
section.color-yellow button#share svg,
section.color-orange button#share svg,
section.color-green button#share svg,
section.color-yellow button#share svg *,
section.color-orange button#share svg *,
section.color-green button#share svg * {
    fill: var(--blue) !important;
}


/*  */
/* POPUPS / AGE GATE */
/*  */

div.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(126 249 244 / 60%);
    padding: 10px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
    z-index: 100;
}
div#age,
div#pass {
    z-index: 101;
    opacity: 0;
    visibility: hidden;
}
body.no_age:not(.bypass_age) div#age,
body.no_pass div#pass {
    opacity: 1;
    visibility: visible;
}

div#IE {
    opacity: 0;
    visibility: hidden;
}
body.is_IE div#IE {
    opacity: 1;
    visibility: visible;
}

/*  */

div#cookies {
    opacity: 0;
    visibility: hidden;
    background: none;
    width: 100%;
    max-width: 550px;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    height: auto;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
}
div#cookies.on {
    opacity: 1;
    visibility: visible;
}

div#cookies button {
  display: inline-block;
  padding: 15px 25px;
  margin-top: 0px;
}

div#cookies button:last-of-type {
  background: var(--blue);
  color: var(--orange);
}

div#cookies a {
    display: block;
}

/*  */

div.popup div.wrap {
    position: relative;
    max-width: 600px;
    background: #044054;
    padding: 50px 15px;
    text-align: center;
    color: var(--yellow);
    overflow: hidden;
}

div.popup div.wrap > svg {
    display: block;
    width: 100%;
    max-width: 150px;
    max-height: 150px;
    margin: 0 auto 15px;
}

div.popup.loading div.wrap {
    display: none;
}

div.popup img.loader {
    display: none;
}
div.popup.loading img.loader {
    display: block;
    max-width: 150px;
}

div.popup h3 {
    margin-bottom: 30px;
    font-size: 24px;
}

div.popup h3 + p {
    margin-bottom: 36px;
}

div.popup button {
    margin: 40px auto;
    display: block;
}

div.popup span.error {
    display: none;
    color: var(--orange);
    font-size: 0.8em;
    margin-top: 10px;
}

div.popup small {
    display: block;
    padding: 0 20px;
    margin-top: 40px;
}

div.popup button.close {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 20px;
    right: 30px;
    margin: 0;
    padding: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
div.popup button.close svg {
    width: 100%;
}
div.popup button.close svg,
div.popup button.close svg path {
    fill: var(--white);
}

div.popup textarea {
    color: var(--blue);
    margin-bottom: 10px;
}

div#age * {
    z-index: 2;
    position: relative;
    opacity: 1;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
}
div#age.typing div.wrap > span,
div#age.typing div.wrap > svg,
div#age.typing div.wrap > h3,
div#age.typing div.wrap > p,
div#age.typing div.wrap > small {
    opacity: 0;
}

div#age input {
    width: 88px;
    text-align: center;
    margin: 0 5px;
    -moz-appearance: textfield;
}

div#age input::-webkit-outer-spin-button,
div#age input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

div#pass input {
    width: 45%;
    text-align: left;
    margin-top: 10px;
}

div#age div.oracle-bg,
div#oracle div.oracle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    mix-blend-mode: lighten;
}

div#age div.oracle,
div#oracle div.oracle {
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 1;
}
div#age div.oracle.on {
    opacity: 1;
}
div#oracle div.oracle {
    position: relative;
    opacity: 1;
}

div#age div.oracle h2,
div#oracle div.oracle h2 {
    font-size: 2em;
    text-transform: capitalize;
    margin-bottom: 20px;
}

div#age div.oracle h3,
div#oracle div.oracle h3 {
    color: var(--orange);
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
}
div#age div.oracle a.btn,
div#age div.oracle button,
div#oracle div.oracle a.btn,
div#oracle div.oracle button {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
}

@media (min-width: 1100px) {

    div#age div.oracle,
    div#oracle div.oracle {
        padding: 50px;
    }

    div#age div.oracle h2,
    div#oracle div.oracle h2 {
        font-size: 3em;
        text-transform: capitalize;
        margin-bottom: 20px;
    }

    div#age div.oracle h3,
    div#oracle div.oracle h3 {
        font-size: 1.2em;
        line-height: 1.4;
    }

}

/* animate oracle popup */

div#oracle {
    opacity: 0;
    visibility: hidden;
}
div#oracle.on {
    opacity: 1;
    visibility: visible;
}
div#oracle.on div.oracle-bg {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    animation: grow_in 3s linear forwards;
}

div#oracle div.oracle {
    opacity: 0;
}
div#oracle.on div.oracle {
    animation: fade_in 0.2s 3s linear forwards;
}

@-webkit-keyframes grow_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    90% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
    }
}
@-o-keyframes grow_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    90% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
    }
}
@-moz-keyframes grow_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    90% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
    }
}
@keyframes grow_in {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }
    90% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
    }
}

@-webkit-keyframes fade_in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-o-keyframes fade_in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@-moz-keyframes fade_in {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes fade_in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/*  */

div#sharing,
div#inviting,
div#voting {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}
div#sharing.on,
div#inviting.on,
div#voting.on {
    opacity: 1;
    visibility: visible;
}
div#sharing p,
div#inviting p,
div#voting p {
    margin-top: 30px;
    margin-bottom: 40px;
}
div#sharing a.btn,
div#inviting a.btn,
div#voting a.btn {
    width: calc(50% - 20px);
    margin: 10px;
    float: left;
}


/*  */
/* HEADER */
/*  */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 25px;
    background: var(--blue);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    z-index: 10;
}

header a#logo {
    display: flex;
}
header a#logo svg {
    height: 30px;
}

header nav {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

header nav button {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
header nav button span {
    height: 5px;
    width: 30px;
    display: block !important;
    background: var(--yellow);
    margin-bottom: 5px;
    transform-origin: left center;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}
header nav button span:last-child {
    margin-bottom: 0;
}
header nav.on button span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 29px;
}
header nav.on button span:nth-child(2) {
    opacity: 0;
}
header nav.on button span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 29px;
}

header nav ul {
    position: fixed;
    background: var(--blue);
    padding: 40px;
    top: 50px;
    right: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}
header nav.on ul {
    opacity: 1;
    visibility: visible;
}

header nav ul li:not(:last-child) {
    border-bottom: 1px solid var(--orange);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

header nav ul li a {
    color: var(--green);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a span {
    display: block;
    text-transform: none;
    font-weight: normal;
    color: var(--yellow);
}

header nav ul.sub-menu {
    position: relative;
    top: 0;
    transition: none;
}

header nav select#lang {
    margin-right: 20px;
    background: none;
    border: 1px solid var(--yellow);
    color: var(--yellow);
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 30px;
    padding: 0 15px 0 5px;
}

header nav select#lang option {
    color: #000;
}

header div.select-wrapper:after {
    background: url('../images/arrow-down-yellow.svg') no-repeat;
    -webkit-background-size: 12px;
    background-size: 12px;
    top: 11px;
    right: 25px;
}

header + section {
    margin-top: 50px;
}

@media (min-width: 1100px) {

    header {
        padding: 20px 25px;
    }

    header a#logo svg {
        height: 48px;
    }

    header nav button {
        display: none;
    }

    header nav ul {
        opacity: 1;
        visibility: visible;
        position: relative;
        top: 0;
        padding: 0;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
    }
    header nav ul li {
        display: inline-block;
        margin: 0 20px !important;
        padding-bottom: 0 !important;
        border-bottom: none !important;
        position: relative;
    }

    header nav ul.sub-menu {
        position: absolute;
        width: max-content;
        display: block;
        text-align: right;
        top: 100%;
        right: 0;
        color: var(--blue);
        background: none;
        opacity: 0;
        visibility: hidden;
        padding: 20px 0;
        -webkit-transition: 0.2s all;
        -o-transition: 0.2s all;
        transition: 0.2s all;
    }

    header nav ul li:hover ul.sub-menu {
        opacity: 1;
        visibility: visible;
    }
    header nav ul.sub-menu::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 10px 10px 10px;
        border-color: transparent transparent var(--green) transparent;
        position: absolute;
        top: 10px;
        right: 50px;
    }

    header nav ul.sub-menu li:first-child {
        padding-top: 20px !important;
    }
    header nav ul.sub-menu li {
        display: block;
        padding: 0 20px 20px !important;
        background: var(--green);
    }

    header nav ul.sub-menu li a {
        color: var(--blue);
    }

    header nav select#lang {
        margin-left: 20px;
    }

}


/*  */
/* INTRO */
/*  */

section#intro {
    display: block;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    padding-top: 50px;
    text-align: center;
    position: relative;
    color: var(--yellow) !important;
    background: #014054;
    overflow: hidden;
}

section#intro video#intro-bg,
section#intro div#front-layer {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

section#intro div.text {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
}

section#intro h1 {
    color: var(--orange);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0,0,0,.5);
    font-size: 3em;
}
section#intro h1 span {
    display: block;
    color: #fff;
    font-size: 0.8em;
}

section#intro a.btn,
section#intro button#show_country {
    position: absolute;
    bottom: 5%;
    left: 50%;
    width: 300px;
    background: var(--orange) !important;
    color: var(--blue) !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

section#intro a.btn.disabled {
    background: var(--grey) !important;
    color: var(--blue) !important;
}

div.intro-text-desktop {
    display: none;
}

div.intro-prizes {
    margin-bottom: 40px;
}

div.prizes {
    padding-top: 40px;
}

@media (min-width: 1100px) {

    section#intro {
        padding-top: 88px;
    }

    section#intro div.text {
        position: absolute;
        top: 0;
        right: 0;
        width: 45%;
        height: 100%;
    }

    section#intro a.btn {
        display: block;
        margin: 40px auto 0 0;
        position: relative;
        bottom: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    section#intro button#show_country {
        display: none;
    }

    div.intro-text-desktop {
        display: block;
        text-align: left;
    }

    div.intro-text-desktop h3 {
        margin-bottom: 40px;
    }

    div.intro-text-desktop div.gutter {
        text-align: left;
    }

    div.intro-text-mobile {
        display: none;
    }

    div.intro-prizes {
        padding-top: 120px;
    }

    div.prizes {
        padding-top: 40px;
    }

}


/*  */
/* OUR BOTTLES and SINGLE BOTTLE */
/*  */

section#bottles,
section#bottle {
    position: relative;
    overflow: hidden;
}

section#bottles h1 {
    text-align: center;
    margin-bottom: 50px;
}

section#bottles .oracle,
section#bottle .oracle {
    position: absolute;
    top: 70px;
    left: 25px;
    width: calc(100% - 50px);
}
section#bottle .oracle {
    top: 165px;
}

section#bottles .oracle svg,
section#bottle .oracle svg {
    width: 100%;
    opacity: 0.5;
}
section#bottles .oracle svg,
section#bottle .oracle svg,
section#bottles .oracle svg *,
section#bottle .oracle svg * {
    fill: var(--green);
}

.bx-wrapper {
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 80px;
    background: none;
}

section#bottles .bx-wrapper {
    width: calc(100% + 50px);
    position: relative;
    left: -25px;
    max-width: none !important;
}

section#bottles .bx-pager {
    display: none;
}

section#bottles .bx-wrapper .bx-controls-direction a {
    width: 50px;
    height: 54px;
    background: url(../images/next.svg);
    background-position: center !important;
    -webkit-background-size: 48px;
    background-size: 48px;
}
section#bottles .bx-wrapper .bx-controls-direction a.bx-prev {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: center 24px;
    -moz-transform-origin: center 24px;
    -ms-transform-origin: center 24px;
    -o-transform-origin: center 24px;
    transform-origin: center 24px;
}

section#bottles .bx-controls {
    top: 190px;
    position: absolute;
    width: 100%;
}

section#bottles div.slider,
section#bottle div.slider {
    position: relative;
}

section#bottles div.slide {
    width: 100%;
}

section#bottles div.slide div.wrap,
section#bottle div.slide {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
section#bottles div.slide div.wrap {
    padding-bottom: 50px;
}

section#bottles div.slide img,
section#bottle div.slide img {
    width: 60%;
    margin-bottom: 25px;
}

section#bottles div.slide div.wrap > div.text,
section#bottle div.slide > div.text {
    width: 100%;
    padding: 25px;
    background: rgba(255,255,255,0.4);
    position: relative;
}
section#bottle div.slide > div.text {
    background: rgba(255,255,255,0.2);
    width: calc(100% + 50px);
}

section#bottle div.slide > div.text h1 {
    display: none;
}

section#bottles div.slide div.wrap > div.text h2,
section#bottle div.slide > div.text h3 {
    margin-bottom: 25px;
}
section#bottles div.slide div.wrap > div.text h2 {
    font-size: 32px;
}
section#bottles div.slide div.wrap > div.text p {
    margin-bottom: 50px;
}
section#bottle div.slide > div.text p {
    margin-bottom: 30px;
}
section#bottles div.slide div.wrap > div.text a.btn {
    position: absolute;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 300px;
}

section#bottle div.slide > div.text a.btn {
    width: 100%;
    margin-bottom: 70px;
}

section#bottle div.slider > h2 {
    color: var(--orange);
    font-size: 48px;
    width: 100%;
    display: block;
    text-align: left;
}

section#bottle div.slider > h1 {
    font-size: 40px;
    width: 100%;
    display: block;
    text-align: right;
}

section#bottle div.shot-stripe h2 {
    text-align: left;
    padding-left: 25px;
    font-size: 28px;
    display: block;
    margin-bottom: 20px;
}

section#bottle div.shot-stripe div.wrap {
    position: relative;
    left: -25px;
    padding-left: 25px;
}

section#bottle div.controls {
    position: absolute;
    top: 270px;
    left: -15px;
    width: calc(100% + 30px);
    height: 48px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
section#bottle div.controls a:first-child {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    position: relative;
    top: -7px;
}
section#bottle div.controls img {
    height: 100%;
}

section#bottle div.titles {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
}
section#bottle div.titles h1,
section#bottle div.titles h2 {
    display: block;
}
section#bottle div.titles h1 { order: 1;}
section#bottle div.titles h2 { order: 0;}

@media (min-width: 1100px) {

    section#bottles {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    section#bottle {
        padding-top: 75px;
    }

    section#bottles .oracle,
    section#bottle .oracle {
        width: 70%;
        max-width: 750px;
        top: 10%;
        left: -150px;
    }
    section#bottle .oracle {
        top: 150px;
    }

    section#bottle div.slider > h2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        text-align: center;
        font-size: 72px;
        z-index: 1;
    }
    section#bottle div.slider > h1 {
        display: none;
    }

    section#bottles div.slider div.wrap,
    section#bottle div.slide {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 50px;
    }
    section#bottles div.slide div.wrap {
        padding-bottom: 0;
    }
    section#bottle div.slide {
        padding-top: 60px;
        grid-template-columns: calc(40% - 50px) 60%;
    }

    section#bottles div.slide img,
    section#bottle div.slide img {
        width: 422px;
        display: block;
        margin: 0 auto;
        position: relative;
        left: 0;
        opacity: 1;
        -webkit-transition: 0.7s all;
        -o-transition: 0.7s all;
        transition: 0.7s all;
    }
    section#bottles div.slide.out img {
        left: -500px;
        opacity: 0;
    }

    section#bottles div.slide div.wrap > div.text {
        width: 90%;
        max-width: 550px;
        opacity: 1;
        -webkit-transition: 0.7s all;
        -o-transition: 0.7s all;
        transition: 0.7s all;
    }
    section#bottles div.slide.out div.wrap > div.text {
        opacity: 0;
    }
    section#bottle div.slide > div.text {
        width: calc(100% + 25px);
        text-align: left;
    }
    section#bottle div.slide > div.text p {
        max-width: 750px;
    }

    section#bottles div.slide div.wrap > div.text h3,
    section#bottle div.slide > div.text h3 {
        margin-top: 25px;
    }

    section#bottles div.slide div.wrap > div.text h2 {
        font-size: 52px;
    }

    section#bottle div.slide > div.text h1 {
        display: block;
        font-size: 52px;
        text-align: left;
        margin-bottom: 20px;
    }

    section#bottles div.slide div.wrap > div.text a.btn,
    section#bottle div.slide > div.text a.btn {
        left: 25px;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    section#bottle div.slide > div.text a.btn {
        display: inline-block;
        margin-top: 20px;
        margin-bottom: 60px;
    }

    section#bottles .bx-wrapper {
        width: 100%;
        max-width: 100% !important;
    }

    section#bottles div.bx-controls-direction {
        display: none;
    }

    section#bottles .bx-controls {
        position: absolute;
        top: 0;
        right: 0;
        width: 5%;
        height: 100%;
    }
    section#bottles .bx-pager {
        width: 100%;
        height: 100%;
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        padding-top: 0;
    }
    section#bottles .bx-pager-item {
        text-align: center;
    }
    section#bottles .bx-pager-item a {
        display: inline-block;
        margin: 10px 0;
        width: 13px;
        height: 13px;
        border-radius: 13px;
        background: var(--green);
    }
    section#bottles .bx-pager-item a.active {
        background: var(--orange);
    }

    section#bottle div.shot-stripe div.wrap {
        width: calc(100% + 50px);
    }
    section#bottle div.shot-stripe a:not(.btn) {
        margin-right: 10px;
    }
    section#bottle div.shot-stripe article.shot {
        width: 295px;
        height: 295px;
    }

    section#bottle div.shot-stripe h2 {
        text-align: left;
        padding-left: 0;
        font-size: 32px;
    }

    section#bottle div.controls {
        width: 40%;
        top: 460px;
        height: 60px;
    }

}


/*  */
/* OUR SHOTTAILS */
/*  */

section#shottails {
    position: relative;
    overflow: hidden;
}

section#shottails.archive div.match {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 40px;
}

section#shottails div.match span {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

section#shottails.archive div.match div.filters {
    order: 1;
}

section#shottails div#logo-scroll {
    position: absolute;
    top: 0px;
    right: -75px;
    width: 180px;
    height: 180px;
}
section#shottails div#logo-scroll svg {
    width: 100%;
    height: 100%;
}

section#shottails div.container > span {
    text-align: center;
    width: 100%;
    margin-bottom: 25px;
    font-size: 20px;
    display: block;
    font-weight: bold;
}

section#shottails div.filters {
    text-align: center;
    margin-bottom: 75px;
}
section#shottails.archive div.filters {
    margin-top: 40px;
}

section#shottails div.filters span {
    font-size: 28px;
    font-weight: bold;
}

section#shottails div.filters select {
    width: 100%;
    margin-bottom: 30px;
}

section#shottails div.filters button,
section#shottails div.filters a.btn {
    width: 100%;
    margin-bottom: 20px;
}

div.shot-stripe {
    text-align: center;
}

div.shot-stripe h4 {
    font-size: 24px;
    margin-bottom: 35px;
}

div.shot-stripe div.wrap {
    width: 100vw;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
div.shot-stripe div.wrap::-webkit-scrollbar {
    display: none;
}

section.archive div.shot-stripe div.wrap {
    margin-bottom: 20px;
}

div.shot-stripe a.btn {
    margin-top: 50px;
}

div.shot-stripe a:not(.btn) {
    text-decoration: none;
    display: block;
    float: left;
    margin-right: 10px;
}

div.shot-stripe article.shot {
    width: 160px;
    height: 160px;
    position: relative;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
}

div.shot-stripe article.shot div.text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    opacity: 0;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
}
div.shot-stripe article.shot div.text h3 {
    width: 100%;
    text-align: center;
    color: #fff !important;
    font-size: 18px;
}
div.shot-stripe article.shot:hover div.text {
    opacity: 1;
}

div.shot-stripe article.shot div.text button {
    display: none;
}

/* single shottail */

section#shottails.single div.match {
    margin-top: 20px;
}

div.shot-single div.title {
    position: relative;
    margin-bottom: 20px;
}

div.shot-single div.title h2 {
    font-size: 24px;
    display: block;
    width: calc(100% - 30px);
}

div.shot-single div.title button {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
}
div.shot-single div.title button svg {
    width: 100%;
    height: 100%;
}
div.shot-single div.title button svg path {
    fill: var(--yellow);
}

div.shot-single div.col div.title {
    display: none;
}

div.shot-single div.slider {
    margin-bottom: 40px;
}

div.shot-single h2,
div.shot-single h3,
div.shot-single h5 {
    margin-bottom: 20px;
}
div.shot-single p,
div.shot-single ul,
div.shot-single ol {
    margin-bottom: 40px;
}

div.shot-single div.controls {
    display: none;
}

div.shot-single .bx-wrapper img {
    height: auto;
}

div.shot-single .bx-wrapper .bx-pager {
    margin: 40px 0 10px;
    bottom: -50px;
}

div.shot-single .bx-wrapper .bx-pager.bx-default-pager a {
    width: 13px;
    height: 13px;
    border-radius: 13px;
    margin: 0 10px;
    background: var(--yellow);
}
div.shot-single .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: var(--green);
}


@media (min-width: 1100px) {

    section#shottails {
        padding-top: 0;
    }
    section#shottails.archive {
        padding-top: 100px;
    }

    section#shottails.archive h1 {
        text-align: center;
        font-size: 40px;
    }

    section#shottails div#logo-scroll {
        width: 380px;
        height: 380px;
        right: -125px;
    }

    section#shottails h2.stripe {
        margin-top: 100px;
    }

    section#shottails h4,
    section#shottails span {
        font-weight: bold;
        font-size: 40px !important;
    }
    section#shottails div.container > span {
        max-width: 1000px;
        text-align: center;
        margin: 0 auto;
    }

    section#shottails div.match,
    section#shottails.archive div.match {
        margin-top: 70px;
        display: grid;
        grid-template-columns: 350px calc(100% - 100px - 350px);
        grid-gap: 100px;
    }
    section#shottails.archive div.match {
        grid-gap: 50px;
    }

    section#shottails div.match span {
        text-align: left;
        display: block;
        margin-bottom: 40px;
    }

    section#shottails.archive div.match div.filters {
        margin-top: 0;
        margin-left: 50px;
        order: 0;
    }

    section#shottails div.filters span {
        text-transform: uppercase;
        text-align: left;
        display: block;
    }

    div.shot-stripe div.wrap {
        width: calc(100% + 25px);
    }

    div.shot-stripe a:not(.btn) {
        margin-right: 30px;
    }

    div.shot-stripe article.shot {
        width: 425px;
        height: 425px;
    }

    div.shot-stripe article.shot div.text h3 {
        font-size: 30px;
    }

    section.archive div.gutter {
        width: 100% !important;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
        overflow: visible;
    }

    section.archive div.shot-stripe a:not(.btn) {
        margin-right: 0;
    }

    section.archive div.shot-stripe article.shot {
        width: 100%;
        height: 0;
        padding-top: 100%;
    }

    /* single shottail */

    div.shot-single div.title {
        display: none;
    }
    div.shot-single div.col div.title {
        display: block;
    }
    div.shot-single div.col div.title h2 {
        text-transform: uppercase;
        font-size: 32px;
    }

    div.shot-single div.col {
        width: calc(50% - 25px);
        float: left;
        margin: 0;
    }
    div.shot-single div.col:last-child {
        margin-left: 50px;
        position: relative;
        top: -5px;
    }

    .bx-wrapper {
        margin-bottom: 40px;
    }

    div.shot-single .bx-wrapper .bx-controls-direction a {
        width: 60px;
        height: 60px;
        background-image: url(../images/next.svg);
        background-position: center !important;
    }
    div.shot-single .bx-wrapper .bx-controls-direction a.bx-prev {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    div.shot-single .bx-wrapper .bx-pager {
        display: none;
    }

}

@media (min-width: 1350px) {

    section#shottails div.shot-stripe div.wrap {
        width: calc(100% + calc(calc(100vw - 1350px) / 2));
    }

}


/*  */
/* ARCHIVE POST */
/*  */

section.archive.posts div.shot-stripe article.shot div.text {
    opacity: 1;
    background: rgba(0,0,0,0.3);
}

section.archive.posts div.shot-stripe article.shot div.text h5 {
    font-size: 20px;
}


/*  */
/* SINGLE POST */
/*  */

section#single-post div.intro {
    display: flex;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

section#single-post div.intro h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

section#single-post div.intro ul {
    margin-bottom: 40px;
}
section#single-post div.intro ul li {
    display: inline-block;
    margin-right: 5px;
    font-size: 14px;
    color: var(--green);
}
section#single-post div.intro ul li:not(:last-child):after {
    content: '>';
    margin-left: 5px;
}
section#single-post div.intro ul li a {
    color: var(--green);
}

section#single-post div.intro div.actions {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
}
section#single-post div.intro div.actions button {
    font-size: 18px;
    padding: 10px 25px;
}
section#single-post div.intro div.actions a {
    color: var(--green);
    text-decoration: none;
    font-weight: 700;
    padding: 13px 0;
}

section#single-post div.intro img {
    height: auto;
    width: calc(100% + 50px);
    margin-left: -25px;
    margin-top: 10px;
}

@media (min-width: 1100px) {

    section#single-post {
        margin-top: 40px;
    }

    section#single-post div.intro {
        display: grid;
        grid-template-columns: 50% 50%;
        width: calc(100% + 50px);
        margin-left: -25px;
    }

    section#single-post div.intro img {
        width: 100%;
        margin: 0;
    }

    section#single-post div.intro div.title {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        justify-content: center;
        padding: 40px;
    }

    section#single-post div.intro div.title h1 {
        font-size: 40px;
    }

    section#single-post div.intro div.actions {
        justify-content: left;
    }
    section#single-post div.intro div.actions button {
        margin: 0;
        margin-right: 40px;
    }

}

/*  */

section#single-post div.post-content {
    background: #fff;
    width: calc(100% + 50px);
    margin-left: -25px;
    color: var(--blue);
    padding: 25px;
}

section#single-post div.post-content div.content a,
section#single-post div.post-content div.content p,
section#single-post div.post-content div.content ul li,
section#single-post div.post-content div.content ol li,
section#single-post div.post-content div.content b,
section#single-post div.post-content div.content strong,
section#single-post div.post-content div.content em {
    font-family: 'Zilla Slab', serif;
    line-height: 1.4;
    font-size: 18px;
    color: var(--blue);
}

section#single-post div.post-content div.content h2,
section#single-post div.post-content div.content h3,
section#single-post div.post-content div.content h4 {
    margin-bottom: 20px;
}
section#single-post div.post-content div.content h2 { font-size: 24px; }
section#single-post div.post-content div.content h3 { font-size: 20px; }
section#single-post div.post-content div.content h4 { font-size: 18px; }

section#single-post div.post-content div.content img {
    width: calc(100% + 50px);
    height: auto;
    margin: 30px 0 30px -25px;
}

section#single-post div.post-content div.content ul,
section#single-post div.post-content div.content ol {
    padding-left: 25px;
    margin: 20px 0;
}
section#single-post div.post-content div.content ul { list-style: disc; }
section#single-post div.post-content div.content ol { list-style: decimal; }

section#single-post div.more-wrap {
    width: calc(100% + 50px);
    margin-left: -25px;
    background: #fff;
    display: inline-block;
}

section#single-post .more-wrap a.btn {
    margin: 60px auto 80px;
    display: block;
    width: max-content;
}

section#single-post .bx-wrapper .bx-pager.bx-default-pager a {
    background: var(--blue);
}
section#single-post .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: var(--green);
}

section#single-post aside {
    display: none;
}

@media (min-width: 1100px) {

    section#single-post div.post-content div.content-wrap {
        max-width: 1350px;
        display: grid;
        grid-template-columns: minmax(auto, 800px) 200px;
        grid-gap: 80px;
        padding-top: 40px;
        margin: 0 auto;
    }

    section#single-post div.post-content div.content a,
    section#single-post div.post-content div.content p,
    section#single-post div.post-content div.content ul li,
    section#single-post div.post-content div.content ol li,
    section#single-post div.post-content div.content b,
    section#single-post div.post-content div.content strong,
    section#single-post div.post-content div.content em {
        font-size: 24px;
    }

    section#single-post div.post-content div.content h2 { font-size: 36px; }
    section#single-post div.post-content div.content h3 { font-size: 32px; }
    section#single-post div.post-content div.content h4 { font-size: 28px; }

    section#single-post div.post-content div.content img {
        width: 100%;
        margin-left: 0;
    }

    /*  */

    section#single-post aside {
        display: block;
    }
    section#single-post aside div.aside-content {
        position: sticky;
        top: 140px;
    }

    section#single-post aside button {
        background: var(--blue);
        color: var(--green);
        margin: 0;
        margin-bottom: 30px;
    }
    section#single-post aside a {
        color: var(--blue);
        text-decoration: none;
        font-weight: bold;
        font-size: 18px;
    }

    /*  */

    section#single-post .more-wrap {
        padding: 50px 25px;
    }

    section#single-post .more-wrap .more {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    section#single-post .more-wrap .more h3 {
        font-size: 24px;
    }

}

/*  */

div.more article {
    padding-top: 100%;
    height: 0;
    position: relative;
    background-size: cover;
    background-position: center;
}

div.more article div.text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 10px;
    text-align: center;
}

div.more article div.text h5 {
    display: block;
    color: #fff;
}

@media (min-width: 1100px) {

    section#shottails.single-post div.title, section#shottails.single-post div.match {
        display: block;
        width: 100%;
        max-width: 750px;
        margin: 50px auto;
    }

    section#shottails.single-post div.title h1 {
        text-align: left;
    }

    section#shottails.single-post div.title button#share {
        top: 10px;
    }

    section.single-post div.thumbnail {
        margin-left: calc(-50vw + 50% );
        width: 100vw;
        margin-bottom: 40px;
    }

    section#shottails.single-post .bx-wrapper .bx-controls-direction a {
        margin-top: -35px;
    }

    section#shottails.single-post .bx-wrapper .bx-controls-direction a.bx-prev {
        margin-top: -45px;
    }

}


/*  */
/* ORACLE */
/*  */

section#oracle {
    text-align: center;
    display: grid;
    grid-gap: 30px;
    margin-bottom: 50px;
}

section#oracle div.text {
    position: relative;
    padding: 40px 0 90px;
}
section#oracle div.text:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -10px;
    width: calc(100% + 35px);
    height: 100%;
    background: rgba(255,255,255,0.2);
}

section#oracle h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

section#oracle div.text button {
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 300px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

section#oracle div.lime {
    display: none;
}

@media (min-width: 1100px){

    section#oracle {
        padding-top: 100px;
        overflow: hidden;
    }

    section#oracle div.lime {
        display: block;
        position: absolute;
        top: 0;
        right: -180px;
        -webkit-transform: rotate(185deg);
        -ms-transform: rotate(185deg);
        transform: rotate(185deg);
    }
    section#oracle div.lime svg {
        width: 355px;
        height: 300px;
    }
    section#oracle div.lime svg,
    section#oracle div.lime svg path {
        fill: var(--green);
    }

    section#oracle div.container {
        width: 100%;
        margin-top: 100px;
        display: grid;
        grid-template-columns: 50% 50%;
    }

    section#oracle h2 {
        font-size: 72px;
    }

    section#oracle div.text {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        justify-content: center;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    section#oracle div.text:before {
        display: none;
    }

    section#oracle div.text button {
        position: relative;
        bottom: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        margin-top: 40px;
    }

}




/*  */
/* UPLOAD */
/*  */

section#upload {
    text-align: center;
    position: relative;
    background: var(--blue);
    color: var(--yellow);
}

section#upload div.intro-text-mobile,
section#upload div.intro-prizes,
section#upload div.fields {
    position: relative;
    z-index: 1;
}

section#upload h3:first-of-type {
    margin-bottom: 20px;
}

section#upload div.intro-text-mobile p {
    margin-bottom: 40px;
}

section#upload .fields .col {
    text-align: left;
}

figure.howto {
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    position: relative;
    margin: 40px auto 0;
    cursor: pointer;
}
figure.howto figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    z-index: 2;
}
figure.howto figure button {
    padding: 15px 25px 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    background: var(--orange) !important;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
figure.howto figure button svg {
    margin-right: 0;
}
figure.howto figure button svg,
figure.howto figure button svg path {
    fill: #fff;
}
figure.howto video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 1;
}

section#upload button#go_upload {
    margin-top: 20px;
    overflow: hidden;
    position: relative;
    background: var(--orange) !important;
    color: var(--blue) !important;
}
section#upload button#go_upload.disabled {
    background: var(--grey) !important;
    color: var(--grey) !important;
}

section#upload button#go_upload > figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--orange);
}
section#upload button#go_upload > span {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 68px;
    color: var(--blue);
    display: none;
}
section#upload button#go_upload > lottie-player {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--orange);
    opacity: 0;
    display: none;
    animation: blink 12s linear infinite forwards;
}
section#upload button#go_upload.disabled > figure,
section#upload button#go_upload.disabled > span,
section#upload button#go_upload.disabled > lottie-player {
    display: block;
}

section#upload div#logo-scroll {
    display: none;
}

@-webkit-keyframes blink {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}
@-o-keyframes blink {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}
@-moz-keyframes blink {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes blink {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}

@media (min-width: 1100px) {

    section#upload {
        overflow: hidden;
    }

    section#upload .fields .col {
        padding: 0 100px;
    }

    figure.howto {
        width: 75%;
        padding-top: 42%;
    }

    /* section#upload figure {
        display: block;
        z-index: 0;
        position: absolute;
    }
    section#upload figure.glass {
        bottom: -120px;
        left: 0;
        width: 380px;
        height: 380px;
    }
    section#upload figure.lime {
        top: 50px;
        right: -100px;
        width: 367px;
        height: 282px;
        -webkit-transform: rotate(10.87deg);
        -ms-transform: rotate(10.87deg);
        transform: rotate(10.87deg);
    }

    section#upload figure svg,
    section#upload figure svg path {
        fill: var(--green);
        width: 100%;
        height: 100%;
    } */

    section#upload div#logo-scroll {
        display: block;
        position: absolute;
        bottom: -70px;
        left: -90px;
        width: 400px;
        height: 400px;
    }
    section#upload div#logo-scroll svg {
        width: 100%;
        height: 100%;
    }

}

/* fields */

div.fields {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

div.fields label {
    display: block;
    text-align: left;
    width: 100%;
    position: relative;
}

div.fields label small {
    font-size: 0.8em;
}

div.fields label input,
div.fields label select,
div.fields label textarea,
div.fields tags.tagify {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 30px;
}
div.fields tags.tagify {
    overflow: hidden;
}
div.fields label textarea {
    height: 200px;
}


div.fields input[type=file] {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

div.fields label[for=pic],
div.fields label[for=video] {
    display: inline-block;
    width: 150px;
    margin-top: 5px;
    margin-bottom: 30px;
    padding: 11px 0;
    background: var(--green);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    color: var(--blue);
    text-align: center;
    cursor: pointer;
}

div.fields span.filename {
    float: left;
    width: calc(100% - 160px);
    margin-right: 10px;
    margin-top: 5px;
    background: var(--white);
    border: 1px solid var(--grey);
    box-sizing: border-box;
    box-shadow: inset 0px 0.5px 4px rgba(96, 97, 112, 0.32);
    padding: 10px 14px;
    font-size: 16px;
    color: var(--grey);
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}
div.fields span.filename.on {
    color: #000;
}

div.fields span.error,
div.fields span.error2 {
    color: var(--orange);
    font-size: 0.8em;
    position: relative;
    top: -25px;
    display: none;
}

div.fields label.checkbox {
    font-size: 14px;
    height: 30px;
    margin-bottom: 40px;
}
div.fields input[type=checkbox] {
    margin: 5px 10px -7px 0;
}
div.fields label.checkbox span.error {
    top: 8px;
    font-size: 0.9em;
}

div.fields button {
    width: 100%;
}

label[for=ritual] textarea {
    padding-bottom: 25px;
}
label[for=ritual] > span.count {
    position: absolute;
    right: 4px;
    bottom: 35px;
    font-size: 14px;
    color: var(--grey);
    height: 20px;
    padding: 0 6px;
}

/* tos popup */

.content-popup {
    opacity: 0;
    visibility: hidden;
}
.content-popup.on {
    opacity: 1;
    visibility: visible;
}

.content-popup .wrap {
    max-width: 900px;
}

.content-popup .scroll {
    max-height: 65vh;
    overflow-y: scroll;
    text-align: left;
}

.content-popup .scroll h1,
.content-popup .scroll h2,
.content-popup .scroll h3,
.content-popup .scroll p,
.content-popup .scroll ul {
    margin-bottom: 20px;
}
.content-popup .scroll h1 { font-size: 32px; }
.content-popup .scroll h2 { font-size: 28px; }
.content-popup .scroll h3 { font-size: 24px; }
.content-popup .scroll p { font-size: 14px; }


/*  */
/* ACCOUNT */
/*  */

section#account {
    position: relative;
    margin-top: 60px;
    overflow: hidden;
}

section#account > *:not(img) {
    z-index: 1;
    position: relative;
}

section#account:not(.vote) h3 {
    margin-bottom: 20px;
}
section#account h4 {
    margin-top: 10px;
    margin-bottom: 15px;
}
section#account p {
    margin-bottom: 25px;
}

section#account > div > figure {
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    cursor: pointer;
}
section#account figure figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    z-index: 2;
}
section#account figure figure button {
    padding: 15px 25px 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
section#account figure figure button svg {
    margin-right: 0;
}
section#account figure figure button svg,
section#account figure figure button svg path {
    fill: #fff;
}
section#account figure video {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 1;
}

section#account figure a#edit {
    display: inline-block;
    position: absolute;
    top: 12px;
    right: 12px;
    color: #fff;
    text-decoration: none;
    background: var(--orange);
    padding: 8px 12px;
    z-index: 3;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

button#vote,
button#share {
    margin-bottom: 20px;
}

section#account figure.lime {
    width: 130px;
    height: 150px;
    position: absolute;
    top: 20px;
    right: -20px;
    -webkit-transform: rotate(10deg);
    -ms-transform: rotate(10deg);
    transform: rotate(10deg);
    z-index: 0;
}
section#account figure.lime svg {
    width: 100%;
    height: 100%;
}
section#account figure.lime svg,
section#account figure.lime svg path {
    fill: var(--green)
}

/* vote mode */

section#account div#contestants {
    margin-top: 40px;
}

section#account div#contestants > a.btn {
    margin-top: 40px;
}

section#account h1.accent {
    display: none;
}

section.more {
    padding-top: 0;
}

section.more h4 {
    display: block;
    margin-bottom: 30px;
}

section.more a.btn {
    margin-top: 40px;
}

section#account button span {
    display: none;
}
section#account button span:first-child {
    display: block;
}

section#account button.disabled span:first-child,
section#account button.disabled span:last-child {
    display: none;
}
section#account button.disabled span:nth-child(2) {
    display: block;
}

section#account button.disabled.against span:first-child,
section#account button.disabled.against span:nth-child(2) {
    display: none;
}
section#account button.disabled.against span:last-child {
    display: block;
}

/*  country selector */

section.country-desktop {
    display: none;
}

/* logo scroll */

section#account div#logo-scroll {
    position: fixed;
    top: 90px;
    right: -70px;
    width: 170px;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    z-index: 0;
}

section#account div#logo-scroll svg {
    height: 100%;
    width: 100%;
}

/* popup vote confirmation */

div.popup#vote-confirmation {
    opacity: 0;
    visibility: hidden;
}
div.popup#vote-confirmation.on {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1100px) {

    section#account {
        margin-top: 0;
    }

    section#account:not(.vote) h3 {
        margin-top: 60px;
    }

    section#account h3.nowrap {
        white-space: nowrap;
    }

    section#account figure.lime {
        display: block;
        z-index: 0;
        position: absolute;
        top: 150px;
        right: -80px;
        width: 367px;
        height: 282px;
        -webkit-transform: rotate(20deg);
        -ms-transform: rotate(20deg);
        transform: rotate(20deg);
    }
    section#account figure.lime svg,
    section#account figure.lime svg path {
        fill: var(--green);
    }

    section#account h1.accent {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 70px;
        color: var(--green);
    }

    section#account.vote {
        grid-template-columns: 0.4fr 1.3fr 0.75fr;
        width: 100%;
        max-width: 1400px;
        padding-top: 60px;
    }

    section#account.vote div.face {
        margin-top: 15px;
    }

    section#account.vote div.face p {
        font-size: 1em;
        text-align: center;
    }

    section#account.vote div.fight.small {
        display: block;
    }
    section#account.vote div.fight.small span.vs {
        position: relative;
        left: 0;
        top: 0;
        margin: 30px auto;
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
    }

    section#account.vote h3 {
        font-size: 42px;
    }

    section#account.vote p.ritual {
        font-size: 16px;
    }

    section.country-desktop {
        position: relative;
        display: flex;
        -ms-align-items: center;
        align-items: center;
        padding-top: 70px;
        padding-bottom: 0;
        z-index: 2;
    }

    section.country-desktop h1 {
        display: inline-block;
        margin-right: 60px;
    }

    section.country-desktop div.select {
        position: relative;
        top: -10px;
    }

    section.country-desktop div.select label {
        display: block;
        margin-bottom: 10px;
    }

    section.country-desktop select#select_country {
        height: 50px;
        width: 250px;
    }

    section.more h4 {
        display: none;
    }

    section.more div#contestants {
        width: 95vw;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    section.more div#contestants::-webkit-scrollbar {
        display: none;
    }

    section.more div#contestants div.gutter {
        display: inline-block;
        padding: 10px;
    }

    section.more div#contestants div.fight {
        width: 610px;
        margin-right: 20px;
        float: left;
    }

    section.more div#contestants div.fight.on:before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        width: calc(100% + 20px);
        height: calc(100% + 20px);
        background: var(--white);
    }
    section.more div#contestants div.fight.on a.contestant {
        background: #fff;
    }

    section.more a.btn {
        display: none;
    }

    section#account div#logo-scroll {
        top: 100px;
        width: 200px;
    }

}

@media (min-width: 1600px) {
    section#account div#logo-scroll {
        width: 420px;
    }
}


/*  */
/* COUNTRIES */
/*  */

section#country {
    text-align: center;
    position: fixed;
    top: 50px;
    left: 0;
    height: calc(100% - 50px);
    width: 100%;
    background: var(--blue);
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
    z-index: 100;
}
section#country.on {
    opacity: 1;
    visibility: visible;
}

section#country h3:first-child {
    margin-bottom: 20px;
}
section#country h3,
section#country p {
    margin-bottom: 30px;
}

div.countries {
    padding-top: 5px;
    padding-left: calc(50% - 40px);
    margin-left: 10px;
    width: calc(100% + 80px);
    overflow-y: scroll;
    text-align: left;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
div.countries::-webkit-scrollbar {
    display: none;
}

div.countries button.country,
div.countries a.country {
    display: inline-block;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    padding: 0;
    width: 140px;
    margin-right: 45px;
    text-decoration: none;
    font-weight: bold;
}

div.countries button.country figure,
div.countries button.country img,
div.countries a.country figure,
div.countries a.country img {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 140px;
    background: var(--blue);
}

div.countries button.country figure:after,
div.countries a.country figure:after {
    content:'';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border: var(--white) 0px solid;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}
div.countries button.country.on figure:after,
div.countries a.country.on figure:after {
    border: var(--white) 6px solid;
}

div.countries button.country img,
div.countries a.country img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
div.countries div.selection button.country:not(.on) img,
div.countries div.selection a.country:not(.on) img {
    mix-blend-mode: luminosity;
}

div.countries button.country span,
div.countries a.country span {
    display: block;
    color: var(--yellow);
    margin-top: 10px;
    font-size: 20px;
    text-decoration: none;
    text-align: center;
}

section#country a.btn {
    margin-top: 60px;
}

@media (min-width: 1100px) {

    div.countries {
        padding: 0;
        margin: 40px auto 0;
        text-align: center;
        width: 100%;
        overflow: visible;
        text-align: left;
    }

    div.countries button.country {
        margin: 10px 30px 0 0;
    }

}


/*  */
/* COUNTRY TAX */
/*  */

section#ct *:not(.vs) {
    position: relative;
    z-index: 1;
}

section#ct div.countries {
    margin-top: 25px;
    margin-left: -40px;
    margin-bottom: 40px;
    width: calc(100% + 75px);
    padding-top: 5px;
    padding-left: 40px;
    overflow-y: scroll;
    text-align: left;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
section#ct div.countries::-webkit-scrollbar {
    display: none;
}

div.fight {
    display: grid;
    grid-template-columns: calc(50% - 5px) calc(50% - 5px);
    position: relative;
    grid-gap: 10px;
    margin-bottom: 20px;
    max-width: 610px;
}
div.fight.small {
    display: grid;
    grid-template-columns: calc(50% - 30px) calc(50% - 30px);
    grid-gap: 60px;
}

a.contestant {
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    color: var(--blue);
    background: var(--blue);
    text-decoration: none;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
div.fight.small a.contestant {
    width: 100%;
    margin-bottom: 12px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ffa a.contestant {
    width: 48%;
    margin-bottom: 10px;
}
.ffa a.contestant:nth-child(odd) {
    margin-right: 0.5%;
}
.ffa a.contestant:nth-child(even) {
    margin-left: 0.5%;
}

a.contestant.voted:after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    width: 26px;
    height: 26px;
    background: url('../images/check.svg') no-repeat;
    -webkit-background-size: 100%;
    background-size: 100%;
    z-index: 1;
}

a.contestant figure {
    width: 100%;
    padding-top: 56.25%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}
a.contestant div.text {
    padding: 7px 12px 12px;
    background: var(--green);
    position: relative;
    z-index: 1;
}
a.contestant.not figure,
a.contestant.not div.text {
    background: #fff;
    filter: grayscale(100%);
}
a.contestant.not div.text span.title,
a.contestant.not div.text span.tags {
    color: #000;
}
a.contestant.not div.text div.shots svg,
a.contestant.not div.text div.shots svg path {
    fill: #000;
}

a.contestant span.title {
    font-weight: 700;
    margin-bottom: 4px;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.contestant span.tags {
    width: 100%;
    display: block;
    margin-top: 5px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.contestant div.shots {
    text-align: left;
    display: block;
    width: 100%;
}
div.fight.small a.contestant div.shots {
    text-align: center;
}

a.contestant div.shots svg {
    height: 16px;
    width: 16px;
}
a.contestant div.shots svg,
a.contestant div.shots svg path {
    fill: var(--blue);
}
div.fight.small a.contestant div.shots svg,
div.fight.small a.contestant div.shots svg path {
    fill: var(--yellow);
}

div.fight span.vs {
    display: block;
    position: absolute;
    top: 40%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: var(--yellow);
    color: var(--blue);
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

section#ct div#logo-scroll {
    position: fixed;
    top: 90px;
    right: -70px;
    width: 170px;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
    z-index: 0;
}

section#ct div#logo-scroll svg {
    height: 100%;
    width: 100%;
}

@media (min-width: 1100px) {

    section#ct {
        display: block;
    }

    section#ct div.countries {
        margin-top: 15px;
    }

    .ffa a.contestant {
        width: 21%;
        margin-bottom: 20px;
        margin-right: 1% !important;
        margin-left: 0 !important;
    }

    section#ct div#contestants div.gutter {
        display: block;
        width: 80%;
    }

    section#ct div#contestants div.fight {
        width: 610px;
        margin: 0 40px 40px 0;
        float: left;
    }

    section#ct div#logo-scroll {
        position: fixed;
        top: auto;
        top: 150px;
        right: -150px;
        width: 450px;
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg);
        z-index: 0;
    }

}


/*  */
/* FOOTER LINKS PAGES */
/*  */

#content {
    line-height: 1.4;
}

#content h4 {
    margin-top: 60px;
    margin-bottom: 30px;
}

#content p {
    font-size: 16px;
    color: #eee;
}

.cdb_form_container p, .cdb_form_container label::before, .cdb_form_container input {
    color: var(--blue) !important;
}

/*  */

#content table {
    width: 100%;
    margin-bottom: 80px;
}

#content table caption {
    padding: 20px;
    font-size: 1.4em;
    font-weight: bold;
    color: var(--blue);
}
#content table.cyan caption { background: var(--green); }
#content table.yellow caption { background: var(--yellow); }
#content table.orange caption { background: var(--orange); }
#content table.petroleo caption {
    background: var(--blue);
    color: var(--yellow);
}

#content table thead td {
    padding: 10px;
    font-weight: bold;
    color: var(--blue);
    font-size: 12px;
    text-align: center;
}
#content table.cyan thead { background: var(--green); }
#content table.yellow thead { background: var(--yellow); }
#content table.orange thead { background: var(--orange); }
#content table.petroleo thead { background: var(--blue); }
#content table.petroleo thead td { color: var(--yellow); }

#content table tbody tr:nth-child(even) {
    background: rgba(0,0,0,0.3);
}

#content table tbody td {
    font-size: 12px;
    padding: 5px;
}
#content table tbody td:first-child {
    text-align: right;
}
#content table tbody td:not(:first-child) {
    color: #eee;
}
#content table tbody tr:first-child td {
    padding-top: 6px;
}

#content ul {
    padding-left: 20px;
    list-style: disc;
}

#content ul li {
    margin: 10px;
    color: #eee;
}

@media (min-width: 1100px) {

    #content .container {
        max-width: 1000px;
    }

    /*  */

    #content table caption {
        padding: 30px;
        font-size: 2em;
    }

    #content table thead td,
    #content table tbody td {
        font-size: 16px;
    }

}




/*  */
/* FOOTER */
/*  */

footer {
    position: relative;
}

footer > div {
    display: flex;
    background: var(--blue);
    padding: 25px 25px 50px;
    width: 100%;
    flex-direction: column;
}

footer ul:nth-child(2) {
    flex-grow: 1;
}

footer ul:first-child li,
footer ul:nth-child(2) li {
    display: block;
    margin-bottom: 20px;
}

footer ul:first-child li a,
footer ul:nth-child(2) li a {
    font-size: 12px;
    color: var(--green);
    text-decoration: none;
    text-transform: uppercase;
}

footer ul:last-child li {
    display: inline-block;
    margin-bottom: 20px;
    margin-right: 20px;
}

footer ul:last-child li svg {
    width: 24px;
    height: 24px;
}
footer ul:last-child li svg,
footer ul:last-child li svg path {
    fill: var(--yellow);
}

footer ul li img {
  width: 50px;
  filter: sepia(100%) hue-rotate(160deg) saturate(500);
  position: relative;
  left: -7px;
}

footer small {
    font-size: 11px;
    position: absolute;
    bottom: 25px;
    left: 25px;
}

@media (min-width: 1100px) {

    footer {
        -ms-align-items: center;
        align-items: center;
    }

    footer > div {
        flex-direction: row;
    }

    footer ul:nth-child(2) {
      margin-left: 10px;
    }

    footer ul:first-child li,
    footer ul:nth-child(2) li {
        display: inline-block;
        margin-right: 20px;
    }

    footer ul li img {
        position: relative;
        top: -13px;
    }

    footer ul:last-child {
        width: 100px;
    }
    footer ul:last-child li {
        display: inline-block;
        margin-bottom: 0;
        margin-right: 20px;
    }

}
