/***DESKTOPS (X-LARGE SCREEN)
*****************************************************/
@media (min-width: 1920px) {  
}

/***DESKTOPS (LARGE SCREEN)
*****************************************************/
@media (min-width: 1600px) {
}

/***NOTEBOOKS (MEDIUM SCREEN)
*****************************************************/
@media (min-width: 1024px) and (max-width: 1599px) {
}

/***FROM TABLETS TO MOBILES
*****************************************************/
@media (max-width: 1023px) {
    :root {
        /***VIEWPORT HEIGHT***/
        --viewportHeight: calc(var(--vh, 1vh) * 100);
    }
    body {
        height: 100vh; /* Fallback */
        height: var(--viewportHeight);
    }
}

/***TABLETS (LANDSCAPE)
*****************************************************/
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
}

/***TABLETS (PORTRAIT)
*****************************************************/
@media (min-width: 768px) and (max-width: 1024px) {
}

/***SMALL TABLETS, MOBILES (LANDSCAPE)
*****************************************************/
@media (min-width: 481px) and (max-width: 767px) {
    :root {
        --fontSizeSmall: 0.75rem;
        --fontSizeMedium: 1rem;
        --fontSizeLarge: 2rem;
        --fontSizeXLarge: 3rem;
    }
}

@media (max-width: 768px) {
}
    .seated-event-link-cells {
        flex-direction: row !important;
        justify-content: end !important;
    }

@media (max-width: 580px) {
    .seated-event-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-flow: row !important;
        -ms-flex-flow: row !important;
        flex-flow: row !important;
    }
    .seated-event-description-cells {
        flex: 3 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        width: auto !important;
        text-align: left !important;
    }
    .seated-event-date-cell {
        flex: 1 !important;
        width: 100%;
    }
    .seated-event-details-cell {
        display: none !important;
    }
    .seated-event-venue-cell {
        flex: 1 !important;
        width: 100% !important;
        -webkit-box-align: start !important;
        -webkit-align-items: start !important;
        -ms-flex-align: start !important;
        align-items: start !important;
        margin-bottom: 0px !important;
    }
    .seated-event-link-cells {
        flex: 1 !important;
        width: 100% !important;
        justify-content: end;
        align-items: start;
        margin-top: 5px !important;
    }
}

/*** NOT MOBILE (PORTRAIT)
*****************************************************/
@media (min-width: 481px) {
    nav.menu.mobile {
        display: none;
    }
}

/***MOBILES (PORTRAIT)
*****************************************************/
@media (max-width: 480px) {
    :root {
        --fontSizeSmall: 1rem;
        --fontSizeMedium: 1.25rem;
        --fontSizeLarge: 2.75rem;
        --fontSizeXLarge: 2.75rem;
    }
    body {
        display: contents;
    }
    nav.menu.mobile {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    nav.menu.mobile li.menu_item {
        display: block;
    }
    nav.menu.mobile li.menu_item a {
        display: block;
        padding: calc(var(--spaceY) * 0.6) var(--spaceX) calc(var(--spaceY) * 1.2);
    }
    nav.menu.mobile li.menu_item.portugal_button a {
        color: var(--paletteWhite);
        background: var(--paletteBlack);
    }
    nav.menu.mobile li.menu_item.frances_button a {
        color: var(--paletteBlack);
        background: var(--paletteGray);
    }
    nav.menu.mobile li.menu_item.passthemic_button a {
        color: var(--paletteBlack);
        background: var(--paletteWhite);
    }
    body#index .column.center,
    body#index .column.right {
        display: none;
    }
    .column {
        position: relative;
        height: 100%;
        flex: 1;
        overflow-y: hidden;
        padding-bottom: var(--rowGutterLarge);
    }
    header{
        position: fixed;
        top: 0;
    }
    main.content {
        margin-top: var(--headerHeight);
    }
    .album {
        width: 100%;
    }
    .popup {
        display: none;
    }
}