@charset "utf-8";

@font-face {
    font-family: "Bodoni";
    src: url("https://art-riders.com/css/fonts/bodoni.woff2") format("woff2"),
        url("https://art-riders.com/css/fonts/bodoni.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Bodoni";
    src: url("https://art-riders.com/css/fonts/bodoni-italic.woff2") format("woff2"),
        url("https://art-riders.com/css/fonts/bodoni-italic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "Bodoni";
    src: url("https://art-riders.com/css/fonts/bodoni-bold.woff2") format("woff2"),
        url("https://art-riders.com/css/fonts/bodoni-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Bodoni";
    src: url("https://art-riders.com/css/fonts/bodoni-bold-italic.woff2") format("woff2"),
        url("https://art-riders.com/css/fonts/bodoni-bold-italic.woff") format("woff");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "Helvetica Condensed";
    src: url("https://art-riders.com/css/fonts/helvetica-condensed-light.woff2") format("woff2"),
        url("https://art-riders.com/css/fonts/helvetica-condensed-light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Condensed";
    src: url("https://art-riders.com/css/fonts/helvetica-condensed-bold.woff2") format("woff2"),
        url("https://art-riders.com/css/fonts/helvetica-condensed-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    font-family: "Bodoni", serif;
    color: #161616;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* GLOBALS */

.screens {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transform: translateY(100%);
    transition: 1s;
}

.screen-in {
    transform: translateY(0);
}

.screen-out {
    transform: translateY(-100%);
}

.screen-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.section {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(-20px);
    transition: 0.5s;
}

.section-on {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.content {
    flex: auto;
    position: relative;
    z-index: 2;
}

.social-buttons {
    display: flex;
    column-gap: 12px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 26px;
    height: 26px;
    border-radius: 3px;
    background-color: #161616;
    transition: 0.25s;
}

.social img {
    width: 14px;
    height: auto;
}

.social:hover {
    background-color: #FFD500;
}

.touch .social:hover {
    background-color: #161616;
}

.social:active,
.touch .social:active {
    background-color: #FFD500;
}

.advice-button-frame {
    padding-top: 16px;
    text-align: center;
}

.advice-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 32px;
    padding-top: 8px;
    padding-bottom: 11%;
    text-align: center;
}

.advice-title {
    padding-top: 16px;
    padding-bottom: 8px;
    color: #FFD500;
    font-size: 45px;
    line-height: 47px;
    text-align: center;
}

.advice-caption {
    max-width: 490px;
    margin: 0 auto;
    padding-bottom: 16px;
    color: #161616;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
}

.advice-button {
    position: relative;
    padding: 5px;
    cursor: pointer;
}

.advice-button svg {
    width: 42px;
    height: 42px;
}

.advice-button path {
    fill: #161616;
    transition: 0.25s;
}

.advice-button:hover path {
    fill: #FFD500;
}

.touch .advice-button:hover path {
    fill: #161616;
}

.advice-button:active path,
.touch .advice-button:active path {
    fill: #FFD500;
}

.actions {
    flex: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 9%;
    padding-right: 9%;
    border-top: none 2px #161616;
    background-color: #E2E2E2;
}

.actions-left {
    display: flex;
    justify-content: flex-start;
}

.actions-right {
    display: flex;
    justify-content: flex-end;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 8px;
    border: solid 2px #FFD500;
    background-color: #FFFFFF;
    color: #161616;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    background-color: #FFD500;
}

.touch .button:hover {
    background-color: #FFFFFF;
}

.button:active,
.touch .button:active {
    background-color: #FFD500;
}

.action-select-on {
    background-color: #FFD500;
    cursor: default;
}

.action-select-on:hover {
    background-color: #FFD500;
}

.touch .action-select-on:hover {
    background-color: #FFD500;
}

.action-select-on:active,
.touch .action-select-on:active {
    background-color: #FFD500;
}

.button-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 8px;
    border: solid 2px #CCCCCC;
    background-color: transparent;
    color: #666666;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt:hover {
    border-color: #888888;
}

.touch .button-alt:hover {
    border-color: #CCCCCC;
}

.button-alt:active,
.touch .button-alt:active {
    border-color: #888888;
}

/* INTRO */

.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
}

.intro-brand {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding-left: 64px;
    padding-right: 64px;
}

.intro-brand-frame {
    position: relative;
    width: 100%;
    padding-bottom: 55.17241379310345%;
}

.intro-brand-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    opacity: 0;
    transform: scale(1.1);
    animation: intro-brand-appear 1s forwards;
}

.intro-brand-picture img {
    width: 100%;
    height: auto;
}

@keyframes intro-brand-appear {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.intro-brand-picture:nth-child(1) {
    animation-delay: 0s;
}

.intro-brand-picture:nth-child(2) {
    animation-delay: 1s;
}

.intro-brand-picture:nth-child(3) {
    animation-delay: 2s;
}

.intro-brand-picture:nth-child(4) {
    animation-delay: 3s;
}

.intro-brand-picture:nth-child(5) {
    animation-delay: 4s;
}

.intro-brand-picture:nth-child(6) {
    animation-delay: 5s;
}

.intro-caption {
    padding-top: 48px;
    padding-bottom: 22px;
    padding-left: 64px;
    padding-right: 64px;
    color: #161616;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: intro-caption-appear 1s forwards;
    animation-delay: 6s;
}

@keyframes intro-caption-appear {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.intro-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 96px;
    height: 96px;
    margin: 0 auto;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-32px);
    animation: intro-arrow-appear 1s forwards;
    animation-delay: 6.5s;
}

@keyframes intro-arrow-appear {
    0% {
        opacity: 0;
        transform: translateY(-32px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.intro-arrow path {
    fill: #A3A3A3;
    transition: 0.35s;
}

.intro-arrow:hover path {
    fill: #161616;
}

.touch .intro-arrow:hover path {
    fill: #A3A3A3;
}

.intro-arrow:active path,
.touch .intro-arrow:active path {
    fill: #161616;
}

.intro-arrow-img {
    width: 58px;
    height: 29px;
}

.intro-arrow-anima {
    animation: intro-arrow-anima 1s forwards;
}

@keyframes intro-arrow-anima {
    0% {

        transform: translateY(0);
    }

    50% {

        transform: translateY(80%);
    }

    100% {

        transform: translateY(0);
    }
}

.intro-arrow-anima-alt {
    animation: intro-arrow-anima-alt 1s forwards;
}

@keyframes intro-arrow-anima-alt {
    0% {

        transform: translateY(0);
    }

    50% {

        transform: translateY(80%);
    }

    100% {

        transform: translateY(0);
    }
}

/* NAV */

.nav {
    flex: none;
    padding: 60px;
    height: 280px;
}

.nav-layout {
    position: relative;
    display: flex;
    column-gap: 24px;
}

.nav-brand {
    flex: none;
    cursor: pointer;
}

.nav-brand-img {
    width: 306px;
    height: 127px;
}

.nav-buttons {
    flex: auto;
    display: flex;
    justify-content: center;
    padding-top: 67px;
}

.nav-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 40px;
    color: #161616;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s;
    z-index: 2;
}

.nav-button:hover {
    color: #FFD500;
}

.touch .nav-button:hover {
    color: #161616;
}

.nav-button:active,
.touch .nav-button:active {
    color: #FFD500;
}

.nav-button-on {
    color: #FFD500;
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.nav-button-on:hover {
    color: #FFD500;
}

.touch .nav-button-on:hover {
    color: #FFD500;
}

.nav-button-on:active,
.touch .nav-button-on:active {
    color: #FFD500;
}

.nav-button-on .nav-button-label {
    transform: translateY(3px);
}

.nav-caption {
    position: relative;
}

.nav-description {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    padding-top: 22px;
    color: #161616;
    font-size: 18px;
    line-height: 22px;
    opacity: 0;
    transform: translateY(-10px);
    z-index: 1;
}

.nav-description-alt {
    width: 380px;
}

.nav-description-alt-2 {
    width: 360px;
}

.nav-description-alt-3 {
    left: unset;
    right: 0;
    text-align: right;
}

.nav-description-title {
    padding-bottom: 8px;
    color: #FFD500;
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
}

.nav-description-yellow {
    padding-top: 14px;
    color: #FFD500;
    font-weight: 700;
}

.nav-description-on {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-description-show {
    opacity: 1;
    transform: translateY(0);
    transition: 0.5s;
}

.nav-divisor {
    display: flex;
    align-items: flex-end;
    height: 40px;
    padding-left: 7px;
    padding-right: 6px;
    color: #161616;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
}

.nav-divisor-on {
    padding-left: 11px;
    color: #FFD500;
    font-size: 35px;
    line-height: 35px;
}

.nav-divisor-on .nav-divisor-slash {
    transform: translateY(2px);
}

.nav-actions {
    flex: none;
    padding-left: 0%;
}

.nav-actions-layout {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.nav-actions-langs {
    display: flex;
    justify-content: flex-end;
    column-gap: 6px;
}

.nav-actions-lang {
    color: #161616;
    font-family: "Helvetica Condensed", sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.25s;
}

.nav-actions-lang:hover {
    color: #FFD500;
}

.touch .nav-actions-lang:hover {
    color: #161616;
}

.nav-actions-lang:active,
.touch .nav-actions-lang:active {
    color: #FFD500;
}

.nav-actions-lang-on {
    font-weight: 700;
}

.nav-actions-divisor {
    color: #161616;
    font-family: "Helvetica Condensed", sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 300;
}

.nav-actions-divisor>div {
    margin-top: -1px;
}

.nav-actions-buttons {
    display: flex;
    justify-content: flex-end;
    margin-right: -3px;
    column-gap: 3px;
}

.nav-actions-button {
    position: relative;
    cursor: pointer;
    padding: 5px;
}

.nav-actions-button path {
    fill: #161616;
    transition: 0.25s;
}

.nav-actions-button:hover path {
    fill: #FFD500;
}

.touch .nav-actions-button:hover path {
    fill: #161616;
}

.nav-actions-button:active path,
.touch .nav-actions-button:active path {
    fill: #FFD500;
}

.nav-actions-badge {
    position: absolute;
    top: 0;
    right: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background-color: #FFD500;
    color: #161616;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    text-align: center;
    transition: 0.25s;
    display: none;
}

.nav-actions-button:hover .nav-actions-badge {
    background-color: #161616;
    color: #FFD500;
}

.touch .nav-actions-button:hover .nav-actions-badge {
    background-color: #FFD500;
    color: #161616;
}

.nav-actions-button:active .nav-actions-badge,
.touch .nav-actions-button:active .nav-actions-badge {
    background-color: #161616;
    color: #FFD500;
}

.nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    column-gap: 16px;
    padding-top: 35px;
    padding-right: 35px;
}

.nav-menu .nav-actions-buttons {
    column-gap: 3px;
    margin-top: -1px;
    margin-right: 0px;
}

.nav-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 38px;
    height: 33px;
    padding: 5px;
    cursor: pointer;
}

.nav-menu-line {
    width: 100%;
    height: 3px;
    background-color: #FFD500;
    transition: 0.25s;
}

.nav-menu-button:hover .nav-menu-line {
    background-color: #161616;
}

.touch .nav-menu-button:hover .nav-menu-line {
    background-color: #FFD500;
}

.nav-menu-button:active .nav-menu-line,
.touch .nav-menu-button:active .nav-menu-line {
    background-color: #161616;
}

.nav-intro {
    flex: auto;
    display: none;
    justify-content: center;
    padding-top: 78px;
    padding-right: 188px;
}

.nav-intro .nav-description {
    position: relative;
}

.nav-intro-alt {
    display: none;
    padding-top: 24px;
    padding-bottom: 16px;
    padding-left: 27px;
    padding-right: 27px;
    text-align: left;
}

.nav-intro-alt .nav-description {
    position: relative;
    width: 100%;
    padding-top: 0px;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #FFFFFF;
    animation: panel-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(-10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.7);
    animation: panel-bg-anima 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    justify-content: flex-end;
}

.panel-actions-close {
    flex: none;
    position: relative;
}

.panel-close {
    display: flex;
    padding: 29px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 18px;
    height: 18px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-actions-buttons {
    flex: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 29px;
    padding-left: 29px;
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 96px;
    padding-left: 29px;
    padding-right: 29px;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 100%;
}

.panel-link-block {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    padding-top: 4px;
    padding-bottom: 4px;
    color: #161616;
    font-size: 21px;
    line-height: 21px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    color: #FFD500;
}

.touch .panel-link:hover {
    color: #161616;
}

.panel-link:active,
.touch .panel-link:active {
    color: #FFD500;
}

.panel-link-on {
    color: #FFD500;
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
}

.panel-link-on:hover {
    color: #FFD500;
}

.touch .panel-link-on:hover {
    color: #FFD500;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    color: #FFD500;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.4s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.5s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ARTISTS */

.artists-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

/* SUBMENU */

.submenu {
    flex: none;
    display: flex;
    justify-content: flex-end;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 60px;
}

.submenu-alt {
    display: inline-flex;
    padding-top: 10px;
    padding-bottom: 0px;
    padding-right: 0px;
}

.submenu-alt-2 {
    display: flex;
    justify-content: flex-end;
    padding-top: 0px !important;
    padding-bottom: 20px !important;
    padding-right: 32px !important;
    padding-left: 0px !important;
}

.submenu-button {
    display: flex;
    align-items: flex-end;
    height: 24px;
    color: #161616;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.25s;
}

.submenu-button:hover {
    color: #FFD500;
}

.touch .submenu-button:hover {
    color: #161616;
}

.submenu-button:active,
.touch .submenu-button:active {
    color: #FFD500;
}

.submenu-button-on {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
    transform: translateY(1px);
}

.submenu-button-on:hover {
    color: #161616;
}

.touch .submenu-button-on:hover {
    color: #161616;
}

.submenu-button-on:active,
.touch .submenu-button-on:active {
    color: #161616;
}

.submenu-divisor {
    display: flex;
    align-items: flex-end;
    height: 24px;
    padding-left: 4px;
    padding-right: 4px;
    color: #161616;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    transition: 0.25s;
}

.submenu-divisor-on {
    font-size: 22px;
    line-height: 22px;
    font-weight: 700;
}

.submenu-divisor-on .submenu-divisor-slash {
    transform: translateY(2px);
}

/* GRID */

.artists-grid {
    flex: auto;
    background-color: #DDDDDD;
    overflow: hidden;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    width: 100%;
}

.grid-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background-color: #EFEFEF;
    cursor: pointer;

}

.grid-item-off .grid-item-picture {
    filter: grayscale(100) brightness(15%);
}

.grid-item-off .grid-item-info {
    opacity: 0 !important;
}

.grid-item-blocked {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0;
    cursor: default;
}

.grid-item-off .grid-item-blocked {
    display: block;
}

.grid-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.grid-item-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 0.25s;
}

.grid-item-info {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 16px;
    padding-bottom: 18px;
    background-color: #161616;
    text-align: center;
    opacity: 0;
    transition: 0.25s;
}

.grid-item-info-alt {
    background-color: #FFD500;
}

.grid-item:hover .grid-item-info {
    opacity: 1;
}

.touch .grid-item:hover .grid-item-info {
    opacity: 0;
}

.grid-item:active .grid-item-info,
.touch .grid-item:active .grid-item-info {
    opacity: 1;
}

.grid-item-name {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.grid-item-info-alt .grid-item-name {
    color: #161616;
}

.grid-item-art {
    padding-top: 2px;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    font-style: italic;
}

.grid-item-info-alt .grid-item-art {
    color: #161616;
}

.grid-item-featured {
    padding-top: 6px;
    color: #161616;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-style: italic;
    text-transform: uppercase;
}

/* TOUR */

.tour-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-content {
    flex: auto;
    padding-top: 48px;
    padding-bottom: 30px;
    padding-left: 9%;
    padding-right: 9%;
    overflow: hidden;
}

.tour-content-on {
    padding-top: 12px;
}

.tour-list {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.tour-list-confirmation-title{
    padding-top: 16px;
    padding-bottom: 8px;
}

.tour-list-confirmation {
    display: flex;
    flex-direction: column;
    row-gap: 3px;
}

.tour-item {
    display: flex;
    height: 62px;
    background-color: #AFAFAF;
    opacity: 0.5;
}

.tour-item-on {
    opacity: 1;
}

.tour-item-alt {
    display: flex;
    height: 34px;
    background-color: #AFAFAF;
}

.tour-number {
    flex: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    border-right: solid 3px #FFFFFF;
    background-color: #FFD500;
    color: #161616;
    font-size: 39px;
    line-height: 39px;
}

.tour-item-on .tour-number {
    cursor: grab;
}

.tour-item-alt .tour-number {
    flex: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    border-right: solid 3px #FFFFFF;
    background-color: #FFD500;
    color: #161616;
    font-size: 18px;
    line-height: 18px;
}

.tour-drag {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 2px;
    padding-left: 12px;
    padding-right: 12px;
    background-color: #FFD500;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 20px;
    opacity: 0;
    transition: 0.25s;
}

.tour-item-on .tour-number:hover .tour-drag {
    opacity: 1;
}

.touch .tour-item-on .tour-number:hover .tour-drag {
    opacity: 0;
}

.tour-item-on .tour-number:active,
.touch .tour-item-on .tour-number:active .tour-drag {
    opacity: 1;
}

.tour-artist {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 2px;
    background-color: #161616;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 25px;
    text-align: center;
    transition: 0.25s;
}

.tour-item-on .tour-artist {
    cursor: pointer;
}

.tour-item-on .tour-artist:hover {
    color: #FFD500;
}

.touch .tour-item-on .tour-artist:hover {
    color: #FFFFFF;
}

.tour-item-on .tour-artist:active,
.touch .tour-item-on .tour-artist:active {
    color: #FFD500;
}

.tour-artist-alt {
    flex: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 2px;
    background-color: #161616;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    transition: 0.25s;
}

.tour-center {
    flex: auto;
    position: relative;
}

.tour-pictures {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
    height: 100%;
}

.tour-picture {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.tour-picture:nth-child(1) {
    background-color: #BBBBBB;
}

.tour-picture:nth-child(2) {
    background-color: #CCCCCC;
}

.tour-picture:nth-child(3) {
    background-color: #DDDDDD;
}

.tour-picture:nth-child(4) {
    background-color: #EEEEEE;
}

.tour-select {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-bottom: 2px;
    background-color: #AFAFAF;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.tour-select:hover {
    background-color: #FFD500;
    color: #161616;
}

.touch .tour-select:hover {
    background-color: #AFAFAF;
    color: #FFFFFF;
}

.tour-select:active,
.touch .tour-select:active {
    background-color: #FFD500;
    color: #161616;
}

.tour-item-on .tour-select {
    display: none;
}

.tour-remove {
    flex: none;
    display: none;
    justify-content: center;
    align-items: center;
    width: 62px;
    background-color: #DDDDDD;
    cursor: pointer;
    transition: 0.25s;
}

.tour-remove:hover {
    background-color: #444444;
}

.touch .tour-remove:hover {
    background-color: #DDDDDD;
}

.tour-remove:active,
.touch .tour-remove:active {
    background-color: #444444;
}

.tour-item-on .tour-remove {
    display: flex;
}

/* TEMPLATES */

.templates {
    display: none;
}

/* RIDERS */

.riders-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.riders-content {
    flex: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 9%;
    padding-right: 9%;
    overflow: hidden;
}

.riders-caption {
    max-width: 500px;
    padding-bottom: 48px;
    padding-left: 8px;
    color: #161616;
    font-size: 18px;
    line-height: 24px;
}

.riders-caption strong {
    color: #FFD500;
    font-size: 21px;
    line-height: 24px;
    font-weight: 700;
}

.riders-list {
    display: flex;
    flex-direction: column;
    row-gap: 7px;
}

.riders-item-add {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}

.riders-item-add-plus {
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background-color: #FFD500;
    cursor: pointer;
    transition: 0.25s;
    animation: riders-item-add-pulse 1.5s infinite;
}

@keyframes riders-item-add-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 213, 0, 0.7);
    }

    50% {
        transform: scale(1.25);
        box-shadow: 0 0 0 8px rgba(255, 213, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 213, 0, 0);
    }
}

.riders-item-add-plus svg {
    width: 100%;
    height: 100%;
}

.riders-item-add-plus path {
    fill: #161616;
    transition: 0.25s;
}

.riders-item-add-plus:hover {
    background-color: #161616;
}

.touch .riders-item-add-plus:hover {
    background-color: #FFD500;
}

.riders-item-add-plus:active,
.touch .riders-item-add-plus:active {
    background-color: #161616;
}

.riders-item-add-plus:hover path {
    fill: #FFFFFF;
}

.touch .riders-item-add-plus:hover path {
    fill: #161616;
}

.riders-item-add-plus:active path,
.touch .riders-item-add-plus:active path {
    fill: #FFFFFF;
}

.riders-item-remove {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}

.riders-item-remove-minus {
    display: none;
    width: 22px;
    height: 22px;
    border-radius: 100px;
    background-color: #BABABA;
    cursor: pointer;
    transition: 0.25s;
}

.riders-item-remove-minus svg {
    width: 100%;
    height: 100%;
}

.riders-item-remove-minus path {
    fill: #161616;
    transition: 0.25s;
}

.riders-item-remove-minus:hover {
    background-color: #161616;
}

.touch .riders-item-remove-minus:hover {
    background-color: #BABABA;
}

.riders-item-remove-minus:active,
.touch .riders-item-remove-minus:active {
    background-color: #161616;
}

.riders-item-remove-minus:hover path {
    fill: #FFFFFF;
}

.touch .riders-item-remove-minus:hover path {
    fill: #161616;
}

.riders-item-remove-minus:active path,
.touch .riders-item-remove-minus:active path {
    fill: #FFFFFF;
}

.riders-item {
    display: none;
}

.riders-item-first {
    display: block;
}

.riders-item-layout {
    display: grid;
    grid-template-columns: 72px auto 0.18fr 0.12fr 0.12fr 0.18fr 0.22fr;
    column-gap: 7px;
}

.riders-item-layout-alt {
    display: grid;
    grid-template-columns: 72px auto 72px;
    column-gap: 7px;
}

.riders-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
    color: #161616;
    font-size: 21px;
    line-height: 21px;
    white-space: nowrap;
}

.riders-textbox {
    width: 100%;
    height: 36px;
    padding-left: 12px;
    padding-right: 12px;
    text-align: center;
    background-color: #BABABA;
    color: #161616;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    transition: 0.25s;
}

.riders-textbox::placeholder {
    opacity: 1;
    color: #FFFFFF;
    font-weight: 400;
}

.riders-textbox:focus {
    background-color: #CCCCCC;
}

/* CONTACT */

.contact-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    column-gap: 24px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 9%;
    padding-right: 9%;
}

.contact-content {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    height: 100%;
}

.contact-info {
    flex: none;
}

.contact-title {
    padding-bottom: 1px;
    color: #FFD500;
    font-size: 35px;
    line-height: 35px;
    font-weight: 700;
}

.contact-text {
    color: #161616;
    font-size: 18px;
    line-height: 24px;
}

.contact-link {
    color: #161616;
    transition: 0.25s;
}

.contact-link:hover {
    color: #FFD500;
}

.touch .contact-link:hover {
    color: #161616;
}

.contact-link:active,
.touch .contact-link:active {
    color: #FFD500;
}

.contact-networks {
    flex: auto;
    display: flex;
    align-items: flex-end;
    padding-top: 34px;
}

.contact-image {
    width: 50%;
}

.contact-img {
    width: 100%;
    padding-bottom: 100%;
    background-color: #E2E2E2;
    background-image: url(../assets/contact.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* VIEWER */

.viewer {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 20;
}

.viewer-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.viewer-loader-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;

}

.viewer-loader-line {
    position: relative;
    width: 72px;
    height: 2px;
    background-color: #DDDDDD;
    overflow: hidden;
}

.viewer-loader-line:before {
    content: "";
    position: absolute;
    left: -50%;
    width: 40%;
    height: 2px;
    background-color: #161616;
    animation: viewer-loader-anima 0.75s linear infinite;
}

@keyframes viewer-loader-anima {
    0% {
        left: -40%;
    }

    50% {
        left: 20%;
        width: 80%;
    }

    100% {
        left: 100%;
        width: 100%;
    }
}

.viewer-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.viewer-layout {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    height: 100%;
}

.viewer-layout-scheme {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    height: 100%;
}

.viewer-header {
    position: relative;
    background-color: #DDDDDD;
}

.viewer-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.viewer-cover-swiper {
    width: 100%;
    height: 100%;
}

.viewer-cover-slide {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.viewer-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100px;
    padding: 16px;
    z-index: 2;
}

.viewer-gallery-grid {
    display: flex;
    column-gap: 10px;
    height: 100%;
}

.viewer-gallery-item {
    width: 54px;
    height: 54px;
    border-radius: 3px;
    background-color: #FFFFFF;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.25s;
}

.viewer-gallery-item:hover {
    transform: scale(1.1);
    filter: brightness(110%);
}

.touch .viewer-gallery-item:hover {
    transform: scale(1);
    filter: brightness(100%);
}

.viewer-gallery-item:active,
.touch .viewer-gallery-item:active {
    transform: scale(1.1);
    filter: brightness(110%);
}

.viewer-featured {
    position: absolute;
    bottom: -20%;
    left: 50%;
    width: 330px;
    padding: 30px;
    padding-left: 36px;
    padding-right: 36px;
    background-color: #FFD500;
    z-index: 2;
}

.viewer-featured-title {
    padding-bottom: 10px;
    color: #FFFFFF;
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.viewer-featured-caption {
    color: #161616;
    font-size: 18px;
    line-height: 24px;
    font-style: italic;
}

.viewer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    z-index: 3;
}

.viewer-close img {
    width: 36px;
    height: 36px;
    transition: 0.5s;
}

.viewer-close:hover img {
    transform: rotate(180deg);
}

.touch .viewer-close:hover img {
    transform: rotate(0deg);
}

.viewer-close:active img,
.touch .viewer-close:active img {
    transform: rotate(180deg);
}

.viewer-top {
    position: relative;
    display: flex;
    padding-top: 48px;
    padding-bottom: 12px;
    padding-left: 9%;
    padding-right: 9%;
}

.viewer-intro {
    flex: auto;
    display: flex;
    column-gap: 32px;
}

.viewer-brand {
    flex: none;
}

.viewer-brand img {
    width: 184px;
    height: 76px;
}

.viewer-button {
    flex: auto;
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.viewer-buttons {
    flex: none;
}

.viewer-cart {
    display: flex;
    justify-content: flex-end;
    margin-right: -3px;
}

.viewer-index {
    display: none;
    align-items: center;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
    cursor: pointer;
}

.viewer-index path {
    fill: #161616;
    transition: 0.25s;
}

.viewer-index:hover path {
    fill: #FFD500;
}

.touch .viewer-index:hover path {
    fill: #161616;
}

.viewer-index:active path,
.touch .viewer-index:active path {
    fill: #FFD500;
}

.viewer-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    padding-left: 9%;
    padding-right: 9%;
    padding-bottom: 45px;
    overflow: hidden;
}

.viewer-shadow {
    position: absolute;
    left: 0;
    bottom: 45px;
    width: 100%;
    height: 16px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.viewer-left {
    padding-bottom: 56px;
    padding-right: 16px;
}

.viewer-text {
    padding-top: 6px;
    color: #161616;
    font-size: 16px;
    line-height: 22px;
}

.viewer-text strong {
    font-size: 19px;
}

.viewer-text p {
    padding-bottom: 8px;
}

.viewer-text p:last-of-type {
    padding-bottom: 0px;
}

.viewer-networks {
    padding-top: 23px;
}

.viewer-right {
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
    margin-right: -16px;
}

.viewer-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 32px;
    text-align: right;
}

.viewer-list-alt {
    flex: auto;
    justify-content: unset;
    padding-left: 32px;
    padding-right: 32px;
    overflow: hidden;
}

.viewer-list-item {
    display: inline-block;
    margin-bottom: 4px;
    color: #161616;
    font-size: 18px;
    line-height: 22px;
    cursor: pointer;
    transition: 0.25s;
}

.viewer-list-item:hover {
    color: #FFD500;
}

.touch .viewer-list-item:hover {
    color: #161616;
}

.viewer-list-item:active,
.touch .viewer-list-item:active {
    color: #FFD500;
}

.viewer-list-item-on {
    color: #FFD500;
    font-size: 25px;
    line-height: 27px;
    font-weight: 700;
    transition: 0.25s;
}

.viewer-list-item-on:hover {
    color: #FFD500;
}

.touch .viewer-list-item-on:hover {
    color: #FFD500;
}

.viewer-list-item-on:active,
.touch .viewer-list-item-on:active {
    color: #FFD500;
}

.viewer-list-item-off {
    display: none;
}

.viewer-artists {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 999;
}

.viewer-artists-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.viewer-artists-close {
    display: flex;
    justify-content: flex-end;
    padding-right: 16px;
}

.viewer-artists-close-btn {
    padding: 16px;
    padding-top: 16px;
    padding-bottom: 8px;
    cursor: pointer;
}

.viewer-artists-close-btn svg {
    width: 18px;
    height: 10px;
}

.viewer-artists-close-btn path {
    fill: #161616;
    transition: 0.25s;
}

.viewer-artists-close-btn:hover path {
    fill: #FFD500;
}

.touch .viewer-artists-close-btn:hover path {
    fill: #161616;
}

.viewer-artists-close-btn:active path,
.touch .viewer-artists-close-btn:active path {
    fill: #FFD500;
}

/* DIALOG */

.dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 77;
}

.dialog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.9);
    opacity: 0;
}

.dialog-show .dialog-overlay {
    animation-name: dialog-overlay-show;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes dialog-overlay-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.dialog-hide .dialog-overlay {
    animation-name: dialog-overlay-hide;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes dialog-overlay-hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.dialog-frame {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
    margin: 0;
}

.dialog-window {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 380px;
    border-radius: 7px;
    background-color: #FFFFFF;
    box-shadow: 0px 0px 32px -2px rgba(22, 22, 22, 0.25);
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
}

.dialog-show .dialog-window {
    animation-name: dialog-window-show;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes dialog-window-show {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.dialog-hide .dialog-window {
    animation-name: dialog-window-hide;
    animation-duration: 0.25s;
    animation-fill-mode: forwards;
}

@keyframes dialog-window-hide {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}

.dialog-message {
    flex: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    padding-top: 32px;
    padding-bottom: 30px;
    color: #161616;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
}

.dialog-actions {
    flex: none;
    display: flex;
    column-gap: 8px;
    justify-content: center;
    padding: 20px;
    padding-top: 0px;
}

.dialog-action-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 40px;
    border-radius: 6px;
    background-color: #FFD500;
    border: solid 2px transparent;
    color: #161616;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.18s;
}

.dialog-action-primary:hover {
    background-color: #161616;
    border-color: transparent;
    color: #FFD500;
}

.touch .dialog-action-primary:hover {
    background-color: #FFD500;
    border-color: transparent;
    color: #161616;
}

.dialog-action-primary:active,
.touch .dialog-action-primary:active {
    background-color: #161616;
    border-color: transparent;
    color: #FFD500;
}

.dialog-action-secondary {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 40px;
    border-radius: 6px;
    background-color: #FFFFFF;
    border: solid 2px #FFD500;
    color: #161616;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.18s;
}

.dialog-action-secondary:hover {
    background-color: #161616;
    border-color: transparent;
    color: #FFD500;
}

.touch .dialog-action-secondary:hover {
    background-color: #FFFFFF;
    border-color: #FFD500;
    color: #161616;
}

.dialog-action-secondary:active,
.touch .dialog-action-secondary:active {
    background-color: #161616;
    border-color: transparent;
    color: #FFD500;
}

/* RESPONSIVE */

@media (max-width: 1366px) {

    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

}

@media (max-width: 1320px) {

    .nav {
        padding: 48px;
    }

    .nav-brand {
        padding-top: 32px;
    }

    .nav-brand-img {
        width: 210px;
        height: 87px;
    }

}

@media (max-width: 1198px) {

    .nav {
        padding: 0px;
        height: 234px;
    }

    .nav-brand {
        padding-top: 34px;
        padding-bottom: 16px;
        padding-left: 28px;
    }

    .nav-brand-img {
        width: 280px;
        height: 116px;
    }

    .nav-buttons {
        display: none;
    }

    .nav-intro {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

}

@media (max-width: 1050px) {

    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 0.4fr 0.6fr;
        padding-left: 32px;
        padding-right: 32px;
    }

    .tour-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .riders-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .actions {
        padding-left: 24px;
        padding-right: 24px;
    }

    .viewer-top {
        padding-top: 32px;
        padding-left: 32px;
        padding-right: 32px;
    }

    .viewer-content {
        grid-template-columns: 1.25fr 1fr;
        column-gap: 24px;
        padding-left: 32px;
        padding-right: 32px;
    }

}

@media (max-width: 960px) {

    .riders-caption {
        padding-bottom: 38px;
        padding-left: 0px;
    }

    .riders-item-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        row-gap: 7px;
    }

    .riders-label {
        grid-column: 1 / -1;
        justify-content: flex-start;
        padding-top: 8px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .riders-item:first-of-type .riders-label {
        padding-top: 0px;
    }

    .riders-item-layout-alt {
        display: grid;
        grid-template-columns: 22px auto 22px;
        column-gap: 7px;
    }

}

@media (max-width: 930px) {

    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

}

@media (max-width: 860px) {

    .viewer-intro {
        column-gap: 24px;
    }

    .viewer-brand {
        flex: auto;
    }

    .viewer-button {
        flex: none;
    }

    .viewer-buttons {
        position: absolute;
        top: 16px;
        right: 34px;
        display: flex;
        column-gap: 8px;
    }

    .viewer-index {
        display: flex;
    }

    .submenu-alt {
        display: none;
    }

    .viewer-right {
        display: none;
    }

    .viewer-content {
        grid-template-columns: 1fr;
    }

    .viewer-featured {
        bottom: 0px;
        left: unset;
        right: 32px;
    }

}

@media (max-width: 840px) {

    .contact-layout {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .contact-content {
        order: 2;
        height: auto;
    }

    .contact-image {
        order: 1;
    }

    .contact-networks {
        justify-content: center;
        padding-bottom: 48px;
    }

}

@media (max-width: 800px) {

    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .tour-item {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-rows: 62px 48px;
        height: auto;
    }

    .tour-number {
        order: 1;
        width: 62px;
        font-size: 30px;
        line-height: 30px;
    }

    .tour-item-alt .tour-number{
        order: unset;
        width: 36px;
    }

    .tour-artist {
        order: 2;
        width: auto;
        font-size: 20px;
        line-height: 21px;
    }

    .tour-item-alt .tour-artist{
        order: unset;
    }

    .tour-center {
        order: 4;
        grid-column: 1 / -1;
    }

    .tour-item-alt .tour-center{
        order: unset;
    }

    .tour-remove {
        order: 3;
    }

    .tour-remove img {
        width: 14px;
        height: auto;
    }

    .tour-select:hover {
        background-color: #444444;
        color: #FFD500;
    }

    .touch .tour-select:hover {
        background-color: #AFAFAF;
        color: #FFFFFF;
    }

    .tour-select:active,
    .touch .tour-select:active {
        background-color: #444444;
        color: #FFD500;
    }

}

@media (max-width: 780px) {

    .nav {
        height: unset;
    }

    .nav-intro {
        display: none;
    }

    .nav-intro-alt {
        display: block;
    }

    .advice-layout {
        padding-bottom: 25%;
    }

    .advice-title {
        font-size: 32px;
        line-height: 34px;
    }

}

@media (max-width: 620px) {

    .grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .viewer-gallery {
        top: 0;
        left: 0;
        padding: 10px;
    }

    .viewer-gallery-item {
        width: 40px;
        height: 40px;
    }

}

@media (max-width: 480px) {

    .intro {
        padding-top: 30%;
    }

    .intro-caption {
        padding-top: 32px;
        font-size: 20px;
        line-height: 26px;
    }

    .intro-arrow-img {
        width: 50px;
        height: 25px;
    }

    .nav-brand {
        flex: auto;
        display: flex;
        justify-content: center;
        padding-top: 66px;
        padding-bottom: 6px;
        padding-left: 0px;
    }

    .nav-brand-img {
        width: 230px;
        height: 96px;
    }

    .nav-intro-alt {
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 24px;
        padding-right: 24px;
        text-align: center;
    }

    .nav-menu {
        padding-top: 24px;
        padding-right: 24px;
    }

    .submenu {
        padding-right: 21px;
    }

    .contact-title {
        font-size: 24px;
        line-height: 34px;
    }

    .contact-text {
        font-size: 17px;
        line-height: 23px;
    }

    .riders-item-layout {
        grid-template-columns: 1fr;
    }

    .riders-label {
        grid-column: unset;
    }

    .viewer-brand img {
        width: 170px;
        height: 70px;
    }

    .viewer-intro {
        flex-direction: column;
    }

    .viewer-featured {
        bottom: 16px;
        right: 0px;
        width: 280px;
        padding: 18px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .viewer-featured-title {
        padding-bottom: 6px;
        font-size: 28px;
        line-height: 28px;
    }

    .viewer-featured-caption {
        font-size: 16px;
        line-height: 22px;
    }

    .viewer-buttons {
        top: 16px;
        right: 22px;
    }

}