﻿
/*#########################################################
 ## STAGES 
 ########################################################*/

/*section.section-stages {
    background: rgb(234, 178, 181);
    background-position: center center;
    background-size: cover;
}*/

/*section.section-stages > div.stages-container {
        background-color: rgba(255,255,255,0.3);
    }*/

body:not(.mobile) section.section-stages > div.stages-container {
    padding-top: 1em;
    padding-right: 10%;
    padding-bottom: 1em;
    padding-left: 10%;
}

section.section-stages div.stage-items {
    position: relative;
    padding-bottom: 50%;
    background-color: black;
    box-shadow: rgba(0,0,0,0.2) 0 0 2em;
    overflow: hidden;
}

    section.section-stages div.stage-items a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        text-align: center;
        display: none;
    }

        section.section-stages div.stage-items a img {
            max-width: 100%;
            height: 100%;
        }

        section.section-stages div.stage-items a.displayed {
            display: block;
        }

section.section-stages div.stage-buttons {
    /*background: black;*/
    padding-top: 0.5rem;
    /*margin-top: 0.5em;
    padding-bottom: 0.5em;*/
    display: flexbox;
    text-align: center;
}

    section.section-stages div.stage-buttons a {
        /*background-color: rgb(234,178,181);*/
        margin-right: 0.5em;
        margin-left: 0.5em;
        cursor: pointer;
        display: inline-block;
        width: 10%;
        min-width: 6rem;
        max-width: 10rem;
        box-shadow: rgba(0,0,0,0.2) 0 0.1em 0.25em;
        -webkit-transition: 0.2s linear;
        transition: 0.2s linear;
        opacity: 0.7;
        -webkit-filter: grayscale(50%) brightness(70%);
    }

        section.section-stages div.stage-buttons a div {
            background-position: center center;
            background-size: cover;
            width: 100%;
            padding-bottom: 50%;
        }


        section.section-stages div.stage-buttons a.active {
            -webkit-transform: scale(1.05);
            transform: scale(1.05);
            -webkit-filter: grayscale(0) brightness(100%);
            opacity: 1;
        }

        section.section-stages div.stage-buttons a:hover {
            -webkit-transform: scale(1.15);
            transform: scale(1.15);
            -webkit-filter: grayscale(0) brightness(100%);
            opacity: 1;
        }
